:root {
  --vwez-c-primary: #166ca7;
  --vwez-c-accent: #ed1b24;
  --vwez-c-gold: #bdab3c;
  --vwez-c-dark: #0d1a26;
  --vwez-c-dark2: #12263a;
  --vwez-c-white: #ffffff;
  --vwez-c-bg: #f5f3ee;
  --vwez-c-bg2: #eef2f7;
  --vwez-c-text: #1a1a1a;
  --vwez-c-text-muted: #5a6470;
  --vwez-c-border: #dde3ea;
  --vwez-radius: 12px;
  --vwez-radius-pill: 999px;
  --vwez-container: 1200px;
  --vwez-gap: clamp(1.5rem, 4vw, 3rem);
  --vwez-font-head: 'Unbounded', sans-serif;
  --vwez-font-body: 'Manrope', sans-serif;
}

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

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

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

button, input, select, textarea { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 { font-family: var(--vwez-font-head); line-height: 1.2; }

.section-pad { padding: clamp(3rem, 7vw, 6rem) 0; }

.ujew {
  background: var(--vwez-c-dark);
  color: var(--vwez-c-white);
}

.section-dark2 {
  background: var(--vwez-c-dark2);
  color: var(--vwez-c-white);
}

.section-accent-band {
  background: var(--vwez-c-primary);
  color: var(--vwez-c-white);
}

.section-light { background: var(--vwez-c-bg); }
.section-light2 { background: var(--vwez-c-bg2); }

.tag-chip {
  display: inline-block;
  font-family: var(--vwez-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--vwez-c-primary);
  border: 1.5px solid var(--vwez-c-primary);
  border-radius: var(--vwez-radius-pill);
  padding: .25rem .9rem;
  margin-bottom: 1.2rem;
}

.tag-chip--light {
  color: #a8c8e8;
  border-color: #a8c8e8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--vwez-font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--vwez-radius-pill);
  padding: .85rem 2.2rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--vwez-c-primary);
  color: var(--vwez-c-white);
  border-color: var(--vwez-c-primary);
}
.btn-primary:hover { background: #125d8e; border-color: #125d8e; box-shadow: 0 4px 18px rgba(22,108,167,.3); }

.btn-ghost {
  background: transparent;
  color: var(--vwez-c-primary);
  border-color: var(--vwez-c-primary);
}
.btn-ghost:hover { background: var(--vwez-c-primary); color: var(--vwez-c-white); }

.btn-ghost-light {
  background: transparent;
  color: var(--vwez-c-white);
  border-color: rgba(255,255,255,.7);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: var(--vwez-c-white); }

.btn-light {
  background: var(--vwez-c-white);
  color: var(--vwez-c-primary);
  border-color: var(--vwez-c-white);
}
.btn-light:hover { background: var(--vwez-c-bg2); }

.overline {
  font-family: var(--vwez-font-body);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vwez-c-primary);
  display: block;
  margin-bottom: .5rem;
}

.overline--light { color: #8ec3e6; }

.section-title {
  font-family: var(--vwez-font-head);
  font-size: clamp(1.55rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--vwez-c-text-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.section-lead--light { color: rgba(255,255,255,.75); }

.divider {
  width: 48px; height: 3px;
  background: var(--vwez-c-primary);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.divider--light { background: rgba(255,255,255,.5); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vwez-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--vwez-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--vwez-gap); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card-soft {
  background: var(--vwez-c-white);
  border-radius: var(--vwez-radius);
  box-shadow: 0 4px 28px rgba(22,108,167,.09), 0 1.5px 6px rgba(0,0,0,.04);
  padding: 2rem 1.75rem;
  transition: box-shadow .2s;
}
.card-soft:hover { box-shadow: 0 8px 40px rgba(22,108,167,.16), 0 2px 8px rgba(0,0,0,.06); }

.card-soft--dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: none;
}

.badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--vwez-radius-pill);
  padding: .2rem .75rem;
  background: rgba(22,108,167,.1);
  color: var(--vwez-c-primary);
}

.badge--gold { background: rgba(189,171,60,.15); color: #8a7a1a; }


/* ──────────────────────────────────────────────
   SITE HEADER / NAV
────────────────────────────────────────────── */
.uxit {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245,243,238,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--vwez-c-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 1rem;
}

.site-logo {
  font-family: var(--vwez-font-head);
  font-size: .9rem;
  font-weight: 800;
  color: var(--vwez-c-dark);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.site-logo span { color: var(--vwez-c-primary); }

.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav a {
  font-family: var(--vwez-font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--vwez-c-text);
  letter-spacing: .02em;
  transition: color .15s;
}
.site-nav a:hover { color: var(--vwez-c-primary); }

.nav-cta { margin-left: .5rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--vwez-c-dark);
  border-radius: 2px;
  transition: .2s;
}

@media (max-width: 840px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--vwez-c-bg);
    border-bottom: 1px solid var(--vwez-c-border);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    align-items: flex-start;
  }
}


/* ──────────────────────────────────────────────
   BREADCRUMB
────────────────────────────────────────────── */
.breadcrumb {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vwez-c-text-muted);
  padding: .75rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--vwez-c-primary); }
.breadcrumb__sep { opacity: .4; }


/* ──────────────────────────────────────────────
   HERO — журнальный минимал (крупная типографика, без фото)
────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--vwez-c-bg);
}

.hero__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__decor img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .12;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--vwez-c-text-muted);
}
.hero__meta .dot { opacity: .4; }
.hero__meta .label-review {
  background: rgba(22,108,167,.1);
  color: var(--vwez-c-primary);
  border-radius: var(--vwez-radius-pill);
  padding: .2rem .75rem;
  font-size: .67rem;
}

.hero__h1 {
  font-family: var(--vwez-font-head);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}

.hero__h1 .outlined {
  -webkit-text-stroke: 2.5px var(--vwez-c-primary);
  color: transparent;
}

.hero__sub {
  font-family: var(--vwez-font-body);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 500;
  color: var(--vwez-c-text-muted);
  max-width: 620px;
  margin: 1.2rem 0 2rem;
  line-height: 1.65;
}

.hero__byline {
  font-size: .78rem;
  font-weight: 600;
  color: var(--vwez-c-text-muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.hero__byline strong { color: var(--vwez-c-text); }
.hero__byline .sep { opacity: .3; }

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__price-tag {
  font-family: var(--vwez-font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--vwez-c-text-muted);
  display: flex;
  align-items: baseline;
  gap: .4rem;
}
.hero__price-tag .price-new { font-size: 1.25rem; color: var(--vwez-c-primary); }
.hero__price-tag .price-old { text-decoration: line-through; opacity: .55; }
.hero__price-tag .price-badge {
  background: var(--vwez-c-accent);
  color: #fff;
  font-size: .65rem;
  border-radius: var(--vwez-radius-pill);
  padding: .15rem .55rem;
}


/* ──────────────────────────────────────────────
   DARK LEAD BAND
────────────────────────────────────────────── */
.lead-band {
  background: var(--vwez-c-dark);
  color: var(--vwez-c-white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.lead-band__text {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.75;
  max-width: 820px;
  color: rgba(255,255,255,.88);
}
.lead-band__text strong { color: var(--vwez-c-white); }


/* ──────────────────────────────────────────────
   HOW IT WORKS — TIMELINE
────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 0; }

.timeline__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline__list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--vwez-c-primary), rgba(22,108,167,.15));
}

.timeline__item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 2rem 0;
  position: relative;
}

.timeline__num {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--vwez-c-primary);
  color: var(--vwez-c-white);
  font-family: var(--vwez-font-head);
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(22,108,167,.1);
}

.timeline__body { padding-top: .6rem; }
.timeline__body h3 {
  font-family: var(--vwez-font-head);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--vwez-c-white);
}
.timeline__body p { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.7; }


/* ──────────────────────────────────────────────
   REVIEWS / TESTIMONIALS
────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

@media (max-width: 840px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--vwez-c-white);
  border-radius: var(--vwez-radius);
  padding: 1.8rem;
  box-shadow: 0 4px 28px rgba(22,108,167,.09);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars { color: var(--vwez-c-gold); letter-spacing: .1em; font-size: 1rem; }

.review-card__quote {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--vwez-c-text);
  flex: 1;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--vwez-c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vwez-font-head);
  font-size: .8rem;
  font-weight: 800;
  color: var(--vwez-c-primary);
  flex-shrink: 0;
}
.review-card__name { font-weight: 700; font-size: .88rem; }
.review-card__loc { font-size: .75rem; color: var(--vwez-c-text-muted); }

.reviews-disclaimer {
  font-size: .75rem;
  color: var(--vwez-c-text-muted);
  margin-top: 1.5rem;
  font-style: italic;
  max-width: 600px;
}


/* ──────────────────────────────────────────────
   COMPARISON TABLE
────────────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-top: 2rem;
  border-radius: var(--vwez-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(22,108,167,.09);
}

.comparison-table thead tr {
  background: var(--vwez-c-primary);
  color: var(--vwez-c-white);
}

.comparison-table th {
  padding: 1rem 1.25rem;
  font-family: var(--vwez-font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: left;
}
.comparison-table th:not(:first-child) { text-align: center; }

.comparison-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--vwez-c-border);
  vertical-align: middle;
}
.comparison-table td:not(:first-child) { text-align: center; }

.comparison-table tbody tr:nth-child(even) { background: var(--vwez-c-bg2); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table .col-feature { font-weight: 600; color: var(--vwez-c-text); }
.comparison-table .col-alpha { color: var(--vwez-c-primary); font-weight: 700; }

.check-yes { color: #1a9e5c; font-size: 1.1rem; }
.check-no { color: #c0c0c0; font-size: 1.1rem; }
.check-partial { color: var(--vwez-c-gold); font-size: 1.1rem; }

@media (max-width: 640px) {
  .comparison-table { font-size: .8rem; }
  .comparison-table th, .comparison-table td { padding: .7rem .75rem; }
}


/* ──────────────────────────────────────────────
   CHECKLIST / STEPS
────────────────────────────────────────────── */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) { .checklist-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .checklist-grid { grid-template-columns: 1fr; } }

.checklist-item {
  background: var(--vwez-c-white);
  border-radius: var(--vwez-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 22px rgba(22,108,167,.08);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.checklist-item__num {
  font-family: var(--vwez-font-head);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(22,108,167,.15);
  line-height: 1;
}

.checklist-item__title {
  font-family: var(--vwez-font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--vwez-c-dark);
}

.checklist-item__desc { font-size: .87rem; color: var(--vwez-c-text-muted); line-height: 1.65; }

.checklist-item__img {
  width: 100%;
  border-radius: calc(var(--vwez-radius) - 4px);
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-top: .5rem;
}


/* ──────────────────────────────────────────────
   MYTHS VS FACTS
────────────────────────────────────────────── */
.myths-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }

.myth-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--vwez-radius);
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,.06);
}

.myth-item__myth {
  background: #f9f0f0;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--vwez-c-accent);
}
.myth-item__fact {
  background: #f0f6f2;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid #1a9e5c;
}

.myth-item__label {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.myth-item__myth .myth-item__label { color: var(--vwez-c-accent); }
.myth-item__fact .myth-item__label { color: #1a9e5c; }

.myth-item__text { font-size: .92rem; line-height: 1.65; color: var(--vwez-c-text); }

@media (max-width: 700px) {
  .myth-item { grid-template-columns: 1fr; }
  .myth-item__myth { border-left: none; border-top: 4px solid var(--vwez-c-accent); }
  .myth-item__fact { border-left: none; border-top: 4px solid #1a9e5c; }
}


/* ──────────────────────────────────────────────
   INGREDIENTS / NUTRIENTS
────────────────────────────────────────────── */
.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

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

.ingredients-img {
  border-radius: var(--vwez-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(22,108,167,.12);
}
.ingredients-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.nutrients-list { display: flex; flex-direction: column; gap: 1.1rem; }

.nutrient-row {
  background: var(--vwez-c-white);
  border-radius: var(--vwez-radius);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 14px rgba(22,108,167,.07);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.nutrient-row__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(22,108,167,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nutrient-row__icon svg { width: 20px; height: 20px; stroke: var(--vwez-c-primary); fill: none; stroke-width: 1.8; }

.nutrient-row__body { flex: 1; }
.nutrient-row__name {
  font-family: var(--vwez-font-head);
  font-size: .85rem;
  font-weight: 800;
  color: var(--vwez-c-dark);
  margin-bottom: .25rem;
}
.nutrient-row__claim { font-size: .82rem; color: var(--vwez-c-text-muted); line-height: 1.55; }

.ingredients-disclaimer {
  margin-top: 1.2rem;
  font-size: .75rem;
  color: var(--vwez-c-text-muted);
  font-style: italic;
}


/* ──────────────────────────────────────────────
   ORDER SECTION
────────────────────────────────────────────── */
.order-section {
  background: var(--vwez-c-dark);
  color: var(--vwez-c-white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

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

.order-product {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.order-product__img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--vwez-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.order-product__img img { width: 100%; object-fit: cover; }

.order-product__price {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  flex-wrap: wrap;
}
.price-current {
  font-family: var(--vwez-font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--vwez-c-white);
}
.price-was {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: rgba(255,255,255,.4);
}
.price-save {
  background: var(--vwez-c-accent);
  color: #fff;
  border-radius: var(--vwez-radius-pill);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .2rem .7rem;
}

.order-trust {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .5rem;
}
.order-trust__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.78);
}
.order-trust__item svg { width: 18px; height: 18px; stroke: var(--vwez-c-gold); fill: none; stroke-width: 2; flex-shrink: 0; }

.uybg {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--vwez-radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.uybg h3 {
  font-family: var(--vwez-font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--vwez-c-white);
  margin-bottom: .25rem;
}

.form-field { display: flex; flex-direction: column; gap: .4rem; }

.form-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.form-input {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--vwez-radius);
  color: var(--vwez-c-white);
  padding: .8rem 1.1rem;
  font-size: .95rem;
  transition: border-color .2s;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,.35); }
.form-input:focus { border-color: rgba(22,108,167,.8); background: rgba(22,108,167,.1); }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px; height: 16px;
  flex-shrink: 0;
  accent-color: var(--vwez-c-primary);
}
.form-consent label { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.55; }
.form-consent label a { color: #8ec3e6; text-decoration: underline; }

.form-honeypot { display: none; }

.form-submit-btn {
  width: 100%;
  background: var(--vwez-c-primary);
  color: #fff;
  border: none;
  border-radius: var(--vwez-radius-pill);
  padding: 1rem;
  font-family: var(--vwez-font-head);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.form-submit-btn:hover { background: #125d8e; box-shadow: 0 6px 24px rgba(22,108,167,.4); }


/* ──────────────────────────────────────────────
   QUIZ (.uynd)
────────────────────────────────────────────── */
.uynd {
  background: var(--vwez-c-white);
  border-radius: var(--vwez-radius);
  box-shadow: 0 6px 32px rgba(22,108,167,.1);
  padding: 2.5rem 2rem;
  max-width: 680px;
  margin: 2rem auto 0;
}

.lf-quiz__title {
  font-family: var(--vwez-font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--vwez-c-dark);
}

.lf-quiz__step { display: none; }
.lf-quiz__step.is-active { display: block; }

.lf-quiz__question {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--vwez-c-text);
}

.lf-quiz__options { display: flex; flex-direction: column; gap: .65rem; }

.lf-quiz__option {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--vwez-c-bg2);
  border: 1.5px solid var(--vwez-c-border);
  border-radius: var(--vwez-radius);
  padding: .85rem 1.1rem;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  font-size: .92rem;
}
.lf-quiz__option:hover { border-color: var(--vwez-c-primary); background: rgba(22,108,167,.06); }
.lf-quiz__option input[type="radio"] { accent-color: var(--vwez-c-primary); }

.lf-quiz__nav {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.lf-quiz__progress {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vwez-c-text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.lf-quiz__bar {
  flex: 1;
  height: 4px;
  background: var(--vwez-c-border);
  border-radius: 2px;
  overflow: hidden;
}
.lf-quiz__bar-fill {
  height: 100%;
  background: var(--vwez-c-primary);
  border-radius: 2px;
  transition: width .3s;
}

.lf-quiz__result { display: none; text-align: center; }
.lf-quiz__result.is-active { display: block; }
.lf-quiz__result h3 {
  font-family: var(--vwez-font-head);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .75rem;
  color: var(--vwez-c-dark);
}
.lf-quiz__result p { color: var(--vwez-c-text-muted); font-size: .92rem; line-height: 1.7; margin-bottom: 1.5rem; }


/* ──────────────────────────────────────────────
   FAQ
────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 2rem auto 0; }

.urte {
  border-bottom: 1px solid var(--vwez-c-border);
}

.urte summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  cursor: pointer;
  font-family: var(--vwez-font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--vwez-c-dark);
  user-select: none;
}
.urte summary::-webkit-details-marker { display: none; }

.faq-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(22,108,167,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.urte[open] .faq-arrow { background: var(--vwez-c-primary); }
.faq-arrow svg { width: 12px; height: 12px; stroke: var(--vwez-c-primary); fill: none; stroke-width: 2.5; transition: stroke .2s; }
.urte[open] .faq-arrow svg { stroke: #fff; transform: rotate(180deg); }

.urte p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--vwez-c-text-muted);
  padding-bottom: 1.3rem;
}


/* ──────────────────────────────────────────────
   PRESS QUOTES (trust / social proof)
────────────────────────────────────────────── */
.press-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 840px) { .press-quotes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .press-quotes { grid-template-columns: 1fr; } }

.press-quote-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--vwez-radius);
  padding: 1.6rem 1.5rem;
}

.press-quote-card__mark {
  font-family: var(--vwez-font-head);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--vwez-c-primary);
  margin-bottom: .5rem;
}

.press-quote-card__text {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  font-style: italic;
}

.press-quote-card__source {
  margin-top: 1rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}


/* ──────────────────────────────────────────────
   SUPPLEMENT DISCLAIMER
────────────────────────────────────────────── */
.supplement-disclaimer {
  background: rgba(22,108,167,.06);
  border: 1px solid rgba(22,108,167,.15);
  border-radius: var(--vwez-radius);
  padding: 1.1rem 1.4rem;
  font-size: .78rem;
  color: var(--vwez-c-text-muted);
  line-height: 1.6;
  margin-top: 2rem;
}
.supplement-disclaimer--dark {
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
}


/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.site-footer {
  background: #080f18;
  color: rgba(255,255,255,.6);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.footer-brand { }
.footer-logo {
  font-family: var(--vwez-font-head);
  font-size: .88rem;
  font-weight: 800;
  color: var(--vwez-c-white);
  margin-bottom: .9rem;
}
.footer-logo span { color: var(--vwez-c-primary); }

.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-family: var(--vwez-font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--vwez-c-white);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul li a:hover { color: var(--vwez-c-white); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

.footer-legal p { line-height: 1.75; max-width: 760px; }
.footer-legal a { color: rgba(255,255,255,.5); text-decoration: underline; }

.footer-supplement-disclaimer {
  margin-top: 1.2rem;
  font-size: .73rem;
  color: rgba(255,255,255,.3);
  line-height: 1.65;
  max-width: 820px;
}


/* ──────────────────────────────────────────────
   COOKIE BANNER
────────────────────────────────────────────── */
.ubpw {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(92vw, 720px);
  background: var(--vwez-c-dark);
  color: var(--vwez-c-white);
  border-radius: var(--vwez-radius);
  box-shadow: 0 12px 48px rgba(0,0,0,.4);
  padding: 1.5rem 1.75rem;
  z-index: 9000;
  transition: transform .35s cubic-bezier(.32,.8,.4,1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ubpw.is-visible { transform: translateX(-50%) translateY(0); }

.cookie-banner__text { font-size: .83rem; line-height: 1.65; color: rgba(255,255,255,.75); }
.cookie-banner__text a { color: #8ec3e6; text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-banner__settings-panel {
  display: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 1.1rem;
  flex-direction: column;
  gap: .75rem;
}
.cookie-banner__settings-panel.is-open { display: flex; }

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .8rem;
}
.cookie-toggle-row span { color: rgba(255,255,255,.75); }

.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle__track {
  width: 38px; height: 22px;
  background: rgba(255,255,255,.2);
  border-radius: 11px;
  position: relative;
  transition: background .2s;
}
.cookie-toggle input:checked + .cookie-toggle__track { background: var(--vwez-c-primary); }
.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .2s;
}
.cookie-toggle input:checked + .cookie-toggle__track::after { left: 19px; }
.cookie-toggle--disabled .cookie-toggle__track { opacity: .4; cursor: not-allowed; }

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ubpw{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}
.ubpw.is-visible,.cookie-banner--visible,.ubpw.show,.ubpw.active{transform:none !important}
.ubpw a{color:inherit;text-decoration:underline}
.ubpw button{cursor:pointer}
.uusn{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}
.uusn.is-visible,.cookie-modal--visible,.uusn.show,.uusn.active{display:flex !important}
.ulau,.uusn>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.ujew .uynd,.ujew .udmf,.ujew .uebs,.ujew .ukbo,.ugyp .uynd,.ugyp .udmf,.ugyp .uebs,.ugyp .ukbo{background:#fff !important;color:#1a1a1a !important}
.uynd,.udmf{color:#1a1a1a !important}
.uynd label,.udmf label,.uynd p,.udmf p,.uynd .ukyw,.uynd span,.udmf span,.ubfn,.unph,.uebs .ufkn,.uebs .ufkn *{color:#1a1a1a !important}
.ubfn,.unph{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uynd .upuk{color:#1a1a1a !important}
.uynd .upuk.is-sel{color:#fff !important}
.uybg .ufsn{display:none}
.uybg .ufsn.is-visible{display:block !important;color:#c0392b}
.uybg .usvs,.uybg [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uybg{color:#1a1a1a}
.ujew .uybg,.ugyp .uybg{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.utqs{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.utqs img{width:100%;height:100%;object-fit:cover}
.umxn,.ubwe{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.umxn img,.ubwe img{width:100%;height:100%;object-fit:cover;display:block}
.umxn img{opacity:.28}
.ubwe img{opacity:.07}
*:has(> .umxn),*:has(> .ubwe){position:relative}
.ulfc{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)}
.ulfc .uobc{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ulfc .uehw{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uzho{margin:1.4rem auto;max-width:920px}
.uzho img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uzdb{padding:3rem 0}
.uvdb{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uvdb img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ukbo{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uxtr{display:flex;overflow:hidden;gap:0 !important}
.ulyx{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.urhe{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}
.uajn{left:.5rem}.uhqk{right:.5rem}
.uebs .ufkn{display:none}.uebs .ufkn.is-active{display:block}
.uynd .uspd{display:block !important}
.uynd .uyga{display:flex;flex-wrap:wrap;gap:.5rem}
.uynd .upuk{cursor:pointer}
