/* ═══════════════════════════════════════════════════════
   ПИТАНИЕ КОРМЯЩЕЙ МАМЫ — gvpitanie.ru  |  Final v6 + Header
   Lora + Plus Jakarta Sans · Rose #FF6B8A · Sky #5BA4CF
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --rose:      #B7104C;
  --rose-mid:  #FF8FA3;
  --rose-soft: #FFCDD7;
  --rose-bg:   #FFF5F7;
  --rose-1:    #FFF0F3;
  --rose-2:    #FDDDE4;
  --rose-5:    #FF6B8A;

  --sky:       #5BA4CF;
  --sky-soft:  #C9E3F5;
  --sky-bg:    #F0F7FC;
  --blue:      #005895;
  --blue-1:    #EEF6FC;
  --blue-2:    #D4EAFA;
  --blue-5:    #3A8CC4;

  --mint:      #3CC9A4;
  --mint-soft: #C0F0E4;
  --mint-bg:   #F0FAF7;

  --peach-bg:  #FFF3ED;
  --warm:      #F4EFE8;

  --dark:   #1A2535;
  --mid:    #3D4F66;
  --muted:  #7A8EA8;
  --light:  #F4F7FA;
  --white:  #FFFFFF;
  --border: rgba(26,37,53,.08);

  --sh-sm: 0 2px 8px  rgba(26,37,53,.06);
  --sh-md: 0 8px 28px rgba(26,37,53,.09);
  --sh-lg: 0 20px 60px rgba(26,37,53,.12);

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --ff-head: 'Lora', Georgia, serif;
  --ff-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Высота хедера — удобно переиспользовать */
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   HEADER — патч стилей
═══════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,37,53,.06);
}
.header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ── Логотип ── */
.logo { flex: 0 0 auto; }
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 50px; width: auto; display: block; }

/* ── Правый блок ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Кнопка «Войти» — без фона и рамки ── */
.login-link {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  padding: 6px 7px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  transition: all .2s;
  white-space: nowrap;
  line-height: 1;
}
.login-link:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: #fff;
}
.login-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: block;
}
.login-text { line-height: 1; }

/* ── Кнопка «Меню» — розовая заливка, белые линии ── */
.burger-wrapper { display: flex; align-items: center; }
.burger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--rose-5);
  border: 1.5px solid var(--rose-5);
  cursor: pointer;
  transition: all .2s;
  padding: 0;
  flex-shrink: 0;
}
.burger-btn:hover {
  background: transparent;
  border-color: var(--rose);
}
.burger-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.5px;
  flex-shrink: 0;
}
.burger-lines span {
  display: block;
  border-radius: 2px;
  transition: background .2s;
}
.burger-lines span:nth-child(1),
.burger-lines span:nth-child(3) { width: 18px; height: 2px; }
.burger-lines span:nth-child(2) { width: 12px; height: 2px; }

/* Белые линии по умолчанию, розовые при ховере */
.burger-btn .burger-lines span { background: var(--white); }
.burger-btn:hover .burger-lines span { background: var(--rose); }

/* ═══════════════════════════════════════
   МОБИЛЬНЫЙ DRAWER
═══════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(26,37,53,.14);
}
.mobile-menu.open { transform: translateX(0); }

/* Шапка дровера */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-menu-logo img { height: 50px; width: auto; vertical-align: middle; }
.close-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  font-family: var(--ff-body);
  transition: all .18s;
  padding: 0;
}
.close-btn:hover {
  background: var(--rose-bg);
  border-color: var(--rose-soft);
  color: var(--rose);
}

/* Навигация в дровере */
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--rose-bg);
  color: var(--rose);
}
.mobile-nav a.active { font-weight: 700; }
.mobile-nav a::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-soft);
  flex-shrink: 0;
  transition: background .18s;
}
.mobile-nav a:hover::before,
.mobile-nav a.active::before { background: var(--rose); }

.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 4px;
}

/* ── Блок авторизации внизу дровера ── */
.mobile-auth {
  padding: 12px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  transition: opacity .2s;
  border: none;
}
.mobile-auth-btn:hover { opacity: .88; }
.mobile-auth-btn--rose { background: linear-gradient(135deg, var(--rose-5), var(--rose-mid)); }
.mobile-auth-btn--sky  { background: linear-gradient(135deg, var(--sky), #7BBFDF); }
.mobile-auth-btn svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

/* Оверлей */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,37,53,.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 400;
  display: none;
}

/* ═══════════════════════════════════════
   LAYOUT (основная страница)
═══════════════════════════════════════ */
.page { max-width: 1060px; margin: 0 auto; padding: 20px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #FFF1F4 0%, #FFF8F0 40%, #F0F9FF 100%);
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 420px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,138,.15) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 18%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,164,207,.12) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero-body {
  padding: 52px 44px 48px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-aside {
  position: relative; z-index: 1;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  padding: 32px 20px; gap: 10px; justify-content: center;
}
.hero-stat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-sm); transition: transform .18s;
}
.hero-stat:hover { transform: translateX(3px); }
.hero-stat-icon {
  width: 50px; height: 50px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.hero-stat:nth-child(1) .hero-stat-icon { background: var(--rose-bg); }
.hero-stat:nth-child(2) .hero-stat-icon { background: var(--sky-bg); }
.hero-stat:nth-child(3) .hero-stat-icon { background: var(--mint-bg); }
.hero-stat:nth-child(4) .hero-stat-icon { background: var(--peach-bg); }
.hero-stat-label { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.hero-stat-sub { font-size: 11.5px; color: var(--muted); font-weight: 400; margin-top: 1px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--rose-soft);
  font-size: 11px; font-weight: 700; color: var(--rose);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 20px; box-shadow: var(--sh-sm); width: fit-content;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 54px); font-weight: 500;
  color: var(--dark); line-height: 1.1; margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-lead {
  font-size: 15.5px; color: var(--mid); max-width: 520px;
  line-height: 1.78; margin-bottom: 30px; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── КНОПКИ ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--r-md);
  font-family: var(--ff-body); font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none; transition: all .22s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-5), var(--rose-mid));
  color: var(--white); box-shadow: 0 8px 24px rgba(255,107,138,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,138,.45); }
.btn-secondary {
  background: var(--white); color: var(--dark);
  border: 1.5px solid var(--border); box-shadow: var(--sh-sm);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: var(--sky-soft); }

/* ═══════════════════════════════════════
   SECTION LABEL
═══════════════════════════════════════ */
.section { margin-bottom: 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: #495d76;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--sky)); border-radius: 2px;
}

/* ═══════════════════════════════════════
   CARD
═══════════════════════════════════════ */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh-sm);
}
.card-title {
  font-family: var(--ff-head); font-size: 26px; font-weight: 500;
  color: var(--dark); margin-bottom: 10px; line-height: 1.25;
}
.card-subtitle {
  font-size: 14.5px; color: var(--mid); margin-bottom: 24px;
  line-height: 1.65; font-weight: 300;
}

/* ═══════════════════════════════════════
   INTRO
═══════════════════════════════════════ */
.intro-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  overflow: hidden; display: grid; grid-template-columns: 5px 1fr;
}
.intro-stripe { background: linear-gradient(175deg, var(--rose-soft), var(--sky-soft)); }
.intro-body {
  padding: 32px 36px;
  display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start;
}
.intro-title {
  font-family: var(--ff-head); font-size: 26px; font-weight: 500;
  color: var(--dark); line-height: 1.25;
}
.intro-title em { font-style: italic; color: var(--rose); }
.prose p { font-size: 15px; color: var(--mid); line-height: 1.82; margin-bottom: 14px; font-weight: 300; }
.prose p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════
   ПРИНЦИПЫ
═══════════════════════════════════════ */
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.principle-card {
  border-radius: var(--r-md); padding: 22px;
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.principle-card:nth-child(1) { background: linear-gradient(135deg, var(--rose-bg), #FFF9F0); }
.principle-card:nth-child(2) { background: linear-gradient(135deg, var(--sky-bg), #F5FAFF); }
.principle-card:nth-child(3) { background: linear-gradient(135deg, var(--mint-bg), #F5FFFB); }
.principle-card:nth-child(4) { background: linear-gradient(135deg, var(--peach-bg), #FFF8F0); }
.principle-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.principle-icon {
  width: 46px; height: 46px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px; box-shadow: var(--sh-sm);
}
.principle-title { font-size: 15.5px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.principle-text { font-size: 13.5px; color: var(--mid); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════
   ЭТАПЫ
═══════════════════════════════════════ */
.stages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stage-card {
  border-radius: var(--r-lg); padding: 26px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.stage-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.stage-card:nth-child(1) { background: linear-gradient(155deg, #FFF2F5 0%, #FFF9F0 100%); }
.stage-card:nth-child(2) { background: linear-gradient(155deg, var(--sky-bg) 0%, var(--mint-bg) 100%); }
.stage-card::after {
  content: attr(data-n); position: absolute; bottom: -12px; right: 14px;
  font-family: var(--ff-head); font-size: 100px; font-weight: 600; font-style: italic;
  line-height: 1; color: rgba(26,37,53,.05); pointer-events: none; user-select: none;
}
.stage-num {
  display: inline-flex; align-items: center; padding: 5px 12px;
  border-radius: 999px; font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; width: fit-content;
}
.stage-card:nth-child(1) .stage-num { background: var(--rose-soft); color: var(--rose); }
.stage-card:nth-child(2) .stage-num { background: var(--sky-soft); color: var(--blue); }
.stage-title { font-family: var(--ff-head); font-size: 20px; font-weight: 500; color: var(--dark); line-height: 1.25; }
.stage-text { font-size: 14px; color: var(--mid); line-height: 1.65; flex: 1; font-weight: 300; }
.stage-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--r-sm);
  background: var(--white); border: 1.5px solid var(--border);
  font-size: 13.5px; font-weight: 700; color: var(--dark);
  text-decoration: none; transition: all .2s; width: fit-content;
}
.stage-link::after { content: '→'; }
.stage-card:nth-child(1) .stage-link:hover { border-color: var(--rose-soft); color: var(--rose); transform: translateX(3px); }
.stage-card:nth-child(2) .stage-link:hover { border-color: var(--sky-soft); color: var(--sky); transform: translateX(3px); }

/* ═══════════════════════════════════════
   LINKS
═══════════════════════════════════════ */
.links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lc {
  display: flex; flex-direction: column; text-decoration: none;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border);
  background: var(--white); transition: transform .22s, box-shadow .22s;
}
.lc:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.lc-header { padding: 24px 22px 18px; }
.lc:nth-child(1) .lc-header { background: linear-gradient(135deg, var(--rose-1), var(--rose-2)); }
.lc:nth-child(2) .lc-header { background: linear-gradient(135deg, var(--blue-1), var(--blue-2)); }
.lc:nth-child(3) .lc-header { background: linear-gradient(135deg, var(--warm), #EDE8E0); }
.lc-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  border: 1px solid rgba(26,37,53,.07); box-shadow: var(--sh-sm); margin-bottom: 14px;
}
.lc-title { font-family: var(--ff-head); font-size: 18px; font-weight: 500; color: var(--dark); line-height: 1.2; }
.lc-body { padding: 16px 22px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.lc-text { font-size: 13px; color: var(--mid); line-height: 1.65; font-weight: 300; flex: 1; }
.lc-cta {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px;
  font-weight: 700; padding: 8px 14px; border-radius: 8px; width: fit-content;
  transition: letter-spacing .18s;
}
.lc:nth-child(1) .lc-cta { color: var(--rose); background: var(--rose-1); }
.lc:nth-child(2) .lc-cta { color: var(--blue); background: var(--blue-1); }
.lc:nth-child(3) .lc-cta { color: #4a4540; background: var(--warm); }
.lc:hover .lc-cta { letter-spacing: .02em; }

/* ═══════════════════════════════════════
   ШАГИ — сетка 2×2
═══════════════════════════════════════ */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.step {
  display: flex; flex-direction: column; gap: 12px; padding: 20px;
  border-radius: var(--r-md); background: var(--light);
  border: 1px solid var(--border); transition: all .2s;
}
.step:nth-child(1):hover, .step:nth-child(3):hover { background: var(--rose-bg); border-color: var(--rose-soft); }
.step:nth-child(2):hover, .step:nth-child(4):hover { background: var(--sky-bg); border-color: var(--sky-soft); }
.step-num {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: linear-gradient(135deg, var(--rose-soft), var(--sky-soft));
  border: 1.5px solid var(--border); font-size: 14px; font-weight: 700; color: var(--dark); flex-shrink: 0;
}
.step-text { font-size: 14px; color: var(--mid); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════
   BANNER
═══════════════════════════════════════ */
.banner {
  text-align: center;
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--rose-2) 0%, var(--blue-2) 100%);
  border: 1px solid rgba(255,255,255,.6); box-shadow: var(--sh-md); padding: 48px 52px;
}
.banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.2); pointer-events: none;
}
.banner::after {
  content: ''; position: absolute; bottom: -50px; left: 30%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.15); pointer-events: none;
}
.banner-inner { position: relative; z-index: 1; }
.banner-tag {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 14px;
  border-radius: 999px; background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.8);
  font-size: 10.5px; font-weight: 700; color: var(--rose-5);
  text-transform: uppercase; letter-spacing: .09em; margin-bottom: 18px;
}
.banner h2 {
  font-family: var(--ff-head); font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 500; color: var(--dark); margin-bottom: 14px; line-height: 1.2;
}
.banner h2 em { font-style: italic; color: var(--rose-5); }
.banner p { font-size: 15px; color: var(--mid); line-height: 1.78; max-width: 640px; font-weight: 300; margin: 0 auto; }

/* ═══════════════════════════════════════
   ФАКТОРЫ — сетка 2×2
═══════════════════════════════════════ */
.factors { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.factor {
  display: flex; flex-direction: column; gap: 10px; padding: 20px;
  border-radius: var(--r-md); transition: transform .18s, box-shadow .18s;
}
.factor:nth-child(odd) { background: linear-gradient(135deg, var(--sky-bg), #F5FAFF); border: 1px solid var(--sky-soft); }
.factor:nth-child(even) { background: linear-gradient(135deg, var(--rose-bg), var(--rose-1)); border: 1px solid var(--rose-soft); }
.factor:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.factor-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-soft), var(--sky-soft));
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.factor-dot::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--sky));
}
.factor-text { font-size: 14px; color: var(--mid); line-height: 1.68; font-weight: 300; }

/* ═══════════════════════════════════════
   AUTHOR
═══════════════════════════════════════ */
.author {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm);
  display: grid; grid-template-columns: 280px 1fr;
}
.author-aside {
  background: linear-gradient(175deg, var(--rose-1) 0%, var(--blue-1) 100%);
  padding: 40px 32px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  border-right: 1px solid var(--border); text-align: center;
}
.author-img {
  width: 200px; height: 200px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--white); box-shadow: var(--sh-md);
}
.author-name { font-family: var(--ff-head); font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.3; }
.author-role { font-size: 12px; color: var(--muted); font-weight: 400; line-height: 1.5; }
.author-badge-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; margin-bottom: 20px;
  border-radius: 999px; background: var(--white); border: 1px solid var(--rose-soft);
  font-size: 11px; font-weight: 700; color: var(--rose); text-transform: uppercase;
  letter-spacing: .07em; box-shadow: var(--sh-sm); width: fit-content;
}
.author-main { padding: 36px; display: flex; flex-direction: column; justify-content: space-between; }
.author-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.author-text p { font-size: 14.5px; color: var(--mid); line-height: 1.82; font-weight: 300; margin-bottom: 10px; }
.author-text p:last-child { margin-bottom: 0; }
.author-footer {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end;
}
.author-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  border-radius: var(--r-sm); background: var(--rose-bg); border: 1.5px solid var(--rose-soft);
  font-size: 13.5px; font-weight: 700; color: var(--rose); text-decoration: none; transition: all .2s;
}
.author-link::after { content: '→'; }
.author-link:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover { box-shadow: var(--sh-md); }
.faq-item.open { border-color: var(--rose-soft); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--ff-body); font-size: 15px; font-weight: 700;
  color: var(--dark); gap: 16px; transition: background .15s;
}
.faq-question:hover { background: var(--rose-bg); }
.faq-arrow {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--light); border: 1px solid var(--border);
  color: var(--muted);
  transition: transform .3s, background .2s, color .2s;
  padding: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  background: var(--rose-soft);
  color: var(--rose);
  border-color: var(--rose-soft);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 16px 22px 20px; border-top: 1px solid var(--border);
  font-size: 14.5px; color: var(--mid); line-height: 1.78; font-weight: 300;
}

/* ═══════════════════════════════════════
   STICKY NAV
═══════════════════════════════════════ */
.sticky-nav {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 99; display: flex; gap: 8px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 8px; border-radius: 999px; border: 1px solid var(--border); box-shadow: var(--sh-lg);
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-nav a {
  display: flex; align-items: center; gap: 7px; padding: 10px 22px;
  border-radius: 999px; text-decoration: none; font-size: 13.5px; font-weight: 700; transition: all .2s;
}
.sticky-nav a:first-child {
  background: linear-gradient(135deg, var(--rose-5), var(--rose-mid));
  color: var(--white); box-shadow: 0 6px 18px rgba(255,107,138,.38);
}
.sticky-nav a:first-child:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,107,138,.48); }
.sticky-nav a:last-child { background: var(--sky-bg); border: 1px solid var(--sky-soft); color: var(--blue); }
.sticky-nav a:last-child:hover { background: var(--sky); color: var(--white); border-color: transparent; }

.sticky-nav--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

/* ═══════════════════════════════════════
   АДАПТИВ
═══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Хедер: скрываем десктоп-nav, показываем бургер */
  .header-nav { display: none; }
  .burger-wrapper { display: flex; align-items: center; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-aside { display: none; }
  .links { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .intro-body { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .hero-body { padding: 32px 24px 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .stages-grid, .links, .principles-grid, .factors, .steps { grid-template-columns: 1fr; }
  .card { padding: 22px 18px; }
  .intro-body { padding: 24px; }
  .banner { padding: 32px 26px; }
  .author { grid-template-columns: 1fr; }
  .author-aside { border-right: none; border-bottom: 1px solid var(--border); }
  .author-main { padding: 26px 24px; }
  .author-footer { justify-content: flex-start; }
  .sticky-nav { width: calc(100% - 32px); border-radius: var(--r-lg); }
  .sticky-nav a { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER — gvpitanie.ru
   Тёмный тёплый фон #1C2333, акценты rose + sky
   Прибит к низу через site-wrapper flex
═══════════════════════════════════════════════════════ */

/* ── Sticky footer: обёртка страницы ── */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1;
}

/* ── Базовые переменные футера ── */
.gvf {
  --gvf-bg:      #1C2333;
  --gvf-bg2:     #161D2C;
  --gvf-line:    rgba(255,255,255,.07);
  --gvf-text:    rgba(255,255,255,.55);
  --gvf-text-hi: rgba(255,255,255,.85);
  --gvf-rose:    #FF6B8A;
  --gvf-sky:     #5BA4CF;
  --gvf-inner-w: 1060px;
}

/* ════════════════════════════════════════
   ОБЩИЕ
════════════════════════════════════════ */
.gvf {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--gvf-bg);
  color: var(--gvf-text);
  -webkit-font-smoothing: antialiased;
}
.gvf-inner {
  max-width: var(--gvf-inner-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════════════════════
   ОСНОВНАЯ ЗОНА
════════════════════════════════════════ */
.gvf-main { padding: 52px 0 40px; }
.gvf-inner {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Колонка бренда ── */
.gvf-logo {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  /* Если логотип цветной на тёмном — добавьте filter: brightness(0) invert(1) */
}
.gvf-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gvf-text);
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 260px;
}

/* Контакты */
.gvf-contacts {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.gvf-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--gvf-text-hi);
  text-decoration: none;
  line-height: 1.3;
  transition: color .18s;
}
.gvf-phone:hover { color: var(--gvf-rose); }
.gvf-phone-sub {
  font-size: 11px;
  color: var(--gvf-text);
  margin-bottom: 12px;
  font-weight: 400;
}
.gvf-email {
  font-size: 15px;
  font-weight: 700;
  color: var(--gvf-sky);
  text-decoration: none;
  transition: opacity .18s;
  line-height: 1.3;
}
.gvf-email:hover { opacity: .8; }
.gvf-email-sub {
  font-size: 11px;
  color: var(--gvf-text);
  font-weight: 400;
}

/* Соцсети */
.gvf-socials {
  display: flex;
  gap: 8px;
}
.gvf-social {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--gvf-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gvf-text);
  text-decoration: none;
  transition: all .18s;
}
.gvf-social img { height: 20px; }
.gvf-social:hover { background: var(--gvf-rose); border-color: var(--gvf-rose); color: #fff; }

/* ── Колонки навигации ── */
.gvf-nav-col { display: flex; flex-direction: column; }
.gvf-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky-soft);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gvf-line);
}
.gvf-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gvf-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gvf-text);
  text-decoration: none;
  padding: 6px 0;
  border-radius: 6px;
  transition: color .18s, padding-left .18s;
  line-height: 1.4;
}
.gvf-nav a:hover { color: var(--gvf-text-hi); padding-left: 4px; }

/* Документы — чуть мельче */
.gvf-nav--docs a { font-size: 12.5px; color: var(--gvf-text); font-weight: 400; }
.gvf-nav--docs a:hover { color: var(--gvf-text-hi); }

/* ════════════════════════════════════════
   НИЖНЯЯ ПОЛОСА
════════════════════════════════════════ */
.gvf-bottom {
  background: var(--gvf-bg2);
  border-top: 1px solid var(--gvf-line);
  padding: 16px 0;
}
.gvf-bottom-inner {
  /* Переопределяем grid из .gvf-inner для нижней полосы */
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gvf-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gvf-copy {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.gvf-cookie {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  max-width: 680px;
  line-height: 1.5;
}

/* Кнопка поддержки */
.gvf-support {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--gvf-text-hi);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  flex-shrink: 0;
}
.gvf-support svg { width: 16px; height: 16px; flex-shrink: 0; }
.gvf-support:hover {
  background: var(--gvf-sky);
  border-color: var(--gvf-sky);
  color: #fff;
}

/* ════════════════════════════════════════
   АДАПТИВ футера
════════════════════════════════════════ */
@media (max-width: 860px) {
  .gvf-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .gvf-brand { grid-column: 1 / -1; }
  .gvf-tagline { max-width: 100%; }
}
@media (max-width: 580px) {
  .gvf-main { padding: 36px 0 28px; }
  .gvf-inner { grid-template-columns: 1fr; gap: 28px; }
  .gvf-brand { grid-column: auto; }

  /* Документы — сворачиваем в аккордеон на мобилке */
  .gvf-docs-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
  }
  .gvf-docs-toggle::-webkit-details-marker { display: none; }
  .gvf-docs-toggle::after {
    content: '+';
    font-size: 18px;
    color: rgba(255,255,255,.3);
    line-height: 1;
  }
  details[open] .gvf-docs-toggle::after { content: '−'; }

  .gvf-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .gvf-support { width: 100%; justify-content: center; }
  .gvf-cookie { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   ДОПОЛНИТЕЛЬНЫЕ БЛОКИ — страница /pitanie-posle-rodov/
   Новые блоки: hero-tagline, intro-accent, stages-timeline,
   split-cols, mistakes-list, checklist, nav-grid, cta-banner
═══════════════════════════════════════════════════════ */

/* ─── HERO: строка-тезис под лидом ─── */
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--rose);
  background: var(--rose-bg);
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  margin-bottom: 28px;
  width: fit-content;
}

/* ─── ВВЕДЕНИЕ: акцент-строка ─── */
.intro-accent {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--rose-bg), var(--sky-bg));
  border: 1px solid var(--rose-soft);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.55;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.intro-accent::before {
  content: '💡';
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── ЭТАПЫ: таймлайн ─── */
.stages-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stage-block {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s;
}
.stage-block:hover { box-shadow: var(--sh-md); }

.stage-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
}
.stage-block:nth-child(1) .stage-block-header {
  background: linear-gradient(135deg, #FFF2F5, #FFF9F0);
}
.stage-block:nth-child(2) .stage-block-header {
  background: linear-gradient(135deg, var(--sky-bg), var(--mint-bg));
}

.stage-block-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.stage-block:nth-child(1) .stage-block-num { background: var(--rose-soft); color: var(--rose); }
.stage-block:nth-child(2) .stage-block-num { background: var(--sky-soft); color: var(--blue); }

.stage-block-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.stage-block-title {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
}

.stage-block-body {
  padding: 24px 28px;
  background: var(--white);
}
.stage-block-accent {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 16px;
  margin-bottom: 14px;
  border-radius: var(--r-sm);
}
.stage-block:nth-child(1) .stage-block-accent {
  background: var(--rose-1);
  border-left: 3px solid var(--rose-5);
}
.stage-block:nth-child(2) .stage-block-accent {
  background: var(--blue-1);
  border-left: 3px solid var(--sky);
}

.stage-block-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.stage-tag {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  background: var(--light);
  border: 1px solid var(--border);
}

.stage-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: var(--peach-bg);
  border: 1px solid rgba(255,107,60,.15);
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
}
.stage-note-icon { font-size: 16px; flex-shrink: 0; }

.stage-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-sm);
  background: var(--sky-bg);
  border: 1.5px solid var(--sky-soft);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: all .2s;
}
.stage-cta::after { content: '→'; }
.stage-cta:hover { background: var(--sky); color: var(--white); border-color: transparent; }

/* ─── ДВЕ КОЛОНКИ: можно / нельзя ─── */
.split-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.split-col {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.split-col-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.split-col--yes .split-col-header {
  background: linear-gradient(135deg, var(--mint-bg), #F0FFFB);
  border-bottom: 1px solid var(--mint-soft);
}
.split-col--no .split-col-header {
  background: linear-gradient(135deg, #FFF7F0, #FFF0F0);
  border-bottom: 1px solid var(--rose-soft);
}
.split-col-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  flex-shrink: 0;
}
.split-col-title {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
}
.split-col-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
.split-col-body {
  padding: 20px 22px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.split-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.55;
  font-weight: 400;
  border: 1px solid var(--border);
  background: var(--white);
  transition: background .18s;
}
.split-item:hover { background: var(--light); }
.split-col--yes .split-item-dot { color: var(--mint); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.split-col--no  .split-item-dot { color: var(--rose-5); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.split-col-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}
.split-col--yes .split-col-link { background: var(--mint-bg); color: var(--mint); border: 1px solid var(--mint-soft); }
.split-col--yes .split-col-link:hover { background: var(--mint); color: var(--white); border-color: transparent; }
.split-col--no  .split-col-link { background: var(--rose-bg); color: var(--rose); border: 1px solid var(--rose-soft); }
.split-col--no  .split-col-link:hover { background: var(--rose); color: var(--white); border-color: transparent; }
.split-col-link::after { content: '→'; }

/* ─── ОШИБКИ ─── */
.mistakes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mistake-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .18s, box-shadow .18s;
}
.mistake-item:hover { transform: translateX(4px); box-shadow: var(--sh-sm); }

.mistake-num {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  flex-shrink: 0;
}
.mistake-item:nth-child(1) .mistake-num { background: var(--rose-1); color: var(--rose); }
.mistake-item:nth-child(2) .mistake-num { background: var(--sky-bg); color: var(--blue); }
.mistake-item:nth-child(3) .mistake-num { background: var(--peach-bg); color: #C97A40; }
.mistake-item:nth-child(4) .mistake-num { background: var(--mint-bg); color: var(--mint); }

.mistake-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.mistake-text { font-size: 13.5px; color: var(--mid); line-height: 1.6; font-weight: 300; }
.mistake-arrow {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--light);
  border-radius: 999px;
  padding: 3px 10px;
  width: fit-content;
  margin-top: 6px;
}

.mistakes-conclusion {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--rose-2), var(--blue-2));
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--sh-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.65;
  display: flex;
  gap: 12px;
  align-items: center;
}
.mistakes-conclusion::before { content: '💬'; font-size: 20px; flex-shrink: 0; }

/* ─── ЧЕКЛИСТ ─── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all .18s;
}
.check-item:hover { background: var(--mint-bg); border-color: var(--mint-soft); transform: translateX(4px); }

.check-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--mint-soft), #A8F0DC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.check-text { font-size: 14.5px; font-weight: 500; color: var(--dark); line-height: 1.4; }

.checklist-note {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: var(--sky-bg);
  border: 1px solid var(--sky-soft);
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.checklist-note::before { content: '🧘'; font-size: 18px; flex-shrink: 0; }

/* ─── НАВИГАЦИОННАЯ СЕТКА (5 карточек) ─── */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.nav-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 12px;
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .22s, box-shadow .22s;
}
.nav-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.nav-card-icon { font-size: 26px; }
.nav-card-title { font-family: var(--ff-head); font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.3; }
.nav-card-cta { font-size: 12.5px; font-weight: 700; margin-top: auto; }

.nav-card:nth-child(1) { background: linear-gradient(135deg, var(--peach-bg), #FFF0E8); }
.nav-card:nth-child(2) { background: linear-gradient(135deg, var(--sky-bg), var(--blue-1)); }
.nav-card:nth-child(3) { background: linear-gradient(135deg, var(--mint-bg), #E8F9F4); }
.nav-card:nth-child(4) { background: linear-gradient(135deg, var(--rose-1), var(--rose-2)); }
.nav-card:nth-child(5) { background: linear-gradient(135deg, var(--warm), #EDE8E0); }

.nav-card:nth-child(1) .nav-card-cta { color: #C97A40; }
.nav-card:nth-child(2) .nav-card-cta { color: var(--blue); }
.nav-card:nth-child(3) .nav-card-cta { color: var(--mint); }
.nav-card:nth-child(4) .nav-card-cta { color: var(--rose); }
.nav-card:nth-child(5) .nav-card-cta { color: #5C5047; }

/* ─── ФИНАЛЬНЫЙ CTA-БАННЕР ─── */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 52px 56px;
  background: linear-gradient(135deg, var(--rose-2) 0%, var(--blue-2) 100%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--sh-md);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 30%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.8);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rose-5);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 18px;
}
.cta-banner h2 {
  font-family: var(--ff-head);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-banner h2 em { font-style: italic; color: var(--rose-5); }
.cta-banner p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.78;
  max-width: 560px;
  margin: 0 auto 28px;
  font-weight: 300;
}
.cta-banner .btn { margin: 0 auto; }

/* ════════════════════════════════════════
   АДАПТИВ для новых блоков
════════════════════════════════════════ */
@media (max-width: 900px) {
  .split-cols { grid-template-columns: 1fr; }
  .nav-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .stage-block-header { padding: 18px 20px; }
  .stage-block-body { padding: 0 20px 20px; }
  .stage-block-title { font-size: 17px; }
  .mistakes-list .mistake-item { grid-template-columns: 42px 1fr; gap: 12px; }
  .mistake-num { width: 42px; height: 42px; font-size: 18px; }
  .nav-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 28px; }
  .hero-tagline { font-size: 13px; }
}