:root {
  --vzhh-c-bg: #0a0010;
  --vzhh-c-bg-2: #0f0018;
  --vzhh-c-bg-3: #130020;
  --vzhh-c-surface: #1a0030;
  --vzhh-c-surface-2: #220040;
  --vzhh-c-accent: #6c1cd1;
  --vzhh-c-accent-2: #b9a6ff;
  --vzhh-c-accent-3: #e1d9ff;
  --vzhh-c-gold: #fff8cb;
  --vzhh-c-pink: #ffe8f9;
  --vzhh-c-text: #e8e0f5;
  --vzhh-c-text-2: #b9a6ff;
  --vzhh-c-text-muted: #7a6a99;
  --vzhh-c-white: #ffffff;
  --vzhh-c-cream: #f5f0ff;
  --vzhh-c-border: #2a1050;
  --vzhh-c-star: #d4a847;
  --vzhh-radius: 8px;
  --vzhh-radius-pill: 999px;
  --vzhh-container: 1320px;
  --vzhh-ff-head: 'Fraunces', Georgia, serif;
  --vzhh-ff-body: 'Inter', system-ui, sans-serif;
  --vzhh-shadow-elevated: 0 4px 24px rgba(108,28,209,0.18), 0 1px 4px rgba(0,0,0,0.32);
  --vzhh-shadow-card: 0 2px 16px rgba(0,0,0,0.40), 0 1px 3px rgba(108,28,209,0.12);
  --vzhh-transition: 0.22s cubic-bezier(.4,0,.2,1);
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--vzhh-ff-body);
  background-color: var(--vzhh-c-bg);
  color: var(--vzhh-c-text);
  line-height: 1.65;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--vzhh-c-accent-2); text-decoration: none; transition: color var(--vzhh-transition); }
a:hover { color: var(--vzhh-c-white); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--vzhh-ff-body); border: none; background: none; }

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

.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;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vzhh-ff-head);
  line-height: 1.18;
  color: var(--vzhh-c-white);
  font-weight: 700;
}

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

.text-accent { color: var(--vzhh-c-accent-2); }
.text-gold { color: var(--vzhh-c-gold); }
.text-muted { color: var(--vzhh-c-text-muted); }

.section-pad { padding-block: 5rem; }
.section-pad-sm { padding-block: 3.5rem; }

.ubeg {
  background: var(--vzhh-c-bg-3);
  border-top: 1px solid var(--vzhh-c-border);
  border-bottom: 1px solid var(--vzhh-c-border);
}

.uyuy {
  background: linear-gradient(135deg, #2f016a 0%, #1a0030 50%, #0a0010 100%);
  border-top: 1px solid #4a1090;
  border-bottom: 1px solid #4a1090;
}

.section-deep {
  background: #07000e;
  border-top: 1px solid var(--vzhh-c-border);
}

.divider {
  width: 3.5rem;
  height: 3px;
  background: var(--vzhh-c-accent);
  margin-block: 1.25rem;
  border-radius: 2px;
}

.divider-center { margin-inline: auto; }

.tag-chip {
  display: inline-block;
  font-family: var(--vzhh-ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vzhh-c-accent-2);
  border: 1px solid var(--vzhh-c-accent);
  border-radius: var(--vzhh-radius);
  padding: 0.28rem 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--vzhh-ff-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--vzhh-radius-pill);
  padding: 0.85rem 2.4rem;
  transition: all var(--vzhh-transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--vzhh-c-accent);
  color: var(--vzhh-c-white);
  box-shadow: 0 4px 20px rgba(108,28,209,0.45);
}
.btn-primary:hover {
  background: #7d28eb;
  color: var(--vzhh-c-white);
  box-shadow: 0 6px 28px rgba(108,28,209,0.6);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--vzhh-c-accent-3);
  border: 2px solid var(--vzhh-c-accent);
}
.btn-ghost:hover {
  background: rgba(108,28,209,0.15);
  color: var(--vzhh-c-white);
  border-color: var(--vzhh-c-accent-2);
}

.btn-cream {
  background: var(--vzhh-c-gold);
  color: #1a0030;
  box-shadow: 0 4px 18px rgba(212,168,71,0.3);
}
.btn-cream:hover {
  background: #fff0a0;
  color: #0f0018;
  transform: translateY(-1px);
}

.card {
  background: var(--vzhh-c-surface);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-card);
  padding: 2rem;
  transition: box-shadow var(--vzhh-transition), transform var(--vzhh-transition);
}
.card:hover {
  box-shadow: var(--vzhh-shadow-elevated);
  transform: translateY(-2px);
}

.card-elevated {
  background: var(--vzhh-c-surface-2);
  border: 1px solid #3a1070;
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-elevated);
  padding: 2rem;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container { padding-inline: 1.25rem; }
  .section-pad { padding-block: 3.5rem; }
}

/* ── SITE HEADER ── */
.unew {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,0,16,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--vzhh-c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vzhh-c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 22px; height: 22px; fill: var(--vzhh-c-white); }

.logo-wordmark {
  font-family: var(--vzhh-ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vzhh-c-white);
  letter-spacing: -0.01em;
}

.site-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vzhh-c-text-2);
  padding: 0.45rem 0.85rem;
  border-radius: var(--vzhh-radius);
  transition: color var(--vzhh-transition), background var(--vzhh-transition);
}
.nav-link:hover { color: var(--vzhh-c-white); background: rgba(108,28,209,0.18); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--vzhh-radius);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vzhh-c-text-2);
  border-radius: 2px;
  transition: all var(--vzhh-transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--vzhh-c-bg-2);
  border-top: 1px solid var(--vzhh-c-border);
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.5rem;
}
.mobile-nav .nav-link { display: block; padding: 0.65rem 0.75rem; font-size: 1rem; }
.mobile-nav .btn { width: 100%; margin-top: 0.5rem; }
.mobile-nav.is-open { display: flex; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO (журнальный минимал — крупная типографика, без фото) ── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 6rem 5rem;
  background: var(--vzhh-c-bg);
}

.uwss {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-rule {
  flex: 0 0 2.5rem;
  height: 2px;
  background: var(--vzhh-c-accent);
  border-radius: 2px;
}

.hero-kicker {
  font-family: var(--vzhh-ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vzhh-c-accent-2);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--vzhh-c-white);
  margin-bottom: 1.75rem;
}

.hero h1 .h1-underline {
  display: inline;
  position: relative;
  white-space: nowrap;
}

.hero h1 .h1-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--vzhh-c-accent) 0%, var(--vzhh-c-accent-2) 100%);
  border-radius: 3px;
  opacity: 0.9;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--vzhh-c-text-2);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--vzhh-c-border);
  padding-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--vzhh-c-text-muted);
}

.trust-item svg {
  width: 16px; height: 16px;
  stroke: var(--vzhh-c-accent-2);
  flex-shrink: 0;
}

/* ── LIFESTYLE TIPS ── */
.lifestyle-tips {}

.section-head {
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--vzhh-c-text-2);
  max-width: 640px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .tips-grid { grid-template-columns: 1fr; } }

.tip-card {
  background: var(--vzhh-c-surface);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-card);
  padding: 1.75rem;
  transition: box-shadow var(--vzhh-transition), transform var(--vzhh-transition);
}
.tip-card:hover { box-shadow: var(--vzhh-shadow-elevated); transform: translateY(-2px); }

.tip-icon {
  width: 44px; height: 44px;
  border-radius: var(--vzhh-radius);
  background: rgba(108,28,209,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.tip-icon svg { width: 22px; height: 22px; stroke: var(--vzhh-c-accent-2); }

.tip-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.tip-card p { font-size: 0.92rem; color: var(--vzhh-c-text-2); }

/* ── HOW TO USE ── */
.how-to-use {}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 740px;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--vzhh-c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vzhh-ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vzhh-c-accent-2);
}

.step-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.step-body p { font-size: 0.93rem; color: var(--vzhh-c-text-2); }

.how-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) { .how-split { grid-template-columns: 1fr; gap: 2.5rem; } }

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

.pack-img-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  max-width: 100%;
}

.pack-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--vzhh-radius);
}

.pack-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(108,28,209,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* ── INGREDIENTS ── */
.ingredients {}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 700px) { .ingredients-grid { grid-template-columns: 1fr; } }

.ingredient-card {
  background: var(--vzhh-c-surface);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-card);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow var(--vzhh-transition), transform var(--vzhh-transition);
}
.ingredient-card:hover { box-shadow: var(--vzhh-shadow-elevated); transform: translateY(-2px); }

.ingredient-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.ingredient-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.ingredient-info p { font-size: 0.88rem; color: var(--vzhh-c-text-2); margin: 0; }

.ingredient-claim {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vzhh-c-accent-2);
  background: rgba(108,28,209,0.15);
  border: 1px solid rgba(108,28,209,0.3);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  margin-top: 0.5rem;
}

.ingredients-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 600px) { .ingredients-photos { grid-template-columns: 1fr; } }

.ingredient-photo-wrap {
  border-radius: var(--vzhh-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--vzhh-c-surface);
}

.ingredient-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ingredient-photo-wrap:hover img { transform: scale(1.04); }

.disclaimer-badge {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--vzhh-c-text-muted);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  padding: 0.65rem 1.1rem;
  margin-top: 2rem;
  line-height: 1.5;
}

/* ── COMPARISON TABLE ── */
.comparison {}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--vzhh-radius);
  border: 1px solid var(--vzhh-c-border);
  box-shadow: var(--vzhh-shadow-card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table th {
  background: var(--vzhh-c-surface-2);
  color: var(--vzhh-c-white);
  font-family: var(--vzhh-ff-head);
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--vzhh-c-accent);
  white-space: nowrap;
}

.compare-table th.col-highlight {
  background: var(--vzhh-c-accent);
  color: var(--vzhh-c-white);
}

.compare-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  color: var(--vzhh-c-text-2);
  border-bottom: 1px solid var(--vzhh-c-border);
}

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

.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.compare-table td.col-highlight {
  color: var(--vzhh-c-white);
  font-weight: 600;
  background: rgba(108,28,209,0.1);
}

.compare-table td.col-label {
  color: var(--vzhh-c-text);
  font-weight: 500;
}

.check-yes { color: #7eca7e; }
.check-no { color: #cc7070; }
.check-part { color: var(--vzhh-c-gold); }

/* ── FAQ ── */
.faq {}

.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ucnw {
  background: var(--vzhh-c-surface);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-card);
  overflow: hidden;
}

.udwa {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  text-align: left;
  color: var(--vzhh-c-white);
  font-family: var(--vzhh-ff-head);
  font-size: 1rem;
  font-weight: 600;
  background: none;
  transition: background var(--vzhh-transition);
}
.udwa:hover { background: rgba(108,28,209,0.08); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--vzhh-c-accent-2);
  transition: transform var(--vzhh-transition);
}

.ucnw.is-open .faq-icon { transform: rotate(45deg); }

.uhje {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.93rem;
  color: var(--vzhh-c-text-2);
  line-height: 1.7;
}

.ucnw.is-open .uhje { display: block; }

/* ── STAT BAND ── */
.stat-band {}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (max-width: 700px) {
  .stats-row { grid-template-columns: 1fr; }
}

.stat-item {
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(185,166,255,0.15);
}

@media (max-width: 700px) {
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 2.5rem 1.5rem; }
}

.stat-num {
  font-family: var(--vzhh-ff-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--vzhh-c-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--vzhh-c-text-2);
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

/* ── FURTHER READING ── */
.further-reading {}

.reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) { .reading-grid { grid-template-columns: 1fr; } }

.reading-card {
  background: var(--vzhh-c-surface);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--vzhh-transition), transform var(--vzhh-transition);
}
.reading-card:hover { box-shadow: var(--vzhh-shadow-elevated); transform: translateY(-2px); }

.reading-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vzhh-c-accent-2);
}

.reading-card h3 { font-size: 1rem; }
.reading-card p { font-size: 0.88rem; color: var(--vzhh-c-text-2); }
.reading-card a { font-size: 0.85rem; font-weight: 600; color: var(--vzhh-c-accent-2); }
.reading-card a:hover { color: var(--vzhh-c-white); }

/* ── ORDER / CTA ── */
.order-section {}

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

@media (max-width: 900px) { .order-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.order-meta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.order-meta p { color: var(--vzhh-c-text-2); font-size: 1rem; margin-bottom: 1.25rem; }

.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.price-now {
  font-family: var(--vzhh-ff-head);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--vzhh-c-gold);
}

.price-was {
  font-size: 1.25rem;
  color: var(--vzhh-c-text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.82rem;
  font-weight: 700;
  color: #7eca7e;
  background: rgba(126,202,126,0.12);
  border: 1px solid rgba(126,202,126,0.25);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.perk {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--vzhh-c-text-2);
}
.perk svg { width: 15px; height: 15px; stroke: var(--vzhh-c-accent-2); flex-shrink: 0; }

.order-form-wrap {
  background: var(--vzhh-c-surface-2);
  border: 1px solid #3a1070;
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-elevated);
  padding: 2.25rem;
}

.order-form-wrap h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--vzhh-c-white);
}

.umyu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vzhh-c-text-2);
  letter-spacing: 0.04em;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  color: var(--vzhh-c-white);
  font-family: var(--vzhh-ff-body);
  font-size: 1rem;
  padding: 0.8rem 1.1rem;
  transition: border-color var(--vzhh-transition), box-shadow var(--vzhh-transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--vzhh-c-text-muted); }
.form-input:focus {
  border-color: var(--vzhh-c-accent);
  box-shadow: 0 0 0 3px rgba(108,28,209,0.2);
}

.form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--vzhh-c-text-muted);
  line-height: 1.55;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--vzhh-c-accent);
  width: 16px;
  height: 16px;
}
.form-consent a { color: var(--vzhh-c-accent-2); }

.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; }

/* ── REVIEWS ── */
.reviews {}

.reviews-stars-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

.reviews-aggregate {
  font-size: 0.9rem;
  color: var(--vzhh-c-text-2);
}
.reviews-aggregate strong { color: var(--vzhh-c-white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--vzhh-c-surface);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--vzhh-transition), transform var(--vzhh-transition);
}
.review-card:hover { box-shadow: var(--vzhh-shadow-elevated); transform: translateY(-2px); }

.review-stars {
  display: flex;
  gap: 3px;
}
.star { color: var(--vzhh-c-star); font-size: 0.9rem; }

.review-text { font-size: 0.92rem; color: var(--vzhh-c-text-2); line-height: 1.6; }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(108,28,209,0.3);
  border: 2px solid var(--vzhh-c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vzhh-ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vzhh-c-accent-2);
  flex-shrink: 0;
}

.review-name { font-size: 0.85rem; font-weight: 600; color: var(--vzhh-c-white); }
.review-date { font-size: 0.75rem; color: var(--vzhh-c-text-muted); }

.reviews-disclaimer {
  font-size: 0.78rem;
  color: var(--vzhh-c-text-muted);
  border-top: 1px solid var(--vzhh-c-border);
  padding-top: 1.25rem;
  line-height: 1.55;
}

/* ── LIFESTYLE IMAGES SPLIT ── */
.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 700px) { .lifestyle-split { grid-template-columns: 1fr; } }

.lifestyle-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.lifestyle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lifestyle-img-wrap:hover img { transform: scale(1.04); }

/* ── TABS (.uajk) ── */
.uajk {}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--vzhh-c-border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--vzhh-ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vzhh-c-text-muted);
  padding: 0.85rem 1.5rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--vzhh-transition), border-color var(--vzhh-transition);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.tab-btn:hover { color: var(--vzhh-c-text); }
.tab-btn.is-active { color: var(--vzhh-c-accent-2); border-bottom-color: var(--vzhh-c-accent); }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 700px) { .tab-content-grid { grid-template-columns: 1fr; } }

.tab-img-wrap {
  border-radius: var(--vzhh-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--vzhh-c-surface);
}
.tab-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.tab-text h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.tab-text p { font-size: 0.93rem; color: var(--vzhh-c-text-2); margin-bottom: 0.75rem; }

/* ── QUIZ (.ukxi) ── */
.ukxi {}

.quiz-card {
  background: var(--vzhh-c-surface);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-elevated);
  padding: 2.5rem;
  max-width: 720px;
  margin-inline: auto;
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-progress-bar-wrap {
  flex: 1;
  height: 4px;
  background: var(--vzhh-c-border);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--vzhh-c-accent);
  border-radius: 2px;
  transition: width 0.35s ease;
}

.quiz-step-label {
  font-size: 0.78rem;
  color: var(--vzhh-c-text-muted);
  white-space: nowrap;
}

.quiz-question {
  font-family: var(--vzhh-ff-head);
  font-size: 1.25rem;
  color: var(--vzhh-c-white);
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

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

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  cursor: pointer;
  transition: border-color var(--vzhh-transition), background var(--vzhh-transition);
  font-size: 0.93rem;
  color: var(--vzhh-c-text-2);
  background: transparent;
  text-align: left;
  width: 100%;
}
.quiz-option:hover { border-color: var(--vzhh-c-accent); background: rgba(108,28,209,0.08); color: var(--vzhh-c-white); }
.quiz-option.is-selected { border-color: var(--vzhh-c-accent-2); background: rgba(108,28,209,0.18); color: var(--vzhh-c-white); }

.quiz-opt-mark {
  width: 18px; height: 18px;
  border: 2px solid var(--vzhh-c-border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color var(--vzhh-transition), background var(--vzhh-transition);
}
.quiz-option.is-selected .quiz-opt-mark {
  border-color: var(--vzhh-c-accent-2);
  background: var(--vzhh-c-accent);
}

.quiz-nav { display: flex; justify-content: flex-end; }

.quiz-result { display: none; text-align: center; }
.quiz-result.is-visible { display: block; }

.quiz-result h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.quiz-result p { font-size: 0.95rem; color: var(--vzhh-c-text-2); margin-bottom: 1.5rem; }

/* ── FOOTER ── */
.site-footer {
  background: #07000e;
  border-top: 1px solid var(--vzhh-c-border);
  padding-block: 3.5rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--vzhh-c-text-muted);
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vzhh-c-text-muted);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--vzhh-c-text-muted); }
.footer-col ul li a:hover { color: var(--vzhh-c-text-2); }

.footer-bottom {
  border-top: 1px solid var(--vzhh-c-border);
  padding-top: 2rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-legal a { font-size: 0.8rem; color: var(--vzhh-c-text-muted); }
.footer-legal a:hover { color: var(--vzhh-c-text-2); }

.footer-copy { font-size: 0.78rem; color: var(--vzhh-c-text-muted); line-height: 1.6; }

.footer-disclaimer {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  font-size: 0.75rem;
  color: var(--vzhh-c-text-muted);
  line-height: 1.6;
  background: rgba(255,255,255,0.02);
}

/* ── COOKIE BANNER ── */
.uulh {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vzhh-c-surface-2);
  border-top: 1px solid var(--vzhh-c-accent);
  padding: 1.25rem 1.5rem;
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.5);
}
.uulh.is-visible { display: flex; }

.unhp { font-size: 0.85rem; color: var(--vzhh-c-text-2); flex: 1; min-width: 220px; line-height: 1.5; }
.unhp a { color: var(--vzhh-c-accent-2); }

.ussf { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.ussf .btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* ── INTERNAL PAGES ── */
.page-hero {
  padding-block: 4rem 3rem;
  background: var(--vzhh-c-bg);
  border-bottom: 1px solid var(--vzhh-c-border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.025em; }
.page-hero p { font-size: 1.05rem; color: var(--vzhh-c-text-2); margin-top: 0.75rem; }

.prose {
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--vzhh-c-text-2);
}
.prose h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.75rem; color: var(--vzhh-c-white); }
.prose h3 { font-size: 1.15rem; margin-top: 1.75rem; margin-bottom: 0.5rem; color: var(--vzhh-c-white); }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.35rem; }
.prose a { color: var(--vzhh-c-accent-2); }
.prose table { width: 100%; border-collapse: collapse; margin-block: 1.5rem; font-size: 0.9rem; }
.prose table th { background: var(--vzhh-c-surface-2); padding: 0.75rem 1rem; text-align: left; border: 1px solid var(--vzhh-c-border); }
.prose table td { padding: 0.65rem 1rem; border: 1px solid var(--vzhh-c-border); color: var(--vzhh-c-text-2); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--vzhh-c-text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--vzhh-c-text-muted); }
.breadcrumb a:hover { color: var(--vzhh-c-text-2); }
.breadcrumb-sep { color: var(--vzhh-c-border); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-item svg { width: 20px; height: 20px; stroke: var(--vzhh-c-accent-2); flex-shrink: 0; margin-top: 2px; }
.contact-info-item p { font-size: 0.93rem; color: var(--vzhh-c-text-2); margin: 0; }
.contact-info-item strong { color: var(--vzhh-c-white); display: block; font-size: 0.85rem; margin-bottom: 0.2rem; }

.map-container {
  border-radius: var(--vzhh-radius);
  overflow: hidden;
  border: 1px solid var(--vzhh-c-border);
  margin-top: 1.5rem;
}

.uyxa {
  background: var(--vzhh-c-surface);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  box-shadow: var(--vzhh-shadow-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--vzhh-c-border);
  border-radius: var(--vzhh-radius);
  color: var(--vzhh-c-white);
  font-family: var(--vzhh-ff-body);
  font-size: 1rem;
  padding: 0.8rem 1.1rem;
  resize: vertical;
  min-height: 130px;
  outline: none;
  transition: border-color var(--vzhh-transition), box-shadow var(--vzhh-transition);
}
.form-textarea::placeholder { color: var(--vzhh-c-text-muted); }
.form-textarea:focus { border-color: var(--vzhh-c-accent); box-shadow: 0 0 0 3px rgba(108,28,209,0.2); }

/* ── THANK YOU / 404 ── */
.minimal-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.minimal-page-inner { max-width: 520px; }
.minimal-page h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.minimal-page p { color: var(--vzhh-c-text-2); font-size: 1.05rem; margin-bottom: 2rem; }
.minimal-page .btn { margin-inline: auto; }

/* ── UTILITY ── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none !important; }

@media (max-width: 560px) {
  .hero { padding-block: 4rem 3.5rem; }
  .hero h1 { font-size: 2.5rem; }
  .order-form-wrap { padding: 1.5rem; }
  .quiz-card { padding: 1.75rem 1.25rem; }
  .stat-num { font-size: 3rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uulh{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}
.uulh.is-visible,.cookie-banner--visible,.uulh.show,.uulh.active{transform:none !important}
.uulh a{color:inherit;text-decoration:underline}
.uulh button{cursor:pointer}
.ublm{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}
.ublm.is-visible,.cookie-modal--visible,.ublm.show,.ublm.active{display:flex !important}
.urzi,.ublm>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}
.ubeg .ukxi,.ubeg .uyiw,.ubeg .uajk,.ubeg .uxlf,.uyuy .ukxi,.uyuy .uyiw,.uyuy .uajk,.uyuy .uxlf{background:#fff !important;color:#1a1a1a !important}
.ukxi,.uyiw{color:#1a1a1a !important}
.ukxi label,.uyiw label,.ukxi p,.uyiw p,.ukxi .updp,.ukxi span,.uyiw span,.uuhv,.ufks,.uajk .ujfi,.uajk .ujfi *{color:#1a1a1a !important}
.uuhv,.ufks{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ukxi .uahg{color:#1a1a1a !important}
.ukxi .uahg.is-sel{color:#fff !important}
.umyu .ucmp{display:none}
.umyu .ucmp.is-visible{display:block !important;color:#c0392b}
.umyu .ulsb,.umyu [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.umyu{color:#1a1a1a}
.ubeg .umyu,.uyuy .umyu{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uvrm{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uvrm img{width:100%;height:100%;object-fit:cover}
.uwss,.uhxo{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uwss img,.uhxo img{width:100%;height:100%;object-fit:cover;display:block}
.uwss img{opacity:.28}
.uhxo img{opacity:.07}
*:has(> .uwss),*:has(> .uhxo){position:relative}
.utdr{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)}
.utdr .uguh{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.utdr .ugei{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.utkn{margin:1.4rem auto;max-width:920px}
.utkn img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.udww{padding:3rem 0}
.ueed{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ueed img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uxlf{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uhet{display:flex;overflow:hidden;gap:0 !important}
.udpl{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uanc{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}
.uhsr{left:.5rem}.uwmf{right:.5rem}
.uajk .ujfi{display:none}.uajk .ujfi.is-active{display:block}
.ukxi .utyo{display:block !important}
.ukxi .upgo{display:flex;flex-wrap:wrap;gap:.5rem}
.ukxi .uahg{cursor:pointer}
