:root {
  --vcio-accent: #5a10c0;
  --vcio-accent-light: #c5a8ff;
  --vcio-accent-dark: #3a0880;
  --vcio-plum: #4e0e9e;
  --vcio-gold: #c8a02a;
  --vcio-gold-light: #f0d878;
  --vcio-cream: #faf6ee;
  --vcio-cream-dark: #f0e9d8;
  --vcio-paper: #fffdf7;
  --vcio-dark-band: #1a0a2e;
  --vcio-dark-band-2: #130720;
  --vcio-ribbon: #2a0d4a;
  --vcio-text-main: #1c1025;
  --vcio-text-muted: #5a5068;
  --vcio-text-light: #ede8f5;
  --vcio-border: #d6cce8;
  --vcio-radius: 8px;
  --vcio-container: 1200px;
  --vcio-shadow-elevated: 0 4px 18px rgba(90,16,192,0.10), 0 1.5px 5px rgba(90,16,192,0.07);
  --vcio-font-head: 'Lora', Georgia, serif;
  --vcio-font-body: 'Karla', Arial, sans-serif;
}

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

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

body {
  font-family: var(--vcio-font-body);
  background: var(--vcio-cream);
  color: var(--vcio-text-main);
  line-height: 1.65;
}

a { color: var(--vcio-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--vcio-plum); }

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

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

h1, h2, h3, h4, h5 { font-family: var(--vcio-font-head); line-height: 1.22; }

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

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

ul { padding-left: 1.3em; }
li { margin-bottom: .4em; }

.outlined-word {
  -webkit-text-stroke: 2px var(--vcio-accent);
  color: transparent;
  font-family: var(--vcio-font-head);
  font-weight: 700;
  display: inline;
}

.btn {
  display: inline-block;
  font-family: var(--vcio-font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .72em 1.7em;
  border-radius: var(--vcio-radius);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--vcio-accent);
  color: #fff;
  border-color: var(--vcio-accent);
}
.btn-primary:hover { background: var(--vcio-plum); border-color: var(--vcio-plum); color: #fff; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--vcio-accent);
  border-color: var(--vcio-accent);
}
.btn-outline:hover { background: var(--vcio-accent); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--vcio-accent-light);
  border-color: var(--vcio-accent-light);
}
.btn-ghost:hover { background: var(--vcio-accent-light); color: var(--vcio-dark-band); transform: translateY(-1px); }

.btn-cream {
  background: var(--vcio-cream);
  color: var(--vcio-accent-dark);
  border-color: var(--vcio-cream);
}
.btn-cream:hover { background: var(--vcio-gold-light); border-color: var(--vcio-gold-light); transform: translateY(-1px); }

section { padding: 64px 0; }

.uoeu {
  background: var(--vcio-dark-band);
  color: var(--vcio-text-light);
}
.uoeu h2, .uoeu h3, .uoeu h4 { color: #fff; }
.uoeu p, .uoeu li { color: #d8cfe8; }
.uoeu a { color: var(--vcio-accent-light); }

.uayh {
  background: var(--vcio-dark-band-2);
  color: var(--vcio-text-light);
}
.uayh h2, .uayh h3 { color: var(--vcio-gold-light); }

.ribbon {
  background: var(--vcio-ribbon);
  height: 6px;
  width: 100%;
}

.star-rating { display: flex; align-items: center; gap: 6px; }
.stars { color: var(--vcio-gold); font-size: 1.1rem; letter-spacing: 1px; }
.star-count { font-size: .88rem; color: var(--vcio-text-muted); font-family: var(--vcio-font-body); }

.elevated-card {
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  padding: 28px 24px;
}

.chip {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--vcio-accent-light);
  color: var(--vcio-accent-dark);
  border-radius: 40px;
  padding: .28em .9em;
  margin-bottom: 10px;
}

.disclaimer {
  font-size: .78rem;
  color: var(--vcio-text-muted);
  font-style: italic;
  line-height: 1.5;
}

.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid var(--vcio-border);
  border-radius: 4px;
  padding: .18em .6em;
  color: var(--vcio-text-muted);
}

/* ── SITE HEADER ── */
.uqpq {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--vcio-paper);
  border-bottom: 1px solid var(--vcio-border);
  padding: 0 24px;
}

.uqpq .inner {
  max-width: var(--vcio-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.site-logo {
  font-family: var(--vcio-font-head);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--vcio-accent-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-logo svg { flex-shrink: 0; }

.site-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--vcio-text-muted);
  padding: .4em .75em;
  border-radius: var(--vcio-radius);
  transition: background .18s, color .18s;
}
.site-nav a:hover { background: var(--vcio-cream-dark); color: var(--vcio-accent); }

.nav-cta { font-size: .85rem; padding: .45em 1.1em; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--vcio-accent); }

@media (max-width: 780px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--vcio-paper); border-bottom: 1px solid var(--vcio-border); padding: 12px 24px 20px; gap: 2px; z-index: 800; }
  .site-nav.open { display: flex; }
  .hamburger { display: block; }
}

/* ── HERO SPLIT ── */
.hero {
  background: var(--vcio-cream);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.uuok {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .13;
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text { display: flex; flex-direction: column; gap: 18px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero h1 { color: var(--vcio-text-main); margin-bottom: 0; }

.hero-sub {
  font-size: 1.08rem;
  color: var(--vcio-text-muted);
  max-width: 440px;
  line-height: 1.7;
}

.hero-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 6px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--vcio-border);
}
.hero-trust-item { font-size: .8rem; color: var(--vcio-text-muted); display: flex; align-items: center; gap: 5px; }
.hero-trust-item svg { color: var(--vcio-accent); flex-shrink: 0; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vcio-accent-dark);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  min-height: 380px;
}

.hero-pack-img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--vcio-radius);
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--vcio-gold);
  color: var(--vcio-dark-band);
  font-size: .75rem;
  font-weight: 700;
  padding: .4em .8em;
  border-radius: 40px;
  letter-spacing: .04em;
}

@media (max-width: 820px) {
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { min-height: 260px; }
  .hero-pack-img { max-width: 200px; }
}

/* ── BENTO GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bento-tile {
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-tile .tile-icon {
  width: 38px;
  height: 38px;
  color: var(--vcio-accent);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.bento-tile h4 { color: var(--vcio-accent-dark); }
.bento-tile p { font-size: .88rem; color: var(--vcio-text-muted); }

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

/* ── INGREDIENTS TABLE ── */
.ingredients-section { background: var(--vcio-paper); }

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

.ingredients-table-wrap { overflow-x: auto; }

.ingredients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.ingredients-table th {
  background: var(--vcio-accent-dark);
  color: #fff;
  font-family: var(--vcio-font-body);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 10px 14px;
  text-align: left;
}

.ingredients-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--vcio-border);
  color: var(--vcio-text-main);
  vertical-align: top;
}

.ingredients-table tr:nth-child(even) td { background: var(--vcio-cream); }
.ingredients-table tr:last-child td { border-bottom: none; }

.nrv-badge {
  font-size: .75rem;
  font-weight: 700;
  background: var(--vcio-accent-light);
  color: var(--vcio-accent-dark);
  border-radius: 4px;
  padding: .15em .5em;
  white-space: nowrap;
}

.ingredients-imgs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ingredient-img-wrap {
  border-radius: var(--vcio-radius);
  overflow: hidden;
  box-shadow: var(--vcio-shadow-elevated);
  aspect-ratio: 4/3;
  background: var(--vcio-cream-dark);
}

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

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

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }

.urke {
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--vcio-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vcio-text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q svg { flex-shrink: 0; color: var(--vcio-accent); transition: transform .25s; }
.urke.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: .93rem;
  color: var(--vcio-text-muted);
  line-height: 1.7;
}
.urke.open .faq-a { display: block; }

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

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

.editor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--vcio-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vcio-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vcio-accent-dark);
  flex-shrink: 0;
}

.editor-meta { display: flex; align-items: center; gap: 14px; }
.editor-title { font-size: .82rem; color: var(--vcio-text-muted); }

.brand-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }

.brand-stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--vcio-cream-dark);
  border-radius: var(--vcio-radius);
}

.brand-stat .stat-num {
  font-family: var(--vcio-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vcio-accent);
  display: block;
  line-height: 1.1;
}

.brand-stat .stat-label { font-size: .78rem; color: var(--vcio-text-muted); margin-top: 4px; }

@media (max-width: 800px) { .about-split { grid-template-columns: 1fr; } .brand-stats { grid-template-columns: 1fr 1fr; } }

/* ── HOW TO USE ── */
.routine-steps { display: flex; flex-direction: column; gap: 20px; max-width: 680px; margin: 0 auto; }

.routine-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  padding: 22px 20px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vcio-accent);
  color: #fff;
  font-family: var(--vcio-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h4 { color: var(--vcio-accent-dark); margin-bottom: 4px; }
.step-body p { font-size: .9rem; color: var(--vcio-text-muted); margin: 0; }

/* ── LF-CALC ── */
.lf-calc-wrap {
  max-width: 540px;
  margin: 32px auto 0;
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  padding: 32px 28px;
}

.lf-calc-wrap h3 { margin-bottom: 18px; color: var(--vcio-accent-dark); }

.calc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.calc-row label { font-size: .9rem; font-weight: 600; color: var(--vcio-text-main); flex: 1 1 180px; }

.calc-row input[type="number"] {
  width: 90px;
  padding: .55em .8em;
  border: 2px solid var(--vcio-border);
  border-radius: var(--vcio-radius);
  font-family: var(--vcio-font-body);
  font-size: 1rem;
  color: var(--vcio-text-main);
  background: var(--vcio-cream);
}
.calc-row input:focus { outline: none; border-color: var(--vcio-accent); }

.calc-result {
  margin-top: 20px;
  background: var(--vcio-accent-light);
  border-radius: var(--vcio-radius);
  padding: 18px 20px;
  font-family: var(--vcio-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vcio-accent-dark);
  display: none;
}
.calc-result.visible { display: block; }

/* ── HOW IT WORKS ── */
.mechanism-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.mechanism-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  padding: 28px 20px;
}

.mech-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vcio-accent) 0%, var(--vcio-plum) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.mechanism-step h4 { color: var(--vcio-accent-dark); }
.mechanism-step p { font-size: .87rem; color: var(--vcio-text-muted); }

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

/* ── SOURCES ── */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.source-card {
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  padding: 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.source-num {
  font-family: var(--vcio-font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vcio-accent-light);
  flex-shrink: 0;
  line-height: 1;
}

.source-card h4 { font-size: .92rem; color: var(--vcio-text-main); margin-bottom: 4px; }
.source-card p { font-size: .8rem; color: var(--vcio-text-muted); margin: 0; }

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

/* ── LIFESTYLE TIPS ── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}

.tip-card {
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tip-icon { color: var(--vcio-accent); width: 32px; height: 32px; }
.tip-card h4 { color: var(--vcio-accent-dark); }
.tip-card p { font-size: .88rem; color: var(--vcio-text-muted); }

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

/* ── TESTIMONIALS DARK BAND ── */
.testimonials-band { background: var(--vcio-dark-band-2); padding: 72px 0; }

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

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--vcio-radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card .stars { font-size: 1rem; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-family: var(--vcio-font-head);
  font-size: 1rem;
  font-style: italic;
  color: var(--vcio-text-light);
  line-height: 1.65;
}

.testimonial-author { font-size: .82rem; color: var(--vcio-accent-light); font-weight: 600; }
.testimonials-disclaimer { margin-top: 28px; text-align: center; }

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

/* ── ORDER SECTION ── */
.order-section { background: var(--vcio-cream); padding: 80px 0; }

.order-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.order-product-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.order-pack-img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--vcio-radius);
}

.order-price-block { text-align: center; display: flex; flex-direction: column; gap: 8px; }

.price-main {
  font-family: var(--vcio-font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--vcio-accent);
  line-height: 1;
}

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

.price-note { font-size: .82rem; color: var(--vcio-text-muted); }

.order-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.order-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: var(--vcio-text-muted);
}

.order-badge svg { color: var(--vcio-accent); flex-shrink: 0; }

.order-form-card {
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  padding: 36px 32px;
}

.order-form-card h3 { margin-bottom: 22px; color: var(--vcio-accent-dark); }

.uisu .form-group { margin-bottom: 18px; }

.uisu label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--vcio-text-main);
}

.uisu input[type="text"],
.uisu input[type="tel"],
.uisu select {
  width: 100%;
  padding: .65em 1em;
  border: 2px solid var(--vcio-border);
  border-radius: var(--vcio-radius);
  font-family: var(--vcio-font-body);
  font-size: .95rem;
  background: var(--vcio-cream);
  color: var(--vcio-text-main);
  transition: border-color .2s;
}

.uisu input:focus,
.uisu select:focus { outline: none; border-color: var(--vcio-accent); }

.uisu .consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.uisu .consent-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.uisu .consent-row label { font-size: .8rem; font-weight: 400; color: var(--vcio-text-muted); }

.honeypot { display: none !important; visibility: hidden; }

.uisu .btn { width: 100%; font-size: 1rem; padding: .85em; }

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

/* ── FOOTER ── */
.site-footer {
  background: var(--vcio-dark-band);
  color: #a898cc;
  padding: 56px 0 0;
}

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

.footer-brand .site-logo { color: var(--vcio-accent-light); margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; line-height: 1.65; color: #8a7aaa; max-width: 260px; }

.footer-col h5 {
  color: #fff;
  font-family: var(--vcio-font-body);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .85rem; color: #8a7aaa; }
.footer-col ul li a:hover { color: var(--vcio-accent-light); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: #6a5a88;
}

.footer-legal-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-legal-links a { color: #6a5a88; }
.footer-legal-links a:hover { color: var(--vcio-accent-light); }

.footer-disclaimer {
  background: rgba(0,0,0,.25);
  padding: 20px 24px;
  font-size: .77rem;
  color: #6a5a88;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ── COOKIE BANNER ── */
.ucnc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vcio-dark-band);
  border-top: 2px solid var(--vcio-accent);
  z-index: 9999;
  padding: 18px 24px;
  display: none;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

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

.ucnc p { font-size: .85rem; color: #c8b8e8; flex: 1 1 300px; margin: 0; }
.ucnc a { color: var(--vcio-accent-light); text-decoration: underline; }

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

.cookie-settings-panel {
  display: none;
  background: var(--vcio-paper);
  border-radius: var(--vcio-radius);
  box-shadow: var(--vcio-shadow-elevated);
  padding: 24px;
  margin: 0 0 12px;
  width: 100%;
  max-width: 560px;
}

.consent-toggle { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.consent-toggle label { font-size: .88rem; color: var(--vcio-text-main); font-weight: 600; }

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--vcio-border);
  border-radius: 24px;
  cursor: pointer;
  transition: background .2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--vcio-accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ── LF-QUIZ (unused here, but kept for contract) ── */
.ulgy { max-width: 600px; margin: 0 auto; }

/* ── MISC ── */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header p { color: var(--vcio-text-muted); max-width: 560px; margin: 10px auto 0; }

.breadcrumb {
  font-size: .8rem;
  color: var(--vcio-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.breadcrumb a { color: var(--vcio-text-muted); }
.breadcrumb span { color: var(--vcio-accent); }

@media (max-width: 600px) {
  section { padding: 44px 0; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.35rem; }
  .hero { padding: 44px 0; }
  .order-form-card { padding: 24px 18px; }
}

.skip-link {
  position: absolute;
  left: -999em;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: var(--vcio-accent);
  color: #fff;
  padding: .5em 1em;
  border-radius: var(--vcio-radius);
  z-index: 9999;
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ucnc{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}
.ucnc.is-visible,.cookie-banner--visible,.ucnc.show,.ucnc.active{transform:none !important}
.ucnc a{color:inherit;text-decoration:underline}
.ucnc button{cursor:pointer}
.uvmx{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}
.uvmx.is-visible,.cookie-modal--visible,.uvmx.show,.uvmx.active{display:flex !important}
.upfo,.uvmx>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.reveal.is-visible,.reveal.is-in,.reveal.in-view,.reveal.visible,.reveal.show,.reveal.active{opacity:1 !important;transform:none !important}
.uoeu .ulgy,.uoeu .upzz,.uoeu .ucxu,.uoeu .uzrj,.uayh .ulgy,.uayh .upzz,.uayh .ucxu,.uayh .uzrj{background:#fff !important;color:#1a1a1a !important}
.ulgy,.upzz{color:#1a1a1a !important}
.ulgy label,.upzz label,.ulgy p,.upzz p,.ulgy .uqtp,.ulgy span,.upzz span,.uydg,.ubnl,.ucxu .ulqg,.ucxu .ulqg *{color:#1a1a1a !important}
.uydg,.ubnl{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ulgy .umtd{color:#1a1a1a !important}
.ulgy .umtd.is-sel{color:#fff !important}
.uisu .uvzl{display:none}
.uisu .uvzl.is-visible{display:block !important;color:#c0392b}
.uisu .uham,.uisu [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uisu{color:#1a1a1a}
.uoeu .uisu,.uayh .uisu{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uaff{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uaff img{width:100%;height:100%;object-fit:cover}
.uuok,.ujkc{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uuok img,.ujkc img{width:100%;height:100%;object-fit:cover;display:block}
.uuok img{opacity:.28}
.ujkc img{opacity:.07}
*:has(> .uuok),*:has(> .ujkc){position:relative}
.utbk{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)}
.utbk .ufgc{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.utbk .unby{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.upvs{margin:1.4rem auto;max-width:920px}
.upvs img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uhrh{padding:3rem 0}
.unag{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.unag img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uzrj{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uflu{display:flex;overflow:hidden;gap:0 !important}
.uxgq{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uyyy{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}
.ujxa{left:.5rem}.ugyh{right:.5rem}
.ucxu .ulqg{display:none}.ucxu .ulqg.is-active{display:block}
.ulgy .uhdd{display:block !important}
.ulgy .uqxj{display:flex;flex-wrap:wrap;gap:.5rem}
.ulgy .umtd{cursor:pointer}
