:root {
  --volh-clr-accent: #5600b5;
  --volh-clr-accent-2: #c4006c;
  --volh-clr-accent-light: #c8baff;
  --volh-clr-accent-pale: #ede8ff;
  --volh-clr-warm: #fff3c8;
  --volh-clr-rose-pale: #ffe0f5;
  --volh-clr-dark: #1a0533;
  --volh-clr-dark-2: #2b0a52;
  --volh-clr-text: #1c1c2e;
  --volh-clr-text-muted: #5a566e;
  --volh-clr-bg: #ffffff;
  --volh-clr-bg-soft: #f7f5ff;
  --volh-clr-border: #ddd7f5;
  --volh-ff-head: 'Outfit', sans-serif;
  --volh-ff-body: 'Outfit', sans-serif;
  --volh-radius: 24px;
  --volh-radius-sm: 12px;
  --volh-radius-xs: 6px;
  --volh-container: 1080px;
  --volh-shadow-soft: 0 4px 32px rgba(86,0,181,0.10), 0 1.5px 6px rgba(86,0,181,0.06);
  --volh-shadow-card: 0 8px 40px rgba(86,0,181,0.12), 0 2px 8px rgba(86,0,181,0.07);
  --volh-transition: 0.22s cubic-bezier(.4,0,.2,1);
}

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

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

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

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

.container {
  max-width: var(--volh-container);
  margin: 0 auto;
  padding: 0 24px;
}

.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 {
  font-family: var(--volh-ff-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--volh-clr-text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

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

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.usmh {
  background: var(--volh-clr-dark);
  color: #e8e0ff;
}
.usmh h2,
.usmh h3,
.usmh h4 {
  color: #fff;
}
.usmh p,
.usmh li {
  color: #cdc4f0;
}

.uakw {
  background: var(--volh-clr-accent);
  color: #fff;
}
.uakw h2,
.uakw h3 { color: #fff; }
.uakw p { color: rgba(255,255,255,0.88); }

.section-soft { background: var(--volh-clr-bg-soft); }
.section-warm { background: var(--volh-clr-warm); }

.text-center { text-align: center; }
.text-accent { color: var(--volh-clr-accent); }

.badge {
  display: inline-block;
  background: var(--volh-clr-accent-pale);
  color: var(--volh-clr-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--volh-radius-xs);
}

.badge-dark {
  background: rgba(255,255,255,0.12);
  color: #e8e0ff;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--volh-clr-accent);
  margin-bottom: 12px;
}

.mark-underline {
  position: relative;
  display: inline;
}
.mark-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--volh-clr-accent-2) 0%, var(--volh-clr-accent) 100%);
  border-radius: 3px;
  opacity: 0.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--volh-radius);
  font-family: var(--volh-ff-head);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--volh-transition);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--volh-clr-accent);
  color: #fff;
  border-color: var(--volh-clr-accent);
}
.btn-primary:hover {
  background: var(--volh-clr-dark-2);
  border-color: var(--volh-clr-dark-2);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--volh-clr-accent);
  border-color: var(--volh-clr-accent);
}
.btn-outline:hover {
  background: var(--volh-clr-accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-dark {
  background: var(--volh-clr-dark);
  color: #fff;
  border-color: var(--volh-clr-dark);
}
.btn-dark:hover {
  background: var(--volh-clr-accent);
  border-color: var(--volh-clr-accent);
}

.card-soft {
  background: #fff;
  border-radius: var(--volh-radius);
  box-shadow: var(--volh-shadow-card);
  padding: 32px;
  transition: box-shadow var(--volh-transition), transform var(--volh-transition);
}
.card-soft:hover {
  box-shadow: 0 16px 56px rgba(86,0,181,0.16), 0 4px 12px rgba(86,0,181,0.10);
  transform: translateY(-2px);
}

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

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

.ukvb {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--volh-clr-border);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--volh-ff-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--volh-clr-accent);
  text-decoration: none;
}
.site-logo img { width: 36px; height: 36px; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--volh-clr-text-muted);
}
.site-nav a:hover { color: var(--volh-clr-accent); }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--volh-clr-accent);
  border-radius: 2px;
  transition: all var(--volh-transition);
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--volh-clr-border);
    box-shadow: 0 8px 32px rgba(86,0,181,0.08);
  }
  .site-nav.is-open { display: flex; }
}

.hero {
  background: var(--volh-clr-accent);
  overflow: hidden;
  position: relative;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  min-height: 560px;
  padding: 72px 0;
}

.hero-content { color: #fff; }
.hero-content .eyebrow { color: var(--volh-clr-accent-light); }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

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

.hero-pack-wrap {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--volh-radius);
  padding: 32px;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 380px;
}

.hero-pack-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--volh-radius-sm);
}

.hero-pack-caption {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual { justify-content: center; }
  .hero-pack-wrap { max-width: 300px; }
  .hero-actions { justify-content: center; }
}

.thin-dark-band {
  background: var(--volh-clr-dark);
  padding: 14px 0;
}

.band-ticker {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}

.band-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--volh-clr-accent-light);
  white-space: nowrap;
}

.band-ticker-item svg {
  width: 16px;
  height: 16px;
  fill: var(--volh-clr-accent-light);
  flex-shrink: 0;
}

.stat-band { padding: 72px 0; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--volh-clr-border);
  border-radius: var(--volh-radius);
  overflow: hidden;
}

.stat-item {
  background: #fff;
  padding: 40px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--volh-ff-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--volh-clr-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--volh-clr-text-muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
}

.about-section { background: var(--volh-clr-bg-soft); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--volh-radius);
  overflow: hidden;
  box-shadow: var(--volh-shadow-card);
}

.about-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.about-content .eyebrow { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }

.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--volh-clr-border);
  border-radius: var(--volh-radius);
  padding: 14px 20px;
  margin-top: 24px;
}

.author-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--volh-clr-accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--volh-clr-text); }
.author-role { font-size: 0.8rem; color: var(--volh-clr-text-muted); }

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
}

.faq-section {}

.faq-section h2 { text-align: center; margin-bottom: 48px; }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }

.umgg {
  border: 1px solid var(--volh-clr-border);
  border-radius: var(--volh-radius-sm);
  overflow: hidden;
  background: #fff;
  transition: box-shadow var(--volh-transition);
}
.umgg.is-open {
  box-shadow: var(--volh-shadow-soft);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-trigger-text {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--volh-clr-text);
}

.faq-trigger-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--volh-clr-accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--volh-transition), transform var(--volh-transition);
}
.faq-trigger-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--volh-clr-accent);
  transition: transform var(--volh-transition);
}
.umgg.is-open .faq-trigger-icon {
  background: var(--volh-clr-accent);
}
.umgg.is-open .faq-trigger-icon svg { fill: #fff; transform: rotate(45deg); }

.faq-body {
  display: none;
  padding: 0 24px 20px;
  color: var(--volh-clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.umgg.is-open .faq-body { display: block; }

.checklist-section {}
.checklist-section h2 { text-align: center; margin-bottom: 16px; }
.checklist-section .section-intro { text-align: center; color: var(--volh-clr-text-muted); max-width: 640px; margin: 0 auto 48px; }

.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.week-card {
  background: #fff;
  border-radius: var(--volh-radius);
  box-shadow: var(--volh-shadow-soft);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.week-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--volh-clr-accent) 0%, var(--volh-clr-accent-2) 100%);
}

.week-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--volh-clr-accent);
  margin-bottom: 8px;
}

.week-card h3 { font-size: 1rem; margin-bottom: 14px; }

.week-steps { display: flex; flex-direction: column; gap: 8px; }

.week-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--volh-clr-text-muted);
}

.week-step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--volh-clr-accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.week-step-dot svg {
  width: 9px;
  height: 9px;
  fill: var(--volh-clr-accent);
}

@media (max-width: 900px) {
  .week-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .week-grid { grid-template-columns: 1fr; }
}

.comparison-section {}
.comparison-section h2 { text-align: center; margin-bottom: 48px; }

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--volh-radius);
  box-shadow: var(--volh-shadow-soft);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.92rem;
}

.comparison-table th {
  padding: 18px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 0.88rem;
  background: var(--volh-clr-bg-soft);
  color: var(--volh-clr-text);
  border-bottom: 2px solid var(--volh-clr-border);
}

.comparison-table th.highlight {
  background: var(--volh-clr-accent);
  color: #fff;
}

.comparison-table th:first-child { text-align: left; }

.comparison-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--volh-clr-border);
  text-align: center;
  color: var(--volh-clr-text-muted);
}

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

.comparison-table td.highlight { background: rgba(86,0,181,0.04); }

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

.check-icon { color: #22c55e; font-size: 1.1rem; }
.cross-icon { color: #d1d5db; font-size: 1.1rem; }
.partial-icon { color: #f59e0b; font-size: 1rem; }

.ingredients-section {}
.ingredients-section h2 { text-align: center; margin-bottom: 16px; }
.ingredients-section .section-intro { text-align: center; color: var(--volh-clr-text-muted); max-width: 600px; margin: 0 auto 48px; }

.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ingredients-image {
  border-radius: var(--volh-radius);
  overflow: hidden;
  box-shadow: var(--volh-shadow-card);
}

.ingredients-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.ingredient-cards { display: flex; flex-direction: column; gap: 16px; }

.ingredient-card {
  background: #fff;
  border: 1px solid var(--volh-clr-border);
  border-radius: var(--volh-radius-sm);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--volh-shadow-soft);
}

.ingredient-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--volh-radius-sm);
  background: var(--volh-clr-accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.ingredient-info h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--volh-clr-text); }
.ingredient-info p { font-size: 0.83rem; color: var(--volh-clr-text-muted); margin: 0; }
.ingredient-claim {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--volh-clr-accent);
  background: var(--volh-clr-accent-pale);
  padding: 2px 10px;
  border-radius: var(--volh-radius-xs);
}

.nrv-table-wrap {
  margin-top: 32px;
  border-radius: var(--volh-radius-sm);
  overflow: hidden;
  border: 1px solid var(--volh-clr-border);
}

.nrv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.nrv-table th {
  background: var(--volh-clr-dark);
  color: #e8e0ff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nrv-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--volh-clr-border);
  color: var(--volh-clr-text-muted);
}

.nrv-table tr:last-child td { border-bottom: none; }
.nrv-table tr:nth-child(even) td { background: var(--volh-clr-bg-soft); }

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

.reviews-section { background: var(--volh-clr-bg-soft); }
.reviews-section h2 { text-align: center; margin-bottom: 16px; }
.reviews-section .section-intro { text-align: center; color: var(--volh-clr-text-muted); max-width: 600px; margin: 0 auto 48px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: var(--volh-radius);
  box-shadow: var(--volh-shadow-card);
  padding: 28px;
}

.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }

.review-text {
  font-size: 0.92rem;
  color: var(--volh-clr-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--volh-clr-accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--volh-clr-accent);
  flex-shrink: 0;
}

.review-meta { display: flex; flex-direction: column; }
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--volh-clr-text); }
.review-location { font-size: 0.78rem; color: var(--volh-clr-text-muted); }

.review-image-block {
  margin-top: 32px;
  border-radius: var(--volh-radius);
  overflow: hidden;
  box-shadow: var(--volh-shadow-soft);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.review-image-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.reviews-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--volh-clr-text-muted);
  margin-top: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.order-section { background: var(--volh-clr-dark); }
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.order-info { color: #e8e0ff; }
.order-info .eyebrow { color: var(--volh-clr-accent-light); }
.order-info h2 { color: #fff; margin-bottom: 20px; }
.order-info p { color: #cdc4f0; margin-bottom: 24px; }

.order-pack-image {
  border-radius: var(--volh-radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.06);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-pack-image img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.price-current {
  font-family: var(--volh-ff-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}

.price-note {
  font-size: 0.85rem;
  color: var(--volh-clr-accent-light);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #cdc4f0;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--volh-clr-accent-light);
  flex-shrink: 0;
}

.order-form-wrap {
  background: #fff;
  border-radius: var(--volh-radius);
  padding: 40px;
  box-shadow: var(--volh-shadow-card);
}

.order-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--volh-clr-text);
}

.unlq { display: flex; flex-direction: column; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--volh-clr-text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--volh-clr-border);
  border-radius: var(--volh-radius-sm);
  font-family: var(--volh-ff-body);
  font-size: 0.95rem;
  color: var(--volh-clr-text);
  background: #fff;
  transition: border-color var(--volh-transition);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--volh-clr-accent);
}

.form-hidden { display: none; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--volh-clr-text-muted);
  line-height: 1.5;
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--volh-clr-accent);
  color: #fff;
  border: none;
  border-radius: var(--volh-radius);
  font-family: var(--volh-ff-head);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: background var(--volh-transition);
}

.form-submit:hover { background: var(--volh-clr-dark-2); }

.form-note {
  font-size: 0.75rem;
  color: var(--volh-clr-text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .order-inner { grid-template-columns: 1fr; gap: 32px; }
  .order-form-wrap { padding: 28px; }
}

.press-band {
  background: var(--volh-clr-accent-pale);
  padding: 40px 0;
}

.press-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-quote {
  border-left: 3px solid var(--volh-clr-accent);
  padding-left: 20px;
}

.press-quote-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--volh-clr-text);
  margin-bottom: 8px;
}

.press-quote-source {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--volh-clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .press-quotes { grid-template-columns: 1fr; }
}

.lf-quiz-section {}
.lf-quiz-section h2 { text-align: center; margin-bottom: 8px; }
.lf-quiz-section .section-intro { text-align: center; color: var(--volh-clr-text-muted); margin-bottom: 40px; }

.uoku {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--volh-radius);
  box-shadow: var(--volh-shadow-card);
  overflow: hidden;
}

.quiz-progress-bar {
  height: 4px;
  background: var(--volh-clr-accent-pale);
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--volh-clr-accent) 0%, var(--volh-clr-accent-2) 100%);
  transition: width 0.4s ease;
}

.quiz-body { padding: 36px 36px 28px; }

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

.quiz-q {
  font-family: var(--volh-ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--volh-clr-text);
  margin-bottom: 20px;
}

.quiz-options { display: flex; flex-direction: column; gap: 10px; }

.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1.5px solid var(--volh-clr-border);
  border-radius: var(--volh-radius-sm);
  cursor: pointer;
  transition: all var(--volh-transition);
  font-size: 0.93rem;
  color: var(--volh-clr-text);
  background: #fff;
  width: 100%;
  text-align: left;
}

.quiz-option:hover {
  border-color: var(--volh-clr-accent);
  background: var(--volh-clr-accent-pale);
  color: var(--volh-clr-accent);
}

.quiz-option.selected {
  border-color: var(--volh-clr-accent);
  background: var(--volh-clr-accent);
  color: #fff;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 36px 28px;
}

.quiz-counter {
  font-size: 0.8rem;
  color: var(--volh-clr-text-muted);
  font-weight: 600;
}

.quiz-result { display: none; padding: 36px; text-align: center; }
.quiz-result.is-active { display: block; }
.quiz-result-icon { font-size: 3rem; margin-bottom: 16px; }
.quiz-result h3 { margin-bottom: 12px; }
.quiz-result p { color: var(--volh-clr-text-muted); font-size: 0.93rem; margin-bottom: 24px; }

.site-footer {
  background: var(--volh-clr-dark);
  color: #cdc4f0;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; max-width: 280px; color: #a395cc; }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8e0ff;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: #a395cc;
  transition: color var(--volh-transition);
}
.footer-col ul li a:hover { color: var(--volh-clr-accent-light); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal {
  font-size: 0.75rem;
  color: #7a6e96;
  line-height: 1.7;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: #5e5678;
  line-height: 1.7;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--volh-radius-sm);
  border-left: 2px solid var(--volh-clr-accent);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  color: #7a6e96;
}
.footer-links a:hover { color: var(--volh-clr-accent-light); }

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

.uerz {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--volh-clr-dark);
  color: #e8e0ff;
  padding: 20px 24px;
  display: none;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.35);
}

.uerz.is-visible { display: block; }

.cookie-banner-inner {
  max-width: var(--volh-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.uerz p {
  flex: 1;
  font-size: 0.83rem;
  line-height: 1.6;
  color: #cdc4f0;
  margin: 0;
}

.uerz p a { color: var(--volh-clr-accent-light); }

.uefr { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--volh-radius-sm);
  font-family: var(--volh-ff-body);
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--volh-transition);
}

.cookie-btn-accept {
  background: var(--volh-clr-accent);
  color: #fff;
  border-color: var(--volh-clr-accent);
}
.cookie-btn-accept:hover { background: var(--volh-clr-accent-2); border-color: var(--volh-clr-accent-2); }

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

.cookie-btn-settings {
  background: transparent;
  color: var(--volh-clr-accent-light);
  border-color: transparent;
  text-decoration: underline;
  padding: 10px 12px;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
}

.cookie-settings-modal.is-open { display: flex; }

.cookie-modal-box {
  background: #fff;
  border-radius: var(--volh-radius);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.cookie-modal-box h3 { margin-bottom: 20px; }

.cookie-toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--volh-clr-border);
}

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

.cookie-toggle-label { font-size: 0.88rem; font-weight: 700; color: var(--volh-clr-text); margin-bottom: 4px; }
.cookie-toggle-desc { font-size: 0.78rem; color: var(--volh-clr-text-muted); max-width: 280px; }

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

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

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--volh-transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  transition: transform var(--volh-transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.toggle-switch input:checked + .toggle-slider { background: var(--volh-clr-accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }

.modal-save-btn {
  margin-top: 24px;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--volh-clr-text-muted);
  padding: 12px 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--volh-clr-text-muted); }
.breadcrumb a:hover { color: var(--volh-clr-accent); }
.breadcrumb-sep { color: var(--volh-clr-border); }
.breadcrumb-current { color: var(--volh-clr-accent); font-weight: 600; }

.page-header {
  background: var(--volh-clr-bg-soft);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--volh-clr-border);
}

.page-header h1 { margin-bottom: 8px; }
.page-header p { color: var(--volh-clr-text-muted); font-size: 1.05rem; max-width: 560px; }

.prose { max-width: 720px; }
.prose h2 { margin-top: 40px; margin-bottom: 16px; }
.prose h3 { margin-top: 28px; margin-bottom: 12px; }
.prose p { color: var(--volh-clr-text-muted); }
.prose ul { list-style: disc; padding-left: 24px; display: flex; flex-direction: column; gap: 6px; }
.prose ul li { color: var(--volh-clr-text-muted); font-size: 0.93rem; }
.prose a { text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.88rem; }
.prose table th { background: var(--volh-clr-bg-soft); padding: 12px; border: 1px solid var(--volh-clr-border); font-weight: 700; text-align: left; }
.prose table td { padding: 10px 12px; border: 1px solid var(--volh-clr-border); color: var(--volh-clr-text-muted); }

.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--volh-clr-accent);
  color: #fff;
  padding: 10px 20px;
  z-index: 9999;
  border-radius: 0 0 var(--volh-radius-xs) 0;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

@media (max-width: 600px) {
  .hero-inner { padding: 48px 0; }
  .week-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .order-inner { grid-template-columns: 1fr; }
  .press-quotes { grid-template-columns: 1fr; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uerz{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}
.uerz.is-visible,.cookie-banner--visible,.uerz.show,.uerz.active{transform:none !important}
.uerz a{color:inherit;text-decoration:underline}
.uerz button{cursor:pointer}
.uyxi{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}
.uyxi.is-visible,.cookie-modal--visible,.uyxi.show,.uyxi.active{display:flex !important}
.uxqy,.uyxi>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.usmh .uoku,.usmh .uios,.usmh .ukms,.usmh .uufv,.uakw .uoku,.uakw .uios,.uakw .ukms,.uakw .uufv{background:#fff !important;color:#1a1a1a !important}
.uoku,.uios{color:#1a1a1a !important}
.uoku label,.uios label,.uoku p,.uios p,.uoku .ufev,.uoku span,.uios span,.uhli,.urxd,.ukms .uphf,.ukms .uphf *{color:#1a1a1a !important}
.uhli,.urxd{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uoku .utzy{color:#1a1a1a !important}
.uoku .utzy.is-sel{color:#fff !important}
.unlq .ujew{display:none}
.unlq .ujew.is-visible{display:block !important;color:#c0392b}
.unlq .ubhk,.unlq [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.unlq{color:#1a1a1a}
.usmh .unlq,.uakw .unlq{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.unnw{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.unnw img{width:100%;height:100%;object-fit:cover}
.uubv,.ulug{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uubv img,.ulug img{width:100%;height:100%;object-fit:cover;display:block}
.uubv img{opacity:.28}
.ulug img{opacity:.07}
*:has(> .uubv),*:has(> .ulug){position:relative}
.ukvs{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)}
.ukvs .uaki{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ukvs .uacw{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ujkj{margin:1.4rem auto;max-width:920px}
.ujkj img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uvfy{padding:3rem 0}
.ukau{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ukau img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uufv{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ulcl{display:flex;overflow:hidden;gap:0 !important}
.unwa{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uanx{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}
.urey{left:.5rem}.usqq{right:.5rem}
.ukms .uphf{display:none}.ukms .uphf.is-active{display:block}
.uoku .uzyn{display:block !important}
.uoku .undt{display:flex;flex-wrap:wrap;gap:.5rem}
.uoku .utzy{cursor:pointer}
