/* ══════════════════════════════════════════
   КЛЮЧОВІ ПАРАМЕТРИ — змінювати тут
══════════════════════════════════════════ */
:root {
  /* Кольори */
  --bg:          #FAF8F4;   /* фон сторінки */
  --bg-sand:     #EDE6D8;   /* пісочний фон (not-ideal, bubbles) */
  --teal:        #1A4D45;   /* основний зелений */
  --teal-dark:   #1E5F4F;   /* темніший зелений (stepper, border) */
  --teal-soft:   #E3EDEA;   /* світлий зелений (фон чекбоксів) */
  --orange:      #E55934;   /* акцентний помаранчевий */
  --ink:         #1F2A28;   /* основний текст */
  --ink-light:   #363F4D;   /* вторинний текст */
  --muted:       #6B7370;   /* приглушений текст */
  --sand-text:   #A89880;   /* subtitle, meta */
  --line:        #E0DAC9;   /* лінії, бордери */

  /* Типографіка */
  --font-display: 'Unbounded', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Розміри заголовків (desktop) */
  --h1-size:     52px;
  --h2-size:     34px;
  --h2-hero:     36px;

  /* Відступи секцій */
  --section-px:  80px;
  --section-py:  80px;
  --max-w:       1440px;

  /* Радіуси */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  20px;

  /* Тіні */
  --shadow:    0 16px 48px rgba(26,77,69,.12);
  --shadow-sm: 0 8px 24px rgba(26,77,69,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); }
section[id], #author, #pricing, #program, #about { scroll-margin-top: 80px; }

/* ── LAYOUT ── */
.section { width: 100%; }
.inner   { max-width: 1440px; margin: 0 auto; }

/* ── NAV ── */
.nav {
  background: #FAF8F4;
  height: 72px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid #E0DAC9;
}
body { padding-top: 72px; }
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 9999px;
  background: #1A4D45;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 500; color: #FAF8F4;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 500; color: #1F2A28; letter-spacing: -0.3px; }
.logo-sub  { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 400; color: #6B7370; letter-spacing: 0.5px; }
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-link  { font-size: 14px; color: #1F2A28; text-decoration: none; }
.nav-link:hover { color: #1A4D45; }
.btn-nav {
  background: #1A4D45; color: #FAF8F4;
  font-size: 13px; font-weight: 600;
  padding: 11px 22px; border-radius: 9999px;
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-nav:hover { opacity: .85; }

/* ── HERO ── */
.hero {
  background: #FAF8F4;
  padding: 48px 80px 24px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
}
.hero-left { flex: 1; display: flex; flex-direction: column; gap: 32px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 9999px; background: #E55934; flex-shrink: 0; }
.eyebrow-text { font-size: 11px; font-weight: 600; color: #1A4D45; letter-spacing: 2.5px; text-transform: uppercase; }
.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  background: #FFF3EE;
  border: 1px solid rgba(229,89,52,.25);
  color: #E55934;
  font-size: 15px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 52px; font-weight: 500;
  color: #1F2A28; letter-spacing: -1.5px; line-height: 1.1;
}
.hero-subtitle {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px; font-weight: 400;
  color: #A89880;
  letter-spacing: 0.2px;
  margin-top: -16px;
}
.hero-desc {
  font-size: 17px; font-weight: 400; color: #363F4D; line-height: 1.65;
}
.hero-ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero-meta {
  display: flex; gap: 20px; align-items: center;
}
.hero-meta-item {
  font-size: 12px; font-weight: 500; color: #6B7370;
  display: flex; align-items: center; gap: 6px;
}
.hero-meta-item::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: #A89880; flex-shrink: 0;
}
.btn-primary {
  background: #1A4D45; color: #FAF8F4;
  font-size: 15px; font-weight: 600;
  padding: 18px 32px; border-radius: 8px;
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity .2s; white-space: nowrap;
}
.btn-primary:hover { opacity: .85; }

.hero-right { width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 18px; align-items: center; margin-right: 20px; margin-top: 20px; }
.hero-video-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(26,77,69,.15);
  border-radius: 100px;
  padding: 6px 18px 6px 6px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(26,77,69,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hero-video-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(26,77,69,.14);
  border-color: rgba(229,89,52,.4);
}
.hero-video-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: #E55934; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease;
}
.hero-video-btn:hover .hero-video-icon { background: #D14A28; }
.hero-video-icon svg { width: 18px; height: 18px; margin-left: 0; }
.hero-video-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px; font-weight: 500;
  color: #1F2A28;
  text-align: left;
  line-height: 1.25;
  letter-spacing: -0.2px;
  white-space: nowrap;
}
.hero-portrait {
  width: 320px; height: 320px; border-radius: 50%;
  background: #1A4D45 url('/img/landing/pidlitok-instrukciya-dlya-batkiv/komarovskyi-hero.jpg') center/cover no-repeat;
}
.portrait-tag {
  display: flex; align-items: center; justify-content: space-between; padding: 4px 0;
}
.portrait-info { display: flex; flex-direction: column; gap: 2px; }
.portrait-name { font-size: 13px; font-weight: 600; color: #1F2A28; }
.portrait-role { font-size: 12px; font-weight: 400; color: #6B7370; }
.portrait-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.portrait-stat-num { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 500; color: #1A4D45; }
.portrait-stat-label { font-size: 11px; color: #6B7370; letter-spacing: 0.3px; }

/* ── TRUST ── */
.trust {
  background: transparent;
  padding: 28px 80px;
  max-width: 1440px; margin: 0 auto;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.trust-item::before {
  content: '✓';
  color: #E55934;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.trust-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px; font-weight: 600; color: #1F2A28; letter-spacing: -0.5px; line-height: 1;
}
.trust-num.accent { color: #E55934; }
.trust-label { font-size: 20px; color: #6B7370; font-family: 'Inter', sans-serif; }
.label-tag { font-size: 11px; font-weight: 600; color: #6B7370; letter-spacing: 2.5px; text-transform: uppercase; }
.label-note { font-size: 13px; color: #6B7370; }

/* ── PAIN BLOCK ── */
.pain {
  background: #FAF8F4;
  padding: 80px 16px;
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 56px;
}
.pain-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 500;
  color: #1F2A28; letter-spacing: -0.8px; line-height: 1.15; white-space: nowrap; align-self: center; margin-right: 160px;
  max-width: 780px;
  text-align: center;
  align-self: center;
}
.pain-lead {
  font-family: 'Inter', sans-serif;
  font-size: 19px; font-weight: 400;
  color: #6B7370; line-height: 1.7;
  max-width: 700px;
  margin-top: -16px;
  text-align: center;
  align-self: center;
}

/* ── BUBBLE SCENE — 3+3 COLUMNS ── */
.pain-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 72px;
  max-width: 940px;
  margin: 0 auto;
  align-items: start;
}
.pain-col { display: flex; flex-direction: column; gap: 20px; }
.pain-col.left  { align-items: flex-end; }
.pain-col.right { align-items: flex-start; }
.bubble-wrap { position: relative; cursor: pointer; display: inline-block; }

.bubble {
  position: relative;
  background: #EDE6D8;
  border: 2px solid #1A4D45;
  border-radius: 24px;
  padding: 22px 30px;
  max-width: 360px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  filter: drop-shadow(2px 4px 0px rgba(0,0,0,0.08));
}
.bubble:hover {
  background: #E4DCC8;
  border-color: #E55934;
  transform: translateY(-2px);
  filter: drop-shadow(2px 6px 0px rgba(229,89,52,0.15));
}

.bubble::before {
  content: ''; position: absolute;
  bottom: -15px; left: 14px;
  width: 0; height: 0;
  border-top: 15px solid #1A4D45;
  border-right: 13px solid transparent;
}
.bubble::after {
  content: ''; position: absolute;
  bottom: -11px; left: 16px;
  width: 0; height: 0;
  border-top: 12px solid #EDE6D8;
  border-right: 10px solid transparent;
}
.bubble:hover::before { border-top-color: #E55934; }
.bubble:hover::after  { border-top-color: #E4DCC8; }

.bubble-q {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px; font-weight: 300;
  color: #1F2A28; line-height: 1.4; letter-spacing: -0.3px;
}

.bubble-popup {
  position: absolute;
  width: 240px;
  background: #FFFFFF;
  border: 1.5px solid #1A4D45;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,77,69,.18);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 20;
}
.pain-col.left  .bubble-popup { top: 50%; right: calc(100% + 14px); transform: translateY(-50%) translateX(8px); }
.pain-col.left  .bubble-wrap:hover .bubble-popup { opacity: 1; pointer-events: auto; transform: translateY(-50%) translateX(0); }
.pain-col.right .bubble-popup { top: 50%; left: calc(100% + 14px); transform: translateY(-50%) translateX(-8px); }
.pain-col.right .bubble-wrap:hover .bubble-popup { opacity: 1; pointer-events: auto; transform: translateY(-50%) translateX(0); }

.bubble-popup-img { width: 100%; height: 150px; background: #E0DAC9 center/cover no-repeat; }
.bubble-popup-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.bubble-popup-title { display: none; }
.bubble-popup-text { font-size: 12px; color: #6B7370; line-height: 1.5; }

/* ── NOT ABOUT IDEAL ── */
.not-ideal {
  background: #EDE6D8;
  padding: 80px 48px;
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; text-align: center;
}
.section-label { font-size: 11px; font-weight: 600; color: #1A4D45; letter-spacing: 2.5px; text-transform: uppercase; }
.section-label.gray { color: #6B7370; }
.section-title-lg {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 500;
  color: #1F2A28; letter-spacing: -0.7px; line-height: 1.2;
}
.section-desc {
  font-size: 17px; color: #363F4D; line-height: 1.65; max-width: 740px;
  padding-bottom: 18px;
}

/* ── FORMAT ── */
.format {
  background: #FAF8F4;
  padding: 80px 80px;
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 56px;
  align-items: center;
}
.sh-format {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 500;
  color: #1F2A28; letter-spacing: -0.8px; line-height: 1.15;
  text-align: center;
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  width: 100%;
  max-width: 1100px;
}
.format-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 12px;
}
.format-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #E3EDEA;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.format-icon svg {
  width: 32px; height: 32px;
  color: #1A4D45;
}
.format-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px; font-weight: 600;
  color: #1F2A28; letter-spacing: -0.3px; line-height: 1.2;
  margin: 4px 0 0;
}
.format-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 400;
  color: #6B7370; line-height: 1.5;
  margin: 0;
}
.format-title sup {
  color: #E55934;
  font-size: 0.65em;
  font-weight: 700;
  margin-left: 2px;
  top: -0.6em;
}
.format-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6B7370;
  margin: 0;
  text-align: center;
  font-style: italic;
}
.format-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A4D45;
  text-decoration: none;
  margin-top: -32px;
  transition: gap .2s, color .2s;
}
.format-link:hover {
  color: #E55934;
  gap: 10px;
}
.format-arrow {
  display: inline-block;
  transition: transform .2s;
}
.format-link:hover .format-arrow {
  transform: translateX(2px);
}

/* ── FEATURES ── */
.features {
  background: #FAF8F4;
  padding: 80px 16px;
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px;
}
.features-top { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin: 0 auto; text-align: center; align-items: center; }
.features-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 400;
  color: #6B7370; line-height: 1.5;
  margin: 0;
}
.features-grid { display: flex; gap: 24px; }
.feat-card {
  flex: 1;
  background: transparent;
  display: flex; flex-direction: column;
  gap: 18px;
}
.feat-media {
  position: relative;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #1A4D45;
  box-shadow: 0 14px 36px rgba(26,77,69,.12);
}
.feat-media.bot, .feat-media.video {
  padding: 20px 18px;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 6px;
}
.feat-media.bot {
  background: #F3E9D5;
  border: 2px solid #1A4D45;
  padding-top: 72px;
}
.feat-media.video { background: #8FBA85; }

.tg-typing {
  background: #FFFFFF;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tg-typing-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1A4D45;
  opacity: .35;
  animation: typing 1.2s infinite ease-in-out;
}
.tg-typing-dot:nth-child(2) { animation-delay: .2s; }
.tg-typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.feat-media.bot .tg-msg,
.feat-media.bot .tg-typing { display: none; }
.feat-media.bot .tg-msg.show,
.feat-media.bot .tg-typing.show {
  display: flex;
  animation: msg-in .4s ease-out;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.tg-msg {
  position: relative;
  border-radius: 14px;
  padding: 8px 12px 6px;
  max-width: 78%;
  font-family: -apple-system, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 13px; line-height: 1.35;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.tg-msg-text { color: inherit; }
.tg-msg-meta {
  display: inline-flex; align-items: center; gap: 3px;
  float: right;
  margin: 2px 0 0 8px;
  font-size: 10px;
  color: rgba(0,0,0,.4);
}
.tg-msg.out {
  background: #EFFDDE;
  color: #1F2A28;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.tg-msg.out .tg-msg-meta { color: #4FAE4E; }
.tg-msg.out .tg-msg-meta svg { width: 14px; height: 14px; }
.tg-msg.in {
  background: #FFFFFF;
  color: #1F2A28;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.tg-link {
  color: #2EA6E9;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer;
}
.tg-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 77, 69, .08);
  font-family: -apple-system, 'Segoe UI', 'Roboto', sans-serif;
}
.tg-header-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #1A4D45; color: #E3EDEA;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tg-header-avatar svg { width: 20px; height: 20px; }
.tg-header-info { display: flex; flex-direction: column; line-height: 1.2; }
.tg-header-name {
  font-size: 14px; font-weight: 600; color: #1F2A28;
}
.tg-header-status {
  font-size: 11px; color: #4CAF50; font-weight: 500;
}
.feat-media.video { gap: 8px; }
.tg-video-msg {
  background: #FFFFFF;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 6px;
  width: 78%;
  max-width: 320px;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  font-family: -apple-system, 'Segoe UI', 'Roboto', sans-serif;
}
.tg-video-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #2A3A38 0%, #1F2A28 100%);
  display: flex; align-items: center; justify-content: center;
}
.tg-video-thumb::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(229,89,52,.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(26,77,69,.3), transparent 50%);
}
.tg-video-play {
  position: relative; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
}
.tg-video-play svg { width: 18px; height: 18px; margin-left: 3px; }
.tg-video-duration {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 1;
  background: rgba(0,0,0,.55);
  color: #FFFFFF;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 500;
}
.tg-video-caption {
  padding: 6px 8px 4px;
  font-size: 12px;
  color: #1F2A28;
  line-height: 1.35;
}
.tg-video-caption b {
  display: block;
  color: #2EA6E9;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 2px;
}
.tg-video-meta {
  display: flex;
  justify-content: flex-end;
  font-size: 10px;
  color: rgba(0,0,0,.4);
  padding: 0 6px 2px;
}
.tg-form-link {
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border-radius: 14px;
  border-bottom-right-radius: 4px;
  padding: 10px 12px;
  max-width: 78%;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  font-family: -apple-system, 'Segoe UI', 'Roboto', sans-serif;
  pointer-events: none;
  cursor: default;
}
.tg-form-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: #E55934; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tg-form-icon svg { width: 18px; height: 18px; }
.tg-form-text {
  display: flex; flex-direction: column; gap: 1px;
}
.tg-form-title {
  font-size: 12px; font-weight: 600;
  color: #1F2A28;
  line-height: 1.2;
}
.tg-form-sub {
  font-size: 10px;
  color: #6B7370;
}
.tg-form-arrow {
  color: #2EA6E9;
  font-size: 14px;
  margin-left: 2px;
}
.feat-tags {
  display: flex; gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.feat-pill {
  display: inline-flex; align-items: center;
  background: #EDE6D8;
  border: none;
  border-radius: 100px; padding: 7px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600; color: #1F2A28;
  letter-spacing: 0;
  text-transform: none;
}
.feat-pill.accent {
  background: #FFE5DC;
  color: #E55934;
}
.feat-pill.dark-pill {
  background: #1A4D45;
  color: #E3EDEA;
}
.feat-pill.light-pill {
  background: #FFE5DC; color: #E55934;
}
.feat-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px; font-weight: 600; line-height: 1.25; letter-spacing: -0.5px;
  color: #1F2A28;
  margin: 0;
}
.feat-title.white { color: #1F2A28; }
.feat-title.dark  { color: #1F2A28; }
.feat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: #6B7370; line-height: 1.6;
  margin: 0;
}
.feat-demo {
  background: #143C36; border-radius: 8px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.feat-demo-label { font-size: 11px; font-weight: 600; color: #6B9A8F; letter-spacing: 1.5px; text-transform: uppercase; }
.feat-demo-q { font-size: 14px; color: #EDE6D8; line-height: 1.6; }
.feat-demo-ans {
  background: #1A4D45; border-radius: 6px; padding: 12px 16px;
  font-size: 13px; color: #A6BFB9; line-height: 1.6;
}
.feat-meet-item { display: flex; flex-direction: column; gap: 4px; padding: 16px; background: #FAF8F4; border-radius: 8px; }
.feat-meet-name { font-size: 13px; font-weight: 600; color: #1F2A28; }
.feat-meet-role { font-size: 12px; color: #6B7370; }

/* ── PROGRAM ── */
.program {
  background: #FAF8F4;
  padding: 80px 16px;
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.program-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 500;
  color: #1F2A28; letter-spacing: -0.8px; line-height: 1.15;
}
.stepper-wrap {
  position: relative;
  max-height: 520px;
  overflow: hidden;
  transition: max-height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.stepper-wrap.expanded { max-height: 9999px; }
.stepper-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #FAF8F4 88%);
  pointer-events: none;
  transition: opacity 0.5s;
}
.stepper-wrap.expanded .stepper-fade { opacity: 0; }
.btn-expand-program {
  align-self: center;
  border: 1.5px solid #1E5F4F; border-radius: 8px;
  padding: 14px 36px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px; font-weight: 500;
  color: #1E5F4F; background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-expand-program:hover { background: #1E5F4F; color: #FAF8F4; }

.stepper { display: flex; flex-direction: column; }
.step { display: flex; gap: 20px; }
.step-left {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 48px;
}
.step-dot {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid #1E5F4F;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 600; color: #1E5F4F;
  background: #FAF8F4; flex-shrink: 0; z-index: 1;
}
.step-line {
  width: 1px; flex: 1; background: #D8D0C4;
  min-height: 16px; margin: 6px 0;
}
.step:last-child .step-line { display: none; }
.step-right { padding: 10px 0 36px; flex: 1; }
.step-header {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 16px; margin-bottom: 8px;
}
.step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px; font-weight: 500;
  color: #1F2A28; letter-spacing: -0.3px; line-height: 1.3;
}
.step-count {
  font-size: 12px; color: #A89880;
  white-space: nowrap; flex-shrink: 0;
}
.step-desc {
  font-size: 13.5px; color: #6B7370; line-height: 1.65;
}

/* ── RESULTS ── */
.results {
  background: #EDE6D8;
  padding: 80px 80px;
  max-width: 1440px; margin: 0 auto;
}
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.results-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.results-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(26,77,69,.28);
  pointer-events: none;
  transform: translate(14px, -14px);
  z-index: 0;
}
.results-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(229,89,52,.35);
  pointer-events: none;
  transform: translate(-10px, 10px);
  z-index: 0;
}
.results-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #C9D8D1 url('/img/landing/pidlitok-instrukciya-dlya-batkiv/family-teen.jpg') center 15% / cover no-repeat;
  box-shadow: 0 28px 64px rgba(26,77,69,.18);
  border: 6px solid #EDE6D8;
  position: relative;
  z-index: 1;
}
.results-float {
  position: absolute;
  bottom: 12px;
  left: -8px;
  z-index: 2;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 36px rgba(26,77,69,.15);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(26,77,69,.08);
  white-space: nowrap;
}
.results-float-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #E3EDEA; color: #1A4D45;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.results-float-text b {
  display: block; font-size: 14px; font-weight: 700; color: #1F2A28; line-height: 1.2;
}
.results-float-text span {
  font-size: 11px; color: #6B7370;
}
.results-content {
  display: flex; flex-direction: column; gap: 28px;
}
.results-eyebrow {
  font-size: 11px; font-weight: 600; color: #1A4D45;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.results-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.results-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: #1F2A28; line-height: 1.5;
  padding: 14px 16px;
  background: rgba(255,255,255,.55);
  border-radius: 10px;
  border: 1px solid rgba(26,77,69,.08);
  transition: background .2s;
}
.results-list li:hover { background: rgba(255,255,255,.85); }
.result-check {
  width: 38px; height: 38px; border-radius: 50%;
  background: #E3EDEA;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0;
}
.result-check svg {
  width: 18px; height: 18px;
  color: #1A4D45;
}

/* ── ABOUT AUTHOR ── */
.author {
  background: #FAF8F4;
  padding: 80px 80px;
  max-width: 1440px; margin: 0 auto;
}
.author-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.author-photo-col {
  position: relative;
}
.author-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: #1A4D45 url('/img/landing/pidlitok-instrukciya-dlya-batkiv/komarovsky.png') center top / cover no-repeat;
  border-radius: 24px;
  box-shadow: 0 28px 64px rgba(26,77,69,.18);
}
.author-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.author-eyebrow {
  font-size: 11px; font-weight: 600;
  color: #1A4D45; letter-spacing: 2.5px;
  text-transform: uppercase;
}
.author-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 500;
  color: #1F2A28; letter-spacing: -0.8px; line-height: 1.15;
  margin: 0;
}
.author-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 500;
  color: #E55934;
  margin: -8px 0 8px;
}
.author-bio {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 400;
  color: #363F4D; line-height: 1.65;
  margin: 0 0 8px;
}
.author-link {
  color: #1A4D45;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(26,77,69,.4);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.author-link:hover {
  color: #E55934;
  border-bottom-color: rgba(229,89,52,.5);
}
.author-stats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0; padding: 0;
}
.author-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 3px solid #E55934;
}
.author-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px; font-weight: 600;
  color: #1F2A28; letter-spacing: -0.5px; line-height: 1;
}
.author-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6B7370; line-height: 1.4;
}

/* ── PRICING ── */
.pricing {
  background: #FAF8F4;
  padding: 80px 16px;
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px;
}
.pricing-top {
  display: flex; justify-content: center; align-items: flex-end;
}
.pricing-top-left { display: flex; flex-direction: column; gap: 12px; }
.guar-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid #1A4D45; border-radius: 9999px; padding: 9px 16px;
  font-size: 13px; font-weight: 500; color: #1A4D45;
}
.guar-check { font-weight: 600; }
.pricing-cards { display: flex; gap: 20px; }
.price-card {
  flex: 1; border-radius: 12px; padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.price-card.white  {
  background: #FFFFFF; border: 1px solid #E0DAC9;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.price-card.white:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(26,77,69,.14);
  border-color: #1A4D45;
}
.price-card.green  {
  background: #1A4D45;
  box-shadow: 0 16px 48px rgba(31,42,40,.125);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card.green:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(31,42,40,.22);
}
.price-badge {
  align-self: flex-start;
  background: #E55934; color: #FAF8F4;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: 9999px;
}
.price-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px; font-weight: 500; letter-spacing: -0.5px;
  color: #1F2A28;
}
.price-card.green .price-name { color: #FAF8F4; }
.price-sub  { font-size: 13px; color: #6B7370; }
.price-amount {
  display: flex; align-items: flex-end; gap: 8px;
}
.price-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px; font-weight: 500; letter-spacing: -1px;
  color: #1F2A28;
}
.price-card.green .price-num { color: #FAF8F4; }
.price-per { font-size: 13px; color: #6B7370; }
.price-card.green .price-per { color: #A6BFB9; }
.price-features {
  font-size: 13px; color: #363F4D; line-height: 1.8;
  white-space: pre-line;
}
.price-card.green .price-features { color: #EDE6D8; }
.btn-outline {
  display: flex; justify-content: center;
  border: 1px solid #1A4D45; border-radius: 8px;
  padding: 13px 20px; font-size: 14px; font-weight: 600;
  color: #1A4D45; text-decoration: none; cursor: pointer;
  background: transparent; transition: background .2s, color .2s;
}
.btn-outline:hover { background: #1A4D45; color: #FAF8F4; }
.btn-cta-orange {
  display: flex; justify-content: center;
  background: #E55934; border-radius: 8px;
  padding: 13px 20px; font-size: 14px; font-weight: 600;
  color: #FAF8F4; text-decoration: none; cursor: pointer;
  border: none; transition: opacity .2s;
}
.btn-cta-orange:hover { opacity: .85; }

/* ── PRICING — feature list ── */
.pf-list { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pf-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.4; }
.pf-item.on  { color: #1F2A28; font-weight: 500; }
.pf-item.off { color: #B0ADA8; text-decoration: line-through; }
.price-card.green .pf-item.on  { color: #EDE6D8; font-weight: 500; }
.price-card.green .pf-item.off { color: #4A7A72; text-decoration: line-through; }
.pf-check { width: 20px; height: 20px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 700; margin-top: 1px; }
.pf-item.on  .pf-check { background: #E8F0EE; color: #1A4D45; }
.pf-item.off .pf-check { background: #F0EEEB; color: #B0ADA8; }
.price-card.green .pf-item.on  .pf-check { background: #2A6A60; color: #A6BFB9; }
.price-card.green .pf-item.off .pf-check { background: #1F5C52; color: #4A7A72; }
.price-divider { border: none; border-top: 1px dashed #E0DAC9; margin: 8px 0; }
.price-card.green .price-divider { border-color: #2A6A60; }
.price-access { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #1F2A28; }
.price-card.green .price-access { color: #EDE6D8; }
.price-access-icon { font-size: 16px; }
.price-card { display: flex; flex-direction: column; gap: 20px; }

/* ── FAQ ── */
.faq {
  background: #FAF8F4;
  padding: 80px 16px;
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.faq-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 500;
  color: #1F2A28; letter-spacing: -0.8px; line-height: 1.15;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #FFFFFF; border: 1px solid #E0DAC9;
  border-radius: 8px; padding: 28px 22px; cursor: pointer;
}
.faq-header {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq-q {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px; font-weight: 500; letter-spacing: -0.3px;
  color: #1F2A28;
}
.faq-toggle { font-size: 20px; font-weight: 500; flex-shrink: 0; }
.faq-toggle.open { color: #1A4D45; }
.faq-toggle.closed { color: #6B7370; }
.faq-answer {
  font-size: 14px; color: #6B7370; line-height: 1.65;
  margin-top: 14px; display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { content: "−"; }

/* ── LANDSCAPE DIVIDER ── */
.landscape {
  width: 100%; height: 380px;
  max-width: 1440px; margin: 0 auto;
  background: #1A4D45 url('/img/landing/pidlitok-instrukciya-dlya-batkiv/generated-1778829614560.png') center/cover no-repeat;
}

/* ── FINAL CTA ── */
.final-cta {
  background: #1A4D45;
  padding: 100px 48px;
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; text-align: center;
}
.final-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}
.final-eyebrow-text { font-size: 11px; font-weight: 600; color: #A6BFB9; letter-spacing: 2.5px; text-transform: uppercase; }
.final-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px; font-weight: 500;
  color: #FAF8F4; letter-spacing: -0.8px; line-height: 1.2;
  max-width: 1100px;
}
.final-line { display: inline-block; white-space: nowrap; }
.final-sub {
  font-size: 15px; color: #A6BFB9; line-height: 1.6;
  max-width: 560px;
}
.btn-cta-final { font-size: 16px; padding: 15px 32px; }

/* ── SECTION-HEADING CLASSES ── */
.sh-features  { font-family: 'Unbounded', sans-serif; font-size: 36px; font-weight: 500; color: #1F2A28; letter-spacing: -0.8px; line-height: 1.2; max-width: 880px; }
.sh-results   { font-family: 'Unbounded', sans-serif; font-size: 36px; font-weight: 500; color: #1F2A28; letter-spacing: -0.8px; line-height: 1.15; text-align: center; align-self: center; }
.sh-pricing   { font-family: 'Unbounded', sans-serif; font-size: 36px; font-weight: 500; color: #1F2A28; letter-spacing: -0.8px; text-align: center; width: 100%; }

/* ── FOOTER ── */
.footer {
  background: transparent;
  padding: 56px 80px 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px; font-weight: 600;
  color: #1F2A28;
  margin: 0 0 18px;
  letter-spacing: -0.2px;
}
.footer-brand img { display: block; height: 44px; margin-bottom: 16px; }
.footer-brand h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 17px; font-weight: 600;
  color: #1F2A28;
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}
.footer-desc {
  font-size: 14px;
  color: #6B7370;
  line-height: 1.55;
  max-width: 320px;
}
.footer-email {
  display: inline-block;
  font-size: 15px;
  color: #E55934;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 18px;
  transition: opacity .2s;
}
.footer-email:hover { opacity: .75; }
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #1A4D45;
  color: #FAF8F4;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.footer-social:hover { background: #E55934; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-links {
  display: flex; flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0; padding: 0;
}
.footer-links a {
  font-size: 14px;
  color: #363F4D;
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: #E55934; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: #6B7370;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-pay {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-pay-card {
  background: #FFFFFF;
  border: 1px solid rgba(26,77,69,.12);
  border-radius: 8px;
  padding: 6px 10px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-pay-card svg { display: block; height: 18px; width: auto; }

/* ── VIDEO MODAL ── */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(31,42,40,.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
.video-modal.open { display: flex; }
.video-modal-content {
  position: relative;
  width: 100%; max-width: 900px;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.video-modal-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal-frame iframe {
  width: 100%; height: 100%; border: 0;
}
.video-modal-cta {
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: #FAF8F4;
  border-top: 1px solid #E0DAC9;
  flex-wrap: wrap;
}
.video-modal-cta-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px; font-weight: 500;
  color: #1F2A28;
  letter-spacing: -0.2px;
}
.video-modal-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #E55934; color: #FFFFFF;
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.video-modal-cta-btn:hover {
  background: #D14A28;
  transform: translateY(-1px);
}
.video-modal-close {
  position: absolute; top: -52px; right: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: #FFFFFF; color: #1F2A28;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 22px;
  transition: transform .15s;
}
.video-modal-close:hover { transform: scale(1.1); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── HIGHLIGHT BOX ── */
.wave-hl {
  display: inline;
  background-color: transparent;
  border-radius: 6px;
  padding: 2px 6px;
  margin: 0 -1px;
  color: inherit;
  transition: background-color 0.4s ease, color 0.4s ease;
  white-space: nowrap;
}
.wave-hl.lit {
  background-color: #E55934;
  color: #fff;
}

/* ── RESPONSIVE: TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 40px; }
  .trust { padding: 32px 40px; }
  .trust-item { min-width: 50%; }
  .pain { padding: 64px 40px; }
  .not-ideal { padding: 64px 40px; }
  .format { padding: 64px 40px; }
  .format-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .features { padding: 64px 40px; }
  .features-grid { flex-direction: column; }
  .program { padding: 64px 40px; }
  .author { padding: 64px 40px; }
  .author-layout { grid-template-columns: 1fr 320px; gap: 40px; }
  .results { padding: 64px 40px; }
  .results-layout { gap: 40px; }
  .results-photo { height: auto; }
  .pricing { padding: 64px 40px; }
  .pricing-cards { flex-direction: column; max-width: 520px; margin: 0 auto; }
  .pricing-top { flex-direction: column; align-items: center; gap: 16px; }
  .faq { padding: 64px 40px; }
  .final-cta { padding: 80px 40px; }
  .final-title { font-size: 28px; }
  .sh-features, .sh-results, .sh-pricing { font-size: 28px; }
  .footer { padding: 48px 40px 28px; }
  .footer-grid { gap: 40px; }
}

/* ── RESPONSIVE: HERO СТАЄ КОЛОНКОЮ НА ≤900px ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 32px 40px 40px; gap: 32px; }
  .hero-right { width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-portrait { width: 320px; height: 320px; }
}

/* ── RESPONSIVE: MOBILE (≤768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav { height: 60px; }
  body { padding-top: 60px; }
  .nav-inner { padding: 0 20px; }
  .nav-right { gap: 14px; }
  .nav-right .nav-link { display: none; }
  .btn-nav { font-size: 13px; padding: 9px 16px; }

  /* Hero */
  .hero { padding: 28px 20px 40px; gap: 28px; }
  .hero-right { max-width: 100%; order: -1; margin-right: 0; }
  .hero-portrait { width: 170px; height: 170px; border-radius: 50%; }
  .hero-video-icon svg { margin-left: 0; transform: none; }
  .hero-title { font-size: 30px; letter-spacing: -0.8px; line-height: 1.15; }
  .hero-subtitle { font-size: 14px; margin-top: -6px; }
  .hero-desc { font-size: 15px; line-height: 1.55; }
  .hero-left { gap: 18px; align-items: flex-start; text-align: left; }
  .hero-badge { display: none; }
  .hero-meta { flex-direction: column; gap: 6px; align-items: flex-start; }
  .btn-primary { font-size: 15px; padding: 15px 22px; width: 100%; text-align: center; max-width: 320px; align-self: center; }
  .hero-ctas { width: 100%; display: flex; justify-content: center; }

  /* Trust */
  .trust { padding: 24px 20px; }
  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    max-width: 360px;
    margin: 0 auto;
    align-items: start;
  }
  .trust-item {
    flex: none; min-width: 0;
    justify-content: flex-start;
    align-items: baseline;
  }
  .trust-num { font-size: 17px; }
  .trust-label { font-size: 14px; }

  /* Pain — bubble mobile */
  .pain { padding: 56px 20px; gap: 28px; }
  .pain-title { font-size: 24px; letter-spacing: -0.5px; white-space: normal; margin-right: 0; }
  .pain-lead { font-size: 15px; }
  .pain-scene { grid-template-columns: 1fr; gap: 14px; }
  .pain-col.left, .pain-col.right { align-items: stretch; }
  .bubble { max-width: 100%; padding: 16px 20px; }
  .bubble-q { font-size: 15px; }
  .pain-col.left  .bubble-popup,
  .pain-col.right .bubble-popup { left: 0; right: auto; top: calc(100% + 10px); transform: none; width: calc(100vw - 60px); }
  /* На мобільному показ керується тапом (клас .open), а не :hover —
     інакше дотик «залипає» і попап не закривається. */
  .pain-col.left  .bubble-wrap:hover .bubble-popup,
  .pain-col.right .bubble-wrap:hover .bubble-popup { opacity: 0; pointer-events: none; }
  .pain-col.left  .bubble-wrap.open .bubble-popup,
  .pain-col.right .bubble-wrap.open .bubble-popup { transform: none; opacity: 1; pointer-events: auto; }

  /* Not-ideal */
  .not-ideal { padding: 56px 20px; }
  .section-title-lg { font-size: 24px; letter-spacing: -0.5px; }
  .section-desc { font-size: 15px; }

  /* Format */
  .format { padding: 56px 20px; gap: 28px; }
  .format-grid { grid-template-columns: 1fr; gap: 20px; max-width: 100%; margin: 0; }
  .format-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "icon title"
      "icon desc";
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    text-align: left;
    padding: 0;
  }
  .format-icon { grid-area: icon; width: 56px; height: 56px; align-self: center; }
  .format-icon svg { width: 26px; height: 26px; }
  .format-title { grid-area: title; font-size: 16px; align-self: end; margin: 0; }
  .format-desc { grid-area: desc; font-size: 14px; align-self: start; margin: 0; }
  .sh-format { font-size: 24px; letter-spacing: -0.5px; }
  .format-link { font-size: 14px; }

  /* Features */
  .features { padding: 56px 20px; }
  .features-top { text-align: center; margin: 0 auto; }
  .features-sub { font-size: 15px; }
  .features-grid { flex-direction: column; gap: 20px; }
  .feat-card { padding: 0; gap: 14px; }
  .feat-title { font-size: 20px; line-height: 1.3; }
  .feat-desc { font-size: 14px; }
  .feat-media { height: 320px; }
  .feat-media.bot { padding: 18px; }
  .mock-msg { font-size: 12px; padding: 10px 14px; }
  .video-play { width: 60px; height: 60px; }
  .video-play svg { width: 22px; height: 22px; }
  .sh-features { font-size: 24px; letter-spacing: -0.5px; }

  /* Program */
  .program { padding: 56px 20px; }
  .program-title { font-size: 24px !important; letter-spacing: -0.5px; }
  .step-title { font-size: 15px; }
  .step-desc { font-size: 13px; }
  .step-dot { width: 36px; height: 36px; font-size: 10px; }
  .step-left { width: 36px; }
  .step-right { padding-bottom: 24px; }

  /* Results */
  .results { padding: 56px 20px; }
  .results-layout { grid-template-columns: 1fr; gap: 24px; }
  .results-photo-wrap { padding: 20px; max-width: 280px; margin: 0 auto; width: 100%; }
  .results-photo { width: 100%; height: auto; aspect-ratio: 1; }
  .results-float {
    font-size: 11px;
    bottom: 6px; left: -8px;
    padding: 8px 12px;
    gap: 8px;
    white-space: nowrap;
  }
  .results-float-icon { width: 28px; height: 28px; font-size: 13px; }
  .results-float-text b { font-size: 11px; line-height: 1.25; }
  .results-float-text span { font-size: 9px; line-height: 1.35; }
  .sh-results { font-size: 24px; text-align: left !important; }
  .results-list li { font-size: 14px; padding: 12px 14px; }

  /* Author */
  .author { padding: 56px 20px; }
  .author-layout { grid-template-columns: 1fr; gap: 28px; }
  .author-photo-col { order: -1; }
  .author-photo { aspect-ratio: 1/1; max-width: 170px; margin: 0 auto; }
  .author-name { font-size: 26px; letter-spacing: -0.5px; }
  .author-title { font-size: 16px; }
  .author-bio { font-size: 15px; }
  .author-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .author-stat-num { font-size: 20px; }
  .author-stat-label { font-size: 12px; }

  /* Pricing */
  .pricing { padding: 56px 20px; }
  .pricing-cards { flex-direction: column; max-width: 100%; gap: 14px; }
  .price-card { padding: 24px; border-radius: 20px; }
  .price-name { font-size: 19px; }
  .price-num { font-size: 30px; }
  .sh-pricing { font-size: 24px; letter-spacing: -0.5px; }
  .btn-outline, .btn-cta-orange { padding: 14px 18px; font-size: 14px; }

  /* FAQ */
  .faq { padding: 56px 20px; }
  .faq-title { font-size: 24px; letter-spacing: -0.5px; }
  .faq-q { font-size: 15px; }
  .faq-item { padding: 0; }
  .faq-header { padding: 18px 18px; gap: 16px; }
  .faq-answer { padding: 0 18px 18px; font-size: 14px; }

  /* Landscape */
  .landscape { height: 220px; }

  /* Final CTA */
  .final-cta { padding: 56px 20px; }
  .final-title { font-size: 22px; letter-spacing: -0.4px; line-height: 1.25; }
  .final-line { font-size: 20px; white-space: normal; }
  .final-sub { font-size: 14px; }
  .final-cta .btn-cta-orange { width: 100% !important; font-size: 15px !important; padding: 16px 20px !important; display: block; text-align: center; }

  /* Footer */
  .footer { padding: 40px 20px 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 28px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── RESPONSIVE: МАЛЕНЬКІ ТЕЛЕФОНИ (≤420px) ── */
@media (max-width: 420px) {
  .hero { padding: 24px 16px 36px; }
  .hero-title { font-size: 26px; letter-spacing: -0.6px; }
  .hero-portrait { width: 155px; height: 155px; }
  .hero-desc { font-size: 14px; }

  .pain { padding: 48px 16px; }
  .pain-title, .sh-features, .sh-results, .sh-pricing,
  .section-title-lg, .sh-format, .faq-title, .author-name {
    font-size: 22px; letter-spacing: -0.4px;
  }
  .final-title { font-size: 20px; }
  .final-line { font-size: 18px; }

  .not-ideal, .format, .features, .program,
  .results, .author, .pricing, .faq, .final-cta { padding: 48px 16px; }

  .feat-card { padding: 20px; }
  .price-card { padding: 20px; }
}
