/* ========== ПЕРЕМЕННЫЕ И СБРОС ========== */
:root {
  --bg: #FAF9FC;         /* молочно-лавандовый фон */
  --bg-cream: #F6F3FB;
  --ink: #1A1624;        /* мягкий тёмный как в текущем сайте */
  --ink-soft: #5A5370;
  --green-deep: #6540A8; /* сохраняем имена, но меняем на лавандовую систему */
  --green: #7B52C2;
  --green-mid: #9370D4;
  --green-light: #DDD3F3;
  --mint: #F0ECF8;
  --lime: #B097E0;
  --lime-soft: #EDE7F8;
  --cream: #FAF9FC;
  --white: #FFFFFF;
  --line: rgba(26, 22, 36, 0.10);
  --line-strong: rgba(26, 22, 36, 0.18);
  --shadow-lg: 0 30px 80px -20px rgba(147, 112, 212, 0.22);
  --shadow-md: 0 10px 30px -10px rgba(147, 112, 212, 0.16);

  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --r-lg: 32px;
  --r-md: 20px;
  --r-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::selection {
  background: rgba(176, 151, 224, 0.38);
  color: var(--ink);
}

::-moz-selection {
  background: rgba(176, 151, 224, 0.38);
  color: var(--ink);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scrollbar-width: auto;
  scrollbar-color: var(--green-mid) rgba(123, 82, 194, 0.08);
}

body::-webkit-scrollbar {
    width: 36px;
  }

body::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(237, 231, 248, 0.4) 0%, rgba(246, 243, 251, 0.92) 100%);
  border-left: 1px solid rgba(123, 82, 194, 0.08);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--green-mid) 0%, var(--green) 52%, var(--green-deep) 100%);
  border-radius: 999px;
  border: 4px solid rgba(250, 249, 252, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #a887df 0%, var(--green) 52%, #5d389f 100%);
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.cursor-arrow {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 24px;
  pointer-events: none;
  opacity: 0;
  z-index: 1200;
  transform: translate(0, 0);
  transition: opacity 0.12s ease, filter 0.12s ease;
  will-change: transform;
}

.cursor-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #8b5cf6;
  clip-path: polygon(0 0, 0 100%, 25% 76%, 43% 100%, 58% 94%, 40% 70%, 72% 70%);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.95),
    0 4px 10px rgba(139, 92, 246, 0.18);
}

.cursor-arrow.is-visible {
  opacity: 1;
}

.cursor-arrow.is-hover {
  filter: brightness(1.06);
  transform: scale(1.04);
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(123, 82, 194, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-deep);
  box-shadow: 0 14px 34px -18px rgba(123, 82, 194, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background: rgba(237, 231, 248, 0.96);
  border-color: rgba(123, 82, 194, 0.28);
  transform: translateY(-2px) scale(1.03);
}

@media (min-width: 1025px) and (pointer: fine) {
  html,
  body,
  a,
  button,
  summary,
  input,
  textarea,
  .problem-card,
  .adv-card,
  .scenario-card,
  .buy-card,
  .formula-card,
  .safety-card {
    cursor: auto;
  }
  body.custom-cursor-enabled,
  body.custom-cursor-enabled a,
  body.custom-cursor-enabled button,
  body.custom-cursor-enabled summary,
  body.custom-cursor-enabled input,
  body.custom-cursor-enabled textarea,
  body.custom-cursor-enabled .problem-card,
  body.custom-cursor-enabled .adv-card,
  body.custom-cursor-enabled .scenario-card,
  body.custom-cursor-enabled .buy-card,
  body.custom-cursor-enabled .formula-card,
  body.custom-cursor-enabled .safety-card {
    cursor: none !important;
  }
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ========== ШУМОВОЙ СЛОЙ ========== */
.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ========== ОРБЫ (плавающий фон) ========== */
.floating-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.orb-1 { width: 500px; height: 500px; background: var(--green-light); top: -100px; right: -100px; animation: floatOrb 18s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: var(--lime); bottom: 20%; left: -150px; animation: floatOrb 22s ease-in-out infinite reverse; }
.orb-3 { width: 350px; height: 350px; background: var(--mint); top: 60%; right: 10%; animation: floatOrb 25s ease-in-out infinite; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.15); }
}

/* ========== ТИПОГРАФИКА ========== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

em { font-style: italic; font-family: 'Manrope', sans-serif; font-weight: 300; color: var(--green); }

.section-title {
  font-size: clamp(38px, 5.5vw, 80px);
  font-weight: 600;
  margin-bottom: 24px;
}
.section-title em {
  font-family: 'Unbounded', sans-serif;
  font-style: italic;
  font-weight: 300;
  color: var(--green);
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--lime); }

.section-lead {
  font-size: clamp(16px, 1.3vw, 20px);
  max-width: 640px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.section-lead.light { color: rgba(250, 247, 240, 0.8); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.section-tag span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green);
  background: var(--lime);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
}
.section-tag.light {
  color: var(--cream);
  border-color: rgba(250, 247, 240, 0.3);
  background: rgba(250, 247, 240, 0.08);
}
.section-tag.light span {
  color: var(--green-deep);
  background: var(--lime);
}

.section-head { margin-bottom: 64px; max-width: 900px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ========== КНОПКИ ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(6, 78, 59, 0.5);
}
.btn-primary:hover i { transform: translateX(4px); }
.btn-primary i { transition: transform 0.3s; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-header {
  background: var(--lime);
  color: var(--ink);
  padding: 12px 22px;
  font-size: 14px;
}
.btn-header:hover {
  background: var(--ink);
  color: var(--lime);
}

.btn-large { padding: 20px 36px; font-size: 16px; }

/* ========== ШАПКА ========== */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: top 0.3s;
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  position: relative;
  align-items: center;
  gap: 24px;
  background: rgba(245, 243, 236, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-left: 24px;
  margin-right: 24px;
  box-shadow: 0 10px 40px -10px rgba(6, 78, 59, 0.08);
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { color: var(--green-deep); display: flex; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 18px;
  color: var(--ink);
}

.main-nav {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}
.main-nav a:hover { color: var(--green-deep); }
.main-nav a:hover::after { width: 100%; }
.header-inner > .btn-header { margin-left: auto; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.burger span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 70vh;
}

.hero-left { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--green-deep);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  box-shadow: 0 0 0 0 var(--green-mid);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(147, 112, 212, 0.42); }
  70% { box-shadow: 0 0 0 12px rgba(147, 112, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(147, 112, 212, 0); }
}

.hero-title { margin-bottom: 28px; }
.hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 50%, var(--green-mid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.hero-title-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--ink);
  line-height: 1.1;
}

.hero-lead {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
  max-width: 560px;
}
.hero-desc {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.35;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-accents {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.accent-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.accent-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.accent-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
}
.accent-label {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accent-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.hero-mobile-visual { display: none; }
.hero-mobile-visual__image {
  display: block;
  width: 100%;
  height: auto;
}

/* HERO RIGHT — графическая композиция */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 600px;
}
.hero-visual {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.visual-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mint) 0%, rgba(240, 236, 248, 0) 70%);
  transform: translate(-50%, -50%);
  animation: haloSpin 30s linear infinite;
}
.visual-halo-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(176, 151, 224, 0.32) 0%, rgba(176, 151, 224, 0) 60%);
  animation-duration: 40s;
  animation-direction: reverse;
}
@keyframes haloSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.visual-bottle {
  position: absolute;
  bottom: -74px;
  left: 72%;
  transform: translateX(-50%);
  width: 500px;
  height: 640px;
  z-index: 0;
  filter: drop-shadow(0 34px 44px rgba(101, 64, 168, 0.24));
}
.visual-bottle svg { display: none; }
.visual-bottle__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
@keyframes bottleFloat {
  0%, 100% { transform: translateX(-50%) rotate(-3deg); }
  50% { transform: translateX(-50%) translateY(-2%) rotate(3deg); }
}

.leaf { display: none; }
.leaf-1 { top: 8%; left: -2%; animation-delay: 0s; transform: rotate(-25deg); }
.leaf-2 { bottom: 10%; right: 10%; width: 90px; animation-delay: 2s; transform: rotate(40deg); }
.leaf-3 { top: 15%; right: 18%; width: 55px; animation-delay: 4s; transform: rotate(15deg); }

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-20px) rotate(calc(var(--r, 0deg) + 10deg)); }
}
.leaf-1 { --r: -25deg; }
.leaf-2 { --r: 40deg; }
.leaf-3 { --r: 15deg; }

.drop { display: none; }
.drop-1 { width: 40px; height: 40px; top: 25%; left: 2%; animation-delay: 0s; }
.drop-2 { width: 24px; height: 24px; top: 70%; left: 8%; animation-delay: 1s; }
.drop-3 { width: 30px; height: 30px; top: 40%; right: 14%; animation-delay: 2s; }
@keyframes dropFloat {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-15px); }
}

.float-badge {
  position: absolute;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 4;
  border: 1px solid var(--line);
}
.float-badge i { color: var(--green); font-size: 16px; }
.float-badge-1 {
  top: 20%;
  right: 26%;
  animation: badgeFloat 6s ease-in-out infinite;
}
.float-badge-2 {
  bottom: 18%;
  left: -8%;
  animation: badgeFloat 6s ease-in-out infinite 3s;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* БЕГУЩАЯ СТРОКА */
.marquee {
  margin-top: 80px;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
  transform: rotate(-1deg);
  margin-left: 0;
  width: 100%;
}
.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.05em;
}
.marquee-track .dot { color: var(--lime); font-size: 24px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== 2. ПРОБЛЕМА ========== */
.problem-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.problem-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.problem-hero .section-head {
  margin-bottom: 0;
  max-width: 760px;
}

.problem-visual {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  overflow: visible;
}

.problem-visual::before {
  content: '';
  position: absolute;
  inset: 10% 6%;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(176, 151, 224, 0.16) 0%, rgba(176, 151, 224, 0.06) 45%, transparent 78%);
  filter: blur(26px);
}

.problem-visual__image {
  position: absolute;
  top: 50%;
  right: -80%;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: initial;
  filter: drop-shadow(0 24px 34px rgba(123, 82, 194, 0.16));
  left: auto;
  transform: translateY(-50%) scale(0.81);
  transform-origin: right center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.problem-card {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: default;
}
.problem-card:hover {
  background: var(--ink);
  color: var(--cream);
}
.problem-card:hover .problem-num { color: var(--lime); }
.problem-card:hover .problem-icon { background: var(--lime); color: var(--ink); transform: rotate(-8deg) scale(1.1); }
.problem-card:hover h3 { color: var(--cream); }

.problem-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  transition: color 0.3s;
}
.problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--lime);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 36px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.problem-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  transition: color 0.3s;
}

/* ========== 3. РЕШЕНИЕ ========== */
.solution-section {
  padding: 120px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48px 48px;
}
.solution-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.solution-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: rgba(250, 247, 240, 0.05);
  border: 1px solid rgba(250, 247, 240, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.solution-feature:hover {
  background: rgba(250, 247, 240, 0.1);
  transform: translateX(8px);
  border-color: var(--lime);
}
.feature-bullet {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.feature-text {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(250, 247, 240, 0.85);
}
.feature-text strong { color: var(--cream); font-weight: 600; }

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(250, 247, 240, 0.2);
  animation: rotate 60s linear infinite;
}
.deco-circle-1 {
  width: 800px;
  height: 800px;
  top: -400px;
  right: -200px;
}
.deco-circle-2 {
  width: 600px;
  height: 600px;
  bottom: -300px;
  left: -300px;
  animation-direction: reverse;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========== 4. ПРЕИМУЩЕСТВА ========== */
.advantages-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.adv-card {
  padding: 32px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.adv-card:hover { transform: translateY(-8px); }
.adv-card-1 { background: var(--lime); color: var(--green-deep); }
.adv-card-2 { background: var(--mint); color: var(--green-deep); grid-row: span 1; margin-top: 40px; }
.adv-card-3 { background: var(--ink); color: var(--cream); }
.adv-card-3 em { color: var(--lime); }
.adv-card-4 { background: var(--green); color: var(--cream); margin-top: 40px; }

.adv-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 60px;
  line-height: 1;
  opacity: 0.3;
  margin-bottom: auto;
}
.adv-visual {
  width: 100px;
  height: 100px;
  margin: 24px 0 24px auto;
  color: currentColor;
  opacity: 0.9;
}
.adv-card h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  color: inherit;
  margin-bottom: 12px;
  line-height: 1.1;
}
.adv-card p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

/* ========== 5. ДЛЯ КОГО ========== */
.audience-section { padding: 120px 0; position: relative; z-index: 2; }
.audience-list { border-top: 1px solid var(--line); }
.audience-row {
  display: grid;
  grid-template-columns: 80px 70px 1fr 60px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.3s;
  cursor: default;
}
.audience-row::before {
  content: attr(data-num);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  grid-column: 1;
}
.audience-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.audience-row:hover::after { width: 100%; }
.audience-row:hover { padding-left: 20px; }
.audience-row:hover .audience-arrow { transform: translateX(10px); color: var(--green); }
.audience-row:hover .audience-icon { background: var(--lime); transform: rotate(-10deg); }

.audience-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-cream);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s;
}
.audience-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.2;
  color: var(--ink);
}
.audience-text strong { font-weight: 500; }
.audience-arrow {
  text-align: right;
  color: var(--ink-soft);
  font-size: 20px;
  transition: all 0.3s;
}

/* ========== 6. ДЛЯ БЕРЕМЕННЫХ ========== */
.special-care-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.special-care-shell {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 247, 240, 0.88) 100%);
  border: 1px solid rgba(6, 78, 59, 0.08);
  border-radius: 40px;
  padding: 56px;
  box-shadow: 0 28px 80px -48px rgba(6, 78, 59, 0.2);
  overflow: hidden;
}
.special-care-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 255, 77, 0.16) 0%, transparent 32%),
    radial-gradient(circle at 84% 16%, rgba(154, 230, 180, 0.18) 0%, transparent 36%);
  pointer-events: none;
}
.special-care-top {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.special-care-top .section-head {
  margin-bottom: 0;
  max-width: 1180px;
}
.special-care-intro {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 28px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(6, 78, 59, 0.08);
  margin-bottom: 28px;
}
.special-care-top .section-title,
.special-care-top .section-lead {
  max-width: 1180px;
}
.special-care-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.special-care-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.special-care-card {
  padding: 28px 24px;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(6, 78, 59, 0.08);
  border-radius: 28px;
  box-shadow: 0 22px 44px -36px rgba(6, 78, 59, 0.24);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.special-care-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 78, 59, 0.18);
  box-shadow: 0 26px 54px -34px rgba(6, 78, 59, 0.26);
}
.special-care-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime-soft);
  color: var(--green-deep);
  font-size: 20px;
  margin-bottom: 22px;
}
.special-care-card h3 {
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.special-care-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.special-care-accent {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.special-care-accent__main {
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(6, 78, 59, 0.08);
  background: rgba(255, 255, 255, 0.82);
}
.special-care-accent__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.special-care-accent__main h3 {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.special-care-accent__main p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.special-care-note {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(13, 41, 33, 0.72);
}

.pregnancy-section { padding: 120px 0; position: relative; z-index: 2; }
.pregnancy-top {
  position: relative;
  min-height: 420px;
  padding-right: 42%;
}
.pregnancy-top .section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.pregnancy-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: min(36%, 380px);
  pointer-events: none;
}
.pregnancy-visual__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.pregnancy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pregnancy-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px -28px rgba(147, 112, 212, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pregnancy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 82, 194, 0.28);
  box-shadow: 0 24px 52px -30px rgba(147, 112, 212, 0.24);
}
.pregnancy-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--lime-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.pregnancy-card h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.pregnancy-card p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

/* ========== 7. ЧТО ДЕЛАЕТ ПРОДУКТ ========== */
.benefits-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  margin: 0 24px;
}
.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(212, 255, 77, 0.2) 0%, transparent 40%),
                      radial-gradient(circle at 80% 80%, rgba(200, 255, 224, 0.15) 0%, transparent 40%);
    pointer-events: none;
  }
.benefits-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    z-index: 4;
    overflow: hidden;
    pointer-events: none;
  }
.benefits-visual__image {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    max-width: 57%;
    max-height: calc(100% - 240px);
    margin-right: 0;
    object-fit: initial;
    filter: drop-shadow(0 24px 42px rgba(18, 10, 38, 0.2));
  }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
  z-index: 2;
}
.benefit-item {
  padding: 36px 24px;
  background: rgba(250, 247, 240, 0.06);
  border: 1px solid rgba(250, 247, 240, 0.15);
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.benefit-item:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  transform: translateY(-6px);
}
.benefit-item:hover .benefit-glyph { color: var(--green-deep); }
.benefit-glyph {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--lime);
  transition: color 0.3s;
}
.benefit-item p {
  font-size: 15px;
  line-height: 1.5;
  color: inherit;
}

/* ========== 7. ФОРМУЛА ========== */
.formula-section { padding: 120px 0; position: relative; z-index: 2; }
.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.formula-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.formula-card-wide { grid-column: span 3; display: grid; grid-template-columns: 200px 1fr; align-items: center; gap: 40px; }
.formula-card-wide .formula-letter { margin-bottom: 0; }

.formula-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.formula-card:hover .formula-letter { transform: scale(1.1) rotate(-5deg); background: var(--green); color: var(--lime); }
.formula-card:hover .formula-deco { transform: scale(1.5) rotate(90deg); opacity: 0.08; }

.formula-letter {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--lime);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 28px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.formula-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.formula-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.formula-deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.03;
  transition: all 0.6s;
}

/* ========== 8. БЕЗОПАСНОСТЬ ========== */
.safety-section { padding: 120px 0; position: relative; z-index: 2; }
.safety-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.safety-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.safety-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
  min-height: 160px;
}
.safety-card:hover { border-color: var(--green); transform: translateY(-4px); }
.safety-card-accent {
  background: var(--lime);
  border-color: var(--lime);
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  min-height: auto;
}
.safety-icon {
  width: 48px;
  height: 48px;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.safety-card-accent .safety-icon {
  background: var(--green-deep);
  color: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}
.safety-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
}

/* ========== 9. СЦЕНАРИИ ========== */
.scenarios-section {
  padding: 120px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scenario-card {
  padding: 40px 32px;
  background: rgba(250, 247, 240, 0.04);
  border: 1px solid rgba(250, 247, 240, 0.12);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scenario-card:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-6px);
  border-color: var(--lime);
}
.scenario-card:hover .scenario-time { color: var(--green-deep); border-color: var(--green-deep); }
.scenario-card:hover .scenario-icon { background: var(--ink); color: var(--lime); }

.scenario-time {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border: 1px solid rgba(250, 247, 240, 0.3);
  border-radius: 100px;
  margin-bottom: 28px;
  color: var(--lime);
  transition: all 0.3s;
}
.scenario-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(250, 247, 240, 0.1);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
  transition: all 0.3s;
}
.scenario-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: inherit;
  line-height: 1.2;
}

/* ========== 10. КАК ПРИМЕНЯТЬ ========== */
.howto-section { padding: 120px 0; position: relative; z-index: 2; }
.steps {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 32px;
}
.step-num {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-num span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 38px;
  color: var(--green-deep);
  z-index: 2;
}
.step-circle {
  position: absolute;
  inset: 0;
  color: var(--green);
  animation: rotate 20s linear infinite;
}
.step-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.step-content p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}
.step-connector {
  width: 100%;
  height: 20px;
  color: var(--green);
  opacity: 0.5;
}

.howto-note {
  margin-top: 60px;
  padding: 20px 28px;
  background: var(--bg-cream);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-left: 50%;
  transform: translateX(-50%);
}
.howto-note i { color: var(--green); font-size: 16px; }

/* ========== 11. ДОВЕРИЕ ========== */
.trust-section { padding: 80px 0; position: relative; z-index: 2; }
.trust-card {
    background: var(--lime);
    border-radius: 48px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    color: var(--ink);
  }
.trust-bg-text {
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 280px;
  line-height: 0.8;
  color: var(--green-deep);
  opacity: 0.08;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.trust-content { position: relative; z-index: 2; max-width: 900px; }
.trust-content .section-tag { background: rgba(6, 78, 59, 0.1); border-color: rgba(6, 78, 59, 0.3); }
.trust-content .section-title { color: var(--ink); margin-bottom: 48px; }
.trust-content .section-title em { color: var(--ink); }
.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    font-size: 17px;
    backdrop-filter: blur(10px);
    color: var(--ink);
  }
.trust-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-deep);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
.trust-item strong { font-weight: 700; color: var(--ink); }
.trust-visual {
  position: absolute;
  top: 50%;
  right: 72px;
  transform: translateY(-50%);
  width: 360px;
  z-index: 1;
  pointer-events: none;
  animation: trustVisualFloat 7s ease-in-out infinite;
}
.trust-visual__image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(101, 64, 168, 0.22));
}
@keyframes trustVisualFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(calc(-50% - 10px)) translateX(-6px); }
}

/* ========== 12. FAQ ========== */
.faq-section { padding: 120px 0; position: relative; z-index: 2; }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item[open] { border-color: var(--green); box-shadow: var(--shadow-md); }
.faq-item[open] .faq-icon { background: var(--ink); color: var(--lime); transform: rotate(45deg); }
.faq-item summary {
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-cream); }
.faq-q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--ink);
  line-height: 1.3;
}
.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-a {
  padding: 0 32px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 700px;
}

/* ========== 13. ПОКУПКА ========== */
.buy-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ink) 0%, #0F2A23 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border-radius: 48px 48px 0 0;
}
.buy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.buy-card {
  padding: 32px;
  background: rgba(250, 247, 240, 0.04);
  border: 1px solid rgba(250, 247, 240, 0.12);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.buy-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
  background: rgba(212, 255, 77, 0.08);
}
.buy-card:hover .buy-arrow { background: var(--lime); color: var(--ink); transform: rotate(-45deg); }

.buy-mark {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(250, 247, 240, 0.5);
  text-transform: uppercase;
}
.buy-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--lime);
  margin-top: auto;
}
.buy-logo i { font-size: 40px; }
.buy-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--cream);
}
.buy-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lead-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 32px;
}
.lead-form-head { text-align: center; margin-bottom: 32px; }
.lead-form-head h3 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 8px; }
.lead-form-head p { color: var(--ink-soft); }

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.lead-form-grid textarea,
.lead-form-grid input[type="email"] { grid-column: span 2; }
.lead-form-grid input,
.lead-form-grid textarea {
  padding: 18px 22px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
}
.lead-form-grid input:focus,
.lead-form-grid textarea:focus {
  outline: none;
  border-color: var(--green);
}
.lead-form-grid textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.lead-consent input { margin-top: 4px; accent-color: var(--green); }
.lead-consent a { color: var(--green); text-decoration: underline; }

.lead-form .btn { width: 100%; justify-content: center; }

.lead-success {
  display: none;
  margin-top: 20px;
  padding: 18px;
  background: var(--mint);
  color: var(--green-deep);
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
}
.lead-success.active { display: block; }
.lead-success i { margin-right: 8px; }

/* ========== 14. ФИНАЛ ========== */
.final-cta {
  padding: 140px 0;
  position: relative;
  z-index: 2;
  text-align: center;
  overflow: hidden;
}
.final-inner { position: relative; }
.final-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 18vw, 280px);
  color: var(--ink);
  opacity: 0.05;
  pointer-events: none;
  letter-spacing: -0.05em;
  white-space: nowrap;
  z-index: -1;
}
.final-title {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1;
}
.final-title em { font-family: var(--font-display); font-style: italic; font-weight: 300; color: var(--green); }
.final-text {
  font-size: clamp(17px, 1.5vw, 22px);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.5;
}

/* ========== 15. ФУТЕР ========== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.1);
}
.footer-brand .logo { color: var(--cream); margin-bottom: 20px; }
.footer-brand .logo-mark { color: var(--lime); }
.footer-brand p {
  max-width: 300px;
  color: rgba(250, 247, 240, 0.6);
  font-size: 14px;
  line-height: 1.6;
}
.footer-email {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: rgba(250, 247, 240, 0.75);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--lime); }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(250, 247, 240, 0.75);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: rgba(250, 247, 240, 0.5);
}
.footer-legal { max-width: 600px; line-height: 1.5; }

.instruction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.instruction-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.instruction-card h4 {
  margin: 18px 0 10px;
  font-size: 18px;
}
.instruction-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}
.instruction-list {
  margin: 24px 0 32px;
  padding-left: 22px;
}
.instruction-list li {
  margin-bottom: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.instruction-inci p {
  margin: 0;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.7;
}
.instruction-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
}
.doc-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.doc-fact {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
}
.doc-fact span {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(34, 23, 60, 0.78);
}
.doc-fact strong {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
}
.doc-download {
  margin-top: 44px;
  text-align: center;
}
.doc-download .btn,
.doc-download .btn span,
.doc-download .btn i {
  color: #fff;
}
.doc-download p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ========== АНИМАЦИИ ПРИ ПОЯВЛЕНИИ ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { min-height: 500px; }
  .solution-inner, .safety-inner { grid-template-columns: 1fr; gap: 48px; }
  .problem-hero { grid-template-columns: 1fr; gap: 28px; }
  .problem-visual { min-height: 460px; }
  .problem-visual__image { width: 100%; height: 100%; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-card-2, .adv-card-4 { margin-top: 0; }
  .formula-grid { grid-template-columns: repeat(2, 1fr); }
  .formula-card-wide { grid-column: span 2; }
  .special-care-shell { padding: 40px 32px; }
  .special-care-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-visual {
    inset: 0;
    width: 100%;
    height: auto;
  }
  .benefits-visual__image { max-height: calc(100% - 220px); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .scenarios-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .trust-items { grid-template-columns: 1fr; }
  .audience-row { grid-template-columns: 50px 56px 1fr 40px; gap: 16px; padding: 24px 0; }
}

@media (max-width: 768px) {
  body { min-width: 0; }
  .container { padding: 0 20px; }
  .header-inner {
    padding: 10px 16px;
    margin-left: 12px;
    margin-right: 12px;
    gap: 12px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(245, 243, 236, 0.97);
  }
  .main-nav { display: none; }
  .burger { display: flex; }
  .site-header { top: 12px; }
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    transform: none;
    padding: 14px;
    background: rgba(245, 243, 236, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 18px 40px -18px rgba(34, 23, 60, 0.24);
    z-index: 30;
  }
  .main-nav.mobile-open a {
    display: block;
    width: 100%;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(123, 82, 194, 0.12);
    font-size: 16px;
    color: var(--ink);
  }
  .main-nav.mobile-open a:last-child { border-bottom: 0; }
  .main-nav.mobile-open a::after { display: none; }
  .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .btn-header { padding: 10px 16px; font-size: 13px; }
  .noise-layer,
  .floating-orbs,
  .scroll-top-btn,
  .float-badge,
  .visual-halo,
  .visual-halo-2,
  .drop,
  .leaf {
    display: none !important;
  }
  .pulse-dot {
    animation: none;
    box-shadow: none;
  }
  .marquee-track {
    animation: none;
    transform: none;
  }
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero { padding-top: 110px; padding-bottom: 0; }
  .hero-grid { padding: 0 20px; min-height: auto; max-width: 100%; overflow: clip; }
  .hero-left { position: relative; padding-bottom: 235px; }
  .hero-badge {
    max-width: 100%;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .hero-title { max-width: 100%; overflow: clip; }
  .hero-title-main {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.02em;
  }
  .hero-title-sub {
    font-size: 18px;
  }
  .hero-lead,
  .hero-desc {
    max-width: calc(100% - 8px);
    font-size: 16px;
  }
  .hero-accents { gap: 20px; position: relative; z-index: 2; }
  .hero-mobile-visual {
    display: block;
    position: absolute;
    right: -6px;
    bottom: -3px;
    width: 212px;
    height: 404px;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }
  .hero-mobile-visual__image {
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 236px;
    max-width: none;
    height: auto;
    margin: 0;
    filter: drop-shadow(0 18px 30px rgba(101, 64, 168, 0.18));
  }
  .hero-right,
  .hero-visual,
  .visual-bottle,
  .visual-halo,
  .visual-halo-2,
  .float-badge {
    display: none;
  }
  .marquee { margin-top: 0; }
  .marquee {
    transform: none;
    width: 100%;
    overflow: hidden;
  }
  .problem-hero { gap: 20px; margin-bottom: 36px; }
  .problem-visual { display: none; min-height: 0; }
  .problem-visual__image { display: none; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card { padding: 28px 20px; min-height: 220px; }
  .problem-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 22px;
  }
  .problem-card h3 { font-size: 18px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .pregnancy-section { padding-top: 0; }
  .special-care-shell { padding: 28px 20px; border-radius: 28px; }
  .special-care-intro {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .special-care-intro p {
    font-size: 15px;
    line-height: 1.65;
  }
  .special-care-grid { grid-template-columns: 1fr; gap: 14px; }
  .special-care-card {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .special-care-card h3 { font-size: 18px; }
  .special-care-card p { font-size: 14px; }
  .special-care-accent__main {
    padding: 22px 18px;
    border-radius: 24px;
  }
  .special-care-accent__main h3 { font-size: 22px; }
  .special-care-note { font-size: 12px; }
  .pregnancy-grid { grid-template-columns: 1fr; }
  .pregnancy-top {
    min-height: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
  }
  .pregnancy-top .section-head { margin-bottom: 32px; }
  .pregnancy-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    order: -1;
    margin: -10px 0 20px;
    pointer-events: none;
  }
  .pregnancy-visual__image {
    width: min(100%, 280px);
    margin: 0 auto;
  }
  .formula-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .formula-card {
    padding: 20px 14px;
    min-height: 0;
  }
  .formula-card-wide { grid-column: span 2; grid-template-columns: 1fr; gap: 20px; }
  .formula-letter {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    font-size: 34px;
    margin-bottom: 18px;
  }
  .formula-card h3 {
    font-size: 15px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin-bottom: 8px;
  }
  .formula-card p {
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
  .benefits-visual { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .buy-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .safety-right { grid-template-columns: 1fr; }
  .safety-card-accent { grid-column: span 1; flex-direction: column; align-items: flex-start; }

  .audience-row { grid-template-columns: 40px 48px 1fr; gap: 12px; }
  .audience-arrow { display: none; }
  .audience-text { font-size: 18px; }

  .section-title { font-size: 36px; }

  .problem-section, .solution-section, .advantages-section,
  .audience-section, .special-care-section, .benefits-section, .formula-section,
  .safety-section, .scenarios-section, .howto-section,
  .faq-section, .buy-section, .final-cta { padding: 80px 0; }

  .trust-card { padding: 48px 28px; border-radius: 24px; }
  .trust-bg-text { font-size: 140px; }
  .trust-visual { display: none; }

  .lead-form { padding: 28px 20px; border-radius: 24px; }
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-form-grid textarea,
  .lead-form-grid input[type="email"] { grid-column: span 1; }

  .howto-note { margin-left: 0; transform: none; width: 100%; justify-content: center; }

  .benefits-section { margin: 0 12px; }

  .footer-bottom { flex-direction: column; }
}

/* ========== E-E-A-T СТРАНИЦЫ ========== */
.page-hero {
  padding: 160px 0 60px;
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumbs {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.page-hero .breadcrumbs a { color: var(--green); }
.page-hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  margin-bottom: 20px;
  line-height: 1;
}
.page-hero h1 em { color: var(--green); font-style: italic; font-weight: 300; }
.page-hero p.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 760px;
  line-height: 1.55;
}

.page-content {
  padding: 60px 0 120px;
  position: relative;
  z-index: 2;
}
.page-content .content-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.page-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 48px 0 20px;
  font-weight: 600;
}
.page-content h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin: 32px 0 14px;
  font-weight: 600;
}
.page-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.page-content ul, .page-content ol {
  margin: 16px 0 24px 24px;
  color: var(--ink-soft);
}
.page-content li { margin-bottom: 8px; line-height: 1.6; }
.page-content a { color: var(--green); text-decoration: underline; }

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  margin: 24px 0;
}
.info-card.accent { background: var(--lime); border-color: var(--lime); }
.info-card.dark { background: var(--ink); color: var(--cream); border: none; }
.info-card.dark p { color: rgba(250, 247, 240, 0.85); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.contact-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.contact-item .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.contact-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 8px;
}
.contact-item p, .contact-item a { font-size: 15px; margin: 0; color: var(--ink); }
.contact-item a { color: var(--green); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 40px; }
}

/* ========== СТРАНИЦА О КОМПАНИИ ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: all 0.3s;
}
.value-card:hover { border-color: var(--green); transform: translateY(-4px); }
.value-card .vc-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  color: var(--green);
  margin-bottom: 16px;
}
.value-card h4 { font-size: 20px; margin-bottom: 12px; }
.value-card p { font-size: 14px; margin: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.stat-item {
  padding: 32px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(250, 247, 240, 0.7);
  letter-spacing: 0.05em;
}

.estrogial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 40px;
}
.estrogial-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.estrogial-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.estrogial-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(123, 82, 194, 0.12);
  margin-bottom: 18px;
}
.estrogial-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.estrogial-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.estrogial-card h4 {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.3;
}
.estrogial-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .estrogial-grid { grid-template-columns: 1fr; }
}
