:root {
  --vctc-clr-primary: #6c1cd1;
  --vctc-clr-primary-dark: #2f016a;
  --vctc-clr-primary-light: #b9a6ff;
  --vctc-clr-accent: #e1d9ff;
  --vctc-clr-yellow: #fff8cb;
  --vctc-clr-black: #000000;
  --vctc-clr-white: #ffffff;
  --vctc-clr-bg: #f4f6fb;
  --vctc-clr-bg-card: #ffffff;
  --vctc-clr-text: #1a1a2e;
  --vctc-clr-text-muted: #5a5a7a;
  --vctc-clr-border: #d0cce8;
  --vctc-clr-dark-band: #2f016a;
  --vctc-clr-dark-band-2: #1a0040;
  --vctc-radius: 12px;
  --vctc-container: 960px;
  --vctc-font-head: 'Newsreader', Georgia, serif;
  --vctc-font-body: 'Inter', Arial, sans-serif;
  --vctc-space-xs: 0.5rem;
  --vctc-space-sm: 1rem;
  --vctc-space-md: 2rem;
  --vctc-space-lg: 3.5rem;
  --vctc-space-xl: 6rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vctc-font-body);
  background-color: var(--vctc-clr-bg);
  color: var(--vctc-clr-text);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--vctc-clr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--vctc-container);
  margin-inline: auto;
  padding-inline: var(--vctc-space-md);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--vctc-font-head);
  line-height: 1.2;
  color: var(--vctc-clr-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: var(--vctc-space-sm); }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: var(--vctc-space-xs); }
p { margin-bottom: var(--vctc-space-sm); color: var(--vctc-clr-text); }

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 2px solid var(--vctc-clr-primary-dark);
  border-radius: var(--vctc-radius);
  background: transparent;
  color: var(--vctc-clr-primary-dark);
  font-family: var(--vctc-font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.btn:hover { background: var(--vctc-clr-primary-dark); color: var(--vctc-clr-white); text-decoration: none; }
.btn-dark {
  border-color: var(--vctc-clr-dark-band);
  background: var(--vctc-clr-dark-band);
  color: var(--vctc-clr-white);
}
.btn-dark:hover { background: var(--vctc-clr-primary); border-color: var(--vctc-clr-primary); color: var(--vctc-clr-white); }
.btn-accent {
  border-color: var(--vctc-clr-primary);
  color: var(--vctc-clr-primary);
}
.btn-accent:hover { background: var(--vctc-clr-primary); color: var(--vctc-clr-white); }


site-header {
  display: block;
  background: var(--vctc-clr-white);
  border-bottom: 1px solid var(--vctc-clr-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-img { width: 36px; height: 36px; }
.logo-name {
  font-family: var(--vctc-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vctc-clr-primary-dark);
}
nav { display: flex; gap: 1.5rem; align-items: center; }
nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vctc-clr-text-muted);
  transition: color 0.2s;
}
nav a:hover { color: var(--vctc-clr-primary); text-decoration: none; }

.nav-cta { margin-left: 0.5rem; padding: 0.5rem 1.2rem; font-size: 0.9rem; }

.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--vctc-clr-primary-dark); border-radius: 2px;
  transition: transform 0.3s;
}

.section { padding-block: var(--vctc-space-lg); }
.uvqw {
  background: var(--vctc-clr-dark-band);
  color: var(--vctc-clr-white);
  padding-block: var(--vctc-space-lg);
}
.uvqw h2, .uvqw h3, .uvqw p { color: var(--vctc-clr-white); }
.uvqw .text-muted { color: var(--vctc-clr-accent); }

.uoqj {
  background: var(--vctc-clr-dark-band-2);
  color: var(--vctc-clr-white);
  padding-block: var(--vctc-space-lg);
}
.uoqj h2, .uoqj h3, .uoqj p { color: var(--vctc-clr-white); }

.section-light {
  background: var(--vctc-clr-white);
  padding-block: var(--vctc-space-lg);
}

.section-cream {
  background: var(--vctc-clr-yellow);
  padding-block: var(--vctc-space-lg);
}


.hero {
  position: relative;
  background: var(--vctc-clr-primary-dark);
  color: var(--vctc-clr-white);
  padding-block: var(--vctc-space-xl);
  overflow: hidden;
  text-align: center;
}
.uolu {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vctc-space-md);
}
.hero-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-big-stat {
  font-family: var(--vctc-font-head);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--vctc-clr-yellow);
}
.hero-stat-label {
  font-size: 1.1rem;
  color: var(--vctc-clr-accent);
  max-width: 520px;
  text-align: center;
  line-height: 1.5;
}
.hero-h1 {
  font-family: var(--vctc-font-head);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--vctc-clr-white);
  text-stroke: 2px var(--vctc-clr-white);
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--vctc-clr-accent);
  max-width: 600px;
  text-align: center;
}
.hero-pack-img {
  width: 200px; height: 200px;
  object-fit: contain;
  border-radius: var(--vctc-radius);
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
  margin-top: 0.5rem;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem; color: var(--vctc-clr-white); font-weight: 500;
}
.chip-icon { width: 16px; height: 16px; }


.dark-band-intro {
  background: var(--vctc-clr-dark-band);
  color: var(--vctc-clr-white);
  padding-block: var(--vctc-space-md);
  text-align: center;
}
.dark-band-intro p { color: var(--vctc-clr-accent); margin: 0; font-size: 1.05rem; }


.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
.bento-card {
  background: var(--vctc-clr-bg-card);
  border: 2px dashed var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bento-card.span-2 { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.bento-icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--vctc-clr-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.bento-stat-num {
  font-family: var(--vctc-font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--vctc-clr-primary);
  line-height: 1;
}
.bento-card h3 { font-size: 1rem; }


.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step-counter;
}
.step-card {
  background: var(--vctc-clr-bg-card);
  border: 2px dashed var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-md);
  position: relative;
}
.step-num {
  font-family: var(--vctc-font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--vctc-clr-primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-card h3 { color: var(--vctc-clr-primary-dark); }


.lifestyle-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.tip-card {
  background: var(--vctc-clr-bg-card);
  border: 2px dashed var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-md);
  display: flex; gap: 1rem; align-items: flex-start;
}
.tip-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--vctc-clr-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}


.ingredients-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--vctc-space-md);
}
.ingredients-table th {
  background: var(--vctc-clr-primary);
  color: var(--vctc-clr-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--vctc-font-body);
  font-size: 0.9rem;
  font-weight: 600;
}
.ingredients-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--vctc-clr-border);
  font-size: 0.95rem;
}
.ingredients-table tr:nth-child(even) td { background: var(--vctc-clr-bg); }
.ingredients-table tr:last-child td { border-bottom: none; }
.efsa-note {
  font-size: 0.82rem;
  color: var(--vctc-clr-text-muted);
  margin-top: 0.5rem;
}


.ingredients-spotlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: var(--vctc-space-md);
}
.spotlight-card {
  background: var(--vctc-clr-bg-card);
  border: 2px dashed var(--vctc-clr-primary-light);
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-sm) var(--vctc-space-md);
}
.spotlight-card h3 { color: var(--vctc-clr-primary); font-size: 1rem; }
.spotlight-card p { font-size: 0.9rem; margin-bottom: 0; color: var(--vctc-clr-text-muted); }


.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: var(--vctc-space-sm); }
.uzjb {
  border: 2px dashed var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  overflow: hidden;
}
.upze {
  width: 100%; text-align: left;
  background: var(--vctc-clr-bg-card);
  border: none; cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: var(--vctc-font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--vctc-clr-primary-dark);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-icon { font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; }
.uzjb.open .faq-icon { transform: rotate(45deg); }
.ubos {
  display: none;
  padding: 0 1.25rem 1rem;
  background: var(--vctc-clr-bg-card);
  font-size: 0.95rem; color: var(--vctc-clr-text);
}
.uzjb.open .ubos { display: block; }


.myths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: var(--vctc-space-sm);
}
.myth-card {
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-md);
  border: 2px dashed var(--vctc-clr-border);
  background: var(--vctc-clr-bg-card);
}
.myth-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.myth-label.myth { background: #ffe0e0; color: #a00; }
.myth-label.fact { background: #e0ffe4; color: #007a1e; }
.myth-card h3 { font-size: 0.95rem; }
.myth-card p { font-size: 0.9rem; margin-bottom: 0; color: var(--vctc-clr-text-muted); }


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: var(--vctc-space-sm);
}
.review-card {
  background: var(--vctc-clr-bg-card);
  border: 2px dashed var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-md);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.review-stars { display: flex; gap: 2px; }
.star { color: #f5b800; font-size: 1.1rem; }
.review-text { font-size: 0.95rem; color: var(--vctc-clr-text); font-style: italic; }
.review-author { font-size: 0.85rem; color: var(--vctc-clr-text-muted); font-weight: 600; }
.review-disclaimer {
  margin-top: var(--vctc-space-sm);
  font-size: 0.82rem;
  color: var(--vctc-clr-text-muted);
  border-left: 3px solid var(--vctc-clr-primary-light);
  padding-left: 0.8rem;
}


.author-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vctc-space-md);
  align-items: center;
}
.author-text h2 { color: var(--vctc-clr-white); }
.author-text p { color: var(--vctc-clr-accent); }
.author-initials {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--vctc-clr-primary-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vctc-font-head);
  font-size: 1.8rem; font-weight: 700;
  color: var(--vctc-clr-primary-dark);
  flex-shrink: 0;
}
.author-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-md);
  display: flex; gap: 1.25rem; align-items: flex-start;
}


.references-list {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: var(--vctc-space-sm);
}
.reference-item {
  border: 2px dashed var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  padding: 0.85rem 1.1rem;
  background: var(--vctc-clr-bg-card);
  font-size: 0.9rem;
}
.reference-item a { color: var(--vctc-clr-primary); }


.order-section {
  background: var(--vctc-clr-bg);
  padding-block: var(--vctc-space-lg);
}
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vctc-space-lg);
  align-items: start;
}
.order-product-block {
  display: flex; flex-direction: column; gap: var(--vctc-space-sm); align-items: center;
  text-align: center;
}
.order-pack-img {
  width: 200px; height: 200px; object-fit: contain;
  border-radius: var(--vctc-radius);
}
.price-block {
  margin-top: 0.5rem;
  display: flex; flex-direction: column; gap: 0.2rem; align-items: center;
}
.price-original {
  font-size: 1rem; color: var(--vctc-clr-text-muted); text-decoration: line-through;
}
.price-current {
  font-family: var(--vctc-font-head);
  font-size: 2.2rem; font-weight: 700; color: var(--vctc-clr-primary);
}
.price-note { font-size: 0.82rem; color: var(--vctc-clr-text-muted); }

.order-form-block { display: flex; flex-direction: column; gap: var(--vctc-space-sm); }
.order-form-block h2 { font-size: 1.5rem; }

.ulai {
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--vctc-clr-bg-card);
  border: 2px dashed var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-md);
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--vctc-clr-text); }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  font-family: var(--vctc-font-body);
  font-size: 0.95rem;
  background: var(--vctc-clr-bg);
  color: var(--vctc-clr-text);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vctc-clr-primary);
}
.honeypot-field { display: none; }
.consent-group {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.85rem; color: var(--vctc-clr-text-muted);
}
.consent-group input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.consent-group a { color: var(--vctc-clr-primary); }
.form-btn { align-self: flex-start; }


.lf-quiz-container {
  background: var(--vctc-clr-bg-card);
  border: 2px dashed var(--vctc-clr-primary-light);
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-md);
  max-width: 640px;
  margin-inline: auto;
}
.quiz-step { display: none; flex-direction: column; gap: 1rem; }
.quiz-step.active { display: flex; }
.quiz-step h3 { font-size: 1.15rem; color: var(--vctc-clr-primary-dark); }
.quiz-options { display: flex; flex-direction: column; gap: 0.6rem; }
.quiz-option {
  display: block;
  cursor: pointer;
  padding: 0.7rem 1rem;
  border: 2px dashed var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-option:hover, .quiz-option.selected {
  border-color: var(--vctc-clr-primary);
  background: var(--vctc-clr-accent);
}
.quiz-option input { display: none; }
.quiz-nav { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.quiz-progress { font-size: 0.82rem; color: var(--vctc-clr-text-muted); margin-bottom: 0.5rem; }
.quiz-result {
  display: none; flex-direction: column; gap: 0.75rem;
  padding: var(--vctc-space-sm);
  background: var(--vctc-clr-accent);
  border-radius: var(--vctc-radius);
  text-align: center;
}
.quiz-result.active { display: flex; }
.quiz-result h3 { color: var(--vctc-clr-primary-dark); }


.footer {
  background: var(--vctc-clr-dark-band-2);
  color: var(--vctc-clr-accent);
  padding-block: var(--vctc-space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--vctc-space-md);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-logo-name {
  font-family: var(--vctc-font-head); font-size: 1.1rem; font-weight: 700; color: var(--vctc-clr-white);
}
.footer-tagline { font-size: 0.85rem; color: var(--vctc-clr-accent); }
.footer-col h4 {
  font-family: var(--vctc-font-body);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vctc-clr-primary-light);
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--vctc-clr-accent); }
.footer-col ul li a:hover { color: var(--vctc-clr-white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: var(--vctc-space-md);
  padding-top: var(--vctc-space-sm);
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: space-between; align-items: flex-start;
  font-size: 0.78rem; color: var(--vctc-clr-text-muted);
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-legal-links a { font-size: 0.78rem; color: var(--vctc-clr-primary-light); }
.footer-disclaimer {
  width: 100%;
  font-size: 0.78rem;
  color: var(--vctc-clr-text-muted);
  margin-top: var(--vctc-space-xs);
  line-height: 1.5;
}


.uvfc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vctc-clr-dark-band-2);
  color: var(--vctc-clr-accent);
  z-index: 9999;
  padding: 1.25rem var(--vctc-space-md);
  display: none;
  border-top: 2px solid var(--vctc-clr-primary);
}
.uvfc.is-visible { display: block; }
.cookie-inner {
  max-width: var(--vctc-container);
  margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.urpx { font-size: 0.88rem; flex: 1 1 300px; line-height: 1.5; }
.urpx a { color: var(--vctc-clr-primary-light); }
.uwmm { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.cookie-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--vctc-radius);
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--vctc-clr-primary-light);
  background: transparent; color: var(--vctc-clr-primary-light);
  transition: background 0.2s, color 0.2s;
}
.cookie-btn:hover { background: var(--vctc-clr-primary-light); color: var(--vctc-clr-dark-band-2); }
.cookie-btn-accept {
  background: var(--vctc-clr-primary);
  border-color: var(--vctc-clr-primary);
  color: var(--vctc-clr-white);
}
.cookie-btn-accept:hover { background: var(--vctc-clr-primary-dark); border-color: var(--vctc-clr-primary-dark); }

.cookie-settings-panel {
  display: none;
  flex-direction: column; gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--vctc-clr-primary-light);
  border-radius: var(--vctc-radius);
}
.cookie-settings-panel.is-visible { display: flex; }
.cookie-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.88rem; gap: 1rem;
}
.cookie-toggle-row span { color: var(--vctc-clr-accent); }


.breadcrumb {
  font-size: 0.82rem;
  color: var(--vctc-clr-text-muted);
  padding-block: 0.75rem;
  display: flex; gap: 0.4rem; align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--vctc-clr-primary); }
.breadcrumb-sep { color: var(--vctc-clr-border); }

.page-hero {
  background: var(--vctc-clr-primary-dark);
  color: var(--vctc-clr-white);
  padding-block: var(--vctc-space-lg);
  text-align: center;
}
.page-hero h1 { color: var(--vctc-clr-white); font-size: clamp(1.8rem, 4vw, 2.5rem); }
.page-hero p { color: var(--vctc-clr-accent); max-width: 600px; margin-inline: auto; }

.prose-section {
  background: var(--vctc-clr-white);
  padding-block: var(--vctc-space-lg);
}
.prose-section h2 { margin-top: var(--vctc-space-md); margin-bottom: var(--vctc-space-xs); }
.prose-section h3 { margin-top: var(--vctc-space-sm); margin-bottom: var(--vctc-space-xs); color: var(--vctc-clr-primary-dark); }
.prose-section ul, .prose-section ol {
  margin: var(--vctc-space-xs) 0 var(--vctc-space-sm) 1.5rem;
}
.prose-section li { margin-bottom: 0.3rem; }
.prose-section table { width: 100%; border-collapse: collapse; margin-block: var(--vctc-space-sm); }
.prose-section th { background: var(--vctc-clr-primary); color: var(--vctc-clr-white); padding: 0.6rem 0.8rem; text-align: left; font-size: 0.9rem; }
.prose-section td { padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--vctc-clr-border); font-size: 0.9rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vctc-space-lg);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info p { margin-bottom: 0; }
.map-container { border-radius: var(--vctc-radius); overflow: hidden; border: 2px dashed var(--vctc-clr-border); }
.urpt {
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--vctc-clr-bg-card);
  border: 2px dashed var(--vctc-clr-border);
  border-radius: var(--vctc-radius);
  padding: var(--vctc-space-md);
}

.thank-you-hero {
  text-align: center;
  padding-block: var(--vctc-space-xl);
  background: var(--vctc-clr-primary-dark);
  color: var(--vctc-clr-white);
}
.thank-you-hero h1 { color: var(--vctc-clr-yellow); margin-bottom: var(--vctc-space-sm); }
.thank-you-hero p { color: var(--vctc-clr-accent); }
.thank-you-icon { font-size: 4rem; margin-bottom: var(--vctc-space-sm); }

@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--vctc-clr-white); padding: 1rem var(--vctc-space-md); border-top: 1px solid var(--vctc-clr-border); gap: 1rem; z-index: 200; }
  nav.open { display: flex; }
  .burger { display: flex; }
  .header-inner { position: relative; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.span-2 { grid-column: span 2; }
  .bento-card.tall { grid-row: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .lifestyle-tips-grid { grid-template-columns: 1fr; }
  .ingredients-spotlight { grid-template-columns: 1fr; }
  .myths-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .author-band { grid-template-columns: 1fr; }
  .order-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-big-stat { font-size: clamp(4rem, 20vw, 6rem); }
}

@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  .container { padding-inline: 1rem; }
  .hero { padding-block: var(--vctc-space-lg); }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uvfc{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}
.uvfc.is-visible,.cookie-banner--visible,.uvfc.show,.uvfc.active{transform:none !important}
.uvfc a{color:inherit;text-decoration:underline}
.uvfc button{cursor:pointer}
.ubvd{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}
.ubvd.is-visible,.cookie-modal--visible,.ubvd.show,.ubvd.active{display:flex !important}
.upth,.ubvd>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uvqw .ufbn,.uvqw .ungn,.uvqw .uvru,.uvqw .urrd,.uoqj .ufbn,.uoqj .ungn,.uoqj .uvru,.uoqj .urrd{background:#fff !important;color:#1a1a1a !important}
.ufbn,.ungn{color:#1a1a1a !important}
.ufbn label,.ungn label,.ufbn p,.ungn p,.ufbn .uano,.ufbn span,.ungn span,.uchd,.uhdx,.uvru .uoxl,.uvru .uoxl *{color:#1a1a1a !important}
.uchd,.uhdx{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ufbn .udgo{color:#1a1a1a !important}
.ufbn .udgo.is-sel{color:#fff !important}
.ulai .ukgw{display:none}
.ulai .ukgw.is-visible{display:block !important;color:#c0392b}
.ulai .uzui,.ulai [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ulai{color:#1a1a1a}
.uvqw .ulai,.uoqj .ulai{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ukqn{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ukqn img{width:100%;height:100%;object-fit:cover}
.uolu,.uope{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uolu img,.uope img{width:100%;height:100%;object-fit:cover;display:block}
.uolu img{opacity:.28}
.uope img{opacity:.07}
*:has(> .uolu),*:has(> .uope){position:relative}
.ujex{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)}
.ujex .uuhd{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ujex .uiwu{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uxlx{margin:1.4rem auto;max-width:920px}
.uxlx img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uggp{padding:3rem 0}
.ukwg{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ukwg img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.urrd{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.upxm{display:flex;overflow:hidden;gap:0 !important}
.urik{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.unqt{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}
.uyex{left:.5rem}.utjw{right:.5rem}
.uvru .uoxl{display:none}.uvru .uoxl.is-active{display:block}
.ufbn .uqil{display:block !important}
.ufbn .uoqi{display:flex;flex-wrap:wrap;gap:.5rem}
.ufbn .udgo{cursor:pointer}
