/* ============================================
   КУРСЫ ДЛЯ БЕРЕМЕННЫХ — ORGANIC LUXURY
   Aesthetic: Natural warmth meets refined spa
   ============================================ */

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

/* ── Tokens ── */
:root {
  /* Primary — Sage Green (nature, calm, growth) */
  --sage-900: #3a5a3a;
  --sage-700: #4e7a4e;
  --sage-500: #7ba37b;
  --sage-400: #96b896;
  --sage-300: #b4ceae;
  --sage-200: #d2e3cc;
  --sage-100: #e8f0e5;
  --sage-50: #f3f7f1;

  /* Accent — Terracotta (warmth, earth, motherhood) */
  --terra-700: #a85d3e;
  --terra-500: #c8785a;
  --terra-400: #d89a7e;
  --terra-300: #e5b8a0;
  --terra-200: #f0d4c4;
  --terra-100: #f7e8df;

  /* Neutral — Warm Linen */
  --linen-900: #2e2924;
  --linen-700: #4a433b;
  --linen-500: #7a7168;
  --linen-400: #9e958b;
  --linen-300: #c4bdb5;
  --linen-200: #e2ddd7;
  --linen-100: #eee9e3;
  --linen-50: #f9f5f0;
  --linen-0: #fdfaf6;

  /* Blush (soft accent) */
  --blush-400: #e0a0b0;
  --blush-200: #f3d0d8;
  --blush-100: #fbe8ec;

  /* Gold (warmth highlight) */
  --gold-500: #c9a555;
  --gold-300: #dcc488;
  --gold-100: #f0e6cc;

  /* Surfaces */
  --bg-page: var(--linen-0);
  --bg-section: var(--linen-50);
  --bg-card: #fffefa;
  --bg-warm: var(--linen-100);

  /* Typography */
  --ff-display: 'DM Serif Display', 'Georgia', serif;
  --ff-body: 'Outfit', 'Segoe UI', sans-serif;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(46, 41, 36, 0.04);
  --sh-sm: 0 2px 12px rgba(46, 41, 36, 0.06);
  --sh-md: 0 8px 32px rgba(46, 41, 36, 0.07);
  --sh-lg: 0 16px 48px rgba(46, 41, 36, 0.09);
  --sh-bloom: 0 8px 40px rgba(200, 120, 90, 0.12);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 200px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--linen-700);
  background: var(--bg-page);
  overflow-x: hidden;
}

/* subtle grain texture on the whole page */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ── Layout ── */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
  }
}

.wrap--narrow {
  max-width: 780px;
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}

/* ── Heading system ── */
.sec-heading {
  text-align: center;
  margin-bottom: 48px;
}

.sec-heading__title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--linen-900);
  line-height: 1.25;
  margin-bottom: 12px;
}

.sec-heading__title i {
  font-style: italic;
  color: var(--sage-700);
}

/* leaf ornament */
.sec-heading__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sec-heading__ornament::before,
.sec-heading__ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sage-300);
}

.sec-heading__ornament span {
  font-size: 0.85rem;
  color: var(--sage-400);
  display: inline-block;
  animation: ornaSpin 8s linear infinite;
}

@keyframes ornaSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(90deg) scale(1.15);
  }

  50% {
    transform: rotate(180deg) scale(1);
  }

  75% {
    transform: rotate(270deg) scale(1.15);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.sec-heading__sub {
  font-size: 1rem;
  color: var(--linen-500);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: all 380ms var(--ease);
  position: relative;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 300ms var(--ease-spring);
}

.btn-icon-heart {
  animation: heartPulse 1.2s infinite ease-in-out;
}

@keyframes heartPulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  15% {
    transform: scale(1.15) rotate(-5deg);
  }

  30% {
    transform: scale(1) rotate(0deg);
  }

  45% {
    transform: scale(1.15) rotate(-5deg);
  }
}

.btn-icon-book {
  animation: floatBook 2s infinite ease-in-out;
}

@keyframes floatBook {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2.5px);
  }
}

.btn--primary {
  background: linear-gradient(145deg, var(--sage-700), var(--sage-900));
  color: #fff;
  padding: 17px 40px;
  box-shadow: 0 6px 28px rgba(58, 90, 58, 0.28);
  animation: btnPulse 2.5s ease-in-out infinite;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 36px rgba(58, 90, 58, 0.32),
    0 0 20px rgba(123, 163, 123, 0.35),
    0 0 40px rgba(123, 163, 123, 0.15);
  color: #fff;
}

/* glow pulse */
.btn--primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--r-pill);
  background: linear-gradient(145deg, var(--sage-400), var(--sage-500));
  z-index: -1;
  opacity: 0;
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {

  0%,
  100% {
    opacity: 0.25;
    transform: scale(1);
    filter: blur(4px);
  }

  50% {
    opacity: 0;
    transform: scale(1.22);
    filter: blur(10px);
  }
}

@keyframes btnPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 28px rgba(58, 90, 58, 0.28);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 8px 36px rgba(58, 90, 58, 0.38), 0 0 16px rgba(123, 163, 123, 0.2);
  }
}

.btn--outline {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  color: var(--linen-900);
  padding: 15px 34px;
  border: 1.5px solid var(--sage-300);
}

.btn--outline:hover {
  background: #fff;
  border-color: var(--sage-500);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

/* CTA big glow */
.btn--cta-big {
  background: linear-gradient(145deg, var(--sage-700), var(--sage-900));
  color: #fff;
  padding: 20px 52px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 32px rgba(58, 90, 58, 0.3);
  animation: btnPulse 2.5s ease-in-out infinite 0.3s;
}

.btn--cta-big::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: var(--r-pill);
  background: var(--sage-500);
  z-index: -1;
  opacity: 0;
  animation: btnGlow 3s ease-in-out infinite 0.5s;
}

.btn--cta-big:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 14px 44px rgba(58, 90, 58, 0.35),
    0 0 24px rgba(123, 163, 123, 0.4),
    0 0 48px rgba(123, 163, 123, 0.18);
  color: #fff;
}

/* ── Scroll reveal ── */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

.rv-d1 {
  transition-delay: 80ms;
}

.rv-d2 {
  transition-delay: 160ms;
}

.rv-d3 {
  transition-delay: 240ms;
}

.rv-d4 {
  transition-delay: 320ms;
}

/* ── Wave separators ── */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.wave--bot {
  bottom: -1px;
}

.wave--top {
  top: -1px;
}

.wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 400ms var(--ease);
}

.nav.stuck {
  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--sh-xs);
  padding: 12px 0;
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--sage-900);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 101;
}

.brand-icon {
  width: 24px;
  height: 24px;
  color: var(--terra-400);
}

.brand-icon .brand-leaf-left {
  animation: leafWaveLeft 3s ease-in-out infinite;
  transform-origin: bottom center;
}

.brand-icon .brand-leaf-right {
  animation: leafWaveRight 2.5s ease-in-out infinite 0.5s;
  transform-origin: bottom center;
}

@keyframes leafWaveLeft {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(-8deg) scale(1.05);
  }
}

@keyframes leafWaveRight {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(8deg) scale(1.05);
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--linen-500);
  position: relative;
  padding-bottom: 3px;
  transition: color 280ms var(--ease);
}

.nav__a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage-500);
  border-radius: 1px;
  transition: width 320ms var(--ease);
}

.nav__a:hover {
  color: var(--sage-700);
}

.nav__a:hover::after {
  width: 100%;
}

.nav__signup {
  background: var(--sage-700);
  color: #fff;
  padding: 9px 22px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 280ms var(--ease);
  animation: navBtnPulse 2.8s ease-in-out infinite;
}

@keyframes navBtnPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(78, 122, 78, 0.3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(78, 122, 78, 0);
  }
}

.nav__signup:hover {
  background: var(--sage-900);
  color: #fff;
  transform: scale(1.05);
  animation: none;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 101;
}

.nav__burger b {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--linen-900);
  border-radius: 2px;
  transition: all 320ms var(--ease);
}

.nav__burger.on b:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.on b:nth-child(2) {
  opacity: 0;
}

.nav__burger.on b:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 800px) {
  .nav__burger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(253, 250, 246, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms var(--ease);
  }

  .nav__links.on {
    opacity: 1;
    pointer-events: all;
  }

  .nav__a {
    font-size: 1.15rem;
  }

  .nav__signup {
    font-size: 1rem;
    padding: 14px 32px;
  }
}

/* ============================================
   HERO — compact & animated
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 28px 160px;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
      var(--linen-0) 0%,
      var(--gold-100) 25%,
      var(--terra-100) 55%,
      var(--linen-100) 100%);
  background-size: 300% 300%;
  animation: drift 16s ease-in-out infinite;
  z-index: 0;
}

@keyframes drift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* organic blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: 1;
  will-change: transform;
}

.hero__blob--a {
  width: 360px;
  height: 360px;
  background: var(--gold-300);
  top: 2%;
  left: -10%;
  animation: bob 14s ease-in-out infinite;
}

.hero__blob--b {
  width: 280px;
  height: 280px;
  background: var(--terra-300);
  bottom: 8%;
  right: -8%;
  animation: bob 18s ease-in-out infinite reverse;
}

.hero__blob--c {
  width: 200px;
  height: 200px;
  background: var(--gold-500);
  top: 35%;
  left: 55%;
  animation: bob 11s ease-in-out infinite 2s;
}

@keyframes bob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  30% {
    transform: translate(35px, -25px) scale(1.05);
  }

  60% {
    transform: translate(-20px, 20px) scale(0.96);
  }
}

/* ── Floating botanical leaves ── */
.hero__leaf {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
  will-change: transform;
}

.hero__leaf svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero__leaf--1 {
  width: 110px;
  top: 12%;
  left: 6%;
  animation: leafDrift1 20s ease-in-out infinite;
}

.hero__leaf--2 {
  width: 80px;
  top: 55%;
  right: 8%;
  animation: leafDrift2 24s ease-in-out infinite;
  opacity: 0.12;
}

.hero__leaf--3 {
  width: 70px;
  bottom: 20%;
  left: 15%;
  animation: leafDrift3 18s ease-in-out infinite;
  opacity: 0.1;
}

.hero__leaf--4 {
  width: 90px;
  top: 25%;
  right: 18%;
  animation: leafDrift1 22s ease-in-out infinite 3s;
  opacity: 0.12;
}

.hero__leaf--5 {
  width: 60px;
  bottom: 35%;
  right: 30%;
  animation: leafDrift2 19s ease-in-out infinite 5s;
  opacity: 0.09;
}

@keyframes leafDrift1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(12px, -18px) rotate(8deg);
  }

  50% {
    transform: translate(-8px, -28px) rotate(-3deg);
  }

  75% {
    transform: translate(6px, -10px) rotate(5deg);
  }
}

@keyframes leafDrift2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(-15px, 12px) rotate(-6deg);
  }

  66% {
    transform: translate(10px, -15px) rotate(4deg);
  }
}

@keyframes leafDrift3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(20px, -20px) rotate(10deg) scale(1.1);
  }
}

/* ── Animated glowing rays / sun bursts ── */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-300) 0%, transparent 60%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  animation: sunGlow 8s ease-in-out infinite alternate;
}

.hero__ring--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__ring--2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -10%;
  animation-delay: 2s;
}

.hero__ring--3 {
  width: 500px;
  height: 500px;
  top: 40%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes sunGlow {
  0% {
    transform: scale(0.8) translate(0, 0);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.1) translate(-20px, 20px);
    opacity: 0.3;
  }

  100% {
    transform: scale(0.9) translate(20px, -10px);
    opacity: 0.15;
  }
}

/* Hero content */
.hero__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(123, 163, 123, 0.2);
  border-radius: var(--r-pill);
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-900);
  margin-bottom: 20px;
  animation: rise 0.9s var(--ease-out) 0.1s both;
}

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
  animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.5);
  }
}

.hero__h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--linen-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  animation: rise 0.9s var(--ease-out) 0.2s both;
}

.hero__h1 em {
  font-style: italic;
  color: var(--sage-700);
}

.hero__sub {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  color: var(--linen-500);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 28px;
  animation: rise 0.9s var(--ease-out) 0.32s both;
}

.hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: rise 0.9s var(--ease-out) 0.42s both;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--r-lg);
  padding: 12px 24px;
  font-size: 0.84rem;
  color: var(--linen-500);
  box-shadow: var(--sh-sm);
  animation: rise 0.9s var(--ease-out) 0.54s both;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 300ms var(--ease);
}

.meta-icon {
  width: 18px;
  height: 18px;
  color: var(--sage-500);
  transition: transform 300ms var(--ease-spring), color 300ms var(--ease);
}

.hero__meta-item:hover {
  color: var(--sage-700);
}

.hero__meta-item:hover .meta-icon {
  color: var(--sage-700);
  transform: translateY(-2px);
}

.meta-icon-pin {
  animation: bouncePin 1.5s ease-in-out infinite alternate;
}

@keyframes bouncePin {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-4px);
  }
}

.meta-icon-cal {
  animation: tickCal 2s ease-in-out infinite;
}

@keyframes tickCal {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(0) rotate(-4deg);
  }

  75% {
    transform: translateY(0) rotate(4deg);
  }
}

.meta-icon-users {
  animation: pulseUsers 2s ease-in-out infinite;
}

@keyframes pulseUsers {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(0) scale(1.15);
  }
}

.hero__meta-bar {
  width: 1px;
  height: 18px;
  background: var(--linen-300);
}

/* scroll-down indicator */
.hero__scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--linen-400);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: rise 0.9s var(--ease-out) 0.7s both;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--sage-300), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sage-500);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 20px 120px;
  }

  .hero__meta {
    flex-direction: column;
    gap: 8px;
  }

  .hero__meta-bar {
    display: none;
  }

  .hero__blob--a {
    width: 200px;
    height: 200px;
  }

  .hero__blob--b {
    width: 160px;
    height: 160px;
  }

  .hero__blob--c {
    display: none;
  }

  .hero__leaf--4,
  .hero__leaf--5 {
    display: none;
  }

  .hero__ring {
    display: none;
  }

  .hero__scroll {
    bottom: 40px;
  }
}

/* falling leaves particles (JS-generated) */
@keyframes fall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg) translateX(0);
  }

  20% {
    opacity: 0.6;
    transform: translateY(15vh) rotate(45deg) translateX(15px);
  }

  50% {
    opacity: 1;
    transform: translateY(45vh) rotate(120deg) translateX(-15px);
  }

  80% {
    opacity: 0.6;
    transform: translateY(75vh) rotate(180deg) translateX(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(110vh) rotate(240deg) translateX(0);
  }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.proof {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  /* Overlaps with the wave/hero */
  padding: 0 20px 60px;
  background: transparent;
}

.proof__inner {
  max-width: 1000px;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 32px -8px rgba(106, 126, 106, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow */
.proof__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.proof__stat {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 14px;
  row-gap: 0;
  text-align: left;
  position: relative;
}

/* Dividers between items */
.proof__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--linen-400), transparent);
}

.proof__icon-wrap {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--linen-0) 0%, var(--linen-100) 100%);
  border-radius: 50%;
  color: var(--terra-400);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(184, 155, 142, 0.12);
  margin-bottom: 0;
}

.proof-icon {
  width: 20px;
  height: 20px;
  color: inherit;
}

.proof__stat strong {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  color: var(--sage-800);
  line-height: 1.1;
  align-self: end;
  margin: 0;
}

.proof__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-600);
  max-width: 130px;
  line-height: 1.25;
  align-self: start;
}

.proof-icon-users {
  animation: proofPulse 2s ease-in-out infinite;
}

@keyframes proofPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.proof-icon-baby {
  animation: proofRock 3s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes proofRock {

  0%,
  100% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

.proof-icon-cert {
  animation: proofBounce 2.5s ease-in-out infinite;
}

@keyframes proofBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.proof-icon-star {
  animation: proofSpin 4s linear infinite;
  transform-origin: center;
}

@keyframes proofSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@media (max-width: 900px) {
  .proof__inner {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
  }

  .proof__stat {
    min-width: 45%;
  }

  .proof__stat:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 500px) {
  .proof {
    margin-top: -40px;
  }

  .proof__inner {
    flex-direction: column;
    gap: 20px;
  }

  .proof__stat::after {
    display: none !important;
  }

  .proof__stat strong {
    font-size: 1.5rem;
  }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  background: var(--bg-page);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

.bcard {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 34px 26px 30px;
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(178, 206, 174, 0.12);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
  position: relative;
  overflow: hidden;
}

/* top accent stripe on hover */
.bcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-400), var(--terra-300));
  opacity: 0;
  transition: opacity 350ms var(--ease);
}

.bcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.bcard:hover::before {
  opacity: 1;
}

.bcard__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  color: var(--sage-700);
  transition: all 380ms var(--ease-spring);
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.bcard:nth-child(2) .bcard__icon {
  animation-delay: 0.5s;
}

.bcard:nth-child(3) .bcard__icon {
  animation-delay: 1s;
}

.bcard:nth-child(4) .bcard__icon {
  animation-delay: 1.5s;
}

.bcard:hover .bcard__icon {
  background: var(--sage-700);
  color: #fff;
  transform: scale(1.1) rotate(-4deg);
  animation: none;
}

.bcard__title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--linen-900);
  margin-bottom: 8px;
}

.bcard__text {
  font-size: 0.88rem;
  color: var(--linen-500);
  line-height: 1.65;
}

/* ============================================
   PROGRAM
   ============================================ */
.program {
  background: var(--bg-card);
}

.program__track {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pitem {
  display: flex;
  gap: 16px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  background: var(--linen-50);
  border: 1px solid transparent;
  transition: all 380ms var(--ease);
  cursor: default;
}

.pitem:hover {
  background: #fff;
  border-color: var(--sage-200);
  box-shadow: var(--sh-sm);
  transform: translateX(5px);
}

.pitem__n {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--sage-300);
  line-height: 1;
  min-width: 32px;
  transition: color 350ms var(--ease);
  animation: numPulse 3s ease-in-out infinite;
}

@keyframes numPulse {

  0%,
  100% {
    color: var(--sage-300);
    transform: scale(1);
  }

  50% {
    color: var(--sage-500);
    transform: scale(1.08);
  }
}

.pitem:hover .pitem__n {
  color: var(--sage-700);
}

.pitem__body {
  flex: 1;
}

.pitem__name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--linen-900);
  margin-bottom: 2px;
}

.pitem__desc {
  font-size: 0.86rem;
  color: var(--linen-500);
}

.program__bonus {
  max-width: 720px;
  margin: 24px auto 0;
  background: var(--terra-100);
  border: 1px solid var(--terra-200);
  border-radius: var(--r-md);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--terra-700);
}

.program__bonus i {
  margin-right: 6px;
}

/* ============================================
   TEACHER
   ============================================ */
.teacher {
  background: linear-gradient(150deg, var(--linen-100), var(--blush-100) 50%, var(--sage-100));
}

.teacher__row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.teacher__img-col {
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.teacher__img {
  width: min(260px, 100%);
  height: min(260px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--sh-bloom);
  transition: transform 600ms var(--ease);
  margin: 0 auto;
}

.teacher__img:hover {
  transform: scale(1.04) rotate(1.5deg);
}

.teacher__txt {
  flex: 1 1 360px;
}

.teacher__name {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--linen-900);
  margin-bottom: 12px;
}

.teacher__bio {
  font-size: 0.93rem;
  color: var(--linen-500);
  margin-bottom: 14px;
}

.teacher__list {
  font-size: 0.88rem;
  color: var(--linen-500);
  padding-left: 18px;
  margin-bottom: 18px;
}

.teacher__list li {
  list-style: disc;
  margin-bottom: 5px;
}

.teacher__list li::marker {
  color: var(--sage-400);
}

.teacher__quote {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  border-left: 3px solid var(--sage-500);
  padding: 14px 22px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--linen-700);
  margin-bottom: 18px;
  line-height: 1.6;
}

.teacher__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.teacher__soc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-900);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--sage-200);
  transition: all 300ms var(--ease);
}

.teacher__soc:hover {
  background: var(--sage-700);
  color: #fff;
  border-color: var(--sage-700);
  transform: translateY(-2px);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--bg-card);
}

.pricing__row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 0 auto;
}

.prcard {
  flex: 1 1 360px;
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(178, 206, 174, 0.12);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}

@media (max-width: 480px) {
  .prcard {
    padding: 24px 20px;
  }
}

.prcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.prcard--price {
  background: linear-gradient(165deg, #fff, var(--sage-50));
  border-color: var(--sage-200);
}

.prcard--details {
  background: var(--linen-50);
}

.prcard__price {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 8vw, 2.8rem);
  color: var(--sage-900);
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg,
      var(--sage-900) 0%,
      var(--sage-900) 40%,
      var(--gold-500) 50%,
      var(--sage-900) 60%,
      var(--sage-900) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: priceShimmer 4s ease-in-out infinite;
}

@keyframes priceShimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.prcard__price small {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--linen-500);
}

.prcard__name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--linen-900);
  margin-bottom: 18px;
}

.prcard__feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.prcard__feat {
  font-size: 0.88rem;
  color: var(--linen-500);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.prcard__feat i {
  color: var(--sage-500);
  margin-top: 4px;
  font-size: 0.75rem;
}

.prcard__note {
  font-size: 0.78rem;
  color: var(--linen-400);
}

.prcard__field {
  margin-bottom: 14px;
}

.prcard__field-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--linen-900);
  margin-bottom: 2px;
}

.prcard__field-label i {
  color: var(--sage-500);
  margin-right: 5px;
}

.prcard__field-val {
  font-size: 0.86rem;
  color: var(--linen-500);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: var(--bg-page);
}

.reviews__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.rcard {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 26px 30px;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(201, 165, 85, 0.08);
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
}

@media (max-width: 600px) {
  .rcard {
    padding: 20px;
  }
}

.rcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.rcard__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rcard__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-200), var(--terra-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-900);
  flex-shrink: 0;
  animation: avatarPulse 4s ease-in-out infinite;
}

@keyframes avatarPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(180, 206, 174, 0.4);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(180, 206, 174, 0);
  }
}

.rcard__stars {
  color: var(--gold-500);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.rcard__stars i {
  display: inline-block;
  animation: starTwinkle 2.5s ease-in-out infinite;
}

.rcard__stars i:nth-child(1) {
  animation-delay: 0s;
}

.rcard__stars i:nth-child(2) {
  animation-delay: 0.15s;
}

.rcard__stars i:nth-child(3) {
  animation-delay: 0.3s;
}

.rcard__stars i:nth-child(4) {
  animation-delay: 0.45s;
}

.rcard__stars i:nth-child(5) {
  animation-delay: 0.6s;
}

@keyframes starTwinkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.rcard__who {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--linen-900);
}

.rcard__body {
  font-size: 0.9rem;
  color: var(--linen-700);
  font-style: italic;
  line-height: 1.75;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--linen-50);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  border: 1px solid var(--linen-200);
  transition: box-shadow 300ms var(--ease);
}

.faq__item:hover {
  box-shadow: var(--sh-sm);
}

.faq__q {
  width: 100%;
  padding: 16px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--linen-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 280ms var(--ease);
}

.faq__q:hover {
  color: var(--sage-700);
}

.faq__chevron {
  font-size: 0.7rem;
  color: var(--sage-500);
  transition: transform 380ms var(--ease);
  flex-shrink: 0;
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms var(--ease), padding 420ms var(--ease);
  padding: 0 22px;
}

.faq__item.open .faq__a {
  max-height: 500px;
  padding: 0 22px 16px;
}

.faq__a p {
  font-size: 0.88rem;
  color: var(--linen-500);
  line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-final {
  background: linear-gradient(145deg, var(--linen-100), var(--blush-100), var(--sage-100));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--linen-900);
  margin-bottom: 12px;
}

.cta-final__text {
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.02rem;
  color: var(--linen-500);
}

.cta-final__contacts {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.cta-final__contacts a {
  font-weight: 600;
  color: var(--sage-900);
  transition: color 250ms var(--ease);
}

.cta-final__contacts a:hover {
  color: var(--sage-500);
}

.cta-final__sep {
  color: var(--linen-300);
}

/* ============================================
   FOOTER
   ============================================ */
.foot {
  background: var(--bg-card);
  padding: 44px 0 24px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--linen-500);
  border-top: 1px solid var(--linen-200);
}

.foot__heading {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--linen-900);
  margin-bottom: 6px;
}

.foot__row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.foot__link {
  color: var(--sage-700);
  font-weight: 600;
  transition: color 250ms var(--ease);
}

.foot__link:hover {
  color: var(--sage-500);
}

.foot__site {
  display: inline-block;
  margin-top: 6px;
  color: var(--sage-700);
  font-weight: 600;
  border-bottom: 1px dashed var(--sage-300);
}

.foot__copy {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--linen-200);
  font-size: 0.76rem;
  color: var(--linen-400);
  line-height: 1.6;
}