:root {
  --vuot-clr-primary: #6c1cd1;
  --vuot-clr-primary-deep: #2f016a;
  --vuot-clr-lavender: #e1d9ff;
  --vuot-clr-accent-gold: #fff8cb;
  --vuot-clr-lilac: #b9a6ff;
  --vuot-clr-black: #000000;
  --vuot-clr-cream: #faf7f2;
  --vuot-clr-cream-mid: #f3ede3;
  --vuot-clr-text: #1a1220;
  --vuot-clr-text-muted: #5a4e6a;
  --vuot-clr-border: #d4cce8;
  --vuot-clr-dark-band: #1b0b35;
  --vuot-clr-dark-ribbon: #140826;
  --vuot-radius: 24px;
  --vuot-radius-sm: 12px;
  --vuot-container: 1320px;
  --vuot-gap: clamp(1.5rem, 3vw, 3rem);
  --vuot-section-py: clamp(3rem, 6vw, 5.5rem);
  --vuot-font-head: 'Lora', Georgia, serif;
  --vuot-font-body: 'Karla', system-ui, sans-serif;
}

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

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

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

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

a { color: var(--vuot-clr-primary); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

.container {
  max-width: var(--vuot-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

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

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

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

ul, ol { padding-left: 1.4em; }
li { margin-bottom: .4rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--vuot-font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: var(--vuot-radius);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, opacity .18s;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); opacity: .92; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--vuot-clr-primary);
  color: #fff;
  border-color: var(--vuot-clr-primary);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(108,28,209,.35); }

.btn-light {
  background: var(--vuot-clr-cream);
  color: var(--vuot-clr-primary-deep);
  border-color: var(--vuot-clr-cream);
}
.btn-light:hover { box-shadow: 0 6px 20px rgba(255,255,255,.25); }

.btn-arrow::after { content: ' →'; }

.tag-chip {
  display: inline-block;
  background: var(--vuot-clr-lavender);
  color: var(--vuot-clr-primary-deep);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
}


.uajb {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vuot-clr-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--vuot-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vuot-clr-primary-deep);
  text-decoration: none;
}
.site-logo svg { flex-shrink: 0; }

.site-nav { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.site-nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--vuot-clr-text-muted);
  transition: color .2s;
}
.site-nav a:hover { color: var(--vuot-clr-primary); opacity: 1; }

.nav-cta a {
  color: var(--vuot-clr-primary) !important;
  border-bottom: 2px solid var(--vuot-clr-primary);
  padding-bottom: .1rem;
}

.uuci {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: var(--vuot-clr-text);
}

@media (max-width: 860px) {
  .uuci { display: block; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--vuot-clr-cream);
    border-bottom: 1px solid var(--vuot-clr-border);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }
  .site-nav.is-open { display: flex; }
}


.hero-section {
  background: var(--vuot-clr-cream);
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vuot-gap);
  align-items: center;
}
.hero-content { padding-right: clamp(.5rem, 2vw, 2rem); }
.hero-tag { margin-bottom: 1.2rem; }
.hero-headline { margin-bottom: 1.1rem; }
.hero-headline .stat-inline {
  color: var(--vuot-clr-primary);
  font-size: 1.1em;
  font-style: normal;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--vuot-clr-text-muted);
  margin-bottom: 1.8rem;
  max-width: 48ch;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust-note {
  font-size: .82rem;
  color: var(--vuot-clr-text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hero-trust-note svg { color: var(--vuot-clr-primary); }
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 1rem;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  border-radius: var(--vuot-radius) var(--vuot-radius) 0 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}
.hero-pack-wrap {
  position: relative;
  z-index: 1;
  width: min(340px, 90%);
  aspect-ratio: 1;
}
.hero-pack-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(108,28,209,.3));
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    min-height: 260px;
    border-radius: var(--vuot-radius);
    overflow: hidden;
  }
  .hero-pack-wrap { width: min(220px, 80%); }
  .hero-content { padding-right: 0; }
}


.ribbon-band {
  background: var(--vuot-clr-dark-ribbon);
  padding-block: .9rem;
}
.ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--vuot-clr-lavender);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.ribbon-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vuot-clr-lilac);
  flex-shrink: 0;
}


.section-py { padding-block: var(--vuot-section-py); }

.section-cream { background: var(--vuot-clr-cream); }
.section-cream-mid { background: var(--vuot-clr-cream-mid); }

.usdi {
  background: var(--vuot-clr-dark-band);
  color: #e8deff;
}
.usdi h2 { color: #fff; }
.usdi p { color: #c8b8f0; }
.usdi .tag-chip {
  background: rgba(177,154,255,.2);
  color: var(--vuot-clr-lilac);
}

.uxss {
  background: var(--vuot-clr-primary-deep);
  color: #e1d9ff;
}
.uxss h2 { color: #fff; }
.uxss p { color: #cfc0f5; }

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-header .tag-chip { margin-bottom: .85rem; }
.section-header p {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--vuot-clr-text-muted);
  font-size: 1.05rem;
}
.usdi .section-header p,
.uxss .section-header p { color: #c8b8f0; }


.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.6rem;
}

.card-outlined {
  background: transparent;
  border: 1.5px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius);
  padding: 1.8rem;
  transition: border-color .2s;
}
.card-outlined:hover { border-color: var(--vuot-clr-lilac); }

.card-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.icon-purple { background: rgba(108,28,209,.12); color: var(--vuot-clr-primary); }
.icon-gold { background: rgba(255,248,203,.6); color: #7a6a00; }
.icon-lavender { background: rgba(225,217,255,.5); color: var(--vuot-clr-primary-deep); }
.icon-green { background: rgba(180,230,180,.4); color: #2a6a2a; }

.review-card {
  border: 1.5px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius);
  padding: 1.8rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.review-stars {
  display: flex;
  gap: .2rem;
  color: var(--vuot-clr-primary);
  font-size: 1.1rem;
}
.review-text {
  font-size: .97rem;
  color: var(--vuot-clr-text);
  line-height: 1.65;
  flex: 1;
}
.review-author {
  font-size: .84rem;
  font-weight: 700;
  color: var(--vuot-clr-text-muted);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--vuot-clr-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--vuot-clr-primary);
  font-size: .85rem;
  flex-shrink: 0;
}
.review-img-wrap {
  border-radius: var(--vuot-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.review-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.review-disclaimer {
  font-size: .78rem;
  color: var(--vuot-clr-text-muted);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
}


.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.8rem;
  counter-reset: steps;
}
.step-card {
  border: 1.5px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius);
  padding: 1.8rem 1.6rem;
  background: var(--vuot-clr-cream);
  position: relative;
  counter-increment: steps;
}
.step-number {
  font-family: var(--vuot-font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vuot-clr-lavender);
  line-height: 1;
  margin-bottom: .5rem;
}
.step-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.step-card p { font-size: .94rem; color: var(--vuot-clr-text-muted); margin: 0; }


.stat-band {
  background: var(--vuot-clr-primary-deep);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: var(--vuot-gap);
  text-align: center;
}
.stat-item {}
.stat-value {
  font-family: var(--vuot-font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .92rem;
  color: var(--vuot-clr-lilac);
  font-weight: 600;
}


.faq-section {}
.faq-list { max-width: 860px; margin-inline: auto; }
.urer {
  border: 1.5px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius-sm);
  margin-bottom: .9rem;
  overflow: hidden;
}
.uong {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-family: var(--vuot-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vuot-clr-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .18s;
}
.uong:hover { background: var(--vuot-clr-cream-mid); }
.uong[aria-expanded="true"] { background: var(--vuot-clr-lavender); color: var(--vuot-clr-primary-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--vuot-clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: transform .25s, background .2s;
}
.uong[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--vuot-clr-primary);
  border-color: var(--vuot-clr-primary);
  color: #fff;
}
.umde {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: .96rem;
  color: var(--vuot-clr-text-muted);
  line-height: 1.75;
}
.umde.is-open { display: block; }


.umic {
  background: var(--vuot-clr-cream-mid);
  border: 1.5px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius);
  padding: 2rem;
  max-width: 560px;
  margin: 2rem auto 0;
}
.umic h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--vuot-clr-primary-deep);
}
.calc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.calc-row label {
  font-size: .92rem;
  font-weight: 600;
  flex-shrink: 0;
  min-width: 130px;
}
.calc-row input[type="number"] {
  width: 90px;
  padding: .55rem .8rem;
  border: 1.5px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius-sm);
  font-family: var(--vuot-font-body);
  font-size: .95rem;
  background: #fff;
  color: var(--vuot-clr-text);
}
.calc-result {
  background: var(--vuot-clr-lavender);
  border-radius: var(--vuot-radius-sm);
  padding: .9rem 1.2rem;
  font-weight: 700;
  color: var(--vuot-clr-primary-deep);
  font-size: .98rem;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
}


.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.4rem;
}
.source-card {
  border: 1.5px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius-sm);
  padding: 1.4rem 1.6rem;
  background: var(--vuot-clr-cream);
}
.source-card .source-tag {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--vuot-clr-primary);
  margin-bottom: .5rem;
}
.source-card h4 { font-size: .97rem; margin-bottom: .35rem; }
.source-card p { font-size: .87rem; color: var(--vuot-clr-text-muted); margin: 0; }


.myth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.6rem;
}
.myth-pair {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.myth-card, .fact-card {
  border: 1.5px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius-sm);
  padding: 1.3rem 1.5rem;
}
.myth-card {
  background: rgba(229,57,53,.05);
  border-color: rgba(229,57,53,.2);
}
.fact-card {
  background: rgba(108,28,209,.05);
  border-color: rgba(108,28,209,.2);
}
.myth-label, .fact-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.myth-label { color: #c62828; }
.fact-label { color: var(--vuot-clr-primary); }
.myth-card p, .fact-card p { font-size: .93rem; margin: 0; }


.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}
.compare-table th,
.compare-table td {
  padding: .9rem 1.1rem;
  text-align: center;
  border: 1px solid var(--vuot-clr-border);
}
.compare-table thead th {
  background: var(--vuot-clr-primary-deep);
  color: #fff;
  font-family: var(--vuot-font-head);
  font-size: .95rem;
  font-weight: 600;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody tr:nth-child(odd) { background: var(--vuot-clr-cream); }
.compare-table tbody tr:nth-child(even) { background: #fff; }
.compare-table td:first-child { text-align: left; font-weight: 600; }
.compare-table .check { color: var(--vuot-clr-primary); font-size: 1.1rem; }
.compare-table .cross { color: #c62828; font-size: 1.1rem; }
.compare-table .partial { color: #a07000; font-size: 1rem; }
.compare-highlight th,
.compare-highlight td { background: rgba(108,28,209,.07) !important; }
.compare-highlight td:first-child { color: var(--vuot-clr-primary-deep); }


.order-section {
  background: var(--vuot-clr-cream);
  padding-block: var(--vuot-section-py);
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.order-product-panel {}
.order-product-img {
  border-radius: var(--vuot-radius);
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 340px;
  margin-bottom: 1.5rem;
  border: 1.5px solid var(--vuot-clr-border);
}
.order-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.order-price-block { margin-bottom: 1.5rem; }
.price-original {
  font-size: .95rem;
  color: var(--vuot-clr-text-muted);
  text-decoration: line-through;
  margin-bottom: .2rem;
}
.price-current {
  font-family: var(--vuot-font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--vuot-clr-primary);
  margin-bottom: .25rem;
}
.price-note {
  font-size: .83rem;
  color: var(--vuot-clr-text-muted);
}
.trust-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.trust-list li {
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--vuot-clr-text-muted);
}
.trust-list li::before {
  content: '✓';
  color: var(--vuot-clr-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.order-form-panel {}
.order-form-panel h2 { margin-bottom: .6rem; }
.order-form-panel > p { color: var(--vuot-clr-text-muted); margin-bottom: 1.6rem; }

.ukqg {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--vuot-clr-text);
}
.form-group input[type="text"],
.form-group input[type="tel"] {
  padding: .8rem 1rem;
  border: 1.5px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius-sm);
  font-family: var(--vuot-font-body);
  font-size: .97rem;
  background: #fff;
  color: var(--vuot-clr-text);
  transition: border-color .2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--vuot-clr-primary);
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .85rem;
  color: var(--vuot-clr-text-muted);
  line-height: 1.5;
}
.consent-row input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: .1rem;
  accent-color: var(--vuot-clr-primary);
}
.form-honeypot { display: none !important; }
.form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}
.form-note {
  font-size: .8rem;
  color: var(--vuot-clr-text-muted);
  text-align: center;
  margin-top: .4rem;
}

@media (max-width: 768px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-product-img { max-width: 220px; }
}


.ingredients-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.ingredients-img-wrap {
  border-radius: var(--vuot-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ingredients-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.nrv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin-top: 1rem;
}
.nrv-table th,
.nrv-table td { padding: .6rem .9rem; border: 1px solid var(--vuot-clr-border); }
.nrv-table thead th {
  background: var(--vuot-clr-primary-deep);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
}
.nrv-table tbody tr:nth-child(odd) { background: var(--vuot-clr-cream); }
.nrv-table tbody tr:nth-child(even) { background: #fff; }
.nrv-note {
  font-size: .78rem;
  color: var(--vuot-clr-text-muted);
  margin-top: .6rem;
}

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


.site-footer {
  background: var(--vuot-clr-dark-ribbon);
  color: #a898c8;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--vuot-gap);
  margin-bottom: 2.5rem;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--vuot-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #e1d9ff;
  margin-bottom: .9rem;
}
.footer-brand p { font-size: .87rem; line-height: 1.65; max-width: 38ch; }
.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #e1d9ff;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { color: #a898c8; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--vuot-clr-lavender); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.8rem;
  font-size: .8rem;
  color: #7a6a96;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
}
.footer-legal-links a { color: #7a6a96; font-size: .8rem; }
.footer-legal-links a:hover { color: var(--vuot-clr-lavender); opacity: 1; }
.footer-disclaimer {
  font-size: .78rem;
  color: #6a5a88;
  max-width: 920px;
  line-height: 1.6;
  margin-top: .8rem;
  width: 100%;
}

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


.uups {
  display: none;
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(780px, calc(100% - 2rem));
  background: var(--vuot-clr-dark-band);
  color: #d4c8f0;
  border-radius: var(--vuot-radius);
  padding: 1.4rem 1.8rem;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
  border: 1px solid rgba(177,154,255,.2);
}
.uups.is-visible { display: flex; }
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
.ugpd { flex: 1; min-width: 200px; font-size: .87rem; line-height: 1.6; }
.ugpd a { color: var(--vuot-clr-lilac); }
.cookie-buttons {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--vuot-font-body);
  font-size: .85rem;
  font-weight: 700;
  padding: .6rem 1.3rem;
  border-radius: var(--vuot-radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .18s;
}
.cookie-btn:hover { opacity: .85; transform: translateY(-1px); }
.cookie-btn-accept { background: var(--vuot-clr-primary); color: #fff; }
.cookie-btn-reject { background: transparent; color: var(--vuot-clr-lilac); border: 1.5px solid rgba(177,154,255,.4); }
.cookie-btn-settings { background: transparent; color: #a898c8; font-size: .8rem; text-decoration: underline; padding: .4rem .6rem; }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.is-open { display: flex; }
.modal-box {
  background: var(--vuot-clr-cream);
  border-radius: var(--vuot-radius);
  padding: 2rem;
  max-width: 520px;
  width: calc(100% - 2rem);
  max-height: 80vh;
  overflow-y: auto;
}
.modal-box h3 { margin-bottom: 1rem; }
.modal-cat {
  border: 1px solid var(--vuot-clr-border);
  border-radius: var(--vuot-radius-sm);
  padding: 1rem;
  margin-bottom: .8rem;
}
.modal-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .3rem;
}
.modal-cat-head strong { font-size: .93rem; }
.modal-cat p { font-size: .83rem; color: var(--vuot-clr-text-muted); margin: 0; }
.toggle-wrap { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-wrap input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: #ccc;
  border-radius: 24px;
  transition: background .2s;
  cursor: pointer;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.toggle-wrap input:checked + .toggle-slider { background: var(--vuot-clr-primary); }
.toggle-wrap input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-wrap input:disabled + .toggle-slider { opacity: .5; cursor: not-allowed; }
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: .8rem;
  margin-top: 1.2rem;
}
.modal-footer .btn { font-size: .9rem; padding: .65rem 1.4rem; }


.breadcrumb-nav {
  padding-block: .9rem;
  background: var(--vuot-clr-cream-mid);
  border-bottom: 1px solid var(--vuot-clr-border);
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  list-style: none;
  padding: 0;
  font-size: .82rem;
  color: var(--vuot-clr-text-muted);
}
.breadcrumb-list li + li::before { content: '›'; margin-right: .3rem; }
.breadcrumb-list a { color: var(--vuot-clr-primary); }


.inner-page-hero {
  background: var(--vuot-clr-cream-mid);
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--vuot-clr-border);
}
.inner-page-hero h1 { margin-bottom: .6rem; }
.inner-page-hero p { color: var(--vuot-clr-text-muted); max-width: 60ch; }

.prose {
  max-width: 780px;
  margin-inline: auto;
}
.prose h2 { margin-top: 2.2rem; margin-bottom: .9rem; }
.prose h3 { margin-top: 1.6rem; margin-bottom: .6rem; }
.prose ul, .prose ol { margin-bottom: 1rem; }
.prose table {
  width: 100%; border-collapse: collapse;
  font-size: .9rem; margin-bottom: 1.2rem;
}
.prose table th, .prose table td {
  padding: .7rem .9rem;
  border: 1px solid var(--vuot-clr-border);
  text-align: left;
}
.prose table thead { background: var(--vuot-clr-lavender); }

@media (max-width: 600px) {
  h1 { font-size: clamp(1.7rem, 6vw, 2.3rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .btn { padding: .75rem 1.4rem; font-size: .93rem; }
  .stat-band { padding-block: 2rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uups{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}
.uups.is-visible,.cookie-banner--visible,.uups.show,.uups.active{transform:none !important}
.uups a{color:inherit;text-decoration:underline}
.uups button{cursor:pointer}
.uzjd{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}
.uzjd.is-visible,.cookie-modal--visible,.uzjd.show,.uzjd.active{display:flex !important}
.uwls,.uzjd>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}
.usdi .uwoe,.usdi .umic,.usdi .uacc,.usdi .urmp,.uxss .uwoe,.uxss .umic,.uxss .uacc,.uxss .urmp{background:#fff !important;color:#1a1a1a !important}
.uwoe,.umic{color:#1a1a1a !important}
.uwoe label,.umic label,.uwoe p,.umic p,.uwoe .uhpx,.uwoe span,.umic span,.uojp,.urqm,.uacc .ubzd,.uacc .ubzd *{color:#1a1a1a !important}
.uojp,.urqm{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uwoe .uayf{color:#1a1a1a !important}
.uwoe .uayf.is-sel{color:#fff !important}
.ukqg .uczu{display:none}
.ukqg .uczu.is-visible{display:block !important;color:#c0392b}
.ukqg .uvsh,.ukqg [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ukqg{color:#1a1a1a}
.usdi .ukqg,.uxss .ukqg{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ulcn{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ulcn img{width:100%;height:100%;object-fit:cover}
.uhmi,.urek{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uhmi img,.urek img{width:100%;height:100%;object-fit:cover;display:block}
.uhmi img{opacity:.28}
.urek img{opacity:.07}
*:has(> .uhmi),*:has(> .urek){position:relative}
.ukxk{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)}
.ukxk .ucie{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ukxk .uglg{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uahx{margin:1.4rem auto;max-width:920px}
.uahx img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ukge{padding:3rem 0}
.uyxj{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uyxj img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.urmp{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uauc{display:flex;overflow:hidden;gap:0 !important}
.ueuf{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.unzt{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}
.uqll{left:.5rem}.uyab{right:.5rem}
.uacc .ubzd{display:none}.uacc .ubzd.is-active{display:block}
.uwoe .ughb{display:block !important}
.uwoe .uqkj{display:flex;flex-wrap:wrap;gap:.5rem}
.uwoe .uayf{cursor:pointer}
