:root {
  --vohd-clr-primary: #7424d9;
  --vohd-clr-primary-dark: #3a0172;
  --vohd-clr-primary-light: #e8e0ff;
  --vohd-clr-accent: #d98c24;
  --vohd-clr-bg: #fdf9f2;
  --vohd-clr-bg-cream: #faf5ec;
  --vohd-clr-dark: #1a0a33;
  --vohd-clr-dark-band: #18062e;
  --vohd-clr-text: #2c1a4a;
  --vohd-clr-text-muted: #6b5b80;
  --vohd-clr-border: #d4c8f0;
  --vohd-clr-dashed: #b8a8e0;
  --vohd-clr-white: #ffffff;
  --vohd-clr-star: #f0b429;
  --vohd-radius: 18px;
  --vohd-radius-sm: 10px;
  --vohd-radius-xs: 6px;
  --vohd-container-wide: 1320px;
  --vohd-container-narrow: 760px;
  --vohd-space-xs: 0.5rem;
  --vohd-space-sm: 1rem;
  --vohd-space-md: 1.75rem;
  --vohd-space-lg: 3rem;
  --vohd-space-xl: 5rem;
  --vohd-space-2xl: 8rem;
  --vohd-font-head: 'Outfit', sans-serif;
  --vohd-font-body: 'Outfit', sans-serif;
  --vohd-transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vohd-clr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 var(--vohd-space-md); }
.container--wide { max-width: var(--vohd-container-wide); margin: 0 auto; padding: 0 var(--vohd-space-md); }
.container--narrow { max-width: var(--vohd-container-narrow); margin: 0 auto; padding: 0 var(--vohd-space-md); }

.accent-word { color: var(--vohd-clr-primary); font-style: normal; }

.section-title {
  font-family: var(--vohd-font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--vohd-clr-dark);
  line-height: 1.2;
  margin-bottom: var(--vohd-space-sm);
}
.section-title--left { text-align: left; }
.section-title--light { color: var(--vohd-clr-white); }
.section-subtitle { color: var(--vohd-clr-text-muted); max-width: 640px; margin: 0 auto var(--vohd-space-lg); text-align: center; }
.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vohd-clr-primary);
  margin-bottom: var(--vohd-space-xs);
}
.section-eyebrow--light { color: var(--vohd-clr-primary-light); }

section { padding: var(--vohd-space-xl) 0; }
section .section-title { text-align: center; }

.unak {
  background: var(--vohd-clr-dark-band);
  color: var(--vohd-clr-white);
}
.unak .section-title { color: var(--vohd-clr-white); }
.unak .section-subtitle { color: rgba(255,255,255,0.7); }

.btn {
  display: inline-block;
  font-family: var(--vohd-font-head);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--vohd-radius-sm);
  cursor: pointer;
  transition: var(--vohd-transition);
  text-decoration: none;
  border: 2px solid transparent;
}
.btn--outline-dark {
  background: transparent;
  border-color: var(--vohd-clr-primary);
  color: var(--vohd-clr-primary);
}
.btn--outline-dark:hover {
  background: var(--vohd-clr-primary);
  color: var(--vohd-clr-white);
  text-decoration: none;
}
.btn--outline-light {
  background: transparent;
  border-color: var(--vohd-clr-white);
  color: var(--vohd-clr-white);
}
.btn--outline-light:hover {
  background: var(--vohd-clr-white);
  color: var(--vohd-clr-primary-dark);
  text-decoration: none;
}
.btn--outline-header {
  background: transparent;
  border: 2px solid var(--vohd-clr-primary);
  color: var(--vohd-clr-primary);
  padding: 0.5rem 1.25rem;
  font-size: 0.88rem;
  border-radius: var(--vohd-radius-sm);
}
.btn--outline-header:hover {
  background: var(--vohd-clr-primary);
  color: var(--vohd-clr-white);
  text-decoration: none;
}

.ukih {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,249,242,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--vohd-clr-border);
  padding: 0.9rem 0;
}
.ukih .container--wide {
  display: flex;
  align-items: center;
  gap: var(--vohd-space-md);
}
.site-logo {
  font-family: var(--vohd-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--vohd-clr-primary-dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo--footer { color: var(--vohd-clr-white); }
.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  gap: var(--vohd-space-md);
  list-style: none;
}
.site-nav__list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--vohd-clr-text);
  transition: color var(--vohd-transition);
}
.site-nav__list a:hover, .site-nav__list a[aria-current="page"] {
  color: var(--vohd-clr-primary);
  text-decoration: none;
}
.ujmy {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.ujmy span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vohd-clr-text);
  border-radius: 2px;
  transition: var(--vohd-transition);
}

.breadcrumb { padding: 0.75rem 0; background: var(--vohd-clr-bg-cream); border-bottom: 1px solid var(--vohd-clr-border); }
.breadcrumb__list { display: flex; gap: 0.5rem; list-style: none; font-size: 0.82rem; }
.breadcrumb__item + .breadcrumb__item::before { content: '/'; color: var(--vohd-clr-text-muted); margin-right: 0.5rem; }
.breadcrumb__item a { color: var(--vohd-clr-text-muted); }
.breadcrumb__item--current { color: var(--vohd-clr-text); font-weight: 500; }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vohd-clr-dark-band);
}
.hero__bg-wrap { position: absolute; inset: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(24,6,46,0.78) 0%, rgba(24,6,46,0.45) 55%, rgba(24,6,46,0.2) 100%);
}
.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--vohd-space-xl);
  padding-top: var(--vohd-space-xl);
  padding-bottom: var(--vohd-space-xl);
}
.hero__card {
  background: rgba(255,255,255,0.96);
  border-radius: var(--vohd-radius);
  padding: var(--vohd-space-lg) var(--vohd-space-lg);
  max-width: 560px;
  flex: 1 1 auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vohd-clr-primary);
  margin-bottom: 0.75rem;
}
.hero__h1 {
  font-family: var(--vohd-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--vohd-clr-dark);
  line-height: 1.15;
  margin-bottom: var(--vohd-space-sm);
}
.hero__lead {
  font-size: 1.05rem;
  color: var(--vohd-clr-text-muted);
  margin-bottom: var(--vohd-space-md);
  line-height: 1.65;
}
.hero__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--vohd-space-md);
}
.hero__chip {
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--vohd-clr-primary-light);
  color: var(--vohd-clr-primary-dark);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
}
.hero__cta { font-size: 1rem; }
.hero__pack-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__pack {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.35));
}

.stat-band { padding: var(--vohd-space-lg) 0; }
.stat-band__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vohd-space-md);
  list-style: none;
  text-align: center;
}
.stat-band__num {
  display: block;
  font-family: var(--vohd-font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--vohd-clr-primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-band__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.card--dashed {
  border: 2px dashed var(--vohd-clr-dashed);
  border-radius: var(--vohd-radius);
  padding: var(--vohd-space-md);
  background: var(--vohd-clr-white);
}
.card--dashed-light {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
}

.checklist-steps { background: var(--vohd-clr-bg-cream); }
.checklist-steps__list {
  display: flex;
  flex-direction: column;
  gap: var(--vohd-space-md);
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}
.checklist-steps__card {
  display: flex;
  gap: var(--vohd-space-md);
  align-items: flex-start;
}
.checklist-steps__num {
  font-family: var(--vohd-font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vohd-clr-primary);
  flex-shrink: 0;
  min-width: 3rem;
  line-height: 1;
  padding-top: 0.1rem;
}
.checklist-steps__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vohd-clr-dark);
  margin-bottom: 0.35rem;
}
.checklist-steps__body p { color: var(--vohd-clr-text-muted); font-size: 0.95rem; }

.myths-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vohd-space-md);
  margin-top: var(--vohd-space-md);
}
.myths-facts__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--vohd-radius-xs);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.4rem;
}
.myths-facts__label--myth { background: #ffe0e0; color: #b00; }
.myths-facts__label--fact { background: #e0f0e0; color: #1a6b1a; margin-top: var(--vohd-space-sm); }
.myths-facts__claim { font-weight: 600; color: var(--vohd-clr-dark); font-size: 0.95rem; margin-bottom: 0; }
.myths-facts__answer { color: var(--vohd-clr-text-muted); font-size: 0.92rem; }

.about-brand { background: var(--vohd-clr-bg); }
.about-brand__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vohd-space-xl);
  align-items: center;
}
.about-brand__image-wrap img { border-radius: var(--vohd-radius); width: 100%; }
.about-brand__text .section-title { margin-bottom: var(--vohd-space-sm); }
.about-brand__text p { color: var(--vohd-clr-text-muted); margin-bottom: var(--vohd-space-sm); font-size: 0.97rem; }
.about-brand__bio {
  display: flex;
  align-items: center;
  gap: var(--vohd-space-sm);
  margin-top: var(--vohd-space-md);
  padding-top: var(--vohd-space-sm);
  border-top: 1px solid var(--vohd-clr-border);
}
.about-brand__bio-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vohd-clr-primary-light);
  color: var(--vohd-clr-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.about-brand__bio strong { display: block; font-size: 0.95rem; color: var(--vohd-clr-dark); }
.about-brand__bio span { font-size: 0.82rem; color: var(--vohd-clr-text-muted); }

.ingredients-spotlight { background: var(--vohd-clr-bg-cream); }
.ingredients-spotlight__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vohd-space-md);
  margin-bottom: var(--vohd-space-lg);
}
.ingredients-spotlight__images img { border-radius: var(--vohd-radius); width: 100%; }
.ingredients-table-wrap { overflow-x: auto; }
.ingredients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.ingredients-table th {
  background: var(--vohd-clr-primary-dark);
  color: var(--vohd-clr-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.ingredients-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--vohd-clr-border);
  color: var(--vohd-clr-text);
  vertical-align: top;
}
.ingredients-table tr:nth-child(even) td { background: rgba(116,36,217,0.04); }
.ingredients-disclaimer {
  margin-top: var(--vohd-space-md);
  font-size: 0.8rem;
  color: var(--vohd-clr-text-muted);
  border-left: 3px solid var(--vohd-clr-dashed);
  padding-left: var(--vohd-space-sm);
}

.comparison-section { background: var(--vohd-clr-bg); }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-top: var(--vohd-space-md);
}
.comparison-table th {
  background: var(--vohd-clr-bg-cream);
  color: var(--vohd-clr-dark);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--vohd-clr-border);
}
.comparison-table__highlight { background: var(--vohd-clr-primary-light); }
.comparison-table__highlight th { background: var(--vohd-clr-primary); color: var(--vohd-clr-white); }
.comparison-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--vohd-clr-border); vertical-align: middle; }
.comparison-table tfoot td { background: var(--vohd-clr-bg-cream); font-size: 0.88rem; color: var(--vohd-clr-text-muted); padding: var(--vohd-space-sm) var(--vohd-space-sm); border: none; border-top: 2px solid var(--vohd-clr-border); }
.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
}
.tag--green { background: #e0f0e0; color: #1a5e1a; }
.tag--red { background: #ffe0e0; color: #9b0000; }
.tag--neutral { background: var(--vohd-clr-primary-light); color: var(--vohd-clr-primary-dark); }

.lifestyle-tips { padding: var(--vohd-space-xl) 0; }
.lifestyle-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--vohd-space-md);
  margin-bottom: var(--vohd-space-lg);
}
.lifestyle-tip { border-radius: var(--vohd-radius); padding: var(--vohd-space-md); }
.lifestyle-tip__icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; opacity: 0.5; }
.lifestyle-tip h3 { font-size: 1rem; font-weight: 700; color: var(--vohd-clr-white); margin-bottom: 0.4rem; }
.lifestyle-tip p { font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.lifestyle-tips__banner-img { width: 100%; border-radius: var(--vohd-radius); margin-top: var(--vohd-space-md); max-height: 420px; object-fit: cover; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vohd-space-md);
  margin-top: var(--vohd-space-md);
}
.reviews-grid--full { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.review-card { display: flex; flex-direction: column; gap: 0.75rem; }
.review-card__header { display: flex; align-items: center; gap: var(--vohd-space-sm); }
.review-card__header img { width: 80px; height: auto; }
.review-card__header strong { display: block; font-size: 0.95rem; color: var(--vohd-clr-dark); }
.review-card__header span { font-size: 0.8rem; color: var(--vohd-clr-text-muted); }
.review-card p { font-size: 0.92rem; color: var(--vohd-clr-text-muted); font-style: italic; flex: 1; }
.review-card__disclosure { font-size: 0.75rem; color: var(--vohd-clr-text-muted); }
.reviews-disclaimer {
  margin-top: var(--vohd-space-lg);
  font-size: 0.82rem;
  color: var(--vohd-clr-text-muted);
  border-left: 3px solid var(--vohd-clr-dashed);
  padding-left: var(--vohd-space-sm);
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: var(--vohd-space-md);
  margin-bottom: var(--vohd-space-lg);
}
.reviews-summary__score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vohd-clr-primary-dark);
  display: block;
}
.reviews-summary__count { font-size: 0.9rem; color: var(--vohd-clr-text-muted); display: block; }

.calculator-section { background: var(--vohd-clr-bg-cream); }
.uado { background: var(--vohd-clr-white); border: 2px dashed var(--vohd-clr-dashed); border-radius: var(--vohd-radius); padding: var(--vohd-space-lg); margin-top: var(--vohd-space-md); }
.lf-calc__fields { display: flex; flex-direction: column; gap: var(--vohd-space-sm); margin-bottom: var(--vohd-space-md); }
.lf-calc__field { display: flex; flex-direction: column; gap: 0.4rem; }
.lf-calc__field label { font-weight: 600; font-size: 0.92rem; color: var(--vohd-clr-dark); }
.lf-calc__input {
  font-family: var(--vohd-font-body);
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  border: 2px solid var(--vohd-clr-border);
  border-radius: var(--vohd-radius-sm);
  background: var(--vohd-clr-bg);
  color: var(--vohd-clr-text);
  width: 100%;
  transition: border-color var(--vohd-transition);
}
.lf-calc__input:focus { outline: none; border-color: var(--vohd-clr-primary); }
.lf-calc__btn { margin-top: 0.5rem; }
.lf-calc__result {
  margin-top: var(--vohd-space-md);
  padding: var(--vohd-space-sm) var(--vohd-space-md);
  background: var(--vohd-clr-primary-light);
  border-radius: var(--vohd-radius-sm);
  font-weight: 600;
  color: var(--vohd-clr-primary-dark);
  font-size: 1.1rem;
  display: none;
}
.lf-calc__result.is-visible { display: block; }

.order-section { padding: var(--vohd-space-xl) 0; }
.order-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vohd-space-xl);
  align-items: start;
}
.order-section__info .section-eyebrow { margin-bottom: 0.5rem; }
.order-section__benefits {
  list-style: none;
  margin: var(--vohd-space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.order-section__benefits li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.4rem;
  position: relative;
}
.order-section__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vohd-clr-primary-light);
  font-weight: 700;
}
.order-section__price {
  margin: var(--vohd-space-md) 0;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.order-section__price-was { font-size: 1.1rem; color: rgba(255,255,255,0.45); text-decoration: line-through; }
.order-section__price-now { font-size: 2.2rem; font-weight: 800; color: var(--vohd-clr-white); }
.order-section__price-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.order-section__pack { border-radius: var(--vohd-radius-sm); margin-top: var(--vohd-space-md); }

.uorp {
  background: var(--vohd-clr-white);
  border-radius: var(--vohd-radius);
  padding: var(--vohd-space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--vohd-space-sm);
}
.order-form__title { font-size: 1.3rem; font-weight: 700; color: var(--vohd-clr-dark); margin-bottom: 0.5rem; }
.order-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.order-form__field label { font-weight: 600; font-size: 0.88rem; color: var(--vohd-clr-text); }
.order-form__field input,
.order-form__field textarea {
  font-family: var(--vohd-font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--vohd-clr-border);
  border-radius: var(--vohd-radius-sm);
  background: var(--vohd-clr-bg);
  color: var(--vohd-clr-text);
  transition: border-color var(--vohd-transition);
}
.order-form__field input:focus,
.order-form__field textarea:focus { outline: none; border-color: var(--vohd-clr-primary); }
.order-form__field--hidden { display: none !important; }
.order-form__consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.82rem; color: var(--vohd-clr-text-muted); }
.order-form__consent input[type="checkbox"] { margin-top: 0.15rem; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--vohd-clr-primary); }
.order-form__submit { align-self: flex-start; }
.order-form__note { font-size: 0.78rem; color: var(--vohd-clr-text-muted); margin-top: 0.25rem; }

.faq-section { background: var(--vohd-clr-bg-cream); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: var(--vohd-space-md); }
.ukqk {
  border-bottom: 1px solid var(--vohd-clr-border);
}
.faq-item__q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vohd-clr-dark);
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--vohd-clr-primary);
  flex-shrink: 0;
  transition: transform var(--vohd-transition);
}
details[open] .faq-item__q::after { content: '−'; }
.faq-item__a {
  padding: 0 0 var(--vohd-space-sm);
  color: var(--vohd-clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item__a p + p { margin-top: 0.5rem; }

.diagram-section { background: var(--vohd-clr-bg); }
.diagram-section__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--vohd-space-xl);
  align-items: center;
}
.diagram-section__img { width: 280px; height: 280px; object-fit: contain; border-radius: 50%; background: var(--vohd-clr-primary-light); padding: 1rem; }
.diagram-section__text h2 { font-size: 1.6rem; font-weight: 700; color: var(--vohd-clr-dark); margin-bottom: var(--vohd-space-sm); }
.diagram-section__text p { color: var(--vohd-clr-text-muted); margin-bottom: var(--vohd-space-sm); font-size: 0.96rem; }

.site-footer { padding: var(--vohd-space-xl) 0 var(--vohd-space-lg); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--vohd-space-xl);
  padding-bottom: var(--vohd-space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--vohd-space-lg);
}
.site-footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.62); margin-top: 0.75rem; line-height: 1.6; }
.site-footer__brand p a { color: rgba(255,255,255,0.75); }
.site-footer__abn { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.site-footer__nav h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.site-footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.site-footer__nav a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color var(--vohd-transition); }
.site-footer__nav a:hover { color: var(--vohd-clr-white); text-decoration: none; }
.site-footer__disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.site-footer__disclaimer strong { color: rgba(255,255,255,0.6); }
.site-footer__copy { margin-top: 0.5rem; }

.page-hero--simple { padding: var(--vohd-space-xl) 0 var(--vohd-space-lg); background: var(--vohd-clr-bg-cream); text-align: center; }
.page-hero--simple h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--vohd-clr-dark); line-height: 1.2; margin-bottom: var(--vohd-space-sm); max-width: 700px; margin-left: auto; margin-right: auto; }
.page-hero__lead { font-size: 1.05rem; color: var(--vohd-clr-text-muted); max-width: 640px; margin: 0 auto; }

.legal-page { padding: var(--vohd-space-xl) 0; }
.legal-page h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--vohd-clr-dark); margin-bottom: 0.5rem; }
.legal-meta { font-size: 0.82rem; color: var(--vohd-clr-text-muted); margin-bottom: var(--vohd-space-lg); }
.legal-page h2 { font-size: 1.2rem; font-weight: 700; color: var(--vohd-clr-dark); margin-top: var(--vohd-space-lg); margin-bottom: 0.5rem; }
.legal-page h3 { font-size: 1rem; font-weight: 700; color: var(--vohd-clr-dark); margin-top: var(--vohd-space-md); margin-bottom: 0.4rem; }
.legal-page p { color: var(--vohd-clr-text-muted); margin-bottom: 0.75rem; font-size: 0.95rem; }
.legal-page ul { color: var(--vohd-clr-text-muted); margin: 0.5rem 0 0.75rem 1.5rem; font-size: 0.95rem; }
.legal-page ul li { margin-bottom: 0.3rem; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 0.75rem 0 var(--vohd-space-md); }
.legal-table th { background: var(--vohd-clr-primary-light); color: var(--vohd-clr-primary-dark); padding: 0.6rem 0.75rem; text-align: left; font-weight: 600; }
.legal-table td { padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--vohd-clr-border); color: var(--vohd-clr-text-muted); }

.ingredient-detail { padding: var(--vohd-space-xl) 0; }
.ingredient-detail__grid { display: flex; flex-direction: column; gap: var(--vohd-space-xl); }
.ingredient-detail__item { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vohd-space-xl); align-items: start; }
.ingredient-detail__item--reverse { grid-template-areas: "text img"; }
.ingredient-detail__item--reverse img { grid-area: img; }
.ingredient-detail__item--reverse .ingredient-detail__text { grid-area: text; }
.ingredient-detail__item img { border-radius: var(--vohd-radius); width: 100%; }
.ingredient-detail__text h2 { font-size: 1.4rem; font-weight: 700; color: var(--vohd-clr-dark); margin-bottom: 0.3rem; margin-top: 0; }
.ingredient-detail__origin { font-size: 0.8rem; color: var(--vohd-clr-primary); font-weight: 600; margin-bottom: 0.75rem; display: block; }
.ingredient-detail__text p { color: var(--vohd-clr-text-muted); font-size: 0.95rem; margin-bottom: 0.65rem; }

.how-steps { padding: var(--vohd-space-xl) 0; }
.how-steps__editorial { max-width: 820px; margin: 0 auto; }
.how-steps__hero-img { width: 100%; border-radius: var(--vohd-radius); margin-bottom: var(--vohd-space-lg); }
.how-steps__editorial h2 { font-size: 1.5rem; font-weight: 700; color: var(--vohd-clr-dark); margin: var(--vohd-space-lg) 0 0.5rem; }
.how-steps__editorial p { color: var(--vohd-clr-text-muted); font-size: 0.97rem; margin-bottom: var(--vohd-space-sm); }
.styled-list { margin: 0.5rem 0 var(--vohd-space-sm) 1.5rem; }
.styled-list li { margin-bottom: 0.4rem; color: var(--vohd-clr-text-muted); font-size: 0.95rem; }

.faq-page { padding: var(--vohd-space-lg) 0 var(--vohd-space-xl); }

.reviews-page { padding: var(--vohd-space-lg) 0 var(--vohd-space-xl); }

.contact-section { padding: var(--vohd-space-xl) 0; }
.contact-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vohd-space-xl); align-items: start; margin-bottom: var(--vohd-space-lg); }
.contact-section__info h2 { font-size: 1.5rem; font-weight: 700; color: var(--vohd-clr-dark); margin-bottom: var(--vohd-space-md); }
.contact-dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.5rem; font-size: 0.92rem; }
.contact-dl dt { font-weight: 600; color: var(--vohd-clr-dark); }
.contact-dl dd { color: var(--vohd-clr-text-muted); }
.contact-section__response { margin-top: var(--vohd-space-md); font-size: 0.88rem; color: var(--vohd-clr-text-muted); }
.uxdh { display: flex; flex-direction: column; gap: var(--vohd-space-sm); }
.uxdh h3 { font-size: 1.2rem; font-weight: 700; color: var(--vohd-clr-dark); margin-bottom: 0.25rem; }
.contact-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form__field label { font-weight: 600; font-size: 0.88rem; color: var(--vohd-clr-text); }
.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--vohd-font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--vohd-clr-border);
  border-radius: var(--vohd-radius-sm);
  background: var(--vohd-clr-bg);
  color: var(--vohd-clr-text);
  transition: border-color var(--vohd-transition);
}
.contact-form__field input:focus,
.contact-form__field textarea:focus { outline: none; border-color: var(--vohd-clr-primary); }
.contact-form__field--hidden { display: none !important; }
.contact-form__consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.82rem; color: var(--vohd-clr-text-muted); }
.contact-form__consent input[type="checkbox"] { margin-top: 0.15rem; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--vohd-clr-primary); }
.map-container { border-radius: var(--vohd-radius); overflow: hidden; }
.map-container iframe { border-radius: var(--vohd-radius); display: block; }

.thankyou-main { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: var(--vohd-space-xl) 0; }
.thankyou-wrap { text-align: center; }
.thankyou-icon { font-size: 3rem; color: var(--vohd-clr-primary); margin-bottom: var(--vohd-space-sm); }
.thankyou-wrap h1 { font-size: 2rem; font-weight: 800; color: var(--vohd-clr-dark); margin-bottom: var(--vohd-space-sm); }
.thankyou-wrap p { color: var(--vohd-clr-text-muted); margin-bottom: 0.75rem; }
.thankyou-wrap .btn { margin-top: var(--vohd-space-md); }

.notfound-main { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: var(--vohd-space-xl) 0; }
.notfound-wrap { text-align: center; }
.notfound-num { font-size: 6rem; font-weight: 800; color: var(--vohd-clr-primary-light); display: block; line-height: 1; }
.notfound-wrap h1 { font-size: 1.8rem; font-weight: 700; color: var(--vohd-clr-dark); margin: 0.5rem 0; }
.notfound-wrap p { color: var(--vohd-clr-text-muted); margin-bottom: var(--vohd-space-md); }

.uppz {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vohd-clr-dark);
  color: var(--vohd-clr-white);
  padding: var(--vohd-space-sm) var(--vohd-space-md);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.uppz.is-visible { transform: translateY(0); }
.cookie-banner__inner { max-width: var(--vohd-container-wide); margin: 0 auto; display: flex; align-items: center; gap: var(--vohd-space-md); flex-wrap: wrap; }
.cookie-banner__text { font-size: 0.85rem; color: rgba(255,255,255,0.8); flex: 1; }
.cookie-banner__text a { color: var(--vohd-clr-primary-light); }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-cookie {
  font-family: var(--vohd-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--vohd-radius-xs);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--vohd-transition);
}
.btn-cookie--accept { background: var(--vohd-clr-primary); color: var(--vohd-clr-white); }
.btn-cookie--accept:hover { background: var(--vohd-clr-primary-dark); }
.btn-cookie--reject { background: transparent; border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.7); }
.btn-cookie--reject:hover { border-color: var(--vohd-clr-white); color: var(--vohd-clr-white); }
.btn-cookie--settings { background: transparent; border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.7); }
.btn-cookie--settings:hover { border-color: var(--vohd-clr-white); color: var(--vohd-clr-white); }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .ujmy { display: flex; }
  .ukih .btn--outline-header { display: none; }
  .site-nav.is-open {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--vohd-clr-bg);
    border-bottom: 1px solid var(--vohd-clr-border);
    padding: var(--vohd-space-md);
    z-index: 99;
  }
  .site-nav.is-open .site-nav__list { flex-direction: column; gap: 1rem; }
  .hero__container { flex-direction: column; gap: var(--vohd-space-md); padding-top: var(--vohd-space-lg); }
  .hero__card { max-width: 100%; }
  .hero__pack { width: 200px; height: 200px; }
  .stat-band__list { grid-template-columns: 1fr; }
  .myths-facts__grid { grid-template-columns: 1fr; }
  .about-brand__split { grid-template-columns: 1fr; }
  .order-section__inner { grid-template-columns: 1fr; }
  .contact-section__grid { grid-template-columns: 1fr; }
  .ingredient-detail__item { grid-template-columns: 1fr; }
  .ingredient-detail__item--reverse { grid-template-areas: none; }
  .ingredients-spotlight__images { grid-template-columns: 1fr; }
  .diagram-section__inner { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--vohd-space-md); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero__h1 { font-size: 1.7rem; }
  .hero__card { padding: var(--vohd-space-md); }
  .checklist-steps__card { flex-direction: column; gap: 0.5rem; }
  .comparison-table th, .comparison-table td { padding: 0.5rem 0.5rem; font-size: 0.8rem; }
  .lifestyle-tips__grid { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uppz{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}
.uppz.is-visible,.cookie-banner--visible,.uppz.show,.uppz.active{transform:none !important}
.uppz a{color:inherit;text-decoration:underline}
.uppz button{cursor:pointer}
.ubmy{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}
.ubmy.is-visible,.cookie-modal--visible,.ubmy.show,.ubmy.active{display:flex !important}
.uocb,.ubmy>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.unak .unbj,.unak .uado,.unak .uynk,.unak .ubxm,.urpf .unbj,.urpf .uado,.urpf .uynk,.urpf .ubxm{background:#fff !important;color:#1a1a1a !important}
.unbj,.uado{color:#1a1a1a !important}
.unbj label,.uado label,.unbj p,.uado p,.unbj .ugoi,.unbj span,.uado span,.umyr,.uoit,.uynk .ufeh,.uynk .ufeh *{color:#1a1a1a !important}
.umyr,.uoit{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.unbj .uryc{color:#1a1a1a !important}
.unbj .uryc.is-sel{color:#fff !important}
.uorp .uydp{display:none}
.uorp .uydp.is-visible{display:block !important;color:#c0392b}
.uorp .ujie,.uorp [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uorp{color:#1a1a1a}
.unak .uorp,.urpf .uorp{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ujoy{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ujoy img{width:100%;height:100%;object-fit:cover}
.ufeb,.umow{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ufeb img,.umow img{width:100%;height:100%;object-fit:cover;display:block}
.ufeb img{opacity:.28}
.umow img{opacity:.07}
*:has(> .ufeb),*:has(> .umow){position:relative}
.ugne{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)}
.ugne .uxye{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ugne .unlx{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uwdn{margin:1.4rem auto;max-width:920px}
.uwdn img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ugmv{padding:3rem 0}
.uxvy{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uxvy img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ubxm{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.usro{display:flex;overflow:hidden;gap:0 !important}
.unue{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uvdj{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}
.utys{left:.5rem}.uyls{right:.5rem}
.uynk .ufeh{display:none}.uynk .ufeh.is-active{display:block}
.unbj .uqli{display:block !important}
.unbj .uusm{display:flex;flex-wrap:wrap;gap:.5rem}
.unbj .uryc{cursor:pointer}
