:root {
  --vadf-clr-primary: #7e35e5;
  --vadf-clr-primary-dark: #2f016a;
  --vadf-clr-primary-light: #c3b0ff;
  --vadf-clr-accent: #e040c5;
  --vadf-clr-accent-alt: #fff8cb;
  --vadf-clr-bg: #f5f5f7;
  --vadf-clr-bg-white: #ffffff;
  --vadf-clr-text: #1a1a2e;
  --vadf-clr-text-muted: #5a5a7a;
  --vadf-clr-border: #e0ddf5;
  --vadf-clr-dark-section: #1a0838;
  --vadf-clr-dark-section-alt: #0f0325;
  --vadf-radius: 24px;
  --vadf-radius-sm: 12px;
  --vadf-radius-pill: 9999px;
  --vadf-container: 1320px;
  --vadf-gap: 2rem;
  --vadf-shadow-hard: 6px 6px 0px rgba(46,1,106,0.45);
  --vadf-shadow-hard-accent: 6px 6px 0px rgba(224,64,197,0.35);
  --vadf-font-head: 'Outfit', sans-serif;
  --vadf-font-body: 'Outfit', sans-serif;
  --vadf-trans: 0.22s ease;
}

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

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

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

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--vadf-container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

h1, h2, h3, h4 {
  font-family: var(--vadf-font-head);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

section { padding-block: 5rem; }

.uuir {
  background: var(--vadf-clr-dark-section);
  color: #e8e0ff;
}
.uuir h2,
.uuir h3,
.uuir h4 { color: #fff; }

.ucra {
  background: var(--vadf-clr-primary);
  color: #fff;
}
.ucra h2,
.ucra h3 { color: #fff; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vadf-clr-accent);
  background: rgba(224,64,197,0.1);
  padding: 0.3rem 0.9rem;
  border-radius: var(--vadf-radius-pill);
  margin-bottom: 1rem;
}
.uuir .section-label {
  color: var(--vadf-clr-primary-light);
  background: rgba(195,176,255,0.12);
}

.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--vadf-radius-pill);
  font-family: var(--vadf-font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--vadf-trans), box-shadow var(--vadf-trans), background var(--vadf-trans);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--vadf-clr-accent);
  color: #fff;
  box-shadow: var(--vadf-shadow-hard-accent);
}
.btn-primary:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0px rgba(224,64,197,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--vadf-clr-primary);
  border-color: var(--vadf-clr-primary);
  box-shadow: 4px 4px 0px rgba(126,53,229,0.2);
}
.btn-ghost:hover {
  background: var(--vadf-clr-primary);
  color: #fff;
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0px rgba(46,1,106,0.3);
}

.btn-dark-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  box-shadow: 4px 4px 0px rgba(255,255,255,0.1);
}
.btn-dark-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translate(-2px,-2px);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--vadf-clr-border);
  border-radius: var(--vadf-radius-pill);
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vadf-clr-primary-dark);
  box-shadow: 3px 3px 0 rgba(46,1,106,0.12);
}

.chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.card {
  background: var(--vadf-clr-bg-white);
  border-radius: var(--vadf-radius);
  padding: 2rem;
  box-shadow: var(--vadf-shadow-hard);
  border: 1.5px solid var(--vadf-clr-border);
}

.card-grid {
  display: grid;
  gap: var(--vadf-gap);
}

.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 0.5rem;
}
.star {
  width: 18px;
  height: 18px;
  fill: #f5c518;
}

.section-intro {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}

.uubq {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--vadf-clr-border);
}

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

.site-logo {
  font-family: var(--vadf-font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--vadf-clr-primary-dark);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo .logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vadf-clr-accent);
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vadf-clr-text-muted);
  transition: color var(--vadf-trans);
}
.site-nav a:hover { color: var(--vadf-clr-primary); }

.nav-cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vadf-clr-primary-dark);
  margin-block: 5px;
  transition: var(--vadf-trans);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--vadf-clr-bg-white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vadf-clr-primary-dark);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--vadf-clr-primary-dark);
}

.hero {
  position: relative;
  background: var(--vadf-clr-dark-section-alt);
  overflow: hidden;
  padding-block: 6rem;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.uvvx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { color: #fff; }

.hero-content .section-label {
  color: var(--vadf-clr-accent);
  background: rgba(224,64,197,0.15);
}

.hero-h1 { color: #fff; margin-bottom: 1.25rem; }

.hero-h1 em {
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--vadf-clr-primary-light);
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(232,224,255,0.88);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-pack {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-pack-img {
  width: 320px;
  max-width: 100%;
  border-radius: var(--vadf-radius);
  box-shadow: var(--vadf-shadow-hard);
  filter: drop-shadow(0 20px 40px rgba(126,53,229,0.5));
}

.about-author {
  background: var(--vadf-clr-bg-white);
}

.author-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--vadf-clr-bg-white);
  border-radius: var(--vadf-radius);
  overflow: hidden;
  box-shadow: var(--vadf-shadow-hard);
  border: 1.5px solid var(--vadf-clr-border);
}

.author-img-wrap {
  height: 400px;
  overflow: hidden;
}

.author-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-body { padding: 2.5rem 2.5rem 2.5rem 0; }

.author-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--vadf-clr-primary), var(--vadf-clr-accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--vadf-radius-pill);
  margin-bottom: 1rem;
}

.author-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.author-role {
  font-size: 0.9rem;
  color: var(--vadf-clr-text-muted);
  margin-bottom: 1.25rem;
}

.author-bio { color: var(--vadf-clr-text-muted); line-height: 1.8; }

.author-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.cred-tag {
  background: var(--vadf-clr-bg);
  border: 1.5px solid var(--vadf-clr-border);
  border-radius: var(--vadf-radius-pill);
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vadf-clr-primary-dark);
  box-shadow: 3px 3px 0 rgba(46,1,106,0.08);
}

.lifestyle-section { background: var(--vadf-clr-bg); }

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lifestyle-img-wrap {
  border-radius: var(--vadf-radius);
  overflow: hidden;
  box-shadow: var(--vadf-shadow-hard);
  aspect-ratio: 16/9;
}

.lifestyle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-tips { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }

.lifestyle-tip {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tip-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--vadf-radius-sm);
  background: linear-gradient(135deg, var(--vadf-clr-primary), var(--vadf-clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 rgba(46,1,106,0.2);
}

.tip-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tip-text h4 { margin-bottom: 0.25rem; }
.tip-text p { font-size: 0.9rem; color: var(--vadf-clr-text-muted); margin: 0; }

.stat-band {
  background: linear-gradient(135deg, var(--vadf-clr-primary) 0%, var(--vadf-clr-primary-dark) 100%);
  padding-block: 4rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--vadf-font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number span {
  color: var(--vadf-clr-primary-light);
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(232,224,255,0.75);
  font-weight: 500;
}

.compare-section { background: var(--vadf-clr-bg-white); }

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--vadf-radius);
  box-shadow: var(--vadf-shadow-hard);
  border: 1.5px solid var(--vadf-clr-border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--vadf-clr-border);
  white-space: nowrap;
}

.compare-table th:first-child { background: var(--vadf-clr-bg); color: var(--vadf-clr-text-muted); }

.compare-table th.col-highlight {
  background: linear-gradient(135deg, var(--vadf-clr-primary), var(--vadf-clr-accent));
  color: #fff;
  text-align: center;
}

.compare-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--vadf-clr-border);
  vertical-align: middle;
}

.compare-table td:first-child {
  font-weight: 600;
  background: var(--vadf-clr-bg);
}

.compare-table td.col-highlight {
  background: rgba(126,53,229,0.06);
  text-align: center;
  font-weight: 700;
  color: var(--vadf-clr-primary);
}

.compare-table td.col-other {
  text-align: center;
  color: var(--vadf-clr-text-muted);
}

.compare-table tr:last-child td { border-bottom: none; }

.icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--vadf-clr-primary);
  border-radius: 50%;
}
.icon-check svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.icon-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #e0e0e0;
  border-radius: 50%;
}
.icon-cross svg { width: 13px; height: 13px; stroke: #999; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.timeline-section { background: var(--vadf-clr-bg); }

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--vadf-clr-primary), var(--vadf-clr-accent));
}

.timeline-step {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
  align-items: flex-start;
}

.timeline-step:last-child { padding-bottom: 0; }

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vadf-clr-primary), var(--vadf-clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vadf-font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--vadf-shadow-hard);
  position: relative;
  z-index: 1;
}

.step-body { padding-top: 1rem; }
.step-body h3 { margin-bottom: 0.5rem; }
.step-body p { color: var(--vadf-clr-text-muted); margin: 0; }

.mech-img-wrap {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
  border-radius: var(--vadf-radius);
  overflow: hidden;
  box-shadow: var(--vadf-shadow-hard);
}

.ingredients-section { background: var(--vadf-clr-bg-white); }

.ingredient-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--vadf-gap); margin-bottom: 3rem; }

.ingredient-card {
  background: var(--vadf-clr-bg);
  border-radius: var(--vadf-radius);
  padding: 1.75rem;
  border: 1.5px solid var(--vadf-clr-border);
  box-shadow: var(--vadf-shadow-hard);
}

.ingredient-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vadf-radius-sm);
  background: linear-gradient(135deg, var(--vadf-clr-primary), var(--vadf-clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 3px 3px 0 rgba(46,1,106,0.2);
}

.ingredient-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ingredient-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.ingredient-claim { font-size: 0.85rem; color: var(--vadf-clr-text-muted); line-height: 1.5; }

.nutrient-table-wrap {
  background: var(--vadf-clr-bg);
  border-radius: var(--vadf-radius);
  padding: 2rem;
  box-shadow: var(--vadf-shadow-hard);
  border: 1.5px solid var(--vadf-clr-border);
  overflow-x: auto;
  margin-top: 2.5rem;
}

.nutrient-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.nutrient-table th {
  text-align: left;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vadf-clr-text-muted);
  border-bottom: 2px solid var(--vadf-clr-border);
}

.nutrient-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--vadf-clr-border);
  vertical-align: middle;
}

.nutrient-table tr:last-child td { border-bottom: none; }

.nrv-bar-wrap { display: flex; align-items: center; gap: 0.6rem; }
.nrv-bar {
  height: 6px;
  border-radius: var(--vadf-radius-pill);
  background: linear-gradient(90deg, var(--vadf-clr-primary), var(--vadf-clr-accent));
  min-width: 4px;
}
.nrv-val { font-size: 0.8rem; font-weight: 600; color: var(--vadf-clr-primary); white-space: nowrap; }

.reviews-section { background: var(--vadf-clr-bg); }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--vadf-gap); }

.review-card {
  background: var(--vadf-clr-bg-white);
  border-radius: var(--vadf-radius);
  padding: 1.75rem;
  box-shadow: var(--vadf-shadow-hard);
  border: 1.5px solid var(--vadf-clr-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vadf-clr-primary-light), var(--vadf-clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--vadf-clr-primary-dark);
  flex-shrink: 0;
}

.review-author-name { font-weight: 700; font-size: 0.95rem; }
.review-date { font-size: 0.78rem; color: var(--vadf-clr-text-muted); }

.review-body { font-size: 0.9rem; color: var(--vadf-clr-text-muted); line-height: 1.65; flex: 1; }

.review-disclaimer {
  font-size: 0.75rem;
  color: var(--vadf-clr-text-muted);
  margin-top: 2.5rem;
  text-align: center;
  opacity: 0.75;
}

.lifestyle-img-review {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  border-radius: var(--vadf-radius);
  overflow: hidden;
  box-shadow: var(--vadf-shadow-hard);
}

.order-section { background: var(--vadf-clr-dark-section); padding-block: 6rem; }

.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.order-product {}

.order-pack-img {
  width: 280px;
  max-width: 100%;
  border-radius: var(--vadf-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--vadf-shadow-hard);
  filter: drop-shadow(0 16px 32px rgba(126,53,229,0.45));
}

.order-offer-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.order-subtitle { color: var(--vadf-clr-primary-light); font-size: 0.95rem; margin-bottom: 1.5rem; }

.order-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.order-price-now {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--vadf-clr-accent-alt);
  line-height: 1;
}

.order-price-was {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.order-price-tag {
  background: var(--vadf-clr-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--vadf-radius-pill);
}

.order-shipping { font-size: 0.85rem; color: rgba(232,224,255,0.65); margin-bottom: 1.5rem; }

.order-trust-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.order-trust-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--vadf-radius-pill);
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.order-form-wrap {
  background: var(--vadf-clr-bg-white);
  border-radius: var(--vadf-radius);
  padding: 2.5rem;
  box-shadow: var(--vadf-shadow-hard);
}

.order-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--vadf-clr-primary-dark);
  margin-bottom: 0.35rem;
}

.order-form-sub { font-size: 0.88rem; color: var(--vadf-clr-text-muted); margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vadf-clr-text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--vadf-clr-border);
  border-radius: var(--vadf-radius-sm);
  font-family: var(--vadf-font-body);
  font-size: 0.95rem;
  color: var(--vadf-clr-text);
  background: var(--vadf-clr-bg);
  transition: border-color var(--vadf-trans), box-shadow var(--vadf-trans);
}

.form-control:focus {
  outline: none;
  border-color: var(--vadf-clr-primary);
  box-shadow: 0 0 0 3px rgba(126,53,229,0.12);
}

.form-honey { display: none; }

.form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--vadf-clr-primary);
}

.form-consent label {
  font-size: 0.82rem;
  color: var(--vadf-clr-text-muted);
  line-height: 1.5;
}

.form-consent a { color: var(--vadf-clr-primary); text-decoration: underline; }

.upoi .btn-primary { width: 100%; justify-content: center; font-size: 1.05rem; }

.faq-section { background: var(--vadf-clr-bg-white); }

.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 1rem; }

.uvab {
  border-radius: var(--vadf-radius);
  background: var(--vadf-clr-bg);
  border: 1.5px solid var(--vadf-clr-border);
  box-shadow: 4px 4px 0 rgba(46,1,106,0.08);
  overflow: hidden;
}

.ujoi {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-family: var(--vadf-font-head);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--vadf-clr-text);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform var(--vadf-trans);
  stroke: var(--vadf-clr-primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uvab.is-open .faq-chevron { transform: rotate(180deg); }

.uidu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding 0.22s ease;
}

.uvab.is-open .uidu { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--vadf-clr-text-muted);
  line-height: 1.75;
}

.lf-quiz-wrap {
  background: linear-gradient(135deg, var(--vadf-clr-primary-dark), var(--vadf-clr-primary));
  border-radius: var(--vadf-radius);
  padding: 2.5rem;
  box-shadow: var(--vadf-shadow-hard);
  max-width: 680px;
  margin-inline: auto;
  margin-top: 3rem;
}

.lf-quiz-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.lf-quiz-sub { color: var(--vadf-clr-primary-light); font-size: 0.88rem; margin-bottom: 1.75rem; }

.utfa[data-quiz] { display: block; }

.quiz-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--vadf-radius-pill);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--vadf-clr-accent);
  border-radius: var(--vadf-radius-pill);
  transition: width 0.4s ease;
}

.quiz-step { display: none; }
.quiz-step.is-active { display: block; }

.quiz-q {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.quiz-options { display: flex; flex-direction: column; gap: 0.6rem; }

.quiz-opt {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--vadf-radius-sm);
  padding: 0.75rem 1.1rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background var(--vadf-trans), border-color var(--vadf-trans);
  font-family: var(--vadf-font-body);
}

.quiz-opt:hover, .quiz-opt.selected {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
}

.quiz-result {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.quiz-result.is-active { display: block; }

.quiz-result-title { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 0.75rem; }
.quiz-result-text { color: var(--vadf-clr-primary-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }

.site-footer {
  background: var(--vadf-clr-dark-section-alt);
  color: rgba(255,255,255,0.65);
  padding-block: 3.5rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand {}

.footer-logo {
  font-family: var(--vadf-font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-logo .logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--vadf-clr-accent);
}

.footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }

.footer-nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-nav-list a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--vadf-trans);
}
.footer-nav-list a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-legal { font-size: 0.78rem; color: rgba(255,255,255,0.4); max-width: 900px; margin-top: 1.5rem; line-height: 1.65; }

.supplement-disclaimer {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--vadf-clr-primary-light);
  border-radius: 0 var(--vadf-radius-sm) var(--vadf-radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-top: 1.5rem;
}

.ughn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a0838;
  border-top: 2px solid var(--vadf-clr-primary);
  padding: 1.25rem 1.5rem;
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ughn.is-visible { display: flex; }

.ufdq { font-size: 0.85rem; color: rgba(255,255,255,0.75); flex: 1; min-width: 220px; line-height: 1.5; }
.ufdq a { color: var(--vadf-clr-primary-light); text-decoration: underline; }

.uegb { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }

.cookie-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--vadf-radius-pill);
  font-family: var(--vadf-font-head);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--vadf-trans);
}

.cookie-btn-accept {
  background: var(--vadf-clr-accent);
  color: #fff;
  box-shadow: 3px 3px 0 rgba(224,64,197,0.35);
}
.cookie-btn-accept:hover { transform: translate(-1px,-1px); }

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.25);
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.cookie-settings-panel {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 1rem;
  right: 1rem;
  max-width: 520px;
  margin-inline: auto;
  background: var(--vadf-clr-dark-section);
  border: 1.5px solid var(--vadf-clr-primary);
  border-radius: var(--vadf-radius);
  padding: 1.75rem;
  z-index: 10000;
  box-shadow: var(--vadf-shadow-hard);
}

.cookie-settings-panel.is-open { display: block; }

.cs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.cs-row:last-of-type { border-bottom: none; }

.cs-row strong { color: #fff; display: block; font-size: 0.88rem; margin-bottom: 0.2rem; }

.cs-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.cs-toggle input { opacity: 0; width: 0; height: 0; }

.cs-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--vadf-radius-pill);
  cursor: pointer;
  transition: background 0.2s;
}

.cs-slider::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}

.cs-toggle input:checked + .cs-slider { background: var(--vadf-clr-accent); }
.cs-toggle input:checked + .cs-slider::after { transform: translateX(18px); }

.cs-toggle input:disabled + .cs-slider { opacity: 0.5; cursor: not-allowed; }

.cs-save-btn {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--vadf-clr-primary);
  color: #fff;
  border: none;
  border-radius: var(--vadf-radius-pill);
  font-family: var(--vadf-font-head);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--vadf-trans);
  box-shadow: 3px 3px 0 rgba(46,1,106,0.3);
}
.cs-save-btn:hover { transform: translate(-1px,-1px); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-pack { order: -1; }
  .hero-pack-img { width: 240px; }
  .author-card { grid-template-columns: 1fr; }
  .author-img-wrap { height: 300px; }
  .author-body { padding: 1.5rem; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .order-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding-block: 3.5rem; }
  .site-nav { display: none; }
  .hamburger { display: block; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .ughn { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .hero { padding-block: 4rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .order-form-wrap { padding: 1.5rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ughn{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}
.ughn.is-visible,.cookie-banner--visible,.ughn.show,.ughn.active{transform:none !important}
.ughn a{color:inherit;text-decoration:underline}
.ughn button{cursor:pointer}
.uins{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}
.uins.is-visible,.cookie-modal--visible,.uins.show,.uins.active{display:flex !important}
.ubeu,.uins>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.reveal.is-visible,.reveal.is-in,.reveal.in-view,.reveal.visible,.reveal.show,.reveal.active{opacity:1 !important;transform:none !important}
.uuir .utfa,.uuir .ubvy,.uuir .upcx,.uuir .uylo,.ucra .utfa,.ucra .ubvy,.ucra .upcx,.ucra .uylo{background:#fff !important;color:#1a1a1a !important}
.utfa,.ubvy{color:#1a1a1a !important}
.utfa label,.ubvy label,.utfa p,.ubvy p,.utfa .ucbh,.utfa span,.ubvy span,.ullt,.uywh,.upcx .uwkp,.upcx .uwkp *{color:#1a1a1a !important}
.ullt,.uywh{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.utfa .uzar{color:#1a1a1a !important}
.utfa .uzar.is-sel{color:#fff !important}
.upoi .upjo{display:none}
.upoi .upjo.is-visible{display:block !important;color:#c0392b}
.upoi .uaki,.upoi [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.upoi{color:#1a1a1a}
.uuir .upoi,.ucra .upoi{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uogs{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uogs img{width:100%;height:100%;object-fit:cover}
.uvvx,.utlo{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uvvx img,.utlo img{width:100%;height:100%;object-fit:cover;display:block}
.uvvx img{opacity:.28}
.utlo img{opacity:.07}
*:has(> .uvvx),*:has(> .utlo){position:relative}
.uexw{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)}
.uexw .uvhf{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uexw .uucu{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uiog{margin:1.4rem auto;max-width:920px}
.uiog img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uuop{padding:3rem 0}
.upph{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.upph img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uylo{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ukrl{display:flex;overflow:hidden;gap:0 !important}
.unfu{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ujrp{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}
.udod{left:.5rem}.uecu{right:.5rem}
.upcx .uwkp{display:none}.upcx .uwkp.is-active{display:block}
.utfa .ukze{display:block !important}
.utfa .utok{display:flex;flex-wrap:wrap;gap:.5rem}
.utfa .uzar{cursor:pointer}
