:root {
  --vhtt-clr-primary: #6c1cd1;
  --vhtt-clr-primary-deep: #2f016a;
  --vhtt-clr-accent: #b9a6ff;
  --vhtt-clr-gold: #fff8cb;
  --vhtt-clr-pink: #ffe8f9;
  --vhtt-clr-black: #000000;
  --vhtt-clr-bg: #0a0612;
  --vhtt-clr-bg-card: #110a22;
  --vhtt-clr-bg-mid: #160c2e;
  --vhtt-clr-text: #e8e0f5;
  --vhtt-clr-text-muted: #a89cc8;
  --vhtt-clr-border: rgba(185,166,255,0.22);
  --vhtt-clr-cta: #6c1cd1;
  --vhtt-clr-cta-hover: #8b3de8;
  --vhtt-radius: 18px;
  --vhtt-radius-btn: 6px;
  --vhtt-container: 1320px;
  --vhtt-space-xs: 0.5rem;
  --vhtt-space-s: 1rem;
  --vhtt-space-m: 1.75rem;
  --vhtt-space-l: 3rem;
  --vhtt-space-xl: 5rem;
  --vhtt-font-head: 'Playfair Display', Georgia, serif;
  --vhtt-font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

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

.container {
  width: 100%;
  max-width: var(--vhtt-container);
  margin-inline: auto;
  padding-inline: 2rem;
}

h1, h2, h3, h4 {
  font-family: var(--vhtt-font-head);
  line-height: 1.22;
  color: var(--vhtt-clr-gold);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--vhtt-clr-accent); }

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

strong { color: var(--vhtt-clr-accent); font-weight: 700; }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

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

.accent-word { color: var(--vhtt-clr-primary); }

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--vhtt-radius-btn);
  font-family: var(--vhtt-font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--vhtt-clr-cta);
  color: #fff;
}
.btn-primary:hover {
  background: var(--vhtt-clr-cta-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--vhtt-clr-accent);
  border: 2px solid var(--vhtt-clr-accent);
}
.btn-outline:hover {
  background: rgba(185,166,255,0.1);
  text-decoration: none;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(108,28,209,0.18);
  color: var(--vhtt-clr-accent);
  border: 1px dashed var(--vhtt-clr-accent);
}

.umxl {
  background: var(--vhtt-clr-bg-mid);
}

.ulfx {
  background: linear-gradient(135deg, #1a0640 0%, #2f016a 60%, #0a0612 100%);
}

.section-pad {
  padding-block: var(--vhtt-space-xl);
}

.section-pad-s {
  padding-block: var(--vhtt-space-l);
}

.text-center { text-align: center; }
.text-muted { color: var(--vhtt-clr-text-muted); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--vhtt-clr-bg-card);
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: var(--vhtt-radius);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--vhtt-clr-accent); }

.divider-thin {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vhtt-clr-primary), transparent);
  border: none;
  margin-block: 0;
}

.section-label {
  font-family: var(--vhtt-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vhtt-clr-accent);
  margin-bottom: 0.6rem;
  display: block;
}

.section-intro {
  color: var(--vhtt-clr-text-muted);
  font-size: 1.05rem;
  max-width: 64ch;
  margin-inline: auto;
  margin-bottom: var(--vhtt-space-l);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--vhtt-clr-text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--vhtt-space-m);
}
.breadcrumb a { color: var(--vhtt-clr-text-muted); }
.breadcrumb a:hover { color: var(--vhtt-clr-accent); }
.breadcrumb span { color: var(--vhtt-clr-accent); }

/* ── SITE HEADER ── */
.ukbq {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,6,18,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vhtt-clr-border);
}

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

.site-logo {
  font-family: var(--vhtt-font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--vhtt-clr-gold);
  letter-spacing: -0.01em;
}
.site-logo span { color: var(--vhtt-clr-primary); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav a {
  color: var(--vhtt-clr-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.18s;
}
.site-nav a:hover { color: var(--vhtt-clr-gold); text-decoration: none; }

.ujoz {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--vhtt-clr-text);
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--vhtt-space-xl);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}

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

.hero-text { }

.hero-pack-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-pack {
  width: clamp(220px, 28vw, 360px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 0 48px rgba(108,28,209,0.5));
  animation: packFloat 5s ease-in-out infinite;
}

@keyframes packFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-cta-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-label { margin-bottom: var(--vhtt-space-s); }

.hero h1 {
  margin-bottom: 1.2rem;
  max-width: 18ch;
}

.hero-kicker {
  font-size: 1.05rem;
  color: var(--vhtt-clr-text-muted);
  margin-bottom: 1.5rem;
  max-width: 36ch;
}

.efsa-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  background: rgba(255,248,203,0.09);
  border: 1px dashed var(--vhtt-clr-gold);
  font-size: 0.82rem;
  color: var(--vhtt-clr-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.93rem;
  color: var(--vhtt-clr-text-muted);
  margin-bottom: 0;
}

.hero-trust-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--vhtt-clr-primary);
  flex-shrink: 0;
}

.price-teaser {
  background: rgba(108,28,209,0.18);
  border: 1.5px dashed var(--vhtt-clr-primary);
  border-radius: var(--vhtt-radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.price-teaser .price-from {
  font-size: 0.8rem;
  color: var(--vhtt-clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price-teaser .price-main {
  font-family: var(--vhtt-font-head);
  font-size: 2rem;
  color: var(--vhtt-clr-gold);
  font-weight: 700;
  line-height: 1;
}

.price-teaser .price-sub {
  font-size: 0.82rem;
  color: var(--vhtt-clr-text-muted);
}

/* ── THIN DARK BAND after hero ── */
.band-thin {
  height: 4px;
  background: linear-gradient(90deg, var(--vhtt-clr-primary-deep), var(--vhtt-clr-primary), var(--vhtt-clr-primary-deep));
}

/* ── ABOUT / E-E-A-T ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-img-wrap {
  border-radius: var(--vhtt-radius);
  overflow: hidden;
  border: 1.5px dashed var(--vhtt-clr-border);
  aspect-ratio: 16/9;
  background: var(--vhtt-clr-bg-card);
}

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

.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: var(--vhtt-radius);
  font-size: 0.82rem;
  color: var(--vhtt-clr-text-muted);
}

/* ── MYTHS vs FACTS ── */
.myth-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.myth-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: var(--vhtt-radius);
  overflow: hidden;
}

.myth-col {
  padding: 1.25rem 1.5rem;
}

.myth-col.myth { background: rgba(255,100,100,0.06); border-right: 1.5px dashed var(--vhtt-clr-border); min-width: 44%; }
.myth-col.fact { background: rgba(108,28,209,0.07); }

.myth-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.myth .myth-label { color: #f08080; }
.fact .myth-label { color: var(--vhtt-clr-accent); }

.myth-text { font-size: 0.94rem; color: var(--vhtt-clr-text-muted); margin: 0; }

/* ── LIFESTYLE TIPS ── */
.tips-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.tip-card {
  background: var(--vhtt-clr-bg-card);
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: var(--vhtt-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-card.span-2 {
  grid-column: span 2;
}

.tip-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--vhtt-clr-primary);
  border-radius: 12px;
}

.tip-icon svg { width: 22px; height: 22px; stroke: var(--vhtt-clr-accent); fill: none; stroke-width: 1.8; }

.tip-img-card {
  grid-column: span 1;
  border-radius: var(--vhtt-radius);
  overflow: hidden;
  border: 1.5px dashed var(--vhtt-clr-border);
  aspect-ratio: 4/3;
}

.tip-img-card img { width: 100%; height: 100%; object-fit: cover; }

/* ── ROUTINE / HOW TO USE ── */
.routine-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: step;
}

.routine-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: var(--vhtt-radius);
  background: var(--vhtt-clr-bg-card);
}

.step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--vhtt-clr-primary);
  color: #fff;
  font-family: var(--vhtt-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── COMPARISON TABLE / SCORECARD ── */
.comparison-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px dashed var(--vhtt-clr-border);
  font-size: 0.95rem;
}

.comparison-table th {
  font-family: var(--vhtt-font-head);
  color: var(--vhtt-clr-gold);
  font-size: 1rem;
  background: var(--vhtt-clr-bg-mid);
  border-bottom-color: var(--vhtt-clr-primary);
}

.comparison-table td:first-child {
  color: var(--vhtt-clr-text-muted);
  font-weight: 600;
}

.comparison-table tr:hover td { background: rgba(108,28,209,0.06); }

.check { color: #7ddd88; }
.cross { color: #e07070; }

/* ── INGREDIENTS ── */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.nutrient-table th,
.nutrient-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px dashed var(--vhtt-clr-border);
}

.nutrient-table th {
  color: var(--vhtt-clr-accent);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--vhtt-clr-bg-card);
}

.nrv-bar-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nrv-bar {
  flex: 1;
  height: 6px;
  background: rgba(185,166,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}

.nrv-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--vhtt-clr-primary), var(--vhtt-clr-accent));
  border-radius: 3px;
}

.ingredient-spotlight {
  background: var(--vhtt-clr-bg-card);
  border: 1.5px dashed var(--vhtt-clr-primary);
  border-radius: var(--vhtt-radius);
  padding: 1.75rem;
}

.spotlight-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 4/3;
}

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

.efsa-claim {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: rgba(185,166,255,0.07);
  border-left: 3px solid var(--vhtt-clr-accent);
  border-radius: 0 8px 8px 0;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--vhtt-clr-text-muted);
  font-style: italic;
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--vhtt-clr-bg-card);
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: var(--vhtt-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
}

.testimonial-stars img {
  width: 88px;
  height: auto;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--vhtt-clr-text);
  font-style: italic;
  flex: 1;
  margin: 0;
}

.testimonial-author {
  font-size: 0.84rem;
  color: var(--vhtt-clr-text-muted);
  font-weight: 600;
}

.testimonial-disclaimer {
  font-size: 0.78rem;
  color: var(--vhtt-clr-text-muted);
  border: 1px dashed var(--vhtt-clr-border);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  margin-top: var(--vhtt-space-m);
  text-align: center;
}

/* ── ORDER SECTION ── */
.order-section {
  background: linear-gradient(160deg, #1a0640 0%, #2f016a 55%, #0a0612 100%);
}

.order-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  margin-bottom: var(--vhtt-space-l);
}

.pkg-card {
  background: rgba(10,6,18,0.6);
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: var(--vhtt-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.pkg-card.selected,
.pkg-card:hover {
  border-color: var(--vhtt-clr-primary);
  background: rgba(108,28,209,0.15);
}

.pkg-badge {
  position: absolute;
  top: -0.65rem;
  left: 1.25rem;
  background: var(--vhtt-clr-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

.pkg-name {
  font-family: var(--vhtt-font-head);
  font-size: 1.2rem;
  color: var(--vhtt-clr-gold);
}

.pkg-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pkg-price {
  font-family: var(--vhtt-font-head);
  font-size: 2.1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.pkg-old {
  font-size: 0.95rem;
  color: var(--vhtt-clr-text-muted);
  text-decoration: line-through;
}

.pkg-per {
  font-size: 0.82rem;
  color: var(--vhtt-clr-text-muted);
}

.pkg-info {
  font-size: 0.88rem;
  color: var(--vhtt-clr-text-muted);
  margin: 0;
}

.order-form-wrap {
  max-width: 600px;
  margin-inline: auto;
  background: var(--vhtt-clr-bg-card);
  border: 1.5px dashed var(--vhtt-clr-primary);
  border-radius: var(--vhtt-radius);
  padding: 2.25rem;
}

.uzcx .form-group {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.uzcx label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--vhtt-clr-text-muted);
  letter-spacing: 0.04em;
}

.uzcx input[type="text"],
.uzcx input[type="tel"],
.uzcx select {
  background: rgba(255,255,255,0.05);
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--vhtt-clr-text);
  font-family: var(--vhtt-font-body);
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s;
}

.uzcx input:focus,
.uzcx select:focus {
  outline: none;
  border-color: var(--vhtt-clr-primary);
}

.uzcx input[type="text"].honeypot { display: none; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

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

.consent-row label {
  font-size: 0.82rem;
  color: var(--vhtt-clr-text-muted);
  font-weight: 400;
}

.uzcx .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.order-trust {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.order-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--vhtt-clr-text-muted);
}

.order-trust-item svg { width: 18px; height: 18px; stroke: var(--vhtt-clr-accent); fill: none; stroke-width: 1.8; }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin-inline: auto;
}

.utfe {
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: var(--vhtt-radius);
  overflow: hidden;
}

.ugsk {
  width: 100%;
  background: var(--vhtt-clr-bg-card);
  border: none;
  padding: 1.1rem 1.5rem;
  text-align: left;
  color: var(--vhtt-clr-text);
  font-family: var(--vhtt-font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.18s;
}

.ugsk:hover { background: rgba(108,28,209,0.12); }

.ugsk[aria-expanded="true"] { color: var(--vhtt-clr-accent); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.25s;
}

.ugsk[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.uejk {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  background: var(--vhtt-clr-bg);
  font-size: 0.95rem;
  color: var(--vhtt-clr-text-muted);
}

.uejk.open {
  max-height: 600px;
  padding: 1.1rem 1.5rem;
}

/* ── QUIZ ── */
.uusl {
  max-width: 680px;
  margin-inline: auto;
  background: var(--vhtt-clr-bg-card);
  border: 1.5px dashed var(--vhtt-clr-primary);
  border-radius: var(--vhtt-radius);
  padding: 2rem;
}

.quiz-progress {
  width: 100%;
  height: 4px;
  background: rgba(185,166,255,0.15);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--vhtt-clr-primary), var(--vhtt-clr-accent));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.quiz-question {
  font-family: var(--vhtt-font-head);
  font-size: 1.25rem;
  color: var(--vhtt-clr-gold);
  margin-bottom: 1.25rem;
}

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

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  font-size: 0.95rem;
  background: transparent;
  color: var(--vhtt-clr-text);
  text-align: left;
  font-family: var(--vhtt-font-body);
  width: 100%;
}

.quiz-option:hover,
.quiz-option.selected {
  border-color: var(--vhtt-clr-primary);
  background: rgba(108,28,209,0.12);
  color: var(--vhtt-clr-accent);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.quiz-step-count {
  font-size: 0.82rem;
  color: var(--vhtt-clr-text-muted);
}

.quiz-result {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.quiz-result.visible { display: flex; }

.quiz-result-title {
  font-family: var(--vhtt-font-head);
  font-size: 1.4rem;
  color: var(--vhtt-clr-gold);
}

.quiz-result-text {
  color: var(--vhtt-clr-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ── PRESS QUOTES ── */
.press-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.press-quote {
  background: var(--vhtt-clr-bg-card);
  border: 1.5px dashed var(--vhtt-clr-border);
  border-radius: var(--vhtt-radius);
  padding: 1.5rem;
}

.press-quote blockquote {
  font-style: italic;
  font-size: 0.97rem;
  color: var(--vhtt-clr-text);
  margin-bottom: 0.75rem;
}

.press-quote cite {
  font-size: 0.8rem;
  color: var(--vhtt-clr-text-muted);
  font-style: normal;
  font-weight: 700;
}

/* ── STAT BAND ── */
.stat-band {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-block: var(--vhtt-space-l);
  background: var(--vhtt-clr-bg-mid);
  border-top: 1px solid var(--vhtt-clr-border);
  border-bottom: 1px solid var(--vhtt-clr-border);
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--vhtt-font-head);
  font-size: 2.25rem;
  color: var(--vhtt-clr-gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--vhtt-clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── FOOTER ── */
.site-footer {
  background: #050310;
  border-top: 1px solid var(--vhtt-clr-border);
  padding-block: var(--vhtt-space-l);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: var(--vhtt-space-l);
}

.footer-brand .site-logo {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  font-size: 0.84rem;
  color: var(--vhtt-clr-text-muted);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--vhtt-clr-accent);
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--vhtt-clr-text-muted);
  font-size: 0.88rem;
  transition: color 0.18s;
}

.footer-links a:hover { color: var(--vhtt-clr-gold); text-decoration: none; }

.footer-bottom {
  border-top: 1px dashed var(--vhtt-clr-border);
  padding-top: var(--vhtt-space-m);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.82rem;
}

.footer-legal-links a { color: var(--vhtt-clr-text-muted); }
.footer-legal-links a:hover { color: var(--vhtt-clr-gold); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--vhtt-clr-text-muted);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--vhtt-clr-text-muted);
  line-height: 1.6;
  background: rgba(255,255,255,0.03);
  border: 1px dashed var(--vhtt-clr-border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: var(--vhtt-space-s);
}

/* ── COOKIE BANNER ── */
.uxfk {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0e0922;
  border-top: 1.5px solid var(--vhtt-clr-primary);
  padding: 1.25rem 2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 -8px 32px rgba(108,28,209,0.22);
}

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

.cookie-banner-inner {
  max-width: var(--vhtt-container);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.uxfk p {
  font-size: 0.88rem;
  color: var(--vhtt-clr-text-muted);
  margin: 0;
}

.cookie-cats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.cookie-cat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--vhtt-clr-text-muted);
}

.cookie-cat-item input[type="checkbox"] {
  accent-color: var(--vhtt-clr-primary);
}

.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btns button {
  padding: 0.55rem 1.35rem;
  border-radius: var(--vhtt-radius-btn);
  font-family: var(--vhtt-font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.18s;
}

.btn-cookie-accept {
  background: var(--vhtt-clr-primary);
  color: #fff;
  border-color: var(--vhtt-clr-primary);
}

.btn-cookie-accept:hover { background: var(--vhtt-clr-cta-hover); }

.btn-cookie-reject {
  background: transparent;
  color: var(--vhtt-clr-text-muted);
  border-color: var(--vhtt-clr-border);
}

.btn-cookie-reject:hover { background: rgba(255,255,255,0.05); }

.btn-cookie-save {
  background: transparent;
  color: var(--vhtt-clr-accent);
  border-color: var(--vhtt-clr-accent);
}

.btn-cookie-save:hover { background: rgba(185,166,255,0.1); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: var(--vhtt-space-xl) 0 var(--vhtt-space-l);
  background: var(--vhtt-clr-bg-mid);
  border-bottom: 1px solid var(--vhtt-clr-border);
}

.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .hero-cta-col { grid-column: 2; grid-row: 2; }
  .hero-pack-wrap { grid-column: 2; grid-row: 1; grid-row: span 1; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --vhtt-space-xl: 3.5rem; --vhtt-space-l: 2.25rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-pack-wrap { order: -1; }
  .hero-pack { width: min(260px, 65vw); }
  .hero h1 { max-width: 100%; }
  .hero-kicker { max-width: 100%; }
  .hero-trust-list { align-items: center; }
  .tips-bento { grid-template-columns: 1fr; }
  .tip-card.span-2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .myth-item { grid-template-columns: 1fr; }
  .myth-col.myth { border-right: none; border-bottom: 1.5px dashed var(--vhtt-clr-border); }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #0e0922; padding: 1.5rem 2rem; border-bottom: 1px solid var(--vhtt-clr-border); gap: 1rem; }
  .site-nav.open { display: flex; }
  .ujoz { display: block; }
  .ukbq { position: relative; }
  .quiz-nav { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1rem; }
  .order-form-wrap { padding: 1.25rem; }
  .stat-band { gap: 1.5rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uxfk{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}
.uxfk.is-visible,.cookie-banner--visible,.uxfk.show,.uxfk.active{transform:none !important}
.uxfk a{color:inherit;text-decoration:underline}
.uxfk button{cursor:pointer}
.uijz{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}
.uijz.is-visible,.cookie-modal--visible,.uijz.show,.uijz.active{display:flex !important}
.ualb,.uijz>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}
.umxl .uusl,.umxl .ukja,.umxl .uhlj,.umxl .uihj,.ulfx .uusl,.ulfx .ukja,.ulfx .uhlj,.ulfx .uihj{background:#fff !important;color:#1a1a1a !important}
.uusl,.ukja{color:#1a1a1a !important}
.uusl label,.ukja label,.uusl p,.ukja p,.uusl .uhvt,.uusl span,.ukja span,.uhiz,.uirq,.uhlj .ulkw,.uhlj .ulkw *{color:#1a1a1a !important}
.uhiz,.uirq{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uusl .ufxu{color:#1a1a1a !important}
.uusl .ufxu.is-sel{color:#fff !important}
.uzcx .uukj{display:none}
.uzcx .uukj.is-visible{display:block !important;color:#c0392b}
.uzcx .uwzl,.uzcx [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uzcx{color:#1a1a1a}
.umxl .uzcx,.ulfx .uzcx{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uase{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uase img{width:100%;height:100%;object-fit:cover}
.ujdg,.uyef{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ujdg img,.uyef img{width:100%;height:100%;object-fit:cover;display:block}
.ujdg img{opacity:.28}
.uyef img{opacity:.07}
*:has(> .ujdg),*:has(> .uyef){position:relative}
.uqfq{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)}
.uqfq .upaa{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uqfq .upzo{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uqgi{margin:1.4rem auto;max-width:920px}
.uqgi img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ucca{padding:3rem 0}
.uvmk{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uvmk img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uihj{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uswg{display:flex;overflow:hidden;gap:0 !important}
.udub{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uuad{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}
.ucds{left:.5rem}.uirf{right:.5rem}
.uhlj .ulkw{display:none}.uhlj .ulkw.is-active{display:block}
.uusl .ulub{display:block !important}
.uusl .uzib{display:flex;flex-wrap:wrap;gap:.5rem}
.uusl .ufxu{cursor:pointer}
