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

:root {
  --terra: #B5452A;
  --terra-light: #D4634A;
  --terra-deep: #8A3220;
  --saffron: #E8944A;
  --gold: #C9893A;
  --cream: #F9F3EA;
  --cream-dark: #EFE6D5;
  --parchment: #E8D9C0;
  --ink: #1C120A;
  --ink-soft: #3D2B1A;
  --olive: #4E6B3F;
  --olive-light: #6B8F5A;
  --dusty: #8C7660;
  --white: #FFFDF9;
  --tile-blue: #3A6B8A;
  --tile-navy: #1E3F5A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAVIGATION ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(249,243,234,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 5%;
  box-shadow: 0 1px 0 var(--parchment);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-logo span { color: var(--terra); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--terra-deep) !important; transform: translateY(-1px); }

.nav-dropdown { position: relative; }

.nav-dropdown-trigger { cursor: pointer; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(28,18,10,0.13);
  border: 1px solid var(--parchment);
  padding: 6px;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(4px);
  z-index: 50;
  /* invisible top padding acts as bridge so mouse doesn't lose hover */
  padding-top: 14px;
  margin-top: 8px;
}

/* pseudo bridge fills the invisible gap between trigger and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

/* visible arrow */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--parchment);
  border-top: 1px solid var(--parchment);
  rotate: 45deg;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block !important;
  padding: 11px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13.5px !important;
  font-weight: 500;
  color: var(--ink) !important;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown-item::after { display: none !important; }
.nav-dropdown-item:hover {
  background: var(--cream-dark);
  color: var(--terra) !important;
}


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

/* hide scroll hint */
.scroll-hint { display: none; }


/* ─── HERO ───────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 70%, rgba(181,69,42,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(232,148,74,0.15) 0%, transparent 50%);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--saffron);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--saffron);
}

.hero-headline strong {
  font-weight: 700;
  display: block;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,253,249,0.6);
  line-height: 1.8;
  margin-top: 28px;
  max-width: 380px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.btn-primary:hover { background: var(--terra-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(181,69,42,0.35); }

.btn-ghost {
  background: transparent;
  color: rgba(255,253,249,0.8);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,253,249,0.25);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost:hover { border-color: rgba(255,253,249,0.6); color: var(--white); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.1s forwards;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--saffron);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* HERO RIGHT */
.hero-right {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.azulejo-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(8, 1fr);
  opacity: 0.12;
}

.tile {
  border: 0.5px solid var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile svg { width: 60%; height: 60%; }

.hero-photo-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

/* === HERO CARROUSEL === */
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.dot.active {
  background: white;
}

.hero-quote-card {
  background: rgba(249,243,234,0.94);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 28px 32px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(232,148,74,0.2);
  opacity: 0;
  animation: fadeUp 0.9s ease 1.2s forwards;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 13px; color: var(--ink); }
.author-detail { font-size: 12px; color: var(--dusty); }

.stars { color: var(--saffron); font-size: 13px; margin-top: 2px; }

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-hint span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

.scroll-arrow {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ─── SECTION UTILITIES ──────────────────────────────────────────── */
section { padding: 100px 5%; scroll-margin-top: 72px; }
.section-alt { background: var(--white); }

/* ─── SCROLL OVERLAP ─────────────────────────────────────────────── */
section, footer {
  position: sticky;
  top: 0;
  min-height: 100vh;
  background: var(--cream);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}

#hero         { z-index: 1; border-radius: 0; box-shadow: none; }
#about        { z-index: 2; position: relative; min-height: auto; }
#products     { z-index: 3; position: relative; min-height: auto; }
#course       { z-index: 4; position: relative; min-height: auto; }
#testimonials { z-index: 5; }
#free-lesson  { z-index: 6; position: relative; min-height: auto; border-radius: 0 0 24px 24px; }
#faq          { position: relative; min-height: auto; border-radius: 0; box-shadow: none; z-index: 7; }
footer        { position: relative; min-height: auto; border-radius: 0; z-index: 7; }

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--terra);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

.section-title em { font-style: italic; color: var(--terra); }
.section-title strong { font-weight: 700; }

/* ─── ABOUT SECTION ──────────────────────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 60px;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 30px;
  scroll-margin-top: 80px;
}

.about-visual  { grid-column: 1; grid-row: 1 / 3; }
.about-intro   { grid-column: 2; grid-row: 1; padding-bottom: 24px; }
.about-content { grid-column: 2; grid-row: 2; }
.about-timeline { grid-column: 1 / -1; grid-row: 3; margin-top: 48px; }

.about-timeline {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  padding-top: 16px;
  gap: 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  top: 37px;
  left: 5px;
  right: 5px;
  height: 2px;
  background: #B5452A;
  opacity: 0.2;
}

.about-footer {
  grid-column: 1 / -1;
  text-align: left;
}

.about-visual {
  position: relative;
  max-width: 340px;
  justify-self: center;
}

.about-photo-frame {
  background: var(--parchment);
  border-radius: 4px 4px 4px 60px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
}

.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(181,69,42,0.15) 100%);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--terra);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(181,69,42,0.4);
  z-index: 2;
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.3;
  margin-top: 4px;
}

.about-tile-accent {
  position: absolute;
  top: 30px;
  left: -30px;
  width: 80px;
  height: 80px;
  z-index: 3;
}

.about-content { }

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  line-height: 1.6;
  margin: 24px 0 20px;
}

.about-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 16px;
}

.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #B5452A;
  flex-shrink: 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.timeline-year {
  font-size: 15px;
  font-weight: 700;
  color: #B5452A;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 120px;
}

.btn-outline-terra {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border: 2px solid #B5452A;
  color: #B5452A;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline-terra:hover {
  background: #B5452A;
  color: #fff;
  transform: translateY(-2px);
}

/* ─── PRODUCTS ───────────────────────────────────────────────────── */
#products {
  background: var(--ink);
  padding: 100px 5%;
  overflow: hidden;
}

#products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(181,69,42,0.15) 0%, transparent 60%);
}

#products .section-label { color: var(--saffron); }
#products .section-label::before { background: var(--saffron); }
#products .section-title { color: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(7, auto);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.product-card {
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: grid;
  grid-row: span 7;
  grid-template-rows: subgrid;
  align-content: start;
}

.product-card:hover { transform: none; }

.product-card.card-video {
  background: var(--terra);
}

.product-card.card-group {
  background: var(--cream-dark);
}

.product-card.card-private {
  background: var(--saffron);
  border: 1px solid rgba(255,255,255,0.08);
}

.product-card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  opacity: 0.07;
}

.product-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.card-video .product-num,
.card-private .product-num { color: white; }
.card-group .product-num { color: var(--ink); }

.product-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,253,249,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(255,253,249,0.9);
}

.product-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 14px;
}

.card-video .product-name { color: white; }
.card-private .product-name { color: var(--ink); }
.card-group .product-name { color: var(--ink); }

.product-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 28px;
}

.card-video .product-desc { color: rgba(255,253,249,0.7); }
.card-private .product-desc { color: rgba(28,18,10,0.7); }
.card-group .product-desc { color: var(--ink-soft); }

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.card-video .product-price { color: var(--saffron); }
.card-private .product-price { color: var(--ink); }
.card-group .product-price { color: var(--terra); }

.product-price-note {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
  margin-top: 4px;
  margin-bottom: 28px;
}

.card-video .product-price-note { color: white; }
.card-private .product-price-note { color: rgba(28,18,10,0.85); }
.card-group .product-price-note { color: var(--dusty); }

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  align-self: start;
  justify-self: start;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}

/* Cursus volgen: saffron (kleur kolom 3) */
.card-video .product-cta {
  background: var(--saffron);
  color: var(--ink);
}

/* Inschrijven: terracotta rood (kleur kolom 1) */
.card-group .product-cta {
  background: var(--terra);
  color: white !important;
}

/* Les boeken: crème (kleur kolom 2) */
.card-private .product-cta {
  background: var(--cream-dark);
  color: var(--ink);
}

/* Cursus volgen (saffron): lichter bij hover */
.card-video .product-cta:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,148,74,0.45);
}

/* Inschrijven (terra rood): lichter rood bij hover */
.card-group .product-cta:hover {
  background: var(--terra-light) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(181,69,42,0.3);
}

/* Les boeken (crème): warmere crème bij hover */
.card-private .product-cta:hover {
  background: #f5efe3;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,253,249,0.15);
}

.product-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.product-features li {
  font-size: 13px;
  font-weight: 300;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.card-group .product-features li { border-bottom-color: rgba(0,0,0,0.06); color: var(--ink-soft); }
.card-video .product-features li { color: rgba(255,253,249,0.85); border-bottom-color: rgba(255,255,255,0.1); }
.card-private .product-features li { color: rgba(255,253,249,0.85); }

.product-features li::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-group .product-features li::before {
  background: rgba(181,69,42,0.1);
  color: var(--terra);
}

/* ─── COURSE OVERVIEW ────────────────────────────────────────────── */
#course {
}

.course-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}

.course-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--dusty);
  line-height: 1.9;
  margin-top: 24px;
}

.level-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.level-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}

.level-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid;
}

.level-bubble.a1 { background: rgba(232,148,74,0.12); border-color: var(--gold); color: var(--gold); }
.level-bubble.a2 { background: rgba(212,99,74,0.12); border-color: var(--terra-light); color: var(--terra-light); }
.level-bubble.b1 { background: rgba(181,69,42,0.12); border-color: var(--terra); color: var(--terra); }

.level-label { font-size: 10px; color: var(--dusty); letter-spacing: 1px; font-weight: 500; }

.level-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--parchment), var(--parchment));
  margin: 0 -4px;
  margin-bottom: 22px;
  position: relative;
}

.level-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--olive-light), var(--saffron), var(--terra));
  animation: progressLine 3s ease 1s forwards;
  width: 0;
}

@keyframes progressLine { to { width: 100%; } }

.modules-accordion { display: flex; flex-direction: column; gap: 12px; }

.module-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--parchment);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.module-item:hover { box-shadow: 0 4px 24px rgba(181,69,42,0.08); }

.module-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
}

.module-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--parchment);
  min-width: 36px;
  line-height: 1;
}

.module-info { flex: 1; }

.module-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 3px;
}

.module-meta { font-size: 12px; color: var(--dusty); }

.module-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-a1 { background: rgba(78,107,63,0.1); color: var(--olive); }
.badge-a2 { background: rgba(232,148,74,0.15); color: var(--gold); }
.badge-b1 { background: rgba(181,69,42,0.1); color: var(--terra); }

.module-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}

.module-item.open .module-toggle {
  transform: rotate(180deg);
  background: var(--terra);
  color: white;
}

.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.module-item.open .module-body { max-height: 500px; }

.module-lessons {
  padding: 0 28px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.lesson-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 400;
}

.lesson-chip-icon { font-size: 14px; flex-shrink: 0; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────── */
#testimonials {
  background: var(--terra);
  color: white;
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 3%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 400px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-label { justify-content: center; color: rgba(255,253,249,0.6); }
.testimonials-header .section-label::before { background: rgba(255,253,249,0.4); }
.testimonials-header .section-title { color: white; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,253,249,0.08);
  border: 1px solid rgba(255,253,249,0.12);
  border-radius: 20px;
  padding: 36px 32px;
  transition: background 0.3s;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover { background: rgba(255,253,249,0.13); }

.t-photo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid rgba(255,253,249,0.25);
  flex-shrink: 0;
}

.t-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 28px;
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,253,249,0.12);
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.t-name { font-weight: 600; font-size: 14px; color: white; }
.t-detail { font-size: 12px; color: rgba(255,253,249,0.55); margin-top: 2px; }

/* ─── PRICING ────────────────────────────────────────────────────── */
#pricing {
  background: var(--cream-dark);
}

.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-label { justify-content: center; }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.toggle-label { font-size: 14px; font-weight: 500; color: var(--dusty); }
.toggle-label.active { color: var(--ink); }

.toggle-track {
  width: 52px;
  height: 28px;
  background: var(--terra);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-thumb {
  position: absolute;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.toggle-track.monthly .toggle-thumb { transform: translateX(24px); }

.save-badge {
  background: var(--olive);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1.5px solid var(--parchment);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(181,69,42,0.1); }

.plan-card.featured {
  border-color: var(--terra);
  background: var(--ink);
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(181,69,42,0.25);
}

.plan-card.featured:hover { transform: translateY(-16px); }

.plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.featured .plan-name { color: white; }

.plan-tagline { font-size: 13px; color: var(--dusty); margin-bottom: 28px; }
.featured .plan-tagline { color: rgba(255,253,249,0.55); }

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.featured .plan-price { color: var(--saffron); }

.plan-period { font-size: 12px; color: var(--dusty); margin-bottom: 32px; }
.featured .plan-period { color: rgba(255,253,249,0.45); }

.plan-features { list-style: none; margin-bottom: 32px; }

.plan-features li {
  font-size: 13.5px;
  padding: 9px 0;
  border-bottom: 1px solid var(--cream);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.featured .plan-features li {
  border-bottom-color: rgba(255,255,255,0.07);
  color: rgba(255,253,249,0.75);
}

.plan-features li::before {
  content: '✓';
  color: var(--olive);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.featured .plan-features li::before { color: var(--saffron); }

.plan-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-align: center;
  display: block;
  text-decoration: none;
}

.plan-btn-outline {
  background: transparent;
  border: 1.5px solid var(--parchment);
  color: var(--ink);
}

.plan-btn-outline:hover { border-color: var(--terra); color: var(--terra); }

.plan-btn-fill {
  background: var(--terra);
  color: white;
}

.plan-btn-fill:hover { background: var(--terra-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(181,69,42,0.35); }

/* ─── FREE CTA / LEAD GEN ────────────────────────────────────────── */
#free-lesson {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 5%;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.4; }
}

.free-content { }

.free-lessons-list {
  list-style: none;
  margin: 32px 0;
}

.free-lesson-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
  cursor: pointer;
  transition: gap 0.2s;
}

.free-lesson-item:hover { gap: 20px; }

.lesson-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--parchment);
  min-width: 28px;
}

.lesson-info { flex: 1; }
.lesson-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.lesson-duration { font-size: 12px; color: var(--dusty); margin-top: 2px; }
.lesson-play { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.email-capture {
  display: flex;
  gap: 0;
  margin-top: 36px;
  background: var(--cream-dark);
  border-radius: 50px;
  padding: 6px;
  border: 1.5px solid var(--parchment);
}

.email-capture input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
}

.email-capture input::placeholder { color: var(--dusty); }

.email-capture button {
  background: var(--terra);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}

.email-capture button:hover { background: var(--terra-light); }

.free-disclaimer {
  font-size: 11px;
  color: var(--dusty);
  margin-top: 12px;
  text-align: center;
}

/* ─── FAQ ────────────────────────────────────────────────────────── */
#faq {
  padding: 100px max(5%, calc(50% - 390px));
}

#faq .section-label,
#faq .section-title { text-align: center; justify-content: center; }
#faq .section-label { justify-content: center; }

.faq-list { margin-top: 52px; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1.5px solid var(--parchment);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--terra); }

.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: all 0.3s;
  color: var(--terra);
}

.faq-item.open .faq-icon {
  background: var(--terra);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--dusty);
  line-height: 1.9;
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,253,249,0.6);
  padding: 60px 5% 40px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-main-left { flex-shrink: 0; }

.footer-main-center {
  flex: 1;
  text-align: center;
}

.footer-main-right { flex-shrink: 0; }

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  color: rgba(255,253,249,0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social-link:hover { color: var(--terra); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,253,249,0.08);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 12px; }

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,253,249,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,253,249,0.7); }

/* ─── PHOTO STRIP ────────────────────────────────────────────────── */
.photo-strip {
  display: flex;
  height: 320px;
  overflow: hidden;
}

.photo-strip-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-strip-item:hover { flex: 2.2; }

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: saturate(0.85);
}

.photo-strip-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.photo-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,18,10,0.6) 0%, transparent 50%);
  transition: opacity 0.3s;
}

.photo-strip-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.photo-strip-item:hover .photo-strip-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .photo-strip { height: 200px; }
  .photo-strip-item:nth-child(4),
  .photo-strip-item:nth-child(5) { display: none; }
}

/* ─── FREE VISUAL with image ─────────────────────────────────────── */
.free-visual {
  border-radius: 4px 4px 60px 4px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.free-play {
  background: rgba(255,253,249,0.18);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  border: 2px solid rgba(255,253,249,0.35);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
  position: relative;
}

.free-play:hover {
  background: rgba(255,253,249,0.3);
  transform: scale(1.1);
}

.free-play::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255,253,249,0.18);
  animation: pulse 2.5s ease infinite;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.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; }

/* ─── MOBILE NAV DRAWER ──────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 200;
  padding: 72px 40px 32px;
  transform: translateX(110%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--terra); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,18,10,0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 56px auto 0; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
  /* footer-top removed */
}

@media (max-width: 768px) {
  /* ── Reset scroll-overlay effect on mobile ── */
  section, footer {
    min-height: unset !important;
    position: relative !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* ── Nav ── */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav { background: rgba(249,243,234,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--parchment); padding: 14px 5%; }

  /* ── Hero ── */
  #hero { grid-template-columns: 1fr; margin-top: 0; padding: 0; }
  .hero-right { display: none; }
  .hero-left {
    justify-content: flex-start;
    padding: 96px 7% 40px;
    min-height: auto;
  }
  .hero-actions .btn-primary { white-space: nowrap; font-size: 14px; padding: 13px 22px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; }

  /* ── About ── */
  #about {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    padding: 40px 6% 48px;
  }
  .about-intro   { order: 1; grid-column: auto; grid-row: auto; padding-bottom: 0; }
  .about-visual  { order: 2; grid-column: auto; grid-row: auto; max-width: 280px; margin: 0 auto; }
  .about-content { order: 3; grid-column: auto; grid-row: auto; }
  .about-timeline { order: 4; grid-column: auto; grid-row: auto; margin-top: 8px; }
  .about-badge { display: none; }

  /* ── Timeline: vertical stacked list ── */
  .about-timeline {
    flex-direction: column;
    gap: 0;
    padding-top: 8px;
    margin-top: 8px;
  }
  .about-timeline::before {
    top: 5px;
    bottom: 5px;
    left: 4px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 0 0 20px 0;
  }
  .timeline-dot { margin-bottom: 0; margin-top: 3px; flex-shrink: 0; }
  .timeline-year { margin-bottom: 2px; font-size: 13px; }
  .timeline-desc { max-width: none; font-size: 13px; }

  /* ── Products ── */
  #products { padding: 64px 6%; }

  /* ── Course ── */
  .course-header { grid-template-columns: 1fr; gap: 32px; }
  .levels-container {
    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch !important;
  }
  .level-node {
    flex: none !important;
    min-width: unset !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px !important;
  }
  .level-arrow {
    justify-content: center !important;
    padding: 4px 0 !important;
    font-size: 20px !important;
    transform: rotate(90deg);
  }
  .course-cta {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px !important;
    align-items: flex-start !important;
    margin-top: 24px !important;
  }
  .course-cta > div p { font-size: 13px !important; line-height: 1.6 !important; }
  .course-cta > div > p:first-child { font-size: 13px !important; }
  .course-cta .btn-primary {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    padding: 12px !important;
  }

  /* ── Coming-soon overlay email row ── */
  .overlay-email-row {
    flex-direction: column !important;
    border-radius: 16px !important;
    gap: 8px !important;
  }
  .overlay-email-row input {
    padding: 12px 16px !important;
  }
  .overlay-email-row button {
    border-radius: 10px !important;
    width: 100% !important;
    padding: 13px !important;
  }

  /* ── Testimonials ── */
  .testimonials-track { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  /* ── Free lesson ── */
  #free-lesson { grid-template-columns: 1fr; gap: 40px; padding-bottom: 32px !important; }
  #faq { padding-top: 32px !important; }
  .free-visual { max-width: 100%; }

  /* ── Footer ── */
  footer { padding: 48px 6% 32px; }
  .footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 20px 0;
    align-items: center;
  }
  .footer-main-center {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: left;
  }
  .footer-main-left { grid-column: 1; grid-row: 2; align-self: center; }
  .footer-main-right { grid-column: 2; grid-row: 2; align-self: center; }
  .footer-social { justify-content: flex-end; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
  section { padding: 64px 5%; }
  .hero-headline { font-size: 46px; }
  .hero-stats { gap: 20px; }
  .email-capture { flex-direction: column; border-radius: 16px; padding: 12px; gap: 8px; }
  .email-capture input { padding: 10px 16px; }
  .email-capture button { border-radius: 10px; }
  .about-timeline { gap: 0; }
  .footer-legal { gap: 12px; }
}

