:root {
  --vtgw-color-primary: #6318c8;
  --vtgw-color-primary-dark: #2f016a;
  --vtgw-color-primary-light: #b9a6ff;
  --vtgw-color-primary-xlight: #e1d9ff;
  --vtgw-color-accent-warm: #fff8cb;
  --vtgw-color-accent-pink: #ffe8f9;
  --vtgw-color-dark: #1a0040;
  --vtgw-color-white: #ffffff;
  --vtgw-color-text: #1a1a2e;
  --vtgw-color-text-muted: #5a5a7a;
  --vtgw-color-bg: #f5f3ff;
  --vtgw-color-bg-tinted: #ede8ff;
  --vtgw-color-border: #d4c8ff;
  --vtgw-color-gold: #f5a623;
  --vtgw-color-green: #2d9c5b;
  --vtgw-radius: 12px;
  --vtgw-radius-sm: 8px;
  --vtgw-shadow-hard: 4px 4px 0 var(--vtgw-color-primary-dark);
  --vtgw-shadow-hard-sm: 3px 3px 0 var(--vtgw-color-primary-dark);
  --vtgw-container: 1200px;
  --vtgw-font: 'Outfit', sans-serif;
  --vtgw-transition: 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--vtgw-font);
  background: var(--vtgw-color-bg);
  color: var(--vtgw-color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--vtgw-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 760px;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--vtgw-radius-sm); }

a { color: var(--vtgw-color-primary); text-decoration: underline; transition: color var(--vtgw-transition); }
a:hover { color: var(--vtgw-color-primary-dark); }

ul { padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }

.unkh {
  background: var(--vtgw-color-white);
  border-bottom: 2px solid var(--vtgw-color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: var(--vtgw-font);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--vtgw-color-primary-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-logo:hover { color: var(--vtgw-color-primary); }

.uoek {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.uoek a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--vtgw-color-text);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--vtgw-transition), color var(--vtgw-transition);
}
.uoek a:hover,
.uoek a[aria-current="page"] {
  color: var(--vtgw-color-primary);
  border-bottom-color: var(--vtgw-color-primary);
}

.uxky {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--vtgw-color-primary-dark);
}

.ufwu {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vtgw-color-primary-dark);
  color: var(--vtgw-color-white);
  z-index: 9999;
  padding: 1rem 1.25rem;
  display: none;
  border-top: 3px solid var(--vtgw-color-primary);
}
.ufwu.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--vtgw-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: 0.9rem; flex: 1; }
.cookie-banner__text a { color: var(--vtgw-color-primary-light); }
.cookie-banner__actions { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }
.cookie-banner__link { color: var(--vtgw-color-primary-light); font-size: 0.85rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vtgw-font);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7rem 1.6rem;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--vtgw-transition), color var(--vtgw-transition), border-color var(--vtgw-transition), transform var(--vtgw-transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--vtgw-color-primary-dark);
  color: var(--vtgw-color-white);
  border-color: var(--vtgw-color-primary-dark);
}
.btn-primary:hover {
  background: var(--vtgw-color-primary);
  border-color: var(--vtgw-color-primary);
  color: var(--vtgw-color-white);
}
.btn-ghost {
  background: transparent;
  color: var(--vtgw-color-primary-dark);
  border-color: var(--vtgw-color-primary-dark);
}
.btn-ghost:hover {
  background: var(--vtgw-color-primary-dark);
  color: var(--vtgw-color-white);
}
.btn-pill { border-radius: 9999px; }
.btn-sm { font-size: 0.85rem; padding: 0.45rem 1rem; }
.btn-lg { font-size: 1.05rem; padding: 0.85rem 2rem; }
.btn-full { width: 100%; margin-bottom: 0.5rem; }

.section-light { background: var(--vtgw-color-white); padding: 4rem 0; }
.section-tinted { background: var(--vtgw-color-bg-tinted); padding: 4rem 0; }
.urgq { background: var(--vtgw-color-primary-dark); padding: 2.5rem 0; }
.ufwh { background: var(--vtgw-color-primary); padding: 4rem 0; }
.section-hero { background: var(--vtgw-color-bg); padding: 3rem 0 2rem; }

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--vtgw-color-primary-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-intro { color: var(--vtgw-color-text-muted); margin-bottom: 2rem; max-width: 640px; }

.hero-editorial { max-width: 860px; }
.hero-meta-top { margin-bottom: 0.75rem; }
.category-chip {
  display: inline-block;
  background: var(--vtgw-color-primary-xlight);
  color: var(--vtgw-color-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--vtgw-color-primary-dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.h1-number {
  color: var(--vtgw-color-primary);
  font-size: 1.1em;
  display: inline-block;
  margin-right: 0.15em;
}
.hero-byline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--vtgw-color-text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.byline-sep { color: var(--vtgw-color-border); }
.hero-lead {
  font-size: 1.1rem;
  color: var(--vtgw-color-text);
  max-width: 720px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cover {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-pack-img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: var(--vtgw-radius);
  background: var(--vtgw-color-white);
  padding: 1rem;
  border: 2px solid var(--vtgw-color-border);
}
.hero-trust { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.trust-stars { display: flex; align-items: center; gap: 0.5rem; }
.trust-stars img { border-radius: 0; height: 22px; width: auto; }
.trust-count { font-weight: 700; color: var(--vtgw-color-primary-dark); font-size: 0.92rem; }
.trust-badges { display: flex; flex-direction: column; gap: 0.4rem; }
.badge {
  display: inline-block;
  background: var(--vtgw-color-accent-warm);
  color: var(--vtgw-color-primary-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  border: 1px solid var(--vtgw-color-border);
}

.section-stat-band { padding: 2.5rem 0; }
.stat-band {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--vtgw-color-white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--vtgw-color-primary-light);
  margin-top: 0.25rem;
  font-weight: 500;
}

.mechanism-infographic { margin-bottom: 2.5rem; border-radius: var(--vtgw-radius); overflow: hidden; }
.mechanism-infographic img { width: 100%; border-radius: var(--vtgw-radius); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.step-card {
  background: var(--vtgw-color-white);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--vtgw-shadow-hard);
}
.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--vtgw-color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.step-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--vtgw-color-primary-dark); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--vtgw-color-text-muted); }

.hard-shadow { box-shadow: var(--vtgw-shadow-hard); }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ukou {
  background: var(--vtgw-color-white);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  overflow: hidden;
}
.upzu {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  font-family: var(--vtgw-font);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--vtgw-color-primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--vtgw-transition);
}
.upzu::after { content: '+'; font-size: 1.3rem; color: var(--vtgw-color-primary); transition: transform var(--vtgw-transition); }
.upzu[aria-expanded="true"]::after { transform: rotate(45deg); }
.upzu:hover { background: var(--vtgw-color-primary-xlight); }
.ubxj {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.ubxj.is-open {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}
.ubxj p { font-size: 0.92rem; color: var(--vtgw-color-text); }

.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.howto-step {
  background: var(--vtgw-color-bg-tinted);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.howto-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.howto-step h3 { font-size: 1rem; font-weight: 700; color: var(--vtgw-color-primary-dark); margin-bottom: 0.5rem; }
.howto-step p { font-size: 0.9rem; color: var(--vtgw-color-text-muted); }

.calc-module { background: var(--vtgw-color-primary-xlight); border: 2px solid var(--vtgw-color-primary-light); border-radius: var(--vtgw-radius); padding: 2rem; max-width: 520px; margin: 0 auto; }
.ujuj .calc-title { font-size: 1.1rem; font-weight: 700; color: var(--vtgw-color-primary-dark); margin-bottom: 1rem; }
.calc-body { display: flex; flex-direction: column; gap: 0.75rem; }
.calc-body label { font-size: 0.9rem; font-weight: 600; color: var(--vtgw-color-text); }
.calc-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 2px solid var(--vtgw-color-primary-light);
  border-radius: var(--vtgw-radius-sm);
  font-family: var(--vtgw-font);
  font-size: 1rem;
  color: var(--vtgw-color-text);
  background: var(--vtgw-color-white);
}
.calc-result { font-weight: 700; color: var(--vtgw-color-primary-dark); font-size: 1rem; min-height: 1.5rem; }

.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.lifestyle-img img { width: 100%; border-radius: var(--vtgw-radius); }
.lifestyle-tips { display: flex; flex-direction: column; gap: 1rem; }
.tip-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--vtgw-radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tip-icon { font-size: 1.6rem; flex-shrink: 0; }
.tip-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--vtgw-color-white); margin-bottom: 0.3rem; }
.tip-card p { font-size: 0.88rem; color: var(--vtgw-color-primary-light); }
.fruits-bowl-row { text-align: center; margin-top: 1rem; }
.fruits-bowl-row img { max-width: 520px; margin: 0 auto; }

.table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--vtgw-color-white);
  border-radius: var(--vtgw-radius);
  overflow: hidden;
  border: 2px solid var(--vtgw-color-border);
}
.comparison-table th {
  background: var(--vtgw-color-primary-dark);
  color: var(--vtgw-color-white);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
}
.comparison-table th.col-highlight { background: var(--vtgw-color-primary); }
.comparison-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--vtgw-color-border); }
.comparison-table td.col-highlight { background: var(--vtgw-color-primary-xlight); font-weight: 600; color: var(--vtgw-color-primary-dark); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--vtgw-color-bg-tinted); }
.comparison-table tr:hover td.col-highlight { background: var(--vtgw-color-primary-xlight); }

.ingredients-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.ingredients-img img { width: 100%; border-radius: var(--vtgw-radius); }
.ingredients-list { display: flex; flex-direction: column; gap: 0.85rem; }
.ingredient-card {
  background: var(--vtgw-color-white);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.ing-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.ingredient-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--vtgw-color-primary-dark); margin-bottom: 0.2rem; }
.ingredient-card p { font-size: 0.85rem; color: var(--vtgw-color-text-muted); }
.disclaimer-inline { font-size: 0.82rem; color: var(--vtgw-color-text-muted); margin-top: 2rem; font-style: italic; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.about-text p { color: var(--vtgw-color-primary-light); font-size: 0.95rem; margin-bottom: 1rem; }
.about-text strong { color: var(--vtgw-color-white); }
.review-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--vtgw-radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.review-stars { color: var(--vtgw-color-gold); font-size: 1.1rem; margin-bottom: 0.5rem; }
.review-card p { color: var(--vtgw-color-white); font-size: 0.9rem; font-style: italic; margin-bottom: 0.5rem; }
.review-author { display: block; font-size: 0.82rem; font-weight: 600; color: var(--vtgw-color-primary-light); }
.review-disc { display: block; font-size: 0.75rem; color: rgba(185,166,255,0.7); margin-top: 0.25rem; }

.order-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.order-product img { width: 100%; border-radius: var(--vtgw-radius); margin-bottom: 1.5rem; }
.price-block {
  background: var(--vtgw-color-white);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.price-old { font-size: 1.1rem; color: var(--vtgw-color-text-muted); text-decoration: line-through; }
.price-new { font-size: 2rem; font-weight: 900; color: var(--vtgw-color-primary-dark); }
.price-badge {
  background: var(--vtgw-color-primary);
  color: var(--vtgw-color-white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
}
.order-features { list-style: none; padding: 0; }
.order-features li { font-size: 0.92rem; color: var(--vtgw-color-text); padding: 0.3rem 0; border-bottom: 1px solid var(--vtgw-color-border); }
.order-features li:last-child { border-bottom: none; }

.order-form-wrap {
  background: var(--vtgw-color-white);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 2rem;
  box-shadow: var(--vtgw-shadow-hard);
}
.uklx h3 { font-size: 1.3rem; font-weight: 800; color: var(--vtgw-color-primary-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--vtgw-color-text); margin-bottom: 0.4rem; }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius-sm);
  font-family: var(--vtgw-font);
  font-size: 0.95rem;
  color: var(--vtgw-color-text);
  background: var(--vtgw-color-bg);
  transition: border-color var(--vtgw-transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vtgw-color-primary);
}
.form-checkbox { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-checkbox input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--vtgw-color-primary); }
.form-checkbox label { font-size: 0.82rem; color: var(--vtgw-color-text-muted); font-weight: 400; }
.form-note { font-size: 0.8rem; color: var(--vtgw-color-text-muted); text-align: center; margin-top: 0.5rem; }

.section-pre-footer { padding: 2.5rem 0; }

.breadcrumb-nav { background: var(--vtgw-color-white); border-bottom: 1px solid var(--vtgw-color-border); padding: 0.5rem 0; }
.breadcrumb { list-style: none; padding: 0; display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: var(--vtgw-color-text-muted); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 0.5rem; }
.breadcrumb a { color: var(--vtgw-color-primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.section-legal { padding: 4rem 0; }
.section-legal h1 { font-size: 2rem; font-weight: 900; color: var(--vtgw-color-primary-dark); margin-bottom: 0.5rem; }
.section-legal h2 { font-size: 1.15rem; font-weight: 700; color: var(--vtgw-color-primary-dark); margin: 2rem 0 0.5rem; }
.section-legal h3 { font-size: 1rem; font-weight: 700; color: var(--vtgw-color-primary); margin: 1.5rem 0 0.4rem; }
.section-legal p { font-size: 0.93rem; color: var(--vtgw-color-text); margin-bottom: 0.75rem; line-height: 1.7; }
.section-legal ul { margin-bottom: 0.75rem; }
.section-legal ul li { font-size: 0.93rem; color: var(--vtgw-color-text); }

.cookie-table,
.nutrients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1rem 0 1.5rem;
  border: 1px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius-sm);
  overflow: hidden;
}
.cookie-table th,
.nutrients-table th {
  background: var(--vtgw-color-primary-dark);
  color: var(--vtgw-color-white);
  padding: 0.65rem 0.85rem;
  text-align: left;
  font-weight: 600;
}
.cookie-table td,
.nutrients-table td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--vtgw-color-border);
  color: var(--vtgw-color-text);
}
.cookie-table tr:last-child td,
.nutrients-table tr:last-child td { border-bottom: none; }
.table-footnote { font-size: 0.8rem; color: var(--vtgw-color-text-muted); font-style: italic; }

.nutrients-table-wrap { margin-bottom: 2.5rem; }
.ingredient-details { display: flex; flex-direction: column; gap: 1.25rem; }
.ingredient-detail-card {
  background: var(--vtgw-color-white);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 1.5rem;
}
.ingredient-detail-card h3 { font-size: 1rem; font-weight: 700; color: var(--vtgw-color-primary-dark); margin-bottom: 0.5rem; }
.ingredient-detail-card p { font-size: 0.9rem; color: var(--vtgw-color-text-muted); }

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.method-card {
  background: var(--vtgw-color-bg-tinted);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 1.5rem;
}
.method-num { font-size: 1.8rem; font-weight: 900; color: var(--vtgw-color-primary); opacity: 0.35; display: block; margin-bottom: 0.5rem; }
.method-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--vtgw-color-primary-dark); margin-bottom: 0.5rem; }
.method-card p { font-size: 0.88rem; color: var(--vtgw-color-text-muted); }

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pros-card, .cons-card {
  background: var(--vtgw-color-white);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 1.75rem;
}
.pros-card { border-top: 4px solid var(--vtgw-color-green); }
.cons-card { border-top: 4px solid #e04a4a; }
.pros-card h3 { color: var(--vtgw-color-green); font-size: 1.05rem; font-weight: 800; margin-bottom: 1rem; }
.cons-card h3 { color: #e04a4a; font-size: 1.05rem; font-weight: 800; margin-bottom: 1rem; }
.pros-card li, .cons-card li { font-size: 0.9rem; color: var(--vtgw-color-text); }

.tips-grid-full { display: flex; flex-direction: column; gap: 1.5rem; margin: 2.5rem 0; }
.tip-full-card {
  background: var(--vtgw-color-white);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.tip-num { font-size: 2.5rem; font-weight: 900; color: var(--vtgw-color-primary); opacity: 0.25; flex-shrink: 0; line-height: 1; width: 3rem; text-align: center; }
.tip-full-card h2 { font-size: 1.1rem; font-weight: 700; color: var(--vtgw-color-primary-dark); margin-bottom: 0.5rem; }
.tip-full-card p { font-size: 0.9rem; color: var(--vtgw-color-text-muted); margin-bottom: 0.5rem; }
.tip-full-card p:last-child { margin-bottom: 0; }
.fruits-lifestyle-img { margin-top: 2rem; text-align: center; }
.fruits-lifestyle-img img { max-width: 480px; margin: 0 auto; }
.ingredients-hero-img { margin-bottom: 2.5rem; }
.lifestyle-hero-img { margin-bottom: 2.5rem; }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-card {
  background: var(--vtgw-color-bg-tinted);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.contact-card h2 { font-size: 1.1rem; font-weight: 700; color: var(--vtgw-color-primary-dark); margin-bottom: 1rem; }
.contact-card p { font-size: 0.9rem; color: var(--vtgw-color-text); margin-bottom: 0.5rem; }
.map-container { border-radius: var(--vtgw-radius); overflow: hidden; border: 2px solid var(--vtgw-color-border); }
.map-container iframe { display: block; }
.contact-form-wrap {
  background: var(--vtgw-color-white);
  border: 2px solid var(--vtgw-color-border);
  border-radius: var(--vtgw-radius);
  padding: 2rem;
  box-shadow: var(--vtgw-shadow-hard);
}
.udoz h2 { font-size: 1.3rem; font-weight: 800; color: var(--vtgw-color-primary-dark); margin-bottom: 1.5rem; }

.site-footer { background: var(--vtgw-color-dark); padding: 3rem 0 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .site-logo { color: var(--vtgw-color-white); font-size: 1.1rem; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(185,166,255,0.8); margin-bottom: 0.4rem; }
.footer-brand a { color: var(--vtgw-color-primary-light); }
.footer-nav h4, .footer-legal h4 { font-size: 0.85rem; font-weight: 700; color: var(--vtgw-color-white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.85rem; }
.footer-nav ul, .footer-legal ul { list-style: none; padding: 0; }
.footer-nav li, .footer-legal li { margin-bottom: 0.4rem; }
.footer-nav a, .footer-legal a { font-size: 0.85rem; color: rgba(185,166,255,0.8); text-decoration: none; transition: color var(--vtgw-transition); }
.footer-nav a:hover, .footer-legal a:hover { color: var(--vtgw-color-white); }
.footer-disclaimer {
  border-top: 1px solid rgba(185,166,255,0.2);
  padding-top: 1.5rem;
}
.footer-disclaimer p { font-size: 0.78rem; color: rgba(185,166,255,0.6); margin-bottom: 0.5rem; line-height: 1.6; }

@media (max-width: 900px) {
  .steps-grid, .howto-grid, .method-grid { grid-template-columns: 1fr; }
  .ingredients-split, .about-grid, .order-split, .lifestyle-split { grid-template-columns: 1fr; }
  .pros-cons-grid, .contact-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-cover { flex-direction: column; }
  .hero-pack-img { width: 180px; height: 180px; }
}

@media (max-width: 640px) {
  .uoek { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--vtgw-color-white); padding: 1rem; border-bottom: 2px solid var(--vtgw-color-border); z-index: 200; }
  .uoek.is-open { display: flex; }
  .uxky { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.78rem; }
  .stat-band { flex-direction: row; justify-content: center; gap: 1rem; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 1.5rem; }
  .hero-h1 { font-size: 1.6rem; }
  .tip-full-card { flex-direction: column; gap: 0.75rem; }
}
:root {
  --vtgw-color-primary: #6318c8;
  --vtgw-color-primary-dark: #2f016a;
  --vtgw-color-primary-light: #b9a6ff;
  --vtgw-color-primary-xlight: #e1d9ff;
  --vtgw-color-accent-warm: #fff8cb;
  --vtgw-color-dark: #1a0040;
  --vtgw-color-white: #ffffff;
  --vtgw-color-text: #1a1a2e;
  --vtgw-color-text-muted: #5a5a7a;
  --vtgw-color-bg: #f5f3ff;
  --vtgw-color-bg-tinted: #ede8ff;
  --vtgw-color-border: #d4c8ff;
  --vtgw-color-gold: #f5a623;
  --vtgw-color-green: #2d9c5b;
  --vtgw-radius: 12px;
  --vtgw-radius-sm: 8px;
  --vtgw-shadow-hard: 4px 4px 0 var(--vtgw-color-primary-dark);
  --vtgw-container: 1200px;
  --vtgw-font: 'Outfit', sans-serif;
  --vtgw-transition: 0.18s ease;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:16px;}
body{font-family:var(--vtgw-font);background:var(--vtgw-color-bg);color:var(--vtgw-color-text);line-height:1.65;-webkit-font-smoothing:antialiased;}
.container{max-width:var(--vtgw-container);margin:0 auto;padding:0 1.25rem;}
.container-narrow{max-width:760px;}
img{max-width:100%;height:auto;display:block;border-radius:var(--vtgw-radius-sm);}
a{color:var(--vtgw-color-primary);text-decoration:underline;transition:color var(--vtgw-transition);}
a:hover{color:var(--vtgw-color-primary-dark);}
ul{padding-left:1.25rem;}
li{margin-bottom:0.35rem;}

.unkh{background:var(--vtgw-color-white);border-bottom:2px solid var(--vtgw-color-border);position:sticky;top:0;z-index:100;padding:0.75rem 0;}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;}
.site-logo{font-family:var(--vtgw-font);font-weight:800;font-size:1.2rem;color:var(--vtgw-color-primary-dark);text-decoration:none;letter-spacing:-0.02em;white-space:nowrap;}
.site-logo:hover{color:var(--vtgw-color-primary);}
.uoek{display:flex;gap:1.5rem;align-items:center;}
.uoek a{font-weight:500;font-size:0.92rem;color:var(--vtgw-color-text);text-decoration:none;padding:0.25rem 0;border-bottom:2px solid transparent;transition:border-color var(--vtgw-transition),color var(--vtgw-transition);}
.uoek a:hover,.uoek a[aria-current="page"]{color:var(--vtgw-color-primary);border-bottom-color:var(--vtgw-color-primary);}
.uxky{display:none;background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--vtgw-color-primary-dark);}

.ufwu{position:fixed;bottom:0;left:0;right:0;background:var(--vtgw-color-primary-dark);color:var(--vtgw-color-white);z-index:9999;padding:1rem 1.25rem;display:none;border-top:3px solid var(--vtgw-color-primary);}
.ufwu.is-visible{display:block;}
.cookie-banner__inner{max-width:var(--vtgw-container);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.cookie-banner__text{font-size:0.9rem;flex:1;}
.cookie-banner__text a{color:var(--vtgw-color-primary-light);}
.cookie-banner__actions{display:flex;gap:0.75rem;align-items:center;flex-shrink:0;}

.btn{display:inline-flex;align-items:center;justify-content:center;font-family:var(--vtgw-font);font-weight:600;font-size:1rem;padding:0.7rem 1.6rem;border-radius:9999px;border:2px solid transparent;cursor:pointer;text-decoration:none;transition:background var(--vtgw-transition),color var(--vtgw-transition),border-color var(--vtgw-transition),transform var(--vtgw-transition);white-space:nowrap;}
.btn:hover{transform:translateY(-1px);}
.btn-primary{background:var(--vtgw-color-primary-dark);color:var(--vtgw-color-white);border-color:var(--vtgw-color-primary-dark);}
.btn-primary:hover{background:var(--vtgw-color-primary);border-color:var(--vtgw-color-primary);color:var(--vtgw-color-white);}
.btn-ghost{background:transparent;color:var(--vtgw-color-primary-dark);border-color:var(--vtgw-color-primary-dark);}
.btn-ghost:hover{background:var(--vtgw-color-primary-dark);color:var(--vtgw-color-white);}
.btn-pill{border-radius:9999px;}
.btn-sm{font-size:0.85rem;padding:0.45rem 1rem;}
.btn-lg{font-size:1.05rem;padding:0.85rem 2rem;}
.btn-full{width:100%;margin-bottom:0.5rem;}

.section-light{background:var(--vtgw-color-white);padding:4rem 0;}
.section-tinted{background:var(--vtgw-color-bg-tinted);padding:4rem 0;}
.urgq{background:var(--vtgw-color-primary-dark);padding:2.5rem 0;}
.ufwh{background:var(--vtgw-color-primary);padding:4rem 0;}
.section-hero{background:var(--vtgw-color-bg);padding:3rem 0 2rem;}
.section-pre-footer{padding:2.5rem 0;}

.section-title{font-size:1.9rem;font-weight:800;color:var(--vtgw-color-primary-dark);margin-bottom:1.5rem;line-height:1.2;}
.section-intro{color:var(--vtgw-color-text-muted);margin-bottom:2rem;max-width:640px;}

.hero-editorial{max-width:860px;}
.hero-meta-top{margin-bottom:0.75rem;}
.category-chip{display:inline-block;background:var(--vtgw-color-primary-xlight);color:var(--vtgw-color-primary-dark);font-size:0.78rem;font-weight:700;padding:0.25rem 0.75rem;border-radius:9999px;letter-spacing:0.04em;text-transform:uppercase;}
.hero-h1{font-size:clamp(1.7rem,4vw,2.6rem);font-weight:900;color:var(--vtgw-color-primary-dark);line-height:1.15;margin-bottom:0.75rem;letter-spacing:-0.02em;}
.h1-number{color:var(--vtgw-color-primary);font-size:1.1em;display:inline-block;margin-right:0.15em;}
.hero-byline{display:flex;align-items:center;gap:0.5rem;font-size:0.88rem;color:var(--vtgw-color-text-muted);margin-bottom:1rem;flex-wrap:wrap;}
.byline-sep{color:var(--vtgw-color-border);}
.hero-lead{font-size:1.1rem;color:var(--vtgw-color-text);max-width:720px;margin-bottom:2rem;line-height:1.7;}
.hero-cover{display:flex;align-items:flex-start;gap:2rem;flex-wrap:wrap;}
.hero-pack-img{width:240px;height:240px;object-fit:contain;border-radius:var(--vtgw-radius);background:var(--vtgw-color-white);padding:1rem;border:2px solid var(--vtgw-color-border);}
.hero-trust{display:flex;flex-direction:column;gap:1rem;justify-content:center;}
.trust-stars{display:flex;align-items:center;gap:0.5rem;}
.trust-stars img{border-radius:0;height:22px;width:auto;}
.trust-count{font-weight:700;color:var(--vtgw-color-primary-dark);font-size:0.92rem;}
.trust-badges{display:flex;flex-direction:column;gap:0.4rem;}
.badge{display:inline-block;background:var(--vtgw-color-accent-warm);color:var(--vtgw-color-primary-dark);font-size:0.82rem;font-weight:600;padding:0.25rem 0.7rem;border-radius:9999px;border:1px solid var(--vtgw-color-border);}

.section-stat-band{padding:2.5rem 0;}
.stat-band{display:flex;justify-content:space-around;align-items:center;gap:1.5rem;flex-wrap:wrap;}
.stat-item{text-align:center;}
.stat-number{display:block;font-size:clamp(2.2rem,5vw,3.5rem);font-weight:900;color:var(--vtgw-color-white);line-height:1;letter-spacing:-0.03em;}
.stat-label{display:block;font-size:0.85rem;color:var(--vtgw-color-primary-light);margin-top:0.25rem;font-weight:500;}

.mechanism-infographic{margin-bottom:2.5rem;border-radius:var(--vtgw-radius);overflow:hidden;}
.mechanism-infographic img{width:100%;border-radius:var(--vtgw-radius);}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;}
.step-card{background:var(--vtgw-color-white);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:1.75rem 1.5rem;}
.step-num{font-size:0.75rem;font-weight:800;color:var(--vtgw-color-primary);letter-spacing:0.1em;margin-bottom:0.5rem;}
.step-icon{font-size:2rem;margin-bottom:0.75rem;}
.step-card h3{font-size:1rem;font-weight:700;color:var(--vtgw-color-primary-dark);margin-bottom:0.5rem;}
.step-card p{font-size:0.9rem;color:var(--vtgw-color-text-muted);}
.hard-shadow{box-shadow:var(--vtgw-shadow-hard);}

.faq-list{display:flex;flex-direction:column;gap:0.75rem;}
.ukou{background:var(--vtgw-color-white);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);overflow:hidden;}
.upzu{width:100%;text-align:left;background:none;border:none;padding:1.1rem 1.5rem;font-family:var(--vtgw-font);font-size:0.98rem;font-weight:700;color:var(--vtgw-color-primary-dark);cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:background var(--vtgw-transition);}
.upzu::after{content:'+';font-size:1.3rem;color:var(--vtgw-color-primary);transition:transform var(--vtgw-transition);}
.upzu[aria-expanded="true"]::after{transform:rotate(45deg);}
.upzu:hover{background:var(--vtgw-color-primary-xlight);}
.ubxj{max-height:0;overflow:hidden;transition:max-height 0.3s ease,padding 0.3s ease;padding:0 1.5rem;}
.ubxj.is-open{max-height:400px;padding:0 1.5rem 1.25rem;}
.ubxj p{font-size:0.92rem;color:var(--vtgw-color-text);}

.howto-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-bottom:2.5rem;}
.howto-step{background:var(--vtgw-color-bg-tinted);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:1.75rem 1.5rem;text-align:center;}
.howto-icon{font-size:2.5rem;margin-bottom:0.75rem;}
.howto-step h3{font-size:1rem;font-weight:700;color:var(--vtgw-color-primary-dark);margin-bottom:0.5rem;}
.howto-step p{font-size:0.9rem;color:var(--vtgw-color-text-muted);}

.calc-module{background:var(--vtgw-color-primary-xlight);border:2px solid var(--vtgw-color-primary-light);border-radius:var(--vtgw-radius);padding:2rem;max-width:520px;margin:0 auto;}
.ujuj .calc-title{font-size:1.1rem;font-weight:700;color:var(--vtgw-color-primary-dark);margin-bottom:1rem;}
.calc-body{display:flex;flex-direction:column;gap:0.75rem;}
.calc-body label{font-size:0.9rem;font-weight:600;color:var(--vtgw-color-text);}
.calc-input{width:100%;padding:0.65rem 1rem;border:2px solid var(--vtgw-color-primary-light);border-radius:var(--vtgw-radius-sm);font-family:var(--vtgw-font);font-size:1rem;color:var(--vtgw-color-text);background:var(--vtgw-color-white);}
.calc-result{font-weight:700;color:var(--vtgw-color-primary-dark);font-size:1rem;min-height:1.5rem;}

.lifestyle-split{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-bottom:2.5rem;align-items:start;}
.lifestyle-img img{width:100%;border-radius:var(--vtgw-radius);}
.lifestyle-tips{display:flex;flex-direction:column;gap:1rem;}
.tip-card{background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.25);border-radius:var(--vtgw-radius);padding:1.25rem;display:flex;gap:1rem;align-items:flex-start;}
.tip-icon{font-size:1.6rem;flex-shrink:0;}
.tip-card h3{font-size:0.95rem;font-weight:700;color:var(--vtgw-color-white);margin-bottom:0.3rem;}
.tip-card p{font-size:0.88rem;color:var(--vtgw-color-primary-light);}
.fruits-bowl-row{text-align:center;margin-top:1rem;}
.fruits-bowl-row img{max-width:520px;margin:0 auto;}

.table-wrap{overflow-x:auto;}
.comparison-table{width:100%;border-collapse:collapse;font-size:0.9rem;background:var(--vtgw-color-white);border-radius:var(--vtgw-radius);overflow:hidden;border:2px solid var(--vtgw-color-border);}
.comparison-table th{background:var(--vtgw-color-primary-dark);color:var(--vtgw-color-white);padding:0.85rem 1rem;text-align:left;font-weight:700;}
.comparison-table th.col-highlight{background:var(--vtgw-color-primary);}
.comparison-table td{padding:0.75rem 1rem;border-bottom:1px solid var(--vtgw-color-border);}
.comparison-table td.col-highlight{background:var(--vtgw-color-primary-xlight);font-weight:600;color:var(--vtgw-color-primary-dark);}
.comparison-table tr:last-child td{border-bottom:none;}
.comparison-table tr:hover td{background:var(--vtgw-color-bg-tinted);}
.comparison-table tr:hover td.col-highlight{background:var(--vtgw-color-primary-xlight);}

.ingredients-split{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start;}
.ingredients-img img{width:100%;border-radius:var(--vtgw-radius);}
.ingredients-list{display:flex;flex-direction:column;gap:0.85rem;}
.ingredient-card{background:var(--vtgw-color-white);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:1rem 1.25rem;display:flex;gap:0.85rem;align-items:flex-start;}
.ing-icon{font-size:1.5rem;flex-shrink:0;margin-top:0.1rem;}
.ingredient-card h3{font-size:0.95rem;font-weight:700;color:var(--vtgw-color-primary-dark);margin-bottom:0.2rem;}
.ingredient-card p{font-size:0.85rem;color:var(--vtgw-color-text-muted);}
.disclaimer-inline{font-size:0.82rem;color:var(--vtgw-color-text-muted);margin-top:2rem;font-style:italic;}

.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start;}
.about-text p{color:var(--vtgw-color-primary-light);font-size:0.95rem;margin-bottom:1rem;}
.about-text strong{color:var(--vtgw-color-white);}
.review-card{background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);border-radius:var(--vtgw-radius);padding:1.25rem;margin-bottom:1rem;}
.review-stars{color:var(--vtgw-color-gold);font-size:1.1rem;margin-bottom:0.5rem;}
.review-card p{color:var(--vtgw-color-white);font-size:0.9rem;font-style:italic;margin-bottom:0.5rem;}
.review-author{display:block;font-size:0.82rem;font-weight:600;color:var(--vtgw-color-primary-light);}
.review-disc{display:block;font-size:0.75rem;color:rgba(185,166,255,0.7);margin-top:0.25rem;}

.order-split{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:start;}
.order-product img{width:100%;border-radius:var(--vtgw-radius);margin-bottom:1.5rem;}
.price-block{background:var(--vtgw-color-white);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:1.25rem;display:flex;align-items:center;gap:1rem;margin-bottom:1.25rem;flex-wrap:wrap;}
.price-old{font-size:1.1rem;color:var(--vtgw-color-text-muted);text-decoration:line-through;}
.price-new{font-size:2rem;font-weight:900;color:var(--vtgw-color-primary-dark);}
.price-badge{background:var(--vtgw-color-primary);color:var(--vtgw-color-white);font-size:0.82rem;font-weight:700;padding:0.25rem 0.6rem;border-radius:9999px;}
.order-features{list-style:none;padding:0;}
.order-features li{font-size:0.92rem;color:var(--vtgw-color-text);padding:0.3rem 0;border-bottom:1px solid var(--vtgw-color-border);}
.order-features li:last-child{border-bottom:none;}
.order-form-wrap{background:var(--vtgw-color-white);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:2rem;box-shadow:var(--vtgw-shadow-hard);}
.uklx h3{font-size:1.3rem;font-weight:800;color:var(--vtgw-color-primary-dark);margin-bottom:1.5rem;}
.form-group{margin-bottom:1.1rem;}
.form-group label{display:block;font-size:0.88rem;font-weight:600;color:var(--vtgw-color-text);margin-bottom:0.4rem;}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea{width:100%;padding:0.7rem 1rem;border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius-sm);font-family:var(--vtgw-font);font-size:0.95rem;color:var(--vtgw-color-text);background:var(--vtgw-color-bg);transition:border-color var(--vtgw-transition);}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--vtgw-color-primary);}
.form-checkbox{display:flex;align-items:flex-start;gap:0.6rem;}
.form-checkbox input[type="checkbox"]{margin-top:0.2rem;flex-shrink:0;width:16px;height:16px;accent-color:var(--vtgw-color-primary);}
.form-checkbox label{font-size:0.82rem;color:var(--vtgw-color-text-muted);font-weight:400;}
.form-note{font-size:0.8rem;color:var(--vtgw-color-text-muted);text-align:center;margin-top:0.5rem;}

.breadcrumb-nav{background:var(--vtgw-color-white);border-bottom:1px solid var(--vtgw-color-border);padding:0.5rem 0;}
.breadcrumb{list-style:none;padding:0;display:flex;gap:0.5rem;align-items:center;font-size:0.82rem;color:var(--vtgw-color-text-muted);}
.breadcrumb li:not(:last-child)::after{content:'›';margin-left:0.5rem;}
.breadcrumb a{color:var(--vtgw-color-primary);text-decoration:none;}
.breadcrumb a:hover{text-decoration:underline;}

.section-legal{padding:4rem 0;}
.section-legal h1{font-size:2rem;font-weight:900;color:var(--vtgw-color-primary-dark);margin-bottom:0.5rem;}
.section-legal h2{font-size:1.15rem;font-weight:700;color:var(--vtgw-color-primary-dark);margin:2rem 0 0.5rem;}
.section-legal h3{font-size:1rem;font-weight:700;color:var(--vtgw-color-primary);margin:1.5rem 0 0.4rem;}
.section-legal p{font-size:0.93rem;color:var(--vtgw-color-text);margin-bottom:0.75rem;line-height:1.7;}
.section-legal ul{margin-bottom:0.75rem;}
.section-legal ul li{font-size:0.93rem;color:var(--vtgw-color-text);}

.cookie-table,.nutrients-table{width:100%;border-collapse:collapse;font-size:0.88rem;margin:1rem 0 1.5rem;border:1px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius-sm);overflow:hidden;}
.cookie-table th,.nutrients-table th{background:var(--vtgw-color-primary-dark);color:var(--vtgw-color-white);padding:0.65rem 0.85rem;text-align:left;font-weight:600;}
.cookie-table td,.nutrients-table td{padding:0.6rem 0.85rem;border-bottom:1px solid var(--vtgw-color-border);color:var(--vtgw-color-text);}
.cookie-table tr:last-child td,.nutrients-table tr:last-child td{border-bottom:none;}
.table-footnote{font-size:0.82rem;color:var(--vtgw-color-text-muted);font-style:italic;}

.nutrients-table-wrap{margin-bottom:2.5rem;}
.ingredient-details{display:flex;flex-direction:column;gap:1.25rem;}
.ingredient-detail-card{background:var(--vtgw-color-white);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:1.5rem;}
.ingredient-detail-card h3{font-size:1rem;font-weight:700;color:var(--vtgw-color-primary-dark);margin-bottom:0.5rem;}
.ingredient-detail-card p{font-size:0.9rem;color:var(--vtgw-color-text-muted);}

.method-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-bottom:2.5rem;}
.method-card{background:var(--vtgw-color-bg-tinted);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:1.5rem;}
.method-num{font-size:1.8rem;font-weight:900;color:var(--vtgw-color-primary);opacity:0.35;display:block;margin-bottom:0.5rem;}
.method-card h3{font-size:0.98rem;font-weight:700;color:var(--vtgw-color-primary-dark);margin-bottom:0.5rem;}
.method-card p{font-size:0.88rem;color:var(--vtgw-color-text-muted);}

.pros-cons-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;}
.pros-card,.cons-card{background:var(--vtgw-color-white);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:1.75rem;}
.pros-card{border-top:4px solid var(--vtgw-color-green);}
.cons-card{border-top:4px solid #e04a4a;}
.pros-card h3{color:var(--vtgw-color-green);font-size:1.05rem;font-weight:800;margin-bottom:1rem;}
.cons-card h3{color:#e04a4a;font-size:1.05rem;font-weight:800;margin-bottom:1rem;}
.pros-card li,.cons-card li{font-size:0.9rem;color:var(--vtgw-color-text);}

.tips-grid-full{display:flex;flex-direction:column;gap:1.5rem;margin:2.5rem 0;}
.tip-full-card{background:var(--vtgw-color-white);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:1.75rem;display:flex;gap:1.5rem;align-items:flex-start;}
.tip-num{font-size:2.5rem;font-weight:900;color:var(--vtgw-color-primary);opacity:0.25;flex-shrink:0;line-height:1;width:3rem;text-align:center;}
.tip-full-card h2{font-size:1.1rem;font-weight:700;color:var(--vtgw-color-primary-dark);margin-bottom:0.5rem;}
.tip-full-card p{font-size:0.9rem;color:var(--vtgw-color-text-muted);margin-bottom:0.5rem;}
.tip-full-card p:last-child{margin-bottom:0;}
.fruits-lifestyle-img{margin-top:2rem;text-align:center;}
.fruits-lifestyle-img img{max-width:480px;margin:0 auto;}
.ingredients-hero-img{margin-bottom:2.5rem;}
.lifestyle-hero-img{margin-bottom:2.5rem;}

.contact-split{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:start;}
.contact-card{background:var(--vtgw-color-bg-tinted);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:1.75rem;margin-bottom:1.5rem;}
.contact-card h2{font-size:1.1rem;font-weight:700;color:var(--vtgw-color-primary-dark);margin-bottom:1rem;}
.contact-card p{font-size:0.9rem;color:var(--vtgw-color-text);margin-bottom:0.5rem;}
.map-container{border-radius:var(--vtgw-radius);overflow:hidden;border:2px solid var(--vtgw-color-border);}
.map-container iframe{display:block;}
.contact-form-wrap{background:var(--vtgw-color-white);border:2px solid var(--vtgw-color-border);border-radius:var(--vtgw-radius);padding:2rem;box-shadow:var(--vtgw-shadow-hard);}
.udoz h2{font-size:1.3rem;font-weight:800;color:var(--vtgw-color-primary-dark);margin-bottom:1.5rem;}

.site-footer{background:var(--vtgw-color-dark);padding:3rem 0 1.5rem;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:2rem;margin-bottom:2.5rem;}
.footer-brand .site-logo{color:var(--vtgw-color-white);font-size:1.1rem;display:block;margin-bottom:0.75rem;}
.footer-brand p{font-size:0.85rem;color:rgba(185,166,255,0.8);margin-bottom:0.4rem;}
.footer-brand a{color:var(--vtgw-color-primary-light);}
.footer-nav h4,.footer-legal h4{font-size:0.85rem;font-weight:700;color:var(--vtgw-color-white);text-transform:uppercase;letter-spacing:0.06em;margin-bottom:0.85rem;}
.footer-nav ul,.footer-legal ul{list-style:none;padding:0;}
.footer-nav li,.footer-legal li{margin-bottom:0.4rem;}
.footer-nav a,.footer-legal a{font-size:0.85rem;color:rgba(185,166,255,0.8);text-decoration:none;transition:color var(--vtgw-transition);}
.footer-nav a:hover,.footer-legal a:hover{color:var(--vtgw-color-white);}
.footer-disclaimer{border-top:1px solid rgba(185,166,255,0.2);padding-top:1.5rem;}
.footer-disclaimer p{font-size:0.78rem;color:rgba(185,166,255,0.6);margin-bottom:0.5rem;line-height:1.6;}

@media(max-width:900px){
  .steps-grid,.howto-grid,.method-grid{grid-template-columns:1fr;}
  .ingredients-split,.about-grid,.order-split,.lifestyle-split{grid-template-columns:1fr;}
  .pros-cons-grid,.contact-split{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .hero-cover{flex-direction:column;}
  .hero-pack-img{width:180px;height:180px;}
}
@media(max-width:640px){
  .uoek{display:none;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:var(--vtgw-color-white);padding:1rem;border-bottom:2px solid var(--vtgw-color-border);z-index:200;}
  .uoek.is-open{display:flex;}
  .uxky{display:block;}
  .footer-grid{grid-template-columns:1fr;}
  .comparison-table{font-size:0.78rem;}
  .stat-band{flex-direction:row;justify-content:center;gap:1rem;}
  .cookie-banner__inner{flex-direction:column;align-items:flex-start;}
  .section-title{font-size:1.5rem;}
  .hero-h1{font-size:1.6rem;}
  .tip-full-card{flex-direction:column;gap:0.75rem;}
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ufwu{position:fixed !important;left:1rem;right:1rem;bottom:1rem;z-index:9000 !important;max-width:760px;margin-left:auto;margin-right:auto;background:#fff;color:#1a1a1a;border:1px solid rgba(0,0,0,.12);border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.18);padding:1rem 1.25rem;transform:translateY(220%);transition:transform .32s ease}
.ufwu.is-visible,.cookie-banner--visible,.ufwu.show,.ufwu.active{transform:none !important}
.ufwu a{color:inherit;text-decoration:underline}
.ufwu button{cursor:pointer}
.uyad{position:fixed !important;inset:0;z-index:9001 !important;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.5);padding:1rem}
.uyad.is-visible,.cookie-modal--visible,.uyad.show,.uyad.active{display:flex !important}
.uvrq,.uyad>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.urgq .uxkw,.urgq .ujuj,.urgq .ufje,.urgq .uzvx,.ufwh .uxkw,.ufwh .ujuj,.ufwh .ufje,.ufwh .uzvx{background:#fff !important;color:#1a1a1a !important}
.uxkw,.ujuj{color:#1a1a1a !important}
.uxkw label,.ujuj label,.uxkw p,.ujuj p,.uxkw .ufub,.uxkw span,.ujuj span,.uolm,.ufki,.ufje .uxyz,.ufje .uxyz *{color:#1a1a1a !important}
.uolm,.ufki{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uxkw .upkx{color:#1a1a1a !important}
.uxkw .upkx.is-sel{color:#fff !important}
.uklx .urbm{display:none}
.uklx .urbm.is-visible{display:block !important;color:#c0392b}
.uklx .uglt,.uklx [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uklx{color:#1a1a1a}
.urgq .uklx,.ufwh .uklx{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uwzh{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uwzh img{width:100%;height:100%;object-fit:cover}
.ubjj,.ufah{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ubjj img,.ufah img{width:100%;height:100%;object-fit:cover;display:block}
.ubjj img{opacity:.28}
.ufah img{opacity:.07}
*:has(> .ubjj),*:has(> .ufah){position:relative}
.urwu{position:absolute !important;left:50%;top:52%;transform:translate(-50%,-50%);width:52%;max-width:280px;text-align:center;pointer-events:none;color:#2c2c2c;background:rgba(250,246,238,.94);border-radius:10px;padding:1rem .8rem;box-shadow:0 2px 14px rgba(0,0,0,.16)}
.urwu .uuep{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.urwu .ukvg{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ugnz{margin:1.4rem auto;max-width:920px}
.ugnz img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.utmk{padding:3rem 0}
.ubji{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ubji img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uzvx{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uzqv{display:flex;overflow:hidden;gap:0 !important}
.uwol{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uguc{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;border:1px solid rgba(0,0,0,.18);background:#fff;cursor:pointer;z-index:2;font-size:1.1rem;line-height:1}
.uxgq{left:.5rem}.unwh{right:.5rem}
.ufje .uxyz{display:none}.ufje .uxyz.is-active{display:block}
.uxkw .uyhr{display:block !important}
.uxkw .ublj{display:flex;flex-wrap:wrap;gap:.5rem}
.uxkw .upkx{cursor:pointer}
