/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #2d5a2d;
  --green-dark:   #1a3a1a;
  --green-deep:   #0f2410;
  --green-light:  #eef4ee;
  --green-mid:    #3e6e3e;
  --green-soft:   #c8ddc8;
  --green-accent: #a8d4a8;
  --burgundy:     #8b1a1a;
  --burgundy-mid: #a32020;
  --burgundy-lt:  #f5e8e8;
  --cream:        #f8f4ee;
  --cream-dark:   #f0e8d8;
  --text:         #1a2a1a;
  --text-mid:     #3a4a3a;
  --text-soft:    #6a7a6a;
  --border:       #d4dec4;
  --gold:         #b8a060;

  --topbar-h:     64px;
  --topbar-h-md:  72px;

  --container:    1240px;
  --gutter:       24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ═══════════════════════════════════════════════
   TOP NAV BAR
═══════════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: rgba(15, 36, 16, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid rgba(168,212,168,0.15);
  transition: background 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.topbar.scrolled {
  background: rgba(15, 36, 16, 0.98);
  border-bottom-color: rgba(168,212,168,0.22);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.85; }

.logo-svg {
  height: 32px;
  width: auto;
  display: block;
  color: #fff;
}

/* Desktop nav */
.nav {
  display: none;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-accent);
  transition: width 0.25s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.topbar-cta {
  display: none;
  align-items: center;
  gap: 12px;
}
.btn-topbar {
  background: var(--burgundy-mid);
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-topbar:hover {
  background: var(--burgundy);
  transform: translateY(-1px);
}

/* Mobile burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: transparent;
  padding: 8px;
}
.burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  background: rgba(15, 36, 16, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px var(--gutter) 32px;
  border-bottom: 1px solid rgba(168,212,168,0.15);
  transform: translateY(-120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}
.mobile-menu.active { transform: translateY(0); }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-menu-nav a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(168,212,168,0.1);
}
.mobile-menu-nav a:last-child { border-bottom: none; }

.mobile-menu .btn-topbar {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 13px;
}

/* ═══════════════════════════════════════════════
   STICKY MOBILE BAR (mobile only)
═══════════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green-dark);
  padding: 12px var(--gutter);
  z-index: 998;
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(168,212,168,0.2);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.sticky-bar .btn-book {
  flex: 1.5;
  background: var(--burgundy-mid);
  color: white;
  border-radius: 10px;
  padding: 12px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.sticky-bar .btn-book:hover { background: var(--burgundy); }
.sticky-bar .btn-call {
  flex: 1;
  background: transparent;
  color: var(--green-soft);
  border: 1px solid rgba(168,212,168,0.4);
  border-radius: 10px;
  padding: 12px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   PAGE OFFSET FROM TOPBAR
═══════════════════════════════════════════════ */
main { padding-top: var(--topbar-h); }

/* ═══════════════════════════════════════════════
   BOTANICAL BACKGROUND
═══════════════════════════════════════════════ */
.botanical {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.07;
}
.botanical svg { width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163, 32, 32, 0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(163, 32, 32, 0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════
   HERO — light theme (узгоджено з помилками)
═══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  padding: var(--topbar-h) var(--gutter) 36px;
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

/* hero media (mobile-first) */
.hero-media { order: 1; width: 100%; }
.hero-content { padding-top: 8px; }
html[data-hero-mode="video"] .hero-photo-wrap { display: none; }
html[data-hero-mode="photo"] .hero-video-wrap { display: none; }

/* Два маленьких пілла поруч (а не один довгий що ламається). */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--green-accent);
  background: var(--green-light);
  color: var(--green);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 18px;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}
.hero-badge--accent::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.hero-badge--subtle {
  background: #fff;
  border-color: var(--border);
  color: var(--text-mid);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 em {
  color: var(--green);
  font-style: normal;
}
.hero-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 540px;
  animation: fadeUp 0.6s ease 0.2s both;
}

/* Wrapper: на мобайлі компактна 4:5 (видео «підрізане» зверху/знизу — без зайвої стіни і рук).
   На десктопі — більший max-height, але теж 4:5 пропорції. */
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 70svh;
  background: #000;
  overflow: hidden;
  border-radius: 16px;
  animation: scaleIn 0.7s ease 0.3s both;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #000;
}
/* decorative circle ::before виходить за межі фото, border-radius на img */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  animation: scaleIn 1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: -3%; right: -7%;
  width: 80%; aspect-ratio: 1;
  background: var(--green-light);
  border-radius: 50%;
  z-index: 0;
}
.hero-photo-wrap picture { display: contents; }
.hero-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
}

/* Loader (показывается пока видео не canplaythrough) */
.hero-video-loader {
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
  transition: opacity 0.4s ease;
}
.hero-video-loader.hidden { opacity: 0; pointer-events: none; }
.hero-video-loader-bar {
  width: 60%;
  max-width: 240px;
  height: 3px;
  background: rgba(168,212,168,0.18);
  border-radius: 3px;
  overflow: hidden;
}
.hero-video-loader-bar > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--green-accent);
  transition: width 0.25s ease;
}

/* Красивая полоса прогресса — над action-bar, во всю ширину, заметная */
.hero-video-progress {
  position: absolute;
  left: 14px; right: 14px;
  bottom: 110px;
  height: 6px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 7;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: height 0.15s ease;
}
.hero-video-progress:hover { height: 9px; }
.hero-video-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-accent) 0%, #c8eec8 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(168,212,168,0.6);
  transition: width 0.1s linear;
  position: relative;
}
.hero-video-progress > span::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.hero-video-progress:hover > span::after { opacity: 1; }

/* End-overlay: финальный CTA по завершению */
.hero-video-end {
  position: absolute;
  /* inset 0 кроме нижних 60px — оставляем контролы видимыми и кликабельными */
  top: 0; left: 0; right: 0; bottom: 60px;
  background: linear-gradient(180deg, rgba(15,36,16,0.55) 0%, rgba(15,36,16,0.92) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 5;
}
.hero-video-end.visible { opacity: 1; pointer-events: auto; }
.hero-video-end p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-video-end .btn-book-hero { max-width: 320px; }

/* Большая нижняя action-bar с Play/Pause и Skip — всегда видна, ручное управление видео */
.hero-video-actions {
  position: absolute;
  left: 0; right: 0; bottom: 48px;
  display: flex;
  gap: 8px;
  padding: 0 14px;
  z-index: 7;
  pointer-events: none;
}
.hero-video-actions > button {
  pointer-events: auto;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-video-actions > button svg { width: 14px; height: 14px; fill: currentColor; }
.hero-video-action-play {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.hero-video-action-play:hover { background: rgba(255,255,255,0.28); transform: translateY(-1px); }
.hero-video-action-skip {
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.9);
}
.hero-video-action-skip:hover { background: rgba(0,0,0,0.7); transform: translateY(-1px); }

/* Скрытый "Play to start" overlay — последний resort если play() reject'ится */
.hero-video-manual-play {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
  border: none;
  padding: 0;
  font-family: inherit;
  color: #fff;
}
.hero-video-manual-play.visible { display: flex; }
.hero-video-manual-play-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--burgundy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  animation: pulse 2s infinite;
}
.hero-video-manual-play-icon svg { width: 36px; height: 36px; fill: #fff; margin-left: 4px; }


/* Scroll-lock пока видео не закончилось */
html.video-lock,
body.video-lock {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: contain;
}

/* Hero price card (light) */
.hero-price-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 12px 32px rgba(26,58,26,0.07);
  max-width: 540px;
  animation: fadeUp 0.6s ease 0.5s both;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.price-big {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.price-old {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: line-through;
  text-decoration-color: var(--burgundy);
}
.price-note {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
}
.price-note strong { color: var(--green); font-weight: 700; }
.price-divider { height: 1px; background: var(--border); margin: 14px 0; }
.price-booking {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.price-booking svg { flex-shrink: 0; margin-top: 1px; }
.price-booking strong { color: var(--green); font-weight: 700; white-space: nowrap; }
.hero-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.hero-timer-label { font-size: 13px; color: var(--text-soft); }
.hero-timer-val {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
  animation: fadeUp 0.6s ease 0.6s both;
}
a.btn-book-hero, a.btn-call-hero, a.btn-pay-hero,
a.btn-book-final, a.btn-call-final, a.btn-pay-final,
.sticky-bar a.btn-book, .sticky-bar a.btn-call {
  display: block;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.btn-book-hero {
  width: 100%;
  background: linear-gradient(135deg, var(--burgundy-mid) 0%, var(--burgundy) 100%);
  color: white;
  border-radius: 14px;
  padding: 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(139,26,26,0.28);
}
.btn-book-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-book-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(139,26,26,0.36);
}
.btn-book-hero:hover::before { transform: translateX(100%); }

.btn-pay-hero {
  width: 100%;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  color: white;
  border-radius: 14px;
  padding: 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(26,58,26,0.26);
}
.btn-pay-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.20) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-pay-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(26,58,26,0.34);
}
.btn-pay-hero:hover::before { transform: translateX(100%); }

.btn-call-hero {
  width: 100%;
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green);
  border-radius: 14px;
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-call-hero:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.cta-note {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-soft);
  text-align: center;
}
.cta-note-dark {
  color: rgba(255,255,255,0.6);
}

.cta-mobile-break { display: inline; }
@media (max-width: 480px) {
  .cta-mobile-break { display: block; }
}

/* Hook-section — цитата Оксани між hero та trust-bar */
.hook-section {
  background: #fff;
  padding: 56px var(--gutter) 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hook-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: flex-start;
}
.hook-mark {
  font-family: 'Playfair Display', serif;
  font-size: 110px;
  line-height: 0.7;
  color: var(--green);
  opacity: 0.18;
  font-weight: 700;
}
.hook-body p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.3vw, 24px);
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 14px;
}
.hook-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hook-author::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--green);
}

/* For-whom — оновлений під 4 буліти користі */
.benefits-grid {
  margin-top: 32px;
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 22px 70px;
  position: relative;
  box-shadow: 0 6px 16px rgba(26,58,26,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26,58,26,0.08);
  border-color: var(--green-accent);
}
.benefit-card::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 22px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-light);
  display: block;
}
.benefit-card::after {
  content: '';
  position: absolute;
  left: 31px;
  top: 31px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.benefit-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--cream-dark);
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}
.trust-item { text-align: center; }
.trust-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-lbl {
  font-size: 10px;
  color: var(--text-soft);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════ */
.section { padding: 36px var(--gutter); }

.sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sec-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 8px;
}
.sec-title span { color: var(--burgundy); }
.sec-sub {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════
   FOR WHOM SEGMENTS
═══════════════════════════════════════════════ */
.segments {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.seg-card {
  background: white;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.seg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45,90,45,0.08);
  border-color: var(--green-soft);
}
.seg-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.seg-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.35;
}
.seg-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   MONEY BLOCK
═══════════════════════════════════════════════ */
.money-block {
  background: var(--green-deep);
  padding: 36px var(--gutter);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.money-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.money-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(168,212,168,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.money-items {
  display: grid;
  gap: 14px;
}
.money-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.money-arrow {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-accent);
  min-width: 22px;
  line-height: 1;
}
.money-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.money-text strong { color: #fff; font-weight: 700; }

/* ═══════════════════════════════════════════════
   PROGRAM
═══════════════════════════════════════════════ */
.program {
  max-width: var(--container);
  margin: 0 auto;
}

.prog-total {
  background: var(--green-light);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.prog-total-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.prog-total-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.prog-total-text strong { color: var(--green); }

.prog-list {
  display: grid;
  gap: 14px;
}

.prog-block {
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.prog-block:hover {
  border-left-color: var(--burgundy);
  transform: translateX(4px);
}
.prog-block-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2px;
}
.prog-block-count {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.prog-block-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.prog-tag {
  font-size: 10px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 20px;
  padding: 4px 11px;
  font-weight: 500;
}
.prog-tag.mk {
  background: var(--burgundy-lt);
  color: var(--burgundy);
}

.prog-block.last {
  border-left-color: var(--burgundy);
}
.prog-block.last .prog-block-title { color: var(--burgundy); }

/* ═══════════════════════════════════════════════
   FORMAT
═══════════════════════════════════════════════ */
.format {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.format-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.format-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.format-item:hover .format-icon {
  transform: scale(1.05) rotate(-3deg);
  background: var(--green);
}
.format-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.format-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CASES — RESULTS
═══════════════════════════════════════════════ */
.cases-section {
  padding: 36px 0;
  background: var(--cream);
}
.cases-header {
  padding: 0 var(--gutter);
  margin-bottom: 20px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.cases-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px var(--gutter) 12px;
  max-width: var(--container);
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cases-scroll::-webkit-scrollbar { display: none; }

.case-card {
  min-width: 280px;
  max-width: 320px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45,90,45,0.1);
}
.case-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}
.case-photo picture,
.case-photo img {
  width: 100%; height: 100%;
  display: block;
}
.case-photo img { object-fit: cover; }
.case-body { padding: 16px 18px; }
.case-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.case-city {
  font-size: 10px;
  color: var(--text-soft);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.case-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}
.case-result {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  display: inline-block;
  padding: 5px 11px;
  border-radius: 20px;
}

.cases-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 12px 0 4px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}
.dot.active { background: var(--green); width: 20px; border-radius: 3px; }

/* ═══════════════════════════════════════════════
   UNIQUENESS
═══════════════════════════════════════════════ */
.unique-section {
  background: var(--green);
  padding: 40px var(--gutter);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.unique-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.unique-title {
  font-size: 11px;
  color: rgba(168,212,168,0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.unique-grid { display: grid; gap: 22px; }
.unique-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
.unique-item:hover { transform: translateX(4px); }
.unique-num {
  font-size: 42px;
  font-weight: 700;
  color: rgba(168,212,168,0.25);
  line-height: 1;
  min-width: 42px;
  margin-top: -4px;
}
.unique-item-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.unique-item-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   AUTHOR
═══════════════════════════════════════════════ */
.author-section {
  background: white;
  padding: 40px var(--gutter);
}
.author-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.author-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--green-light) 0%, var(--cream-dark) 100%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.author-photo picture,
.author-photo img {
  width: 100%; height: 100%;
  display: block;
}
.author-photo img { object-fit: cover; object-position: center top; }
.author-photo-label {
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.author-photo-spec {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  opacity: 0.7;
  font-family: monospace;
}
.author-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.author-title {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.author-bio {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.author-bio strong { color: var(--text); font-weight: 700; }

.author-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.author-fact {
  background: var(--green-light);
  border-radius: 10px;
  padding: 14px;
  transition: transform 0.3s ease;
}
.author-fact:hover { transform: translateY(-2px); }
.author-fact-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 3px;
}
.author-fact-text {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   SUPPORT
═══════════════════════════════════════════════ */
.support-section {
  padding: 36px var(--gutter);
  background: var(--cream-dark);
}
.support-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.support-list {
  display: grid;
  gap: 16px;
}
.support-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.support-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.support-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 7px;
  min-width: 8px;
  position: relative;
}
.support-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.2;
  animation: pulse 2s infinite;
}
.support-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.support-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   LETTER
═══════════════════════════════════════════════ */
.letter-section {
  background: var(--green-deep);
  padding: 40px var(--gutter);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.letter-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.letter-quote-mark {
  font-size: 84px;
  font-weight: 700;
  color: rgba(168,212,168,0.18);
  line-height: 0.8;
  margin-bottom: 18px;
  font-family: Georgia, serif;
}
.letter-text {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  margin-bottom: 14px;
}
.letter-sig {
  font-size: 14px;
  color: var(--green-accent);
  font-style: italic;
  margin-top: 20px;
  display: block;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
.final-cta {
  background: var(--green-dark);
  padding: 44px var(--gutter) 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.final-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}
.final-cta-label {
  font-size: 10px;
  color: rgba(168,212,168,0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.final-cta-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.final-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 26px;
  line-height: 1.6;
}
.final-price-box {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.12);
}
.final-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.final-price-big {
  font-size: 36px;
  font-weight: 700;
}
.final-price-old {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.final-price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.final-price-note strong { color: var(--green-accent); }

/* Таймер усередині final-cta (тёмний фон — інший колір ніж у hero) */
.final-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}
.final-timer-label { font-size: 13px; color: rgba(255,255,255,0.55); }
.final-timer-val {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.btn-book-final {
  width: 100%;
  background: var(--burgundy-mid);
  color: white;
  border-radius: 12px;
  padding: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  animation: pulse 3s infinite;
}
.btn-book-final:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
  animation: none;
}
.btn-pay-final {
  width: 100%;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  color: white;
  border-radius: 12px;
  padding: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-pay-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

.btn-call-final {
  width: 100%;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 15px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.btn-call-final:hover { background: rgba(255,255,255,0.05); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--green-deep);
  padding: 36px var(--gutter) 100px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  border-top: 1px solid rgba(168,212,168,0.1);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-brand .logo-svg { height: 28px; color: var(--green-accent); }

.footer-info { line-height: 1.7; }
.footer-info a { color: var(--green-accent); transition: opacity 0.2s ease; }
.footer-info a:hover { opacity: 0.8; }

.final-consent {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.final-consent a {
  color: var(--green-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.final-consent a:hover { color: #fff; }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(168,212,168,0.1);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (640px+)
═══════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --gutter: 32px; }

  .hero h1 { font-size: 42px; }
  .hero-sub { font-size: 16px; }
  .price-big { font-size: 44px; }
  .sec-title { font-size: 28px; }
  .price-big { font-size: 36px; }

  .segments { grid-template-columns: 1fr 1fr; }
  .format { grid-template-columns: 1fr 1fr; }
  .money-items { grid-template-columns: 1fr 1fr; }

  .trust-num { font-size: 28px; }
  .trust-lbl { font-size: 11px; }

  .final-cta-title { font-size: 32px; }
  .final-price-big { font-size: 42px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — DESKTOP (1024px+)
═══════════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --gutter: 40px; --topbar-h: var(--topbar-h-md); }

  /* Top bar nav */
  .nav { display: flex; }
  .topbar-cta { display: flex; }
  .burger { display: none; }

  /* Hide mobile sticky bar */
  .sticky-bar { display: none; }

  /* Remove bottom padding from final CTA / footer */
  .final-cta { padding-bottom: 60px; }
  .footer { padding-bottom: 32px; }

  /* HERO 2-column */
  .hero { padding: 80px var(--gutter) 80px; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
  }
  .hero h1 { font-size: 54px; }
  .hero-sub { font-size: 17px; }
  .hero-video-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 640px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(26,58,26,0.12);
  }
  /* hero-photo-wrap на desktop: без рамок/тіней */
  .hero-content { padding-top: 0; }


  /* Sections */
  .section { padding: 80px var(--gutter); }
  .sec-title { font-size: 36px; line-height: 1.2; }
  .sec-sub { font-size: 16px; }

  /* For whom 3 columns */
  .segments { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* Money block */
  .money-block { padding: 64px var(--gutter); }
  .money-text { font-size: 15px; }

  /* Program 2 columns */
  .program {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .program > .prog-header { grid-column: 1 / -1; }
  .prog-total { grid-column: 1 / -1; padding: 22px 28px; }
  .prog-total-num { font-size: 48px; }
  .prog-list { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 20px 32px; }

  /* Format 2 cols */
  .format { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Cases — на десктопе 3 карточки помещаются, карусель не нужна */
  .cases-section { padding: 80px 0; }
  .case-card { min-width: 340px; }
  .cases-scroll {
    overflow-x: visible;
    justify-content: center;
    scroll-snap-type: none;
  }
  .cases-dots { display: none; }

  /* Uniqueness 3 cols */
  .unique-section { padding: 80px var(--gutter); }
  .unique-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .unique-item { flex-direction: column; gap: 12px; }
  .unique-num { font-size: 56px; }

  /* Author 2 col */
  .author-section { padding: 80px var(--gutter); }
  .author-grid {
    grid-template-columns: 5fr 6fr;
    gap: 48px;
    align-items: center;
  }
  .author-name { font-size: 32px; }

  /* Support 2 cols */
  .support-section { padding: 64px var(--gutter); }
  .support-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
  }
  .support-item { padding-bottom: 0; border-bottom: none; }

  /* Letter */
  .letter-section { padding: 80px var(--gutter); }
  .letter-text { font-size: 16px; line-height: 1.9; }
  .letter-quote-mark { font-size: 110px; }

  /* Final CTA */
  .final-cta { padding: 90px var(--gutter) 80px; }
  .final-cta-title { font-size: 42px; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1.4fr 1fr 1fr;
    align-items: start;
  }

  /* Hook + benefits */
  .hook-section { padding: 76px var(--gutter); }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .benefit-card { padding: 26px 26px 26px 80px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP (1280px+)
═══════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .hero h1 { font-size: 62px; }
  .sec-title { font-size: 40px; }
  .final-cta-title { font-size: 48px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
