:root {
  --vmcf-color-primary: #6c1cd1;
  --vmcf-color-primary-dark: #2f016a;
  --vmcf-color-accent: #6c1cd1;
  --vmcf-color-accent-light: #e1d9ff;
  --vmcf-color-accent-mid: #b9a6ff;
  --vmcf-color-warm: #fff8cb;
  --vmcf-color-black: #000000;
  --vmcf-color-white: #ffffff;
  --vmcf-color-bg: #f5f5f6;
  --vmcf-color-bg-card: #ffffff;
  --vmcf-color-text: #1a1a2e;
  --vmcf-color-text-muted: #5a5a72;
  --vmcf-color-border: #ddd8f0;
  --vmcf-radius: 12px;
  --vmcf-shadow-elevated: 0 4px 24px rgba(108,28,209,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --vmcf-container-width: 1320px;
  --vmcf-font-heading: 'Cormorant Garamond', Georgia, serif;
  --vmcf-font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vmcf-font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--vmcf-color-text);
  background: var(--vmcf-color-bg);
}

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

a { color: var(--vmcf-color-primary); text-decoration: underline; }
a:hover { color: var(--vmcf-color-primary-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--vmcf-font-heading);
  line-height: 1.18;
  font-weight: 700;
  color: var(--vmcf-color-text);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.hero__h1-number {
  font-size: 1.25em;
  color: var(--vmcf-color-primary);
  font-style: italic;
}
.hero__h1-accent { color: var(--vmcf-color-accent-mid); font-style: italic; }

.container {
  max-width: var(--vmcf-container-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.container--narrow { max-width: 820px; }
.container--article { max-width: 760px; }

.section-light { background: var(--vmcf-color-white); padding: 5rem 0; }
.section--bg-grey { background: var(--vmcf-color-bg); }
.section--wide { padding: 5rem 0; }

.ulwj {
  background: var(--vmcf-color-primary-dark);
  color: var(--vmcf-color-white);
  padding: 5rem 0;
}
.ulwj h2, .ulwj h3 { color: var(--vmcf-color-white); }

.uwws {
  background: var(--vmcf-color-primary);
  color: var(--vmcf-color-white);
  padding: 5rem 0;
}
.uwws h2 { color: var(--vmcf-color-white); }

.text-light { color: var(--vmcf-color-white); }

.section-label {
  font-family: var(--vmcf-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vmcf-color-primary);
  margin-bottom: 0.75rem;
}
.section-label--light { color: var(--vmcf-color-accent-light); }

.section-intro {
  font-size: 1.08rem;
  color: var(--vmcf-color-text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.section-intro.text-light { color: rgba(255,255,255,0.82); }

.disclaimer-small {
  font-size: 0.82rem;
  color: var(--vmcf-color-text-muted);
  line-height: 1.5;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  font-family: var(--vmcf-font-body);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  border-radius: var(--vmcf-radius);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--vmcf-color-primary-dark);
  color: var(--vmcf-color-white);
  border-color: var(--vmcf-color-primary-dark);
}
.btn--primary:hover { background: var(--vmcf-color-primary); border-color: var(--vmcf-color-primary); color: var(--vmcf-color-white); }
.btn--outline {
  background: transparent;
  color: var(--vmcf-color-primary-dark);
  border-color: var(--vmcf-color-primary-dark);
}
.btn--outline:hover { background: var(--vmcf-color-primary-dark); color: var(--vmcf-color-white); }
.btn--full { width: 100%; text-align: center; }

.ujlb {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vmcf-color-white);
  border-bottom: 1px solid var(--vmcf-color-border);
  padding: 0.9rem 0;
}
.ujlb .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--vmcf-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vmcf-color-primary-dark);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__logo:hover { color: var(--vmcf-color-primary); }
.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; display: flex; gap: 2rem; }
.site-nav a {
  font-family: var(--vmcf-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vmcf-color-text);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--vmcf-color-primary);
  border-bottom-color: var(--vmcf-color-primary);
}
.uamv {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--vmcf-color-primary-dark);
  margin-left: auto;
}

.hero--quiz-first {
  position: relative;
  background: var(--vmcf-color-primary-dark);
  overflow: hidden;
  padding: 0;
}
.hero__bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ureb {
  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: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero__chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(225,217,255,0.18);
  color: var(--vmcf-color-accent-light);
  border: 1px solid rgba(225,217,255,0.35);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
}
.hero__h1 { color: var(--vmcf-color-white); margin-bottom: 1.25rem; }
.hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 480px;
}

.hero__quiz-panel {
  background: var(--vmcf-color-white);
  border-radius: var(--vmcf-radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--vmcf-shadow-elevated);
}

.lf-quiz__progress {
  height: 4px;
  background: var(--vmcf-color-border);
  border-radius: 2px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.lf-quiz__progress-bar {
  display: block;
  height: 100%;
  background: var(--vmcf-color-primary);
  border-radius: 2px;
  transition: width 0.3s;
}
.lf-quiz__q {
  font-family: var(--vmcf-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vmcf-color-text);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.lf-quiz__options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.lf-quiz__opt {
  background: var(--vmcf-color-bg);
  border: 2px solid var(--vmcf-color-border);
  border-radius: var(--vmcf-radius);
  padding: 0.75rem 1.1rem;
  font-family: var(--vmcf-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vmcf-color-text);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}
.lf-quiz__opt:hover {
  border-color: var(--vmcf-color-primary);
  background: var(--vmcf-color-accent-light);
}
.lf-quiz__result { text-align: center; padding: 0.5rem 0; }
.lf-quiz__result-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.lf-quiz__result-title {
  font-family: var(--vmcf-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vmcf-color-primary-dark);
  margin-bottom: 0.5rem;
}
.lf-quiz__result-text {
  font-size: 0.97rem;
  color: var(--vmcf-color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.intro-strip { padding: 4.5rem 0; background: var(--vmcf-color-white); }
.intro-strip__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: center;
}
.intro-strip__pack {
  width: 320px;
  height: 320px;
  object-fit: contain;
  border-radius: var(--vmcf-radius);
  box-shadow: var(--vmcf-shadow-elevated);
}
.intro-strip__h2 { margin-bottom: 1rem; }
.intro-strip__text p { color: var(--vmcf-color-text-muted); margin-bottom: 1rem; }
.intro-strip__trust { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.trust-chip {
  background: var(--vmcf-color-accent-light);
  color: var(--vmcf-color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.elevated {
  background: var(--vmcf-color-white);
  border-radius: var(--vmcf-radius);
  box-shadow: var(--vmcf-shadow-elevated);
}

.scorecard-wrap { overflow-x: auto; }
.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.scorecard-table th, .scorecard-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--vmcf-color-border);
  text-align: left;
  vertical-align: middle;
}
.scorecard-table thead th {
  font-family: var(--vmcf-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vmcf-color-text-muted);
  background: var(--vmcf-color-bg);
}
.col-highlight { background: rgba(108,28,209,0.05); }
.col-highlight.editorial-score { color: var(--vmcf-color-primary-dark); font-weight: 700; }
.editorial-score { font-weight: 600; color: var(--vmcf-color-text-muted); }
.score { font-size: 1rem; color: var(--vmcf-color-primary); letter-spacing: 2px; }
.table-note { font-size: 0.8rem; color: var(--vmcf-color-text-muted); margin-top: 1rem; }

.myths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.myth-card {
  padding: 1.75rem;
  border-radius: var(--vmcf-radius);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
}
.myth-card__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.5rem;
}
.myth-card__label.myth { background: rgba(255,255,255,0.18); color: #fff8cb; }
.myth-card__label.fact { background: rgba(255,255,255,0.28); color: #ffffff; margin-top: 1rem; }
.myth-card__text { font-size: 0.95rem; color: rgba(255,255,255,0.88); line-height: 1.6; }

.lf-checklist { margin: 0; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.checklist__item { }
.checklist__label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  border-radius: var(--vmcf-radius);
  border: 2px solid var(--vmcf-color-border);
  background: var(--vmcf-color-white);
  box-shadow: var(--vmcf-shadow-elevated);
  transition: border-color 0.15s;
}
.checklist__label:hover { border-color: var(--vmcf-color-primary); }
.checklist__box { accent-color: var(--vmcf-color-primary); width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.checklist__icon { font-size: 1.35rem; flex-shrink: 0; }
.checklist__progress-wrap { margin-top: 1.5rem; }
.checklist__progress-bar-outer {
  height: 6px;
  background: var(--vmcf-color-border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.checklist__progress-bar-inner {
  height: 100%;
  background: var(--vmcf-color-primary);
  border-radius: 3px;
  transition: width 0.3s;
}
.checklist__progress-label { font-size: 0.85rem; color: var(--vmcf-color-text-muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.testimonial-card {
  padding: 1.75rem;
  border-radius: var(--vmcf-radius);
  background: var(--vmcf-color-white);
  box-shadow: var(--vmcf-shadow-elevated);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-card__stars { color: var(--vmcf-color-primary); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card__quote {
  font-family: var(--vmcf-font-heading);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--vmcf-color-text);
  line-height: 1.55;
  flex: 1;
}
.testimonial-card__author { font-size: 0.82rem; font-weight: 700; color: var(--vmcf-color-text-muted); }
.press-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 0.5rem; }
.press-quote {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--vmcf-color-primary);
  background: var(--vmcf-color-white);
  border-radius: 0 var(--vmcf-radius) var(--vmcf-radius) 0;
  font-family: var(--vmcf-font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--vmcf-color-text);
  box-shadow: var(--vmcf-shadow-elevated);
}

.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.ingredients-image-wrap img { border-radius: var(--vmcf-radius); width: 100%; }
.ingredients-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.ingredient-card {
  padding: 1.5rem;
  border-radius: var(--vmcf-radius);
  background: var(--vmcf-color-white);
  box-shadow: var(--vmcf-shadow-elevated);
}
.ingredient-card__icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.ingredient-card h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.ingredient-card p { font-size: 0.93rem; color: var(--vmcf-color-text-muted); line-height: 1.6; }
.ingredient-card__nrv {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vmcf-color-primary);
  background: var(--vmcf-color-accent-light);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}
.supplement-disclaimer-box {
  background: var(--vmcf-color-warm);
  border: 1px solid #e8e0a0;
  border-radius: var(--vmcf-radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.87rem;
  line-height: 1.6;
  color: #4a4430;
  margin-top: 2rem;
  overflow: hidden;
}

.reading-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.reading-list__item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-radius: var(--vmcf-radius);
  background: var(--vmcf-color-white);
  box-shadow: var(--vmcf-shadow-elevated);
  font-size: 0.95rem;
  line-height: 1.6;
}
.reading-list__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tip-card {
  padding: 1.75rem;
  border-radius: var(--vmcf-radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}
.tip-card__num {
  font-family: var(--vmcf-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--vmcf-color-accent-mid);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.tip-card h3 { color: var(--vmcf-color-white); font-size: 1.05rem; margin-bottom: 0.6rem; }
.tip-card p { color: rgba(255,255,255,0.78); font-size: 0.92rem; line-height: 1.6; }

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.order-image-block { display: flex; flex-direction: column; gap: 0; }
.product-pack {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--vmcf-radius);
  box-shadow: var(--vmcf-shadow-elevated);
}
.order-trust-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vmcf-color-text-muted);
}
.order-form-card {
  padding: 2rem;
  border-radius: var(--vmcf-radius);
  background: var(--vmcf-color-white);
  box-shadow: var(--vmcf-shadow-elevated);
}
.order-form-card__header { margin-bottom: 1.75rem; }
.price-display { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; }
.price-display__current { font-family: var(--vmcf-font-heading); font-size: 2rem; font-weight: 700; color: var(--vmcf-color-primary-dark); }
.price-display__was { font-size: 0.9rem; color: var(--vmcf-color-text-muted); text-decoration: line-through; }
.price-note { font-size: 0.8rem; color: var(--vmcf-color-text-muted); line-height: 1.5; }

.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--vmcf-color-text);
  margin-bottom: 0.35rem;
}
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--vmcf-color-border);
  border-radius: var(--vmcf-radius);
  font-family: var(--vmcf-font-body);
  font-size: 0.97rem;
  color: var(--vmcf-color-text);
  background: var(--vmcf-color-bg);
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--vmcf-color-primary);
}
.form-field--checkbox .form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--vmcf-color-text-muted);
  cursor: pointer;
}
.form-field--checkbox input[type="checkbox"] { margin-top: 3px; accent-color: var(--vmcf-color-primary); }
.refund-note { font-size: 0.82rem; color: var(--vmcf-color-text-muted); margin-top: 1rem; text-align: center; }

.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.usmb {
  border-radius: var(--vmcf-radius);
  background: var(--vmcf-color-white);
  box-shadow: var(--vmcf-shadow-elevated);
  overflow: hidden;
}
.faq-item__q {
  font-family: var(--vmcf-font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--vmcf-color-text);
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item__q::after { content: '+'; font-size: 1.3rem; color: var(--vmcf-color-primary); flex-shrink: 0; margin-left: 1rem; }
details[open] .faq-item__q::after { content: '−'; }
.faq-item__a {
  padding: 0 1.5rem 1.1rem;
  font-size: 0.95rem;
  color: var(--vmcf-color-text-muted);
  line-height: 1.65;
}

.site-footer { padding: 4rem 0 2.5rem; }
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--vmcf-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vmcf-color-white);
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
}
.site-footer__nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.site-footer__nav a:hover { color: var(--vmcf-color-white); text-decoration: underline; }
.site-footer__legal { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.site-footer__legal a { color: rgba(255,255,255,0.75); }
.supplement-footer-disclaimer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.48);
  font-size: 0.8rem;
  line-height: 1.55;
}

.urpl {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vmcf-color-primary-dark);
  border-top: 2px solid var(--vmcf-color-primary);
  padding: 1.25rem 1.5rem;
}
.urpl.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--vmcf-container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { color: rgba(255,255,255,0.85); font-size: 0.88rem; flex: 1; min-width: 200px; line-height: 1.55; }
.cookie-banner__text a { color: var(--vmcf-color-accent-light); }
.cookie-banner__actions { display: flex; gap: 0.65rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 0.55rem 1.2rem; font-size: 0.87rem; }
.cookie-banner__actions .btn--outline { color: var(--vmcf-color-white); border-color: rgba(255,255,255,0.5); }
.cookie-banner__actions .btn--outline:hover { background: rgba(255,255,255,0.12); }
.cookie-banner__actions .btn--primary { background: var(--vmcf-color-primary); border-color: var(--vmcf-color-primary); }

.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-settings-modal[hidden] { display: none; }
.cookie-settings-modal__box {
  background: var(--vmcf-color-white);
  border-radius: var(--vmcf-radius);
  padding: 2.25rem 2rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 48px rgba(0,0,0,0.25);
}
.cookie-settings-modal__box h2 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.cookie-settings-modal__box p { font-size: 0.9rem; color: var(--vmcf-color-text-muted); margin-bottom: 1.25rem; }
.cookie-toggle { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.cookie-toggle label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vmcf-color-text);
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--vmcf-color-border);
  border-radius: 8px;
}
.cookie-toggle input[type="checkbox"] { accent-color: var(--vmcf-color-primary); width: 18px; height: 18px; }
.cookie-settings-modal__actions { text-align: right; }

.breadcrumb ol { list-style: none; display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.breadcrumb ol li { font-size: 0.82rem; color: var(--vmcf-color-text-muted); }
.breadcrumb ol li + li::before { content: '/'; margin-right: 0.5rem; color: var(--vmcf-color-text-muted); }
.breadcrumb ol li a { color: var(--vmcf-color-primary); text-decoration: none; }
.breadcrumb--light ol li { color: rgba(255,255,255,0.65); }
.breadcrumb--light ol li a { color: var(--vmcf-color-accent-light); }

.page-hero {
  background: var(--vmcf-color-white);
  border-bottom: 1px solid var(--vmcf-color-border);
  padding: 3.5rem 0 3rem;
}
.page-hero--dark { background: var(--vmcf-color-primary-dark); }
.page-hero--editorial { background: var(--vmcf-color-bg); }
.page-hero__sub { font-size: 1.08rem; color: var(--vmcf-color-text-muted); max-width: 680px; margin-top: 1rem; line-height: 1.65; }

.article-body { }
.article-section { margin-bottom: 3rem; }
.article-section h2 { margin-bottom: 1rem; }
.article-section p { color: var(--vmcf-color-text-muted); margin-bottom: 1rem; line-height: 1.72; }
.article-image-wrap { margin: 2rem 0; }
.article-image-wrap img { border-radius: var(--vmcf-radius); width: 100%; }
.pull-quote {
  border-left: 3px solid var(--vmcf-color-primary);
  padding: 0.75rem 1.5rem;
  font-family: var(--vmcf-font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--vmcf-color-text);
  margin: 1.75rem 0;
  background: var(--vmcf-color-accent-light);
  border-radius: 0 var(--vmcf-radius) var(--vmcf-radius) 0;
}
.verdict-box {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: var(--vmcf-radius);
  background: var(--vmcf-color-white);
  box-shadow: var(--vmcf-shadow-elevated);
  margin: 1.5rem 0 1rem;
}
.verdict-score {
  font-family: var(--vmcf-font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--vmcf-color-primary);
  line-height: 1;
  flex-shrink: 0;
}
.verdict-score span { font-size: 1.5rem; color: var(--vmcf-color-text-muted); }
.verdict-text strong { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--vmcf-color-text-muted); }
.verdict-text p { color: var(--vmcf-color-text-muted); font-size: 0.95rem; line-height: 1.65; }
.article-cta { text-align: center; padding: 2.5rem 0; }
.editorial-byline { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.editorial-initials {
  width: 44px; height: 44px;
  background: var(--vmcf-color-accent-light);
  color: var(--vmcf-color-primary-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vmcf-font-heading); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.editorial-name { display: block; font-weight: 700; font-size: 0.9rem; }
.editorial-date { display: block; font-size: 0.8rem; color: var(--vmcf-color-text-muted); }

.nrv-table-wrap { margin-bottom: 3rem; }
.nrv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  margin-top: 1rem;
}
.nrv-table th, .nrv-table td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--vmcf-color-border);
  text-align: left;
  vertical-align: top;
}
.nrv-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--vmcf-color-bg);
  color: var(--vmcf-color-text-muted);
}
.nrv-table tfoot td { font-size: 0.8rem; color: var(--vmcf-color-text-muted); background: var(--vmcf-color-bg); }
.ingredient-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.ingredient-detail-card {
  padding: 1.5rem;
  border-radius: var(--vmcf-radius);
  background: var(--vmcf-color-white);
  box-shadow: var(--vmcf-shadow-elevated);
}
.ingredient-detail-card img { width: 100%; border-radius: 8px; margin-bottom: 1rem; }
.ingredient-detail-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.ingredient-detail-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.ingredient-detail-card p { font-size: 0.92rem; color: var(--vmcf-color-text-muted); line-height: 1.65; margin-bottom: 0.5rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info { padding: 2rem; border-radius: var(--vmcf-radius); background: var(--vmcf-color-bg); }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { font-size: 0.95rem; color: var(--vmcf-color-text-muted); line-height: 1.7; margin-bottom: 0.75rem; }
.map-container { margin-top: 1.5rem; border-radius: var(--vmcf-radius); overflow: hidden; }
.contact-form-wrap h2 { margin-bottom: 1.25rem; }
.form-field textarea { resize: vertical; }

.legal-body h2 { font-size: 1.2rem; margin: 2rem 0 0.5rem; }
.legal-body p { color: var(--vmcf-color-text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.75rem; }
.legal-body table { margin: 1rem 0 1.5rem; }
.legal-body a { color: var(--vmcf-color-primary); }

.thankyou-icon {
  font-size: 3rem;
  color: var(--vmcf-color-primary);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  background: var(--vmcf-color-accent-light);
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .intro-strip__inner { grid-template-columns: 1fr; }
  .intro-strip__pack { max-width: 260px; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--vmcf-color-white);
    border-top: 1px solid var(--vmcf-color-border);
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 200;
  }
  .site-nav.is-open ul { flex-direction: column; gap: 1rem; }
  .uamv { display: block; }
  .ujlb { position: relative; }
  .myths-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .press-quotes { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .ingredient-detail-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.urpl{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}
.urpl.is-visible,.cookie-banner--visible,.urpl.show,.urpl.active{transform:none !important}
.urpl a{color:inherit;text-decoration:underline}
.urpl button{cursor:pointer}
.uuwq{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}
.uuwq.is-visible,.cookie-modal--visible,.uuwq.show,.uuwq.active{display:flex !important}
.uzrb,.uuwq>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.ulwj .uzhs,.ulwj .uwqg,.ulwj .uufl,.ulwj .ugqb,.uwws .uzhs,.uwws .uwqg,.uwws .uufl,.uwws .ugqb{background:#fff !important;color:#1a1a1a !important}
.uzhs,.uwqg{color:#1a1a1a !important}
.uzhs label,.uwqg label,.uzhs p,.uwqg p,.uzhs .uktn,.uzhs span,.uwqg span,.udss,.uydb,.uufl .ukjr,.uufl .ukjr *{color:#1a1a1a !important}
.udss,.uydb{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uzhs .unsd{color:#1a1a1a !important}
.uzhs .unsd.is-sel{color:#fff !important}
.uquo .uplj{display:none}
.uquo .uplj.is-visible{display:block !important;color:#c0392b}
.uquo .uest,.uquo [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uquo{color:#1a1a1a}
.ulwj .uquo,.uwws .uquo{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ueug{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ueug img{width:100%;height:100%;object-fit:cover}
.ureb,.ujrm{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ureb img,.ujrm img{width:100%;height:100%;object-fit:cover;display:block}
.ureb img{opacity:.28}
.ujrm img{opacity:.07}
*:has(> .ureb),*:has(> .ujrm){position:relative}
.umzu{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)}
.umzu .utni{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.umzu .uuyy{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ucsa{margin:1.4rem auto;max-width:920px}
.ucsa img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ujmx{padding:3rem 0}
.ulhk{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ulhk img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ugqb{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uuqr{display:flex;overflow:hidden;gap:0 !important}
.utzz{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.udku{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}
.uuht{left:.5rem}.uens{right:.5rem}
.uufl .ukjr{display:none}.uufl .ukjr.is-active{display:block}
.uzhs .uovm{display:block !important}
.uzhs .ujgm{display:flex;flex-wrap:wrap;gap:.5rem}
.uzhs .unsd{cursor:pointer}
