@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');

:root {
  --vjxg-c-bg: #0a0710;
  --vjxg-c-bg-2: #110d1e;
  --vjxg-c-bg-3: #1a1130;
  --vjxg-c-purple: #6c1cd1;
  --vjxg-c-purple-dark: #2f016a;
  --vjxg-c-purple-light: #b9a6ff;
  --vjxg-c-accent: #fff8cb;
  --vjxg-c-pink: #ffe8f9;
  --vjxg-c-white: #ffffff;
  --vjxg-c-text: #e8e0ff;
  --vjxg-c-text-muted: #9d8ec2;
  --vjxg-c-gold: #d4a843;
  --vjxg-c-border: #2a1d4a;
  --vjxg-radius: 12px;
  --vjxg-container: 960px;
  --vjxg-shadow-hard: 6px 6px 0px #2f016a;
  --vjxg-shadow-card: 8px 8px 0px #2f016a;
  --vjxg-font: 'Libre Franklin', sans-serif;
}

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

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

body {
  background: var(--vjxg-c-bg);
  color: var(--vjxg-c-text);
  font-family: var(--vjxg-font);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--vjxg-c-purple-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--vjxg-c-accent); }

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

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

.section { padding: 64px 0; }
.uoba {
  background: var(--vjxg-c-bg-2);
  border-top: 1px solid var(--vjxg-c-border);
  border-bottom: 1px solid var(--vjxg-c-border);
}
.ugaf {
  background: var(--vjxg-c-purple-dark);
  border-top: 1px solid #4a1a8a;
  border-bottom: 1px solid #4a1a8a;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--vjxg-c-white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.section-sub {
  color: var(--vjxg-c-text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
}

.tag-chip {
  display: inline-block;
  background: var(--vjxg-c-purple-dark);
  color: var(--vjxg-c-purple-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--vjxg-radius);
  margin-bottom: 16px;
  border: 1px solid var(--vjxg-c-purple);
}

.breadcrumb {
  font-size: .8rem;
  color: var(--vjxg-c-text-muted);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--vjxg-c-text-muted); }
.breadcrumb a:hover { color: var(--vjxg-c-purple-light); }
.breadcrumb span { margin: 0 6px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vjxg-c-accent);
  color: var(--vjxg-c-purple-dark);
  font-family: var(--vjxg-font);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--vjxg-radius);
  border: none;
  cursor: pointer;
  box-shadow: var(--vjxg-shadow-hard);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #2f016a;
  color: var(--vjxg-c-purple-dark);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px #2f016a;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--vjxg-c-accent);
  font-family: var(--vjxg-font);
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid var(--vjxg-c-accent);
  padding: 10px 22px;
  border-radius: var(--vjxg-radius);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--vjxg-c-accent);
  color: var(--vjxg-c-purple-dark);
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vjxg-c-accent);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.cta-arrow:hover { gap: 10px; color: var(--vjxg-c-white); }
.cta-arrow::after { content: '→'; }

.utkv {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 7, 16, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vjxg-c-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--vjxg-c-white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.site-logo img { width: 32px; height: 32px; }
.site-logo span { color: var(--vjxg-c-purple-light); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--vjxg-c-text-muted);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.site-nav a:hover { color: var(--vjxg-c-white); }
.site-nav .nav-cta {
  color: var(--vjxg-c-accent);
  font-weight: 700;
  border: 1px solid var(--vjxg-c-accent);
  padding: 6px 16px;
  border-radius: var(--vjxg-radius);
}
.site-nav .nav-cta:hover {
  background: var(--vjxg-c-accent);
  color: var(--vjxg-c-purple-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vjxg-c-white);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--vjxg-c-bg-2);
  border-top: 1px solid var(--vjxg-c-border);
  padding: 16px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--vjxg-c-text);
  font-size: .95rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--vjxg-c-border);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }

.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.uoth {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
  z-index: 0;
}
.uoth::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,1,106,.85) 0%, rgba(10,7,16,.6) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 72px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(108,28,209,.4);
  border-radius: var(--vjxg-radius);
  padding: 40px 36px;
  box-shadow: var(--vjxg-shadow-card);
}
.hero-card .breadcrumb { margin-bottom: 10px; }
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vjxg-c-purple-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--vjxg-c-purple-light);
}
.hero-h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--vjxg-c-white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.hero-h1 .underline-mark {
  position: relative;
  display: inline-block;
  color: var(--vjxg-c-accent);
}
.hero-h1 .underline-mark::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--vjxg-c-purple);
  border-radius: 2px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--vjxg-c-text);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(108,28,209,.18);
  border: 1px solid rgba(108,28,209,.4);
  border-radius: var(--vjxg-radius);
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--vjxg-c-purple-light);
}
.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-pack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-pack img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(108,28,209,.5));
}
.hero-pack-note {
  font-size: .82rem;
  color: var(--vjxg-c-text-muted);
  text-align: center;
}
.hero-pack-price {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(108,28,209,.35);
  border-radius: var(--vjxg-radius);
  padding: 16px 24px;
  text-align: center;
  width: 100%;
}
.hero-pack-price .price-main {
  font-size: 2rem;
  font-weight: 900;
  color: var(--vjxg-c-accent);
}
.hero-pack-price .price-desc {
  font-size: .8rem;
  color: var(--vjxg-c-text-muted);
  margin-top: 4px;
}

.trust-band {
  background: var(--vjxg-c-bg-3);
  border-top: 1px solid var(--vjxg-c-border);
  border-bottom: 1px solid var(--vjxg-c-border);
  padding: 20px 0;
}
.trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--vjxg-c-text-muted);
  font-weight: 500;
}
.trust-item svg { color: var(--vjxg-c-purple-light); width: 16px; height: 16px; }

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.ing-card {
  background: var(--vjxg-c-bg-3);
  border: 1px solid var(--vjxg-c-border);
  border-radius: var(--vjxg-radius);
  padding: 24px;
  box-shadow: var(--vjxg-shadow-card);
  transition: transform .2s;
}
.ing-card:hover { transform: translate(-2px, -2px); }
.ing-card-icon {
  width: 40px;
  height: 40px;
  background: var(--vjxg-c-purple-dark);
  border-radius: var(--vjxg-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.ing-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vjxg-c-white);
  margin-bottom: 6px;
}
.ing-card p {
  font-size: .85rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.55;
}
.ing-efsa {
  display: inline-block;
  margin-top: 8px;
  font-size: .75rem;
  color: var(--vjxg-c-purple-light);
  font-weight: 600;
  font-style: italic;
}
.ing-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.ing-img-wrap {
  border-radius: var(--vjxg-radius);
  overflow: hidden;
  box-shadow: var(--vjxg-shadow-card);
  aspect-ratio: 4 / 3;
}
.ing-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.utxd {
  background: var(--vjxg-c-bg-3);
  border: 1px solid var(--vjxg-c-border);
  border-radius: var(--vjxg-radius);
  box-shadow: var(--vjxg-shadow-card);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--vjxg-c-white);
  list-style: none;
  user-select: none;
  transition: background .2s;
}
.faq-q:hover { background: rgba(108,28,209,.12); }
.faq-q::marker, .faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--vjxg-c-purple-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--vjxg-c-purple-light);
  transition: transform .25s;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px 18px;
  font-size: .9rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--vjxg-c-border);
  padding-top: 14px;
}

.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .88rem;
}
.compare-table th {
  background: var(--vjxg-c-purple-dark);
  color: var(--vjxg-c-white);
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--vjxg-c-purple);
}
.compare-table th:first-child { border-radius: var(--vjxg-radius) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--vjxg-radius) 0 0; }
.compare-table th.col-ours {
  background: var(--vjxg-c-purple);
  color: var(--vjxg-c-accent);
}
.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--vjxg-c-border);
  color: var(--vjxg-c-text);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(108,28,209,.06); }
.compare-table td.col-ours {
  background: rgba(108,28,209,.12);
  color: var(--vjxg-c-purple-light);
  font-weight: 600;
}
.compare-table .check { color: #5ae0a0; font-size: 1.1rem; }
.compare-table .cross { color: #e05a5a; font-size: 1.1rem; }
.compare-table .partial { color: var(--vjxg-c-gold); font-size: 1rem; }

.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--vjxg-c-border);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 48px;
  height: 48px;
  background: var(--vjxg-c-purple);
  color: var(--vjxg-c-accent);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vjxg-radius);
  box-shadow: var(--vjxg-shadow-hard);
  flex-shrink: 0;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vjxg-c-white);
  margin-bottom: 6px;
}
.step-content p {
  font-size: .88rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.6;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mech-card {
  background: var(--vjxg-c-bg-3);
  border: 1px solid var(--vjxg-c-border);
  border-radius: var(--vjxg-radius);
  padding: 24px 20px;
  box-shadow: var(--vjxg-shadow-card);
  position: relative;
}
.mech-num {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--vjxg-c-purple);
  color: var(--vjxg-c-accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 20px;
}
.mech-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--vjxg-c-white);
  margin-bottom: 8px;
  margin-top: 6px;
}
.mech-card p {
  font-size: .83rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.6;
}
.mech-infographic {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mech-infographic .img-wrap {
  border-radius: var(--vjxg-radius);
  overflow: hidden;
  box-shadow: var(--vjxg-shadow-card);
  aspect-ratio: 4 / 3;
}
.mech-infographic .img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-mosaic .gal-item {
  border-radius: var(--vjxg-radius);
  overflow: hidden;
  box-shadow: var(--vjxg-shadow-card);
}
.gallery-mosaic .gal-item:first-child {
  grid-row: 1 / 3;
}
.gallery-mosaic .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.gallery-mosaic .gal-item:hover img { transform: scale(1.04); }

.lf-calc-wrap {
  background: var(--vjxg-c-bg-3);
  border: 1px solid var(--vjxg-c-border);
  border-radius: var(--vjxg-radius);
  padding: 32px;
  box-shadow: var(--vjxg-shadow-card);
  max-width: 520px;
  margin: 0 auto;
}
.lf-calc-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vjxg-c-white);
  margin-bottom: 20px;
}
.calc-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.calc-row label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--vjxg-c-text-muted);
}
.calc-row input[type=range] {
  width: 100%;
  accent-color: var(--vjxg-c-purple);
}
.calc-row .val {
  font-size: .9rem;
  font-weight: 700;
  color: var(--vjxg-c-purple-light);
  text-align: right;
}
.calc-result {
  background: var(--vjxg-c-purple-dark);
  border-radius: var(--vjxg-radius);
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--vjxg-c-accent);
  text-align: center;
}

.reviews-section { }
.press-quotes { display: flex; flex-direction: column; gap: 20px; }
.press-quote {
  background: var(--vjxg-c-bg-3);
  border-left: 4px solid var(--vjxg-c-purple);
  border-radius: 0 var(--vjxg-radius) var(--vjxg-radius) 0;
  padding: 20px 24px;
  box-shadow: var(--vjxg-shadow-card);
}
.press-quote blockquote {
  font-size: .95rem;
  font-style: italic;
  color: var(--vjxg-c-text);
  line-height: 1.65;
  margin-bottom: 10px;
}
.press-quote cite {
  font-size: .8rem;
  color: var(--vjxg-c-text-muted);
  font-style: normal;
  font-weight: 600;
}
.stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}
.star-icon { color: var(--vjxg-c-gold); font-size: .9rem; }
.review-disclaimer {
  font-size: .78rem;
  color: var(--vjxg-c-text-muted);
  margin-top: 24px;
  font-style: italic;
  border-top: 1px solid var(--vjxg-c-border);
  padding-top: 16px;
}

.order-section { }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.order-info h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--vjxg-c-white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.order-info p {
  font-size: .9rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.order-perks { display: flex; flex-direction: column; gap: 10px; }
.order-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--vjxg-c-text);
}
.perk-icon {
  width: 22px;
  height: 22px;
  background: var(--vjxg-c-purple-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.urdd {
  background: var(--vjxg-c-bg-3);
  border: 1px solid var(--vjxg-c-border);
  border-radius: var(--vjxg-radius);
  padding: 32px;
  box-shadow: var(--vjxg-shadow-card);
}
.urdd h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--vjxg-c-white);
  margin-bottom: 6px;
}
.urdd .form-sub {
  font-size: .82rem;
  color: var(--vjxg-c-text-muted);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--vjxg-c-text-muted);
  margin-bottom: 6px;
}
.form-group input[type=text],
.form-group input[type=tel],
.form-group select {
  width: 100%;
  background: var(--vjxg-c-bg-2);
  border: 1px solid var(--vjxg-c-border);
  border-radius: var(--vjxg-radius);
  color: var(--vjxg-c-white);
  font-family: var(--vjxg-font);
  font-size: .9rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--vjxg-c-purple); }
.form-honeypot { display: none !important; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: .78rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.5;
}
.form-consent input[type=checkbox] {
  accent-color: var(--vjxg-c-purple);
  margin-top: 2px;
  flex-shrink: 0;
}
.form-consent a { color: var(--vjxg-c-purple-light); }
.form-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(108,28,209,.12);
  border-radius: var(--vjxg-radius);
  border: 1px solid rgba(108,28,209,.3);
}
.form-price-label { font-size: .82rem; color: var(--vjxg-c-text-muted); }
.form-price-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--vjxg-c-accent);
}
.form-submit {
  width: 100%;
  background: var(--vjxg-c-accent);
  color: var(--vjxg-c-purple-dark);
  font-family: var(--vjxg-font);
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--vjxg-radius);
  border: none;
  cursor: pointer;
  box-shadow: var(--vjxg-shadow-hard);
  transition: transform .15s, box-shadow .15s;
}
.form-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #2f016a;
}
.form-submit:active {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 #2f016a;
}
.form-note {
  font-size: .75rem;
  color: var(--vjxg-c-text-muted);
  margin-top: 12px;
  text-align: center;
}

.site-footer {
  background: #060410;
  border-top: 1px solid var(--vjxg-c-border);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: .82rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vjxg-c-text-muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: .85rem;
  color: var(--vjxg-c-text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--vjxg-c-purple-light); }
.footer-bottom {
  border-top: 1px solid var(--vjxg-c-border);
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: .78rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.7;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal-links a {
  font-size: .78rem;
  color: var(--vjxg-c-text-muted);
  text-decoration: none;
}
.footer-legal-links a:hover { color: var(--vjxg-c-purple-light); }
.footer-disclaimer {
  margin-top: 24px;
  padding: 16px;
  background: var(--vjxg-c-bg-3);
  border-radius: var(--vjxg-radius);
  border: 1px solid var(--vjxg-c-border);
  font-size: .75rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.65;
}

.urxo {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background: var(--vjxg-c-bg-2);
  border: 1px solid var(--vjxg-c-border);
  border-radius: var(--vjxg-radius);
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  z-index: 9999;
  display: none;
}
.urxo.is-visible { display: block; }
.urxo h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--vjxg-c-white);
  margin-bottom: 8px;
}
.urxo p {
  font-size: .8rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.urxo p a { color: var(--vjxg-c-purple-light); }
.ubgi {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ubgi button {
  font-family: var(--vjxg-font);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--vjxg-radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s;
}
.cookie-accept {
  background: var(--vjxg-c-accent);
  color: var(--vjxg-c-purple-dark);
  border-color: var(--vjxg-c-accent);
}
.cookie-accept:hover { opacity: .9; }
.cookie-reject {
  background: transparent;
  color: var(--vjxg-c-text-muted);
  border-color: var(--vjxg-c-border);
}
.cookie-reject:hover { border-color: var(--vjxg-c-purple-light); color: var(--vjxg-c-purple-light); }
.cookie-settings {
  background: transparent;
  color: var(--vjxg-c-text-muted);
  border-color: var(--vjxg-c-border);
}
.cookie-settings:hover { border-color: var(--vjxg-c-purple-light); color: var(--vjxg-c-purple-light); }

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.is-visible { display: flex; }
.usru {
  background: var(--vjxg-c-bg-2);
  border: 1px solid var(--vjxg-c-border);
  border-radius: var(--vjxg-radius);
  padding: 32px;
  max-width: 480px;
  width: calc(100% - 40px);
  box-shadow: 0 16px 60px rgba(0,0,0,.8);
}
.usru h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vjxg-c-white);
  margin-bottom: 20px;
}
.cookie-toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--vjxg-c-border);
}
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-info h5 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--vjxg-c-white);
  margin-bottom: 3px;
}
.cookie-toggle-info p {
  font-size: .78rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.5;
  margin: 0;
}
.toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--vjxg-c-border);
  border-radius: 24px;
  cursor: pointer;
  transition: background .2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--vjxg-c-white);
  border-radius: 50%;
  transition: transform .2s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--vjxg-c-purple); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }
.toggle-switch input:disabled + .toggle-slider { opacity: .5; cursor: not-allowed; }
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  font-family: var(--vjxg-font);
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--vjxg-radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s;
}
.btn-save-prefs {
  background: var(--vjxg-c-accent);
  color: var(--vjxg-c-purple-dark);
  border-color: var(--vjxg-c-accent);
}
.btn-save-prefs:hover { opacity: .9; }
.btn-cancel-modal {
  background: transparent;
  color: var(--vjxg-c-text-muted);
  border-color: var(--vjxg-c-border);
}
.btn-cancel-modal:hover { border-color: var(--vjxg-c-purple-light); color: var(--vjxg-c-purple-light); }

.page-hero {
  background: linear-gradient(135deg, var(--vjxg-c-purple-dark) 0%, var(--vjxg-c-bg) 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--vjxg-c-border);
}
.page-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--vjxg-c-white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.page-hero p {
  font-size: .95rem;
  color: var(--vjxg-c-text-muted);
}
.page-content {
  padding: 56px 0;
}
.page-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vjxg-c-white);
  margin: 32px 0 10px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vjxg-c-purple-light);
  margin: 24px 0 8px;
}
.page-content p {
  font-size: .9rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.page-content ul, .page-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.page-content li {
  font-size: .9rem;
  color: var(--vjxg-c-text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}
.page-content a { color: var(--vjxg-c-purple-light); }
.page-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  margin: 20px 0;
}
.page-content table th {
  background: var(--vjxg-c-purple-dark);
  color: var(--vjxg-c-white);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--vjxg-c-purple);
}
.page-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--vjxg-c-border);
  color: var(--vjxg-c-text-muted);
}
.page-content table tr:last-child td { border-bottom: none; }
.page-content table tr:nth-child(even) td { background: rgba(108,28,209,.05); }

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-pack { display: none; }
  .hero-h1 { font-size: 1.8rem; }
  .hero-card { padding: 28px 22px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .ing-images { grid-template-columns: 1fr; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .mech-infographic { grid-template-columns: 1fr; }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-mosaic .gal-item:first-child { grid-row: auto; }
  .order-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-band-inner { gap: 20px; }
  .compare-table { font-size: .78rem; }
  .section { padding: 44px 0; }
  .lf-calc-wrap { padding: 22px 18px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.5rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .urxo { bottom: 12px; left: 12px; right: 12px; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.urxo{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}
.urxo.is-visible,.cookie-banner--visible,.urxo.show,.urxo.active{transform:none !important}
.urxo a{color:inherit;text-decoration:underline}
.urxo button{cursor:pointer}
.usru{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}
.usru.is-visible,.cookie-modal--visible,.usru.show,.usru.active{display:flex !important}
.ulcq,.usru>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uoba .unuq,.uoba .uphx,.uoba .ursl,.uoba .umic,.ugaf .unuq,.ugaf .uphx,.ugaf .ursl,.ugaf .umic{background:#fff !important;color:#1a1a1a !important}
.unuq,.uphx{color:#1a1a1a !important}
.unuq label,.uphx label,.unuq p,.uphx p,.unuq .ugkk,.unuq span,.uphx span,.ufaf,.ulzm,.ursl .unlg,.ursl .unlg *{color:#1a1a1a !important}
.ufaf,.ulzm{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.unuq .uqzp{color:#1a1a1a !important}
.unuq .uqzp.is-sel{color:#fff !important}
.urdd .ugag{display:none}
.urdd .ugag.is-visible{display:block !important;color:#c0392b}
.urdd .umth,.urdd [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.urdd{color:#1a1a1a}
.uoba .urdd,.ugaf .urdd{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uuwk{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uuwk img{width:100%;height:100%;object-fit:cover}
.uoth,.ueaz{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uoth img,.ueaz img{width:100%;height:100%;object-fit:cover;display:block}
.uoth img{opacity:.28}
.ueaz img{opacity:.07}
*:has(> .uoth),*:has(> .ueaz){position:relative}
.ucja{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)}
.ucja .uqjb{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ucja .uaac{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ufjh{margin:1.4rem auto;max-width:920px}
.ufjh img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.udne{padding:3rem 0}
.urnl{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.urnl img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.umic{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ulhz{display:flex;overflow:hidden;gap:0 !important}
.uogm{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.unqd{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}
.ulfe{left:.5rem}.uaey{right:.5rem}
.ursl .unlg{display:none}.ursl .unlg.is-active{display:block}
.unuq .ulyv{display:block !important}
.unuq .ufbo{display:flex;flex-wrap:wrap;gap:.5rem}
.unuq .uqzp{cursor:pointer}
