:root {
  --vesq-clr-primary: #6c1cd1;
  --vesq-clr-primary-dark: #2f016a;
  --vesq-clr-accent: #b9a6ff;
  --vesq-clr-gold: #fff8cb;
  --vesq-clr-pink: #ffe8f9;
  --vesq-clr-bg: #f7f4ff;
  --vesq-clr-bg-alt: #eee9ff;
  --vesq-clr-dark: #1a0638;
  --vesq-clr-text: #1e1433;
  --vesq-clr-text-muted: #5c4e7a;
  --vesq-clr-white: #ffffff;
  --vesq-clr-border: #ddd6f5;
  --vesq-radius: 0px;
  --vesq-radius-pill: 999px;
  --vesq-font-head: 'Fraunces', Georgia, serif;
  --vesq-font-body: 'Inter', system-ui, sans-serif;
  --vesq-container-wide: 1320px;
  --vesq-container: 860px;
  --vesq-space-xs: 8px;
  --vesq-space-sm: 16px;
  --vesq-space-md: 28px;
  --vesq-space-lg: 48px;
  --vesq-space-xl: 72px;
  --vesq-space-2xl: 96px;
}

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

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

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

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

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

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

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }

p { margin-bottom: var(--vesq-space-sm); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; }

.container {
  max-width: var(--vesq-container);
  margin: 0 auto;
  padding: 0 var(--vesq-space-sm);
}

.container--wide {
  max-width: var(--vesq-container-wide);
  margin: 0 auto;
  padding: 0 var(--vesq-space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--vesq-font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 14px 32px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.btn--pill { border-radius: var(--vesq-radius-pill); }

.btn--primary {
  background: var(--vesq-clr-primary);
  color: var(--vesq-clr-gold);
  border-color: var(--vesq-clr-primary);
}
.btn--primary:hover {
  background: var(--vesq-clr-primary-dark);
  border-color: var(--vesq-clr-primary-dark);
  color: var(--vesq-clr-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--vesq-clr-primary);
  border-color: var(--vesq-clr-primary);
}
.btn--ghost:hover {
  background: var(--vesq-clr-primary);
  color: var(--vesq-clr-gold);
}

.btn--lg { padding: 18px 44px; font-size: 1.1rem; }
.btn--full { width: 100%; }

.uawj {
  background: var(--vesq-clr-dark);
  color: var(--vesq-clr-gold);
}
.uawj h1, .uawj h2, .uawj h3 { color: var(--vesq-clr-gold); }
.uawj a { color: var(--vesq-clr-accent); }
.uawj .section__sub, .uawj p { color: #d5c9f7; }

.ulte {
  background: var(--vesq-clr-primary);
  color: var(--vesq-clr-gold);
}
.ulte h1, .ulte h2, .ulte h3 { color: var(--vesq-clr-gold); }
.ulte p { color: var(--vesq-clr-pink); }
.ulte a { color: var(--vesq-clr-gold); }
.ulte .btn--primary { background: var(--vesq-clr-gold); color: var(--vesq-clr-primary-dark); border-color: var(--vesq-clr-gold); }
.ulte .btn--primary:hover { background: var(--vesq-clr-pink); border-color: var(--vesq-clr-pink); }

.upxy {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--vesq-clr-dark);
  border-bottom: 1px solid rgba(180,160,255,0.15);
}

.upxy .container--wide {
  display: flex;
  align-items: center;
  gap: var(--vesq-space-md);
  height: 64px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--vesq-font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--vesq-clr-gold);
  white-space: nowrap;
}

.site-nav { margin-left: auto; }

.site-nav__list {
  display: flex;
  gap: var(--vesq-space-md);
  list-style: none;
  padding: 0;
}

.site-nav__list a {
  color: #d5c9f7;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.site-nav__list a:hover, .site-nav__list a[aria-current="page"] { color: var(--vesq-clr-gold); }

.site-header__cta { margin-left: var(--vesq-space-sm); font-size: 0.9rem; padding: 10px 24px; }

.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vesq-clr-gold);
}

.uhsl {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vesq-clr-dark);
  border-top: 2px solid var(--vesq-clr-primary);
  padding: var(--vesq-space-sm) var(--vesq-space-md);
}
.uhsl.is-visible { display: block; }

.cookie-banner__inner {
  max-width: var(--vesq-container-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vesq-space-sm);
}

.cookie-banner__text { color: #d5c9f7; font-size: 0.88rem; flex: 1 1 280px; margin: 0; }
.cookie-banner__text a { color: var(--vesq-clr-accent); }

.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: 9px 22px; font-size: 0.88rem; }
.cookie-banner__actions .btn--ghost { color: var(--vesq-clr-accent); border-color: var(--vesq-clr-accent); }
.cookie-banner__actions .btn--ghost:hover { background: var(--vesq-clr-accent); color: var(--vesq-clr-dark); }

.cookie-banner__link { color: var(--vesq-clr-accent); font-size: 0.82rem; align-self: center; }

.breadcrumb { margin-bottom: var(--vesq-space-sm); }
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  list-style: none;
  padding: 0;
  font-size: 0.82rem;
  color: #a090cc;
}
.breadcrumb__item + .breadcrumb__item::before { content: '/'; margin-right: 8px; }
.breadcrumb__item a { color: #a090cc; text-decoration: none; }
.breadcrumb__item a:hover { color: var(--vesq-clr-gold); }
.breadcrumb__item--current { color: var(--vesq-clr-gold); }

.hero--big-stat {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,6,56,0.92) 0%, rgba(44,1,106,0.78) 55%, rgba(108,28,209,0.45) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vesq-space-lg);
  padding-top: var(--vesq-space-xl);
  padding-bottom: var(--vesq-space-xl);
  width: 100%;
}

.hero__content {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: var(--vesq-space-md);
}

.hero__stat-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: var(--vesq-space-xs);
}

.hero__big-number {
  font-family: var(--vesq-font-head);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--vesq-clr-gold);
  letter-spacing: -4px;
}

.hero__stat-label {
  font-family: var(--vesq-font-head);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--vesq-clr-accent);
  font-style: italic;
  line-height: 1.3;
  max-width: 200px;
}

.hero__h1 {
  color: var(--vesq-clr-white);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.hero__h1 em {
  font-style: italic;
  color: var(--vesq-clr-gold);
}

.hero__sub {
  color: #d5c9f7;
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vesq-space-sm);
}

.hero__actions .btn--ghost {
  color: var(--vesq-clr-gold);
  border-color: var(--vesq-clr-gold);
}
.hero__actions .btn--ghost:hover { background: var(--vesq-clr-gold); color: var(--vesq-clr-primary-dark); }

.hero__legal {
  font-size: 0.78rem;
  color: #9080b8;
  margin: 0;
}

.hero__pack-float {
  flex: 0 0 300px;
  max-width: 320px;
}
.hero__pack-float img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(108,28,209,0.45));
}

.section__heading {
  font-family: var(--vesq-font-head);
  margin-bottom: var(--vesq-space-md);
}

.section__sub {
  font-size: 1.05rem;
  color: var(--vesq-clr-text-muted);
  margin-bottom: var(--vesq-space-lg);
  max-width: 680px;
}

.uawj .section__sub { color: #b0a0d8; }

section { padding: var(--vesq-space-xl) 0; }

.section--checklist .checklist__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: var(--vesq-space-md);
  background: rgba(255,255,255,0.04);
  padding: var(--vesq-space-md);
  border-bottom: 1px solid rgba(185,166,255,0.12);
  transition: background 0.15s;
}

.checklist__item.is-checked {
  background: rgba(185,166,255,0.08);
}

.checklist__num {
  font-family: var(--vesq-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vesq-clr-accent);
  min-width: 48px;
  line-height: 1;
  padding-top: 4px;
}

.checklist__body { flex: 1; }
.checklist__body strong { display: block; font-size: 1.1rem; color: var(--vesq-clr-gold); margin-bottom: 4px; }
.checklist__body p { color: #c0b0e0; font-size: 0.95rem; margin: 0; }

.checklist__check {
  background: transparent;
  border: 2px solid var(--vesq-clr-accent);
  color: var(--vesq-clr-accent);
  width: 36px;
  height: 36px;
  border-radius: 0;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.15s, color 0.15s;
}

.checklist__item.is-checked .checklist__check {
  background: var(--vesq-clr-accent);
  color: var(--vesq-clr-dark);
}

.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--vesq-space-md);
  margin-bottom: var(--vesq-space-lg);
}

.ingredient-card--flat {
  background: var(--vesq-clr-white);
  padding: var(--vesq-space-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ingredient-card__icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  flex-shrink: 0;
}

.ingredient-card h3 { font-size: 1.05rem; color: var(--vesq-clr-primary-dark); }
.ingredient-card__claim { font-size: 0.9rem; color: var(--vesq-clr-text-muted); flex: 1; }
.ingredient-card__origin { font-size: 0.78rem; color: var(--vesq-clr-accent); font-style: italic; margin-top: auto; }

.ingredients__img-wrap { max-width: 700px; margin: var(--vesq-space-lg) auto; }
.ingredients__disclaimer { font-size: 0.82rem; color: var(--vesq-clr-text-muted); text-align: center; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vesq-space-xl);
  align-items: center;
}

.about__kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vesq-clr-accent);
  margin-bottom: var(--vesq-space-sm);
}

.about__text p { color: #c0b0e0; }
.about__text em { color: var(--vesq-clr-gold); font-style: italic; }

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

.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--vesq-space-md);
  text-align: center;
  padding: var(--vesq-space-lg) 0;
}

.stat-band__number {
  display: block;
  font-family: var(--vesq-font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--vesq-clr-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-band__label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.how-to-use__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vesq-space-xl);
  align-items: start;
  margin-bottom: var(--vesq-space-lg);
}

.how-to-use__guide {
  display: flex;
  flex-direction: column;
  gap: var(--vesq-space-md);
}

.how-to-use__step {
  display: flex;
  gap: var(--vesq-space-sm);
  align-items: flex-start;
}

.how-to-use__step-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-to-use__step strong { display: block; margin-bottom: 4px; }
.how-to-use__step p { font-size: 0.9rem; color: var(--vesq-clr-text-muted); margin: 0; }

.how-to-use__img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.ufyx {
  background: var(--vesq-clr-white);
  border: 1px solid var(--vesq-clr-border);
  padding: var(--vesq-space-lg);
  margin-top: var(--vesq-space-lg);
}

.ufyx h3 { margin-bottom: var(--vesq-space-xs); font-size: 1.25rem; }
.ufyx p { font-size: 0.9rem; color: var(--vesq-clr-text-muted); margin-bottom: var(--vesq-space-md); }

.lf-calc__row {
  display: flex;
  align-items: center;
  gap: var(--vesq-space-sm);
  margin-bottom: var(--vesq-space-sm);
}

.lf-calc__row label { font-weight: 500; min-width: 180px; font-size: 0.9rem; }

.lf-calc__input {
  border: 1.5px solid var(--vesq-clr-border);
  padding: 8px 12px;
  font-family: var(--vesq-font-body);
  font-size: 0.95rem;
  width: 120px;
  background: var(--vesq-clr-bg);
  border-radius: 0;
  color: var(--vesq-clr-text);
}

select.lf-calc__input { width: 220px; }

.lf-calc__btn { margin-top: var(--vesq-space-sm); }

.lf-calc__result {
  margin-top: var(--vesq-space-sm);
  font-weight: 600;
  color: var(--vesq-clr-primary);
  font-size: 0.95rem;
  min-height: 1.5em;
}

.mechanism__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--vesq-space-md);
  align-items: start;
  margin-bottom: var(--vesq-space-xl);
}

.mechanism__step {
  background: rgba(255,255,255,0.04);
  padding: var(--vesq-space-md);
}

.mechanism__step h3 { color: var(--vesq-clr-gold); margin-bottom: var(--vesq-space-xs); font-size: 1.05rem; }
.mechanism__step p { color: #c0b0e0; font-size: 0.9rem; margin: 0; }

.mechanism__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--vesq-clr-primary);
  color: var(--vesq-clr-gold);
  font-family: var(--vesq-font-head);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: var(--vesq-space-sm);
}

.mechanism__arrow {
  color: var(--vesq-clr-accent);
  font-size: 2rem;
  padding-top: 60px;
  align-self: start;
}

.mechanism__diagram { max-width: 600px; margin: 0 auto; }
.mechanism__diagram img { width: 100%; aspect-ratio: 4/3; object-fit: contain; }

.reviews__trust-bar {
  display: flex;
  align-items: center;
  gap: var(--vesq-space-sm);
  margin-bottom: var(--vesq-space-lg);
}

.reviews__trust-bar img { width: 120px; height: auto; }

.reviews__aggregate {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vesq-clr-text-muted);
}

.uawj .reviews__aggregate { color: var(--vesq-clr-accent); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--vesq-space-md);
  margin-bottom: var(--vesq-space-lg);
}

.reviews__grid--3col { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.review-card--flat {
  background: var(--vesq-clr-white);
  padding: var(--vesq-space-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--vesq-space-sm);
}

.review-card__header img { width: 80px; height: auto; }

.review-card__name { font-weight: 600; font-size: 0.88rem; }

.review-card blockquote {
  border: none;
  padding: 0;
  font-style: italic;
  color: var(--vesq-clr-text-muted);
  font-size: 0.92rem;
}

.review-card blockquote p { margin: 0; }

.review-card__disclosure { font-size: 0.72rem; color: #9090a0; margin-top: auto; }

.reviews__bottom-disclaimer { font-size: 0.82rem; color: var(--vesq-clr-text-muted); text-align: center; }

.order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vesq-space-xl);
  align-items: start;
}

.order__product img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: var(--vesq-space-md);
}

.order__product-meta { display: flex; flex-direction: column; gap: 8px; }

.order__badge--flat {
  display: inline-block;
  background: var(--vesq-clr-primary);
  color: var(--vesq-clr-gold);
  padding: 4px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.order__price {
  font-family: var(--vesq-font-head);
  margin: 0;
}

.order__price--original {
  text-decoration: line-through;
  color: var(--vesq-clr-text-muted);
  font-size: 1rem;
  margin-right: 8px;
}

.order__price--current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vesq-clr-primary);
}

.order__price-note { font-size: 0.82rem; color: var(--vesq-clr-text-muted); margin: 0; }

.ulbk { display: flex; flex-direction: column; gap: var(--vesq-space-sm); }

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

.form-field label { font-weight: 500; font-size: 0.9rem; }

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field textarea {
  border: 1.5px solid var(--vesq-clr-border);
  padding: 12px 16px;
  font-family: var(--vesq-font-body);
  font-size: 0.95rem;
  border-radius: 0;
  background: var(--vesq-clr-white);
  color: var(--vesq-clr-text);
  transition: border-color 0.15s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--vesq-clr-primary);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea { border-color: #c0392b; }

.form-field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-field--check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.form-field--check label { font-size: 0.85rem; font-weight: 400; }
.form-field--check.is-invalid label { color: #c0392b; }

.form__small { font-size: 0.78rem; color: var(--vesq-clr-text-muted); text-align: center; }

.faq__list { display: flex; flex-direction: column; gap: 2px; }

.faq__item {
  border-bottom: 1px solid var(--vesq-clr-border);
  background: var(--vesq-clr-white);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--vesq-space-md);
  font-family: var(--vesq-font-head);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  color: var(--vesq-clr-text);
  user-select: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--vesq-clr-primary);
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: 300;
  transition: transform 0.2s;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 var(--vesq-space-md) var(--vesq-space-md);
  font-size: 0.95rem;
  color: var(--vesq-clr-text-muted);
}

.lifestyle-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vesq-space-xl);
  align-items: center;
}

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

.lifestyle-cta__text { display: flex; flex-direction: column; gap: var(--vesq-space-md); }
.lifestyle-cta__text h2 { color: var(--vesq-clr-gold); }
.lifestyle-cta__text p { color: #d5c9f7; }
.lifestyle-cta__small { font-size: 0.8rem; color: #9080b8; margin: 0; }

.site-footer { border-top: 1px solid rgba(185,166,255,0.12); }

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vesq-space-xl);
  padding: var(--vesq-space-xl) 0 var(--vesq-space-lg);
}

.footer__brand { display: flex; flex-direction: column; gap: var(--vesq-space-sm); }
.footer__tagline { color: #9080b8; font-size: 0.88rem; margin: 0; }
.footer__abn { color: #6050a0; font-size: 0.78rem; margin: 0; }

.footer__nav { display: flex; gap: var(--vesq-space-xl); }

.footer__nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  color: #9080b8;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer__nav a:hover { color: var(--vesq-clr-gold); }

.footer__disclaimer {
  padding: var(--vesq-space-md) 0;
  border-top: 1px solid rgba(185,166,255,0.1);
  border-bottom: 1px solid rgba(185,166,255,0.1);
}

.footer__disclaimer p { font-size: 0.8rem; color: #6050a0; margin-bottom: 6px; }
.footer__disclaimer strong { color: #9080b8; }

.footer__bottom {
  padding: var(--vesq-space-md) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--vesq-space-sm);
  justify-content: space-between;
}

.footer__bottom p { font-size: 0.78rem; color: #5040a0; margin: 0; }

.page-hero {
  padding: var(--vesq-space-xl) 0;
}

.page-hero--compact { padding: var(--vesq-space-lg) 0; }

.page-hero__h1 { color: var(--vesq-clr-gold); margin-bottom: var(--vesq-space-sm); }
.page-hero__h1 em { color: var(--vesq-clr-accent); }
.page-hero__sub { color: #b0a0d8; font-size: 1.05rem; margin: 0; }

.legal-main { padding: var(--vesq-space-xl) 0; }
.legal-main h1 { margin-bottom: var(--vesq-space-lg); }
.legal-main h2 { font-size: 1.25rem; margin: var(--vesq-space-lg) 0 var(--vesq-space-xs); color: var(--vesq-clr-primary-dark); }
.legal-main p, .legal-main li { color: var(--vesq-clr-text); font-size: 0.95rem; }
.legal-main ul, .legal-main ol { margin-bottom: var(--vesq-space-sm); }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--vesq-space-lg) 0;
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--vesq-clr-primary);
  color: var(--vesq-clr-gold);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--vesq-clr-border);
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td { background: var(--vesq-clr-bg-alt); }

.table-disclaimer { font-size: 0.8rem; color: var(--vesq-clr-text-muted); }

.ingredients__comparison-table { margin-top: var(--vesq-space-xl); }

.ingredient-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vesq-space-xl);
  align-items: start;
  margin-bottom: var(--vesq-space-xl);
  padding-bottom: var(--vesq-space-xl);
  border-bottom: 1px solid var(--vesq-clr-border);
}

.ingredient-detail--reverse { direction: rtl; }
.ingredient-detail--reverse > * { direction: ltr; }

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

.mechanism-detail__grid { display: flex; flex-direction: column; gap: var(--vesq-space-xl); }

.mechanism-detail__item {
  padding: var(--vesq-space-lg);
  background: var(--vesq-clr-bg-alt);
  border-left: 4px solid var(--vesq-clr-primary);
}

.mechanism-detail__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-family: var(--vesq-font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--vesq-clr-gold);
  margin-bottom: var(--vesq-clr-md);
  margin-bottom: var(--vesq-space-sm);
}

.mechanism-detail__item h2 { font-size: 1.5rem; margin-bottom: var(--vesq-space-sm); }
.mechanism-detail__disclaimer { font-size: 0.8rem; color: var(--vesq-clr-text-muted); margin-top: var(--vesq-space-sm); }

.mechanism-detail__diagram { max-width: 600px; margin: var(--vesq-space-xl) auto 0; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vesq-space-xl);
  align-items: start;
}

.contact__info h2 { margin-bottom: var(--vesq-space-md); }
.contact__info p { margin-bottom: var(--vesq-space-sm); font-size: 0.95rem; }

.map-container { margin-top: var(--vesq-space-md); }
.map-container iframe { display: block; width: 100%; height: 450px; border: 0; }

.thankyou-main {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: var(--vesq-space-xl) 0;
}

.thankyou__card {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--vesq-space-md);
  align-items: center;
}

.thankyou__icon { margin-bottom: var(--vesq-space-sm); }

.about-full__text {
  max-width: 720px;
  margin: 0 auto;
}
.about-full__text p { margin-bottom: var(--vesq-space-md); }

.section--order-cta {
  text-align: center;
  padding: var(--vesq-space-xl) 0;
}
.section--order-cta h2 { margin-bottom: var(--vesq-space-sm); }
.section--order-cta p { margin-bottom: var(--vesq-space-md); }

@media (max-width: 1024px) {
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); }
  .mechanism__grid { grid-template-columns: 1fr; }
  .mechanism__arrow { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .lifestyle-cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--vesq-clr-dark); padding: var(--vesq-space-lg); z-index: 800; }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; gap: var(--vesq-space-md); }
  .site-nav__toggle { display: flex; }
  .site-header__cta { display: none; }

  .hero__inner { flex-direction: column; }
  .hero__pack-float { max-width: 240px; margin: 0 auto; }

  .order__grid { grid-template-columns: 1fr; }
  .how-to-use__cols { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { flex-direction: column; gap: var(--vesq-space-md); }
  .ingredient-detail { grid-template-columns: 1fr; }
  .ingredient-detail--reverse { direction: ltr; }
  .lf-calc__row { flex-direction: column; align-items: flex-start; }
  .lf-calc__input, select.lf-calc__input { width: 100%; }
}

@media (max-width: 480px) {
  .stat-band__grid { grid-template-columns: 1fr 1fr; gap: var(--vesq-space-sm); }
  .hero__big-number { font-size: 5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .btn--lg { padding: 14px 28px; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uhsl{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}
.uhsl.is-visible,.cookie-banner--visible,.uhsl.show,.uhsl.active{transform:none !important}
.uhsl a{color:inherit;text-decoration:underline}
.uhsl button{cursor:pointer}
.upew{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}
.upew.is-visible,.cookie-modal--visible,.upew.show,.upew.active{display:flex !important}
.uouf,.upew>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uawj .uijw,.uawj .ufyx,.uawj .udvx,.uawj .ubjn,.ulte .uijw,.ulte .ufyx,.ulte .udvx,.ulte .ubjn{background:#fff !important;color:#1a1a1a !important}
.uijw,.ufyx{color:#1a1a1a !important}
.uijw label,.ufyx label,.uijw p,.ufyx p,.uijw .ugxr,.uijw span,.ufyx span,.uyuc,.usyr,.udvx .uggx,.udvx .uggx *{color:#1a1a1a !important}
.uyuc,.usyr{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uijw .uskr{color:#1a1a1a !important}
.uijw .uskr.is-sel{color:#fff !important}
.ulbk .uhhn{display:none}
.ulbk .uhhn.is-visible{display:block !important;color:#c0392b}
.ulbk .ueru,.ulbk [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ulbk{color:#1a1a1a}
.uawj .ulbk,.ulte .ulbk{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uprf{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uprf img{width:100%;height:100%;object-fit:cover}
.uiqh,.umcz{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uiqh img,.umcz img{width:100%;height:100%;object-fit:cover;display:block}
.uiqh img{opacity:.28}
.umcz img{opacity:.07}
*:has(> .uiqh),*:has(> .umcz){position:relative}
.upou{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)}
.upou .uwkv{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.upou .uihp{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.urfa{margin:1.4rem auto;max-width:920px}
.urfa img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ubqq{padding:3rem 0}
.uxkm{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uxkm img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ubjn{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uubo{display:flex;overflow:hidden;gap:0 !important}
.upgq{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.urrp{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}
.ucty{left:.5rem}.uiej{right:.5rem}
.udvx .uggx{display:none}.udvx .uggx.is-active{display:block}
.uijw .uapx{display:block !important}
.uijw .udgs{display:flex;flex-wrap:wrap;gap:.5rem}
.uijw .uskr{cursor:pointer}
