:root {
  --vgho-clr-primary: #6c1cd1;
  --vgho-clr-primary-dark: #2f016a;
  --vgho-clr-black: #000000;
  --vgho-clr-lavender-light: #e1d9ff;
  --vgho-clr-cream: #fff8cb;
  --vgho-clr-lavender-mid: #b9a6ff;
  --vgho-clr-blush: #ffe8f9;
  --vgho-clr-white: #ffffff;
  --vgho-clr-bg: #ffffff;
  --vgho-clr-text: #1a1a2e;
  --vgho-clr-text-muted: #4a4a6a;
  --vgho-clr-border: #d0c8f0;
  --vgho-clr-dark-band: #2f016a;
  --vgho-clr-accent-gold: #c8a820;
  --vgho-font-heading: 'Sora', sans-serif;
  --vgho-font-body: 'Inter', sans-serif;
  --vgho-radius: 0px;
  --vgho-container: 1320px;
  --vgho-spacing-xs: 0.5rem;
  --vgho-spacing-sm: 1rem;
  --vgho-spacing-md: 2rem;
  --vgho-spacing-lg: 4rem;
  --vgho-spacing-xl: 6rem;
}

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

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

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

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

a { color: var(--vgho-clr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--vgho-container);
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--vgho-font-heading);
  line-height: 1.25;
  color: var(--vgho-clr-text);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

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

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

.btn-pill {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  background: var(--vgho-clr-primary);
  color: var(--vgho-clr-white);
  font-family: var(--vgho-font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-pill:hover { background: var(--vgho-clr-primary-dark); transform: translateY(-1px); text-decoration: none; }
.btn-pill-outline {
  background: transparent;
  border: 2px solid var(--vgho-clr-primary);
  color: var(--vgho-clr-primary);
}
.btn-pill-outline:hover { background: var(--vgho-clr-primary); color: var(--vgho-clr-white); }

section { padding: var(--vgho-spacing-lg) 0; }

.uchd {
  background: var(--vgho-clr-dark-band);
  color: var(--vgho-clr-white);
}
.uchd h2, .uchd h3, .uchd h4 { color: var(--vgho-clr-white); }
.uchd p, .uchd li { color: var(--vgho-clr-lavender-light); }
.uchd .accent-word { color: var(--vgho-clr-cream); }

.uivv {
  background: var(--vgho-clr-primary);
  color: var(--vgho-clr-white);
}
.uivv h2, .uivv h3 { color: var(--vgho-clr-white); }
.uivv p { color: var(--vgho-clr-lavender-light); }

.section-cream { background: #fdfbf5; }
.section-lavender { background: #f4f0ff; }

.thin-dark-band {
  background: var(--vgho-clr-primary-dark);
  padding: 0.75rem 0;
}
.thin-dark-band .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.band-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--vgho-clr-lavender-light);
  font-family: var(--vgho-font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.band-chip svg { flex-shrink: 0; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vgho-clr-white);
  border-bottom: 1px solid var(--vgho-clr-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--vgho-container);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--vgho-font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--vgho-clr-primary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--vgho-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vgho-clr-text);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--vgho-clr-primary); text-decoration: none; }
.nav-cta { margin-left: 1rem; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--vgho-clr-white);
  border-top: 1px solid var(--vgho-clr-border);
}
.nav-mobile-menu.is-open { display: flex; }
.nav-mobile-menu a { font-weight: 500; color: var(--vgho-clr-text); }

.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.uaww {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 2rem;
  max-width: var(--vgho-container);
  margin: 0 auto;
}
.hero-text { padding-right: 2rem; }
.hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--vgho-clr-text-muted);
  margin-bottom: 1.25rem;
  font-family: var(--vgho-font-body);
}
.hero-breadcrumb a { color: var(--vgho-clr-primary); }
.hero-tag {
  display: inline-block;
  background: var(--vgho-clr-lavender-light);
  color: var(--vgho-clr-primary-dark);
  font-family: var(--vgho-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem;
}
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text p { font-size: 1.1rem; color: var(--vgho-clr-text-muted); margin-bottom: 1.75rem; }

.quiz-card {
  background: var(--vgho-clr-white);
  border: 2px dashed var(--vgho-clr-primary);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(108,28,209,0.10);
}
.quiz-card-header {
  font-family: var(--vgho-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vgho-clr-primary-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quiz-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.quiz-progress-dot {
  height: 4px;
  flex: 1;
  background: var(--vgho-clr-lavender-light);
  transition: background 0.3s;
}
.quiz-progress-dot.active { background: var(--vgho-clr-primary); }
.quiz-question {
  font-family: var(--vgho-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--vgho-clr-text);
  margin-bottom: 1rem;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.quiz-option {
  display: block;
  padding: 0.65rem 1rem;
  border: 1.5px dashed var(--vgho-clr-lavender-mid);
  background: var(--vgho-clr-white);
  color: var(--vgho-clr-text);
  font-family: var(--vgho-font-body);
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-option:hover, .quiz-option.selected {
  border-color: var(--vgho-clr-primary);
  background: var(--vgho-clr-lavender-light);
  color: var(--vgho-clr-primary-dark);
}
.quiz-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
}
.quiz-result {
  display: none;
  text-align: center;
}
.quiz-result.is-visible { display: block; }
.quiz-result-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.quiz-result h3 { color: var(--vgho-clr-primary-dark); margin-bottom: 0.75rem; }
.quiz-result p { font-size: 0.9rem; color: var(--vgho-clr-text-muted); margin-bottom: 1.25rem; }

.myths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.myth-card {
  border: 1.5px dashed var(--vgho-clr-border);
  padding: 1.75rem;
}
.myth-label {
  font-family: var(--vgho-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.myth-label.myth { color: #c0392b; }
.myth-label.fact { color: #27ae60; }
.myth-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.myth-card p { font-size: 0.88rem; color: var(--vgho-clr-text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  border: 1.5px dashed var(--vgho-clr-border);
  padding: 1.75rem;
  position: relative;
}
.review-stars {
  color: var(--vgho-clr-accent-gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-size: 0.9rem;
  color: var(--vgho-clr-text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.review-author {
  font-family: var(--vgho-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--vgho-clr-text);
}
.review-meta { font-size: 0.78rem; color: var(--vgho-clr-text-muted); }
.review-image-wrap {
  margin-bottom: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.review-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.reviews-disclaimer {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: var(--vgho-clr-lavender-light);
  border-left: 3px solid var(--vgho-clr-primary);
  font-size: 0.82rem;
  color: var(--vgho-clr-text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.author-card {
  border: 1.5px dashed var(--vgho-clr-border);
  padding: 2rem;
}
.author-initials {
  width: 64px;
  height: 64px;
  background: var(--vgho-clr-lavender-light);
  color: var(--vgho-clr-primary-dark);
  font-family: var(--vgho-font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.author-card h4 { color: var(--vgho-clr-primary-dark); margin-bottom: 0.25rem; }
.author-role { font-size: 0.82rem; color: var(--vgho-clr-text-muted); margin-bottom: 0.75rem; }
.brand-facts { list-style: none; }
.brand-facts li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--vgho-clr-border);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.brand-facts li:last-child { border-bottom: none; }

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.uzlw {
  border: 1.5px dashed var(--vgho-clr-border);
  border-bottom: none;
}
.uzlw:last-child { border-bottom: 1.5px dashed var(--vgho-clr-border); }
.ugic {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  font-family: var(--vgho-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vgho-clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ugic:hover { background: var(--vgho-clr-lavender-light); }
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--vgho-clr-primary);
}
.uzlw.is-open .faq-icon { transform: rotate(45deg); }
.uhss {
  display: none;
  padding: 0 1.5rem 1.1rem;
  font-size: 0.9rem;
  color: var(--vgho-clr-text-muted);
}
.uzlw.is-open .uhss { display: block; }

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  border: 1.5px dashed var(--vgho-clr-border);
}
.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--vgho-clr-primary);
  color: var(--vgho-clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.checklist-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.checklist-item p { font-size: 0.83rem; color: var(--vgho-clr-text-muted); }

.routine-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}
.routine-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px dashed var(--vgho-clr-border);
}
.routine-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--vgho-font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--vgho-clr-lavender-mid);
  line-height: 1;
}
.routine-step h4 { margin-bottom: 0.25rem; }
.routine-step p { font-size: 0.88rem; color: var(--vgho-clr-text-muted); }

.mechanism-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.mechanism-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.mechanism-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.mech-dot {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--vgho-clr-primary);
  color: var(--vgho-clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vgho-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}
.mechanism-step h4 { margin-bottom: 0.2rem; }
.mechanism-step p { font-size: 0.85rem; color: var(--vgho-clr-text-muted); }
.mechanism-img { aspect-ratio: 1/1; overflow: hidden; }
.mechanism-img img { width: 100%; height: 100%; object-fit: contain; }

.product-section { background: #f4f0ff; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.product-pack-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1.5px dashed var(--vgho-clr-border);
  background: var(--vgho-clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.product-pack-wrap img { width: 100%; height: 100%; object-fit: contain; }
.product-detail-img {
  margin-top: 1.5rem;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1.5px dashed var(--vgho-clr-border);
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-info h2 { margin-bottom: 0.75rem; }
.product-price {
  font-family: var(--vgho-font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--vgho-clr-primary);
  margin-bottom: 0.3rem;
}
.product-price-original {
  font-size: 1rem;
  color: var(--vgho-clr-text-muted);
  text-decoration: line-through;
  margin-bottom: 1.25rem;
}
.product-bullets {
  list-style: none;
  margin-bottom: 1.75rem;
}
.product-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--vgho-clr-border);
}
.product-bullets li:last-child { border-bottom: none; }
.product-bullets li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--vgho-clr-primary);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.ingredient-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
}
.ingredient-table th {
  text-align: left;
  font-family: var(--vgho-font-heading);
  font-weight: 600;
  padding: 0.6rem 0.75rem;
  background: var(--vgho-clr-lavender-light);
  color: var(--vgho-clr-primary-dark);
  border: 1px solid var(--vgho-clr-border);
}
.ingredient-table td {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--vgho-clr-border);
  color: var(--vgho-clr-text-muted);
  vertical-align: top;
}
.ingredient-table tr:nth-child(even) td { background: #f9f7ff; }

.ubcf {
  background: var(--vgho-clr-white);
  border: 2px dashed var(--vgho-clr-primary);
  padding: 2rem;
  margin-top: 2rem;
}
.ubcf h3 {
  font-family: var(--vgho-font-heading);
  font-size: 1.15rem;
  color: var(--vgho-clr-primary-dark);
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--vgho-clr-text);
}
.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--vgho-clr-border);
  background: var(--vgho-clr-white);
  font-family: var(--vgho-font-body);
  font-size: 0.9rem;
  color: var(--vgho-clr-text);
  transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--vgho-clr-primary); }
.form-hp { display: none; }
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.consent-group input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--vgho-clr-primary); }
.consent-group label { font-size: 0.8rem; color: var(--vgho-clr-text-muted); }
.form-submit-wrap { text-align: center; }
.form-note {
  font-size: 0.78rem;
  color: var(--vgho-clr-text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

.trust-band {
  background: var(--vgho-clr-primary-dark);
  padding: 2rem 0;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px dashed rgba(177,166,255,0.5);
  padding: 0.75rem 1.5rem;
  color: var(--vgho-clr-lavender-light);
}
.trust-chip svg { flex-shrink: 0; color: var(--vgho-clr-lavender-mid); }
.trust-chip-label {
  font-family: var(--vgho-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-chip-sub { font-size: 0.75rem; color: var(--vgho-clr-lavender-mid); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.bento-cell {
  border: 1.5px dashed var(--vgho-clr-lavender-mid);
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
}
.bento-cell.bento-wide { grid-column: span 2; }
.bento-cell.bento-tall { grid-row: span 2; }
.bento-cell h4 { color: var(--vgho-clr-white); margin-bottom: 0.5rem; font-size: 1rem; }
.bento-cell p { color: var(--vgho-clr-lavender-light); font-size: 0.85rem; }
.bento-stat {
  font-family: var(--vgho-font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--vgho-clr-cream);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.site-footer {
  background: var(--vgho-clr-black);
  color: var(--vgho-clr-lavender-light);
  padding: var(--vgho-spacing-lg) 0 var(--vgho-spacing-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--vgho-font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--vgho-clr-white);
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--vgho-clr-lavender-mid); margin-bottom: 1.25rem; }
.footer-heading {
  font-family: var(--vgho-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vgho-clr-lavender-mid);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--vgho-clr-lavender-light); font-size: 0.88rem; }
.footer-links a:hover { color: var(--vgho-clr-white); }
.footer-bottom {
  border-top: 1px solid rgba(177,166,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-copy { font-size: 0.8rem; color: var(--vgho-clr-text-muted); }
.footer-supplement-disclaimer {
  font-size: 0.78rem;
  color: #666688;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px dashed #3a3a5a;
  line-height: 1.5;
}

.uwzp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vgho-clr-primary-dark);
  color: var(--vgho-clr-lavender-light);
  padding: 1.25rem 2rem;
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 3px solid var(--vgho-clr-primary);
}
.uwzp.is-visible { display: flex; }
.uwzp p { font-size: 0.85rem; flex: 1; min-width: 200px; }
.uwzp a { color: var(--vgho-clr-lavender-mid); }
.uujm { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.uujm button {
  padding: 0.55rem 1.25rem;
  font-family: var(--vgho-font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.btn-cookie-accept { background: var(--vgho-clr-primary); color: var(--vgho-clr-white); border-radius: 999px; }
.btn-cookie-reject { background: transparent; color: var(--vgho-clr-lavender-light); border: 1.5px dashed var(--vgho-clr-lavender-mid); border-radius: 999px; }
.btn-cookie-settings { background: transparent; color: var(--vgho-clr-lavender-mid); border: none; text-decoration: underline; border-radius: 0; font-size: 0.78rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--vgho-clr-text-muted);
  padding: 0.75rem 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--vgho-clr-primary); }
.breadcrumb-sep { color: var(--vgho-clr-border); }

.page-hero {
  background: var(--vgho-clr-lavender-light);
  padding: 3rem 0 2.5rem;
}
.page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--vgho-clr-primary-dark); }

.prose { max-width: 780px; }
.prose h2 { margin: 2rem 0 0.75rem; color: var(--vgho-clr-primary-dark); }
.prose h3 { margin: 1.5rem 0 0.5rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; font-size: 0.95rem; }
.prose strong { color: var(--vgho-clr-text); }
.prose a { color: var(--vgho-clr-primary); }

.map-container { margin-top: 2rem; }
.map-container iframe { width: 100%; height: 450px; border: 0; display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.udsf { background: var(--vgho-clr-white); border: 1.5px dashed var(--vgho-clr-border); padding: 2rem; }
.udsf h3 { margin-bottom: 1.25rem; color: var(--vgho-clr-primary-dark); }
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--vgho-clr-border);
  background: var(--vgho-clr-white);
  font-family: var(--vgho-font-body);
  font-size: 0.9rem;
  color: var(--vgho-clr-text);
  resize: vertical;
  min-height: 120px;
}
.form-group textarea:focus { outline: none; border-color: var(--vgho-clr-primary); }
.contact-info h3 { margin-bottom: 1rem; color: var(--vgho-clr-primary-dark); }
.contact-info p { font-size: 0.9rem; color: var(--vgho-clr-text-muted); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }
  .hero-text { padding-right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-cell.bento-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --vgho-spacing-lg: 3rem; --vgho-spacing-xl: 4rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell.bento-wide { grid-column: span 1; }
  .bento-cell.bento-tall { grid-row: span 1; }
  .myths-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .thin-dark-band .container { gap: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .uwzp { padding: 1rem 1.25rem; }
  .ubcf { padding: 1.25rem; }
  .quiz-card { padding: 1.25rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uwzp{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}
.uwzp.is-visible,.cookie-banner--visible,.uwzp.show,.uwzp.active{transform:none !important}
.uwzp a{color:inherit;text-decoration:underline}
.uwzp button{cursor:pointer}
.uvnu{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}
.uvnu.is-visible,.cookie-modal--visible,.uvnu.show,.uvnu.active{display:flex !important}
.uvxg,.uvnu>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uchd .uacg,.uchd .uaro,.uchd .ursh,.uchd .uxcx,.uivv .uacg,.uivv .uaro,.uivv .ursh,.uivv .uxcx{background:#fff !important;color:#1a1a1a !important}
.uacg,.uaro{color:#1a1a1a !important}
.uacg label,.uaro label,.uacg p,.uaro p,.uacg .uzaw,.uacg span,.uaro span,.uike,.ujxi,.ursh .ubco,.ursh .ubco *{color:#1a1a1a !important}
.uike,.ujxi{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uacg .uskp{color:#1a1a1a !important}
.uacg .uskp.is-sel{color:#fff !important}
.ubcf .uamv{display:none}
.ubcf .uamv.is-visible{display:block !important;color:#c0392b}
.ubcf .utgw,.ubcf [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ubcf{color:#1a1a1a}
.uchd .ubcf,.uivv .ubcf{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.unoa{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.unoa img{width:100%;height:100%;object-fit:cover}
.uaww,.uquj{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uaww img,.uquj img{width:100%;height:100%;object-fit:cover;display:block}
.uaww img{opacity:.28}
.uquj img{opacity:.07}
*:has(> .uaww),*:has(> .uquj){position:relative}
.uyyi{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)}
.uyyi .uini{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uyyi .uuku{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.urng{margin:1.4rem auto;max-width:920px}
.urng img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.usbz{padding:3rem 0}
.ulxc{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ulxc img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uxcx{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.urip{display:flex;overflow:hidden;gap:0 !important}
.uycx{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uokn{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}
.uvrn{left:.5rem}.usrm{right:.5rem}
.ursh .ubco{display:none}.ursh .ubco.is-active{display:block}
.uacg .uwhn{display:block !important}
.uacg .uetw{display:flex;flex-wrap:wrap;gap:.5rem}
.uacg .uskp{cursor:pointer}
