/* =================================================================
   TAUCHSCHULE WIEN — Balanced Design System
   Predominantly light · dark accents at hero, process, final-CTA,
   footer, modal. Ocean navy brand. Light-blue gradient CTAs.
   Lime highlight accents. Bold serif display. Pill buttons.
   ================================================================= */

:root {
  /* ============ DARK surfaces (hero / process / final-cta / footer / modal) ============ */
  --bg-deep:    #061529;
  --bg-base:    #0b1e38;
  --bg-raised:  #13294a;
  --bg-lifted:  #1a3355;
  --bg-accent:  #0a2547;

  /* ============ LIGHT surfaces (most of the site) ============ */
  --bg-light:         #ffffff;
  --bg-light-alt:     #eef4fa;
  --bg-light-card:    #ffffff;
  --bg-light-hover:   #f7fafd;

  /* ============ Brand ============ */
  --navy:         #1a3c7c;
  --navy-dark:    #0f2a5e;
  --blue-light:   #7ec9e8;
  --blue-mid:     #3a8ed4;
  --blue-deep:    #1f5a9e;
  --blue-gradient: linear-gradient(135deg, #7ec9e8 0%, #3a8ed4 100%);
  --blue-gradient-deep: linear-gradient(135deg, #3a8ed4 0%, #1a3c7c 100%);

  /* ============ Accents ============ */
  --lime:        #6ed944;
  --lime-dark:   #4cbb26;
  --lime-soft:   #cdf3b8;

  /* ============ Text on dark ============ */
  --text-on-dark:        rgba(255, 255, 255, 0.92);
  --text-on-dark-muted:  rgba(255, 255, 255, 0.62);
  --text-on-dark-faint:  rgba(255, 255, 255, 0.42);
  --text-on-dark-whisp:  rgba(255, 255, 255, 0.26);

  /* ============ Text on light ============ */
  --ink:                 #0f1a2e;
  --ink-soft:            #2a3d5e;
  --text:                #3d4d6b;
  --text-muted:          #6a7893;
  --text-faint:          #94a0b5;
  --white:               #ffffff;

  /* legacy aliases (keep old text colors resolving) */
  --text-light:          rgba(255, 255, 255, 0.85);
  --text-light-muted:    rgba(255, 255, 255, 0.52);

  /* ============ Lines ============ */
  --line:              rgba(15, 26, 46, 0.08);
  --line-strong:       rgba(15, 26, 46, 0.16);
  --line-on-dark:      rgba(255, 255, 255, 0.08);
  --line-on-dark-str:  rgba(255, 255, 255, 0.16);
  --line-accent:       rgba(58, 142, 212, 0.3);

  /* ============ Radii ============ */
  --r-pill:    999px;
  --r-card:    24px;
  --r-panel:   28px;
  --r-input:   14px;
  --r-small:   10px;

  /* ============ Shadows ============ */
  --shadow-soft:    0 6px 20px -6px rgba(15, 26, 46, 0.1);
  --shadow-card:    0 10px 30px -12px rgba(15, 26, 46, 0.14), 0 0 0 1px var(--line);
  --shadow-hover:   0 24px 50px -16px rgba(15, 26, 46, 0.2), 0 0 0 1px var(--line-strong);
  --shadow-button:  0 12px 32px -8px rgba(126, 201, 232, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  --shadow-dark-card: 0 20px 40px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--line-on-dark);

  /* ============ Typography ============ */
  --serif:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ============ Motion ============ */
  --ease: cubic-bezier(0.22, 0.8, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-deep);
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; }

em {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
}

/* =========================================
   Layout utilities
   ========================================= */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 24px;
  display: inline-block;
}

.section-eyebrow.light { color: var(--blue-light); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.section-title.light { color: var(--white); }

.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--blue-mid);
}

.section-title.light em { color: var(--blue-light); }

.section-lede {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
  font-weight: 400;
}

.section-lede.light { color: var(--text-on-dark-muted); }

.section-body {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 620px;
}

.section-body + .section-body { margin-top: 18px; }

/* =========================================
   Buttons — pill, title case
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition: all 0.35s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--blue-gradient);
  color: var(--ink);
  border: none;
  box-shadow: var(--shadow-button);
}

.btn-primary::after {
  content: '→';
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 20px 45px -10px rgba(126, 201, 232, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Ghost button on light surfaces */
.light-surface .btn-ghost,
section:not(.hero):not(.process):not(.final-cta) .btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-strong);
}

.light-surface .btn-ghost:hover {
  background: var(--bg-light-alt);
  border-color: var(--blue-mid);
  color: var(--navy-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-mid);
  border: 1px solid var(--line-accent);
}

.btn-secondary:hover {
  background: rgba(58, 142, 212, 0.08);
  border-color: var(--blue-mid);
}

.btn-full { width: 100%; }

.btn-whatsapp {
  background: linear-gradient(135deg, #3ee07b 0%, #25a04f 100%);
  color: var(--ink);
  border: none;
  font-weight: 600;
  box-shadow: 0 12px 32px -8px rgba(62, 224, 123, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-whatsapp::after { content: none; }

.btn-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* =========================================
   TOP BAR — dark
   ========================================= */
/* Die Bar hat dieselbe Farbe wie der Hero-Gradient darunter (--bg-deep). Ohne
   Kante verschmelzen beide zu einem hohen Block, in dem der mittig sitzende
   Text optisch nach oben rutscht. Die Haarlinie grenzt die Bar wieder ab. */
.top-bar {
  background: var(--bg-deep);
  color: var(--text-on-dark-muted);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Feste Höhe statt vertikalem Padding: die Bar-Höhe hängt damit nicht mehr an
   den Font-Metriken des Inhalts (Zoom, Minimum-Schriftgröße, Fallback-Font),
   und align-items zentriert den Inhalt garantiert in der Mitte. */
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 52px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-bar-text {
  color: var(--text-on-dark-faint);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  font-weight: 300;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-link {
  color: var(--text-on-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  transition: color 0.25s var(--ease);
}

.top-bar-link:hover { color: var(--blue-light); }
.top-bar-link svg { flex-shrink: 0; opacity: 0.7; }

/* Desktop zeigt die volle E-Mail-Adresse, das Handy das Kurzlabel — siehe
   Mobile-Block. Der Link-Text bleibt in beiden Fällen echt (kein reines Icon),
   damit Screenreader den Zweck vorlesen können. */
.tb-long { display: inline; }
.tb-short { display: none; }

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: var(--line-on-dark-str);
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid var(--line-on-dark-str);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--blue-light);
  font-weight: 500;
  background: rgba(126, 201, 232, 0.08);
}

/* =========================================
   NAV — transparent over hero, white+blur on scroll
   ========================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px -12px rgba(15, 26, 46, 0.1);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  padding: 4px 0;
}

/* Mark-only logo on dark hero → pure white via filter, swaps to native navy
   once nav becomes white-bg on scroll. Image is trim-tight (no internal
   padding), CSS handles all spacing. */
/* Das Logo-PNG hat einen transparenten Rand von 4,5 % der Bildbreite (sichtbarer
   Inhalt: 18…378 von 400 px). Ohne Ausgleich stünde die sichtbare Marke ~2 px
   rechts vom Seitenraster — Top-Bar-Text, Hero-Titel und Footer sitzen alle auf
   derselben Kante. Der negative Rand zieht sie exakt darauf zurück; er hängt an
   der jeweiligen Render-Höhe, deshalb pro Regel eigens gesetzt. */
.nav-logo-img {
  height: 48px;
  margin-left: calc(48px * -0.045);
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease), height 0.4s var(--ease);
}

.nav.scrolled .nav-logo-img {
  height: 40px;
  margin-left: calc(40px * -0.045);
  filter: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-on-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  transition: color 0.25s var(--ease);
}

.nav.scrolled .nav-links > li > a { color: var(--ink-soft); }

.nav-links > li > a:hover { color: var(--blue-light); }
.nav.scrolled .nav-links > li > a:hover { color: var(--blue-mid); }

.nav-dropdown-caret {
  width: 10px;
  height: 6px;
  display: inline-block;
  fill: currentColor;
  opacity: 0.5;
  transition: transform 0.3s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-caret { transform: rotate(180deg); opacity: 1; }

/* Unsichtbare Hover-Brücke: schließt die Lücke zwischen Nav-Link und Panel.
   Ohne sie verliert der Cursor auf dem Weg nach unten :hover und das Menü
   klappt zu, bevor man einen Eintrag treffen kann. */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -40px;
  right: -40px;
  height: 18px;
  display: none;
}

.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after { display: block; }

.nav-sub {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  list-style: none;
  min-width: 290px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 10px;
  box-shadow: 0 30px 70px -18px rgba(15, 26, 46, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.3s var(--ease);
}

.nav-dropdown:hover .nav-sub,
.nav-dropdown:focus-within .nav-sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-sub li { list-style: none; }

.nav-sub a {
  display: block;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-small);
  transition: all 0.25s var(--ease);
}

.nav-sub a:hover {
  background: var(--bg-light-alt);
  color: var(--navy);
}

.nav-sub a small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ── Mega-Menü (Kurse): drei Spalten, damit alle Kurse erreichbar sind ── */
.nav-sub--mega {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 4px 18px;
  padding: 22px 24px 18px;
  min-width: 0;
  width: max-content;
  max-width: min(920px, calc(100vw - 48px));
  left: -24px;
  right: auto;
}

/* Auf schmaleren Desktops würde das linksbündige Panel rechts rausragen —
   dort am rechten Rand des Menüpunkts ausrichten. */
@media (max-width: 1240px) {
  .nav-sub--mega { left: auto; right: -20px; }
}

.nav-sub--mega ul { list-style: none; }

.nav-mega-title {
  font-family: var(--font-body, inherit);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 0 12px 8px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

.nav-sub--mega a {
  padding: 8px 12px;
  font-size: 0.875rem;
}

.nav-mega-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.nav-mega-foot a {
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--blue-mid);
  border-radius: var(--r-small);
  transition: all 0.25s var(--ease);
}

.nav-mega-foot a:hover { background: var(--bg-light-alt); }

.nav-cta {
  padding: 12px 24px;
  background: var(--blue-gradient);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 24px -6px rgba(126, 201, 232, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta::after {
  content: '→';
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 30px -6px rgba(126, 201, 232, 0.55);
}

.nav-cta:hover::after { transform: translateX(3px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav.scrolled .nav-toggle span { background: var(--ink); }

/* =========================================
   HERO — dark (stays dark for drama)
   ========================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
  /* Muss exakt der Nav-Höhe entsprechen, damit der Hero direkt unter der
     Top-Bar beginnt: 16px Padding + 56px Logo + 16px Padding + 1px Border.
     War der Wert zu klein, blieb darüber ein Streifen Body-Hintergrund stehen —
     in derselben Farbe wie die Top-Bar, die dadurch zu hoch wirkte. */
  margin-top: -89px;
  padding: 130px 0 80px;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}

.hero-media img { animation: heroKen 24s var(--ease) forwards; }

@keyframes heroKen {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 41, 0.35) 0%, rgba(6, 21, 41, 0.1) 35%, rgba(6, 21, 41, 0.92) 100%),
    linear-gradient(90deg, rgba(6, 21, 41, 0.65) 0%, rgba(6, 21, 41, 0.1) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 18px 8px 14px;
  background: rgba(126, 201, 232, 0.1);
  border: 1px solid rgba(126, 201, 232, 0.25);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: heroPulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(110, 217, 68, 0.75), 0 0 0 4px rgba(110, 217, 68, 0.15);
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 920px;
  margin-bottom: 18px;
}

.hero-title em {
  color: var(--blue-light);
  font-style: italic;
  font-weight: 300;
  font-family: var(--serif);
}

.hero-lede {
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
  color: var(--text-on-dark-muted);
  font-size: 0.86rem;
  font-weight: 300;
}

.hero-trust-mini-stars { color: #ffc555; letter-spacing: 1.5px; font-size: 0.95rem; }
.hero-trust-mini-divider { width: 1px; height: 14px; background: var(--line-on-dark-str); }
.hero-trust-mini strong { font-weight: 600; color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-on-dark-faint);
}

/* Personal-connection card — instructor inside hero-content (above the fold) */
.hero-instructor-card {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  padding: 8px 20px 8px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  color: var(--white);
  text-decoration: none;
  max-width: 100%;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 14px 32px -16px rgba(0, 0, 0, 0.45);
}

.hero-instructor-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(126, 201, 232, 0.45);
  box-shadow: 0 22px 44px -16px rgba(126, 201, 232, 0.35);
}

.hero-instructor-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 25%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.hero-instructor-card-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--sans);
}

.hero-instructor-card-eyebrow {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-instructor-card-name {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: -0.01em;
}

.hero-instructor-card-meta {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.hero-instructor-card-meta em {
  font-style: normal;
  font-weight: 600;
  color: var(--blue-light);
}

.hero-instructor-card-arrow {
  font-size: 1.2rem;
  color: var(--blue-light);
  margin-left: 4px;
  transition: transform 0.3s var(--ease);
}

.hero-instructor-card:hover .hero-instructor-card-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-instructor-card {
    margin: 0 0 18px;
    gap: 12px;
    padding: 8px 18px 8px 8px;
  }
  .hero-instructor-card img { width: 52px; height: 52px; border-width: 1.5px; }
  .hero-instructor-card-name { font-size: 1.02rem; }
  .hero-instructor-card-meta { font-size: 0.74rem; }
  .hero-instructor-card-eyebrow { font-size: 0.6rem; }
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

.hero-scroll-text {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Sub-page hero */
.hero.hero-sub {
  min-height: 52vh;
  padding: 140px 0 70px;
}

.hero.hero-sub .hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}

.hero.hero-sub .hero-lede { max-width: 660px; margin-bottom: 28px; }

.hero-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-on-dark-faint);
  margin-bottom: 24px;
}

.hero-breadcrumbs a { color: var(--text-on-dark-muted); transition: color 0.25s var(--ease); }
.hero-breadcrumbs a:hover { color: var(--blue-light); }
.hero-breadcrumb-sep { color: var(--text-on-dark-whisp); }

/* =========================================
   TRUST STRIP — light
   ========================================= */
.trust-strip {
  background: var(--bg-light);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.trust-strip-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  flex-shrink: 0;
}

.trust-strip-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 40px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.trust-item-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light-alt);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--line-accent);
}

.trust-item-stars { color: #ffa820; font-size: 1rem; letter-spacing: 1.5px; }

/* =========================================
   FEATURES + PARTNERS — editorial layout
   ========================================= */
.features {
  padding: 120px 0 100px;
  background: var(--bg-light);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.features-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.features-aside {
  position: relative;
}

.features-aside-media {
  position: sticky;
  top: 120px;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
  background: var(--bg-deep);
}

.features-aside-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.features-aside-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 41, 0.1) 0%, rgba(6, 21, 41, 0.4) 50%, rgba(6, 21, 41, 0.92) 100%);
}

.features-aside-quote {
  position: absolute;
  inset: auto 28px 32px 28px;
  color: var(--white);
}

.features-aside-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.features-aside-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}

.features-aside-author {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.features-content {
  padding-top: 8px;
}

.features-lede {
  margin-bottom: 56px;
  max-width: 520px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}

.feature-row:last-child { border-bottom: 1px solid var(--line); }

.feature-row:hover { padding-left: 8px; }

.feature-row-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--blue-mid);
  letter-spacing: 0.04em;
  padding-top: 4px;
  position: relative;
}

.feature-row-num span {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--blue-mid);
}

.feature-row-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}

.feature-row-title em {
  font-style: italic;
  color: var(--blue-deep);
  font-weight: 400;
}

.feature-row-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
}

.features-divider {
  margin: 80px 0 48px;
  height: 1px;
  background: var(--line);
}

@media (max-width: 900px) {
  .features { padding: 90px 0 70px; }
  .features-inner { padding: 0 24px; }
  .features-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-aside-media {
    position: static;
    aspect-ratio: 16 / 11;
    max-height: 380px;
  }
  .features-aside-quote { inset: auto 22px 24px 22px; }
  .features-aside-text { font-size: 1.18rem; }
  .features-lede { margin-bottom: 36px; }
  .feature-row {
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 22px 0;
  }
  .feature-row-title { font-size: 1.25rem; }
  .feature-row-desc { font-size: 0.95rem; }
}

.features-partners { text-align: center; }

.features-partners-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 40px;
}

.features-partners-grid {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 150px;
  min-width: 140px;
  max-width: 220px;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.partner-logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.partner-logo-google-img { height: 56px; }

.partner-cap {
  font-size: 0.82rem;
  color: var(--text-faint);
  letter-spacing: 0.01em;
  font-weight: 400;
}

.partner-stars { color: #ffa820; letter-spacing: 1px; margin-right: 2px; }

/* SSI: italic red + black text */
.partner-ssi {
  color: #2b3341;
  font-size: 1.3rem;
  gap: 0;
  flex-direction: column;
  height: auto;
  font-weight: 700;
}

.partner-ssi-mark {
  color: #e3142d;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.partner-ssi-sub {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2b3341;
  margin-top: 1px;
}

/* DAN: red flag badge with white plus mark */
.partner-dan {
  background: linear-gradient(180deg, #a51b26 0%, #7a0c14 100%);
  color: white;
  padding: 10px 16px;
  font-size: 1.1rem;
  border-radius: 3px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(122, 12, 20, 0.3);
  gap: 6px;
}

.partner-dan .dan-mark {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 0.75;
  color: #fff;
  margin-right: 2px;
}

/* Sportunion: "SPORT" + "UNION" with orange U */
.partner-union {
  color: #2b3341;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex-direction: column;
  height: auto;
  gap: 0;
  align-items: flex-start;
}

.partner-union-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.partner-union-u {
  color: #e87722;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

/* =========================================
   INTENT — editorial photo cards
   ========================================= */
.intent {
  padding: 120px 0 80px;
  background: var(--bg-light-alt);
}

.intent-head {
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 48px;
  text-align: center;
}

.intent-lede {
  max-width: 580px;
  margin: 0 auto;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.intent-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--bg-light-card);
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  font-family: inherit;
  padding: 0;
  color: inherit;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.intent-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.intent-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.intent-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.intent-card:hover .intent-card-media img { transform: scale(1.05); }

.intent-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 41, 0) 50%, rgba(6, 21, 41, 0.55) 100%);
}

.intent-card-num {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.12);
}

.intent-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 30px 22px;
  flex: 1;
}

.intent-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.intent-card-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}

.intent-card-title em {
  font-style: italic;
  color: var(--blue-deep);
  font-weight: 400;
}

.intent-card-desc {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.intent-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 30px 28px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-deep);
}

.intent-card-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-gradient);
  color: var(--ink);
  font-size: 1.05rem;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 6px 16px -6px rgba(58, 142, 212, 0.5);
}

.intent-card:hover .intent-card-cta-arrow { transform: translateX(5px); }

@media (max-width: 1000px) {
  .intent-grid { grid-template-columns: 1fr; gap: 22px; padding: 0 24px; }
  .intent-card { min-height: 0; }
  .intent-head { padding: 0 24px; margin-bottom: 44px; }
}

/* =========================================
   BERATER — chat-style advisor
   ========================================= */
.berater {
  padding: 110px 0;
  background: var(--bg-light-alt);
}

.berater-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.berater-head {
  text-align: center;
  margin-bottom: 40px;
}

.berater-lede {
  max-width: 520px;
  margin: 0 auto;
}

.berater-chat {
  background: var(--bg-light-card);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.berater-chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--bg-deep);
  color: var(--white);
}

.berater-chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blue-gradient);
}

.berater-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.berater-chat-meta { display: flex; flex-direction: column; gap: 2px; }

.berater-chat-name {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.berater-chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 500;
}

.berater-chat-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: bDot 1.6s ease-in-out infinite;
}

@keyframes bDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.berater-chat-body {
  height: 380px;
  overflow-y: auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-light);
  scroll-behavior: smooth;
}

.berater-chat-body::-webkit-scrollbar { width: 6px; }
.berater-chat-body::-webkit-scrollbar-track { background: transparent; }
.berater-chat-body::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }

.berater-msg {
  max-width: 80%;
  padding: 11px 16px;
  font-size: 0.94rem;
  line-height: 1.5;
  border-radius: 18px;
  word-wrap: break-word;
  animation: bMsgIn 0.3s var(--ease);
}

@keyframes bMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.berater-msg--bot {
  align-self: flex-start;
  background: var(--bg-light-alt);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}

.berater-msg--user {
  align-self: flex-end;
  background: var(--blue-gradient);
  color: var(--ink);
  font-weight: 500;
  border-bottom-right-radius: 6px;
}

.berater-typing {
  align-self: flex-start;
  background: var(--bg-light-alt);
  padding: 14px 18px;
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.berater-typing span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-faint);
  animation: bBounce 1.2s infinite;
}

.berater-typing span:nth-child(2) { animation-delay: 0.15s; }
.berater-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes bBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.berater-chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 22px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg-light-card);
  min-height: 68px;
}

.berater-opt {
  padding: 10px 18px;
  background: var(--bg-light);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.berater-opt:hover {
  border-color: var(--blue-mid);
  background: var(--bg-light-alt);
  transform: translateY(-1px);
}

.berater-opt:active { transform: translateY(0); }

.berater-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.berater-form input {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
  width: 100%;
}

.berater-form input::placeholder { color: var(--text-faint); }

.berater-form input:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(58, 142, 212, 0.12);
}

.berater-form-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.berater-send {
  padding: 12px 22px;
  background: var(--blue-gradient);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: var(--shadow-button);
}

.berater-send:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -8px rgba(126, 201, 232, 0.6);
}

.berater-send:disabled { opacity: 0.4; cursor: not-allowed; }

.berater-card-rec {
  align-self: stretch;
  max-width: 100%;
  background: linear-gradient(135deg, rgba(126, 201, 232, 0.18), rgba(58, 142, 212, 0.1));
  border: 1px solid var(--line-accent);
  padding: 18px 20px;
  border-radius: 18px;
  margin-top: 6px;
}

.berater-card-rec-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.berater-card-rec-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}

.berater-card-rec-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.berater-card-rec-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.berater-card-rec-stat strong {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  margin-right: 4px;
}

.berater-card-rec-stat span { color: var(--text-muted); }

.berater-card-rec-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.berater-card-rec-cta a {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.berater-card-rec-cta .btn-primary {
  background: var(--blue-gradient);
  color: var(--ink);
}

.berater-card-rec-cta .btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.berater-done {
  text-align: center;
  padding: 18px 0;
  width: 100%;
}

.berater-done-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(76, 222, 128, 0.18);
  color: #16803c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.berater-done-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 640px) {
  .berater { padding: 70px 0; }
  .berater-shell { padding: 0 16px; }
  .berater-chat-body { height: 320px; padding: 16px; }
  .berater-chat-header { padding: 14px 18px; }
  .berater-chat-options { padding: 14px 18px 18px; }
  .berater-msg { font-size: 0.9rem; max-width: 86%; }
}

/* =========================================
   ROADMAP — light
   ========================================= */
.roadmap {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(58, 142, 212, 0.08), transparent 60%),
    linear-gradient(180deg, #eaf1f7 0%, #dde9f3 100%);
  position: relative;
}

.roadmap-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 72px;
  padding: 0 48px;
}

.roadmap-head .section-eyebrow,
.roadmap-head .section-title {
  margin-left: auto;
  margin-right: auto;
}

.roadmap-head .section-lede { margin: 0 auto; }

.roadmap-track {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

.roadmap-line {
  position: absolute;
  top: 42px;
  left: 96px;
  right: 96px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(58, 142, 212, 0.4) 0 12px, transparent 12px 24px);
  z-index: 0;
}

.roadmap-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.roadmap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.roadmap-step:hover { transform: translateY(-6px); }

.roadmap-step-node {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line-accent);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-soft);
}

.roadmap-step:hover .roadmap-step-node {
  background: var(--blue-gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 12px 32px -8px rgba(126, 201, 232, 0.5);
}

.roadmap-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 32px;
  padding: 0 6px;
  height: 26px;
  background: var(--lime);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px -2px rgba(110, 217, 68, 0.4);
}

.roadmap-step-name {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.roadmap-step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0 4px;
}

.roadmap-step-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-mid);
  letter-spacing: 0.04em;
}

/* =========================================
   COURSES — light
   ========================================= */
.courses {
  padding: 120px 0;
  background: var(--bg-light-alt);
}

.courses-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 72px;
  padding: 0 48px;
}

.courses-head .section-eyebrow,
.courses-head .section-title { margin-left: auto; margin-right: auto; }
.courses-head .section-lede { margin: 0 auto; }

.courses-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.courses-more {
  max-width: 1240px;
  margin: 54px auto 0;
  padding: 0 48px;
  text-align: center;
}

.courses-more-lede {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.courses-more-lede strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.08rem;
}

.courses-more-btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 640px) {
  .courses-more { margin-top: 36px; padding: 0 24px; }
}

.course-card {
  position: relative;
  background: var(--bg-light-card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.course-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.course-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-light-alt);
}

.course-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.course-card:hover .course-card-media img { transform: scale(1.06); }

.course-card-body {
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.course-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin: 0;
}

.course-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 4px 0 6px;
}

.course-card-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 20px;
  flex: 1;
}

.course-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.course-card-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.course-card-price small {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-right: 6px;
}

.course-card-cta {
  padding: 10px 18px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}

.course-card-cta:hover {
  border-color: var(--blue-mid);
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.course-card-cta--filled {
  background: var(--blue-gradient);
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 10px 24px -8px rgba(58, 142, 212, 0.45);
}

.course-card-cta--filled:hover {
  background: var(--blue-gradient);
  color: var(--ink);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px -10px rgba(58, 142, 212, 0.6);
}

/* featured card: light-blue gradient body + ribbon-style badge */
.course-card--featured {
  border-color: rgba(58, 142, 212, 0.45);
  box-shadow: 0 0 0 1px rgba(58, 142, 212, 0.18), 0 24px 60px -24px rgba(58, 142, 212, 0.32);
}

.course-card--featured .course-card-body {
  background: linear-gradient(165deg, rgba(126, 201, 232, 0.18) 0%, rgba(255, 255, 255, 0) 60%);
}

.course-card-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  padding: 6px 12px;
  background: var(--blue-gradient);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 20px -6px rgba(58, 142, 212, 0.5);
  white-space: nowrap;
}

/* =========================================
   PROCESS — dark (accent section, like the reference screenshots)
   ========================================= */
.process {
  padding: 120px 0;
  background: var(--bg-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(126, 201, 232, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(58, 142, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.process-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 72px;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.process-head .section-eyebrow { color: var(--blue-light); }
.process-head .section-title { color: var(--white); }
.process-head .section-title em { color: var(--blue-light); }

.process-head .section-eyebrow,
.process-head .section-title { margin-left: auto; margin-right: auto; }
.process-head .section-lede { margin: 0 auto; color: var(--text-on-dark-muted); }

.process-steps {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--r-card);
  transition: all 0.3s var(--ease);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-on-dark-str);
}

.process-step-num {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 300;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-on-dark);
  margin-bottom: 8px;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  font-weight: 300;
}

.process-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 64px;
  padding: 0 24px;
}

.process-cta-lede {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--white);
  margin-bottom: 22px;
}

.process-cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.process-cta .btn-whatsapp {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.process-cta .btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .process-cta { margin-top: 44px; }
  .process-cta-lede { font-size: 1.25rem; }
}

/* =========================================
   GALLERY — about-us mosaic
   ========================================= */
.gallery {
  padding: 110px 0;
  background: var(--bg-light);
}

.gallery-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.gallery-head .section-eyebrow,
.gallery-head .section-title { margin-left: auto; margin-right: auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0;
  grid-row: span 1;
  grid-column: span 1;
  background: var(--bg-light-alt);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 2; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 1; }
}

/* =========================================
   SOUL — what drives us
   ========================================= */
.soul {
  position: relative;
  padding: 130px 0;
  background:
    radial-gradient(ellipse 80% 80% at 20% 30%, rgba(58, 142, 212, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(126, 201, 232, 0.12), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.soul::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
  pointer-events: none;
}

.soul-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.soul .section-eyebrow { color: rgba(255, 255, 255, 0.6); }
.soul .section-title { color: var(--white); }
.soul .section-title em { color: var(--blue-mid); }

.soul-body {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 26px;
}

@media (max-width: 640px) {
  .soul { padding: 90px 0; }
  .gallery { padding: 80px 0; }
}

/* =========================================
   REVIEWS — light (soft-tinted)
   ========================================= */
.reviews {
  padding: 120px 0;
  background: var(--bg-light-alt);
}

.reviews-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
  padding: 0 48px;
}

.reviews-head .section-eyebrow,
.reviews-head .section-title { margin-left: auto; margin-right: auto; }

.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.reviews-meta-stars { color: #ffa820; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-meta strong { color: var(--ink); font-weight: 600; font-size: 1.1rem; }

.reviews-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--bg-light-card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-soft);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card-stars { color: #ffa820; letter-spacing: 1.5px; font-size: 0.95rem; }

.review-card-badge {
  padding: 5px 12px;
  background: var(--bg-light-alt);
  color: var(--blue-mid);
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--line-accent);
}

.review-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  flex: 1;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-gradient);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-card-author-info { display: flex; flex-direction: column; line-height: 1.2; }

.review-card-author-name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.review-card-author-meta { font-size: 0.78rem; color: var(--text-faint); margin-top: 2px; }

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  padding: 0 48px;
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-light-card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.reviews-cta-btn:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 14px 36px -14px rgba(58, 142, 212, 0.4);
  transform: translateY(-2px);
}

.reviews-cta-btn svg {
  flex-shrink: 0;
}

.reviews-cta-arrow {
  color: var(--blue-mid);
  font-weight: 700;
  transition: transform 0.2s var(--ease);
}

.reviews-cta-btn:hover .reviews-cta-arrow {
  transform: translateX(4px);
}

/* =========================================
   INSTRUCTOR — light
   ========================================= */
.instructor {
  padding: 120px 0;
  background: var(--bg-light);
}

.instructor-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.instructor-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--bg-light-alt);
  box-shadow: var(--shadow-card);
}

.instructor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: saturate(1.05);
}

.instructor-media:hover img { transform: scale(1.03); }

.instructor-media-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-input);
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 24px -6px rgba(15, 26, 46, 0.15);
}

.instructor-media-tag-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.instructor-media-tag-value {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

.instructor-text .section-title { margin-bottom: 24px; }

.instructor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.instructor-credential {
  padding: 8px 16px;
  background: var(--bg-light-alt);
  color: var(--blue-mid);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--line-accent);
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.instructor-stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  background: var(--blue-gradient-deep);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.instructor-stat-num small {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--lime-dark);
  font-weight: 500;
  margin-left: 2px;
  -webkit-text-fill-color: var(--lime-dark);
}

.instructor-stat-label {
  margin-top: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* — Header above the 2-col block — */
.instructor-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
  padding: 0 48px;
}

.instructor-head .section-eyebrow,
.instructor-head .section-title { margin-left: auto; margin-right: auto; }
.instructor-head .section-lede { margin: 0 auto; }

/* — Where we dive: 4-photo location strip — */
.instructor-locations {
  max-width: 1240px;
  margin: 90px auto 0;
  padding: 0 48px;
}

.instructor-locations-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.instructor-locations-label::before,
.instructor-locations-label::after {
  content: '';
  flex: 0 1 100px;
  height: 1px;
  background: var(--line);
}

.instructor-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.instructor-location {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.instructor-location:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.instructor-location img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.instructor-location:hover img { transform: scale(1.06); }

.instructor-location figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(6, 21, 41, 0.92));
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.instructor-location-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.instructor-location-desc {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .instructor-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .instructor-head { padding: 0 24px; margin-bottom: 44px; }
  .instructor-locations { padding: 0 24px; margin-top: 60px; }
  .instructor-locations-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* =========================================
   ACTION GALLERY — landing page
   ========================================= */
.action-gallery {
  padding: 110px 0;
  background: var(--bg-light-alt);
}

.action-gallery-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
  padding: 0 48px;
}

.action-gallery-head .section-eyebrow,
.action-gallery-head .section-title { margin-left: auto; margin-right: auto; }
.action-gallery-head .section-lede { margin: 0 auto; }

.action-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.action-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0;
  background: var(--bg-light-card);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.action-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  filter: saturate(1.05);
}

.action-item:hover img { transform: scale(1.06); }

@media (max-width: 900px) {
  .action-gallery { padding: 80px 0; }
  .action-gallery-head { padding: 0 24px; margin-bottom: 40px; }
  .action-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .action-gallery-grid { grid-template-columns: 1fr; }
}

/* =========================================
   MIDWAY CTA BANNER — video background
   ========================================= */
.cta-banner-wrap {
  background: var(--bg-light);
  padding: 80px 0;
}

.cta-banner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  isolation: isolate;
  box-shadow: 0 40px 80px -30px rgba(15, 26, 46, 0.4);
}

.cta-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 21, 41, 0.95) 0%, rgba(6, 21, 41, 0.78) 45%, rgba(6, 21, 41, 0.25) 100%),
    linear-gradient(180deg, rgba(6, 21, 41, 0.3), rgba(6, 21, 41, 0.6));
}

.cta-banner-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 64px;
  flex-wrap: wrap;
}

.cta-banner-text {
  flex: 1 1 420px;
  min-width: 0;
}

.cta-banner-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-banner-sub {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
}

.cta-banner-btn {
  flex-shrink: 0;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 720px) {
  .cta-banner-wrap { padding: 40px 16px; }
  .cta-banner { border-radius: 22px; }
  .cta-banner-content { flex-direction: column; align-items: flex-start; padding: 28px 26px; gap: 22px; }
  .cta-banner-overlay {
    background: linear-gradient(180deg, rgba(6, 21, 41, 0.5) 0%, rgba(6, 21, 41, 0.88) 100%);
  }
  .cta-banner-btn { width: 100%; justify-content: center; }
}

/* =========================================
   FAQ — light
   ========================================= */
.faq {
  padding: 120px 0;
  background: var(--bg-light);
}

.faq-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
  padding: 0 48px;
}

.faq-head .section-eyebrow,
.faq-head .section-title { margin-left: auto; margin-right: auto; }
.faq-head .section-lede { margin: 0 auto; }

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-light-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover { border-color: var(--line-strong); }

.faq-item.is-open {
  background: var(--white);
  border-color: var(--line-accent);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color 0.25s var(--ease);
}

.faq-question:hover { color: var(--blue-mid); }

.faq-question-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(58, 142, 212, 0.1);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--line-accent);
  font-weight: 400;
}

.faq-item.is-open .faq-question-icon {
  background: var(--blue-gradient);
  color: var(--white);
  border-color: transparent;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-answer-inner {
  padding: 0 28px 26px;
  font-size: 0.98rem;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 760px;
}

.faq-answer-inner p + p { margin-top: 14px; }

.faq-item.is-open .faq-answer { max-height: 800px; }

/* =========================================
   KURSE OVERVIEW PAGE
   ========================================= */
.kurse-jump {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.kurse-jump-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.kurse-jump a {
  padding: 16px 22px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.kurse-jump a:hover {
  color: var(--ink);
}

.kurse-jump a.is-active,
.kurse-jump a:focus-visible {
  color: var(--blue-deep);
  border-color: var(--blue-mid);
  outline: none;
}

.kurse-category {
  padding: 100px 0;
  background: var(--bg-light);
}

.kurse-category--alt { background: var(--bg-light-alt); }

.kurse-category--dark {
  background:
    radial-gradient(ellipse 60% 80% at 20% 20%, rgba(58, 142, 212, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 90%, rgba(126, 201, 232, 0.1), transparent 60%),
    var(--bg-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.kurse-category--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.kurse-lede-light { color: rgba(255, 255, 255, 0.78); }

.kurse-category-head {
  position: relative;
  max-width: 800px;
  margin: 0 auto 56px;
  padding: 0 24px;
  text-align: center;
}

.kurse-category-head .section-eyebrow,
.kurse-category-head .section-title { margin-left: auto; margin-right: auto; }
.kurse-category-head .section-lede { margin: 0 auto; }

.kurse-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.kurse-grid--dense {
  grid-template-columns: repeat(3, 1fr);
}

.kurse-card {
  position: relative;
  background: var(--bg-light-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
}

.kurse-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.kurse-card--featured {
  background: linear-gradient(150deg, #eef6fc 0%, #d8eaf6 100%);
  border-color: rgba(58, 142, 212, 0.25);
}

.kurse-card--dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  color: var(--white);
}

.kurse-card--dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.4);
}

.kurse-card--dark.kurse-card--featured {
  background: linear-gradient(150deg, rgba(58, 142, 212, 0.22) 0%, rgba(126, 201, 232, 0.14) 100%);
  border-color: rgba(126, 201, 232, 0.4);
}

.kurse-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  background: var(--blue-mid);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}

.kurse-card--dark .kurse-card-badge {
  background: var(--blue-mid);
  color: var(--bg-deep);
}

.kurse-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.kurse-card--dark .kurse-card-eyebrow { color: var(--blue-mid); }

.kurse-card-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.kurse-card--dark .kurse-card-title { color: var(--white); }

.kurse-card-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
  margin: 0;
}

.kurse-card--dark .kurse-card-desc { color: rgba(255, 255, 255, 0.72); }

.kurse-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

.kurse-card--dark .kurse-card-foot { border-top-color: rgba(255, 255, 255, 0.12); }

.kurse-card-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.kurse-card--dark .kurse-card-price { color: var(--white); }

.kurse-card-meta {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-faint);
}

.kurse-card--dark .kurse-card-meta { color: rgba(255, 255, 255, 0.55); }

.kurse-card-arrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.3s var(--ease);
}

.kurse-card--dark .kurse-card-arrow { color: var(--blue-mid); }

.kurse-card-arrow-sm {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-light-alt);
  color: var(--blue-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.kurse-card--compact { padding: 22px 22px 18px; gap: 8px; }
.kurse-card--compact .kurse-card-title { font-size: 1.2rem; }
.kurse-card--compact .kurse-card-desc { font-size: 0.88rem; }
.kurse-card--compact .kurse-card-foot { padding-top: 10px; }

.kurse-card:hover .kurse-card-arrow { transform: translateX(4px); }
.kurse-card:hover .kurse-card-arrow-sm {
  transform: translateX(4px);
  background: var(--blue-gradient);
  color: var(--ink);
}

.kurse-category-foot {
  position: relative;
  text-align: center;
  margin-top: 48px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--blue-mid);
  color: var(--blue-deep);
  padding: 13px 26px;
}

.btn-outline:hover {
  background: var(--blue-mid);
  color: var(--white);
}

/* — Help CTA at the bottom — */
.kurse-help {
  padding: 100px 24px;
  background: var(--bg-light-alt);
  text-align: center;
}

.kurse-help-inner {
  max-width: 720px;
  margin: 0 auto;
}

.kurse-help h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.kurse-help h2 em {
  font-style: italic;
  color: var(--blue-deep);
  font-weight: 400;
}

.kurse-help p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.kurse-help-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

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

@media (max-width: 640px) {
  .kurse-category { padding: 70px 0; }
  .kurse-grid, .kurse-grid--dense { grid-template-columns: 1fr; gap: 16px; }
  .kurse-jump-inner { gap: 0; }
  .kurse-jump a { padding: 13px 14px; font-size: 0.78rem; }
}

/* =========================================
   STANDORT — location with map
   ========================================= */
.standort {
  padding: 110px 0;
  background: var(--bg-light-alt);
}

.standort-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.standort-head .section-eyebrow,
.standort-head .section-title { margin-left: auto; margin-right: auto; }
.standort-head .section-lede { margin: 0 auto; }

.standort-card {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--bg-light-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 901px) {
  .standort-card {
    padding: 0;
    max-width: 1240px;
    width: calc(100% - 48px);
  }
}

.standort-map {
  position: relative;
  min-height: 480px;
  background: var(--bg-light-alt);
}

.standort-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9);
}

.standort-info {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
}

.standort-info-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 10px;
}

.standort-address {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 28px;
}

.standort-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.standort-meta li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.standort-meta-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--bg-light-alt);
  color: var(--blue-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.standort-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.standort-meta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.standort-meta-value {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}

.standort-meta-link {
  color: var(--blue-deep);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.standort-meta-link:hover { color: var(--blue-mid); }

.standort-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.standort-actions .btn {
  padding: 12px 22px;
  font-size: 0.9rem;
}

.standort-actions .btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: none;
}

@media (max-width: 900px) {
  .standort { padding: 80px 0; }
  .standort-head { margin-bottom: 36px; }
  .standort-card { grid-template-columns: 1fr; }
  .standort-map { min-height: 320px; }
  .standort-info { padding: 32px 28px 32px; }
  .standort-address { font-size: 1.25rem; }
}

/* =========================================
   FINAL CTA — dark (conversion moment)
   ========================================= */
.final-cta {
  padding: 140px 0;
  background: var(--bg-deep);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 201, 232, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(110, 217, 68, 0.08) 0%, transparent 50%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 48px;
}

.final-cta-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 28px;
}

.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
}

.final-cta h2 em {
  color: var(--blue-light);
  font-style: italic;
  font-weight: 300;
}

.final-cta p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.final-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta-reassurance {
  margin-top: 36px;
  font-size: 0.88rem;
  color: var(--text-on-dark-faint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.final-cta-reassurance::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
}

/* Immersive variant — full-bleed photo background */
.final-cta--immersive {
  padding: 160px 0;
  background: var(--bg-deep);
}

.final-cta--immersive::before { display: none; }

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(6, 21, 41, 0.4), rgba(6, 21, 41, 0.85) 80%),
    linear-gradient(180deg, rgba(6, 21, 41, 0.55) 0%, rgba(6, 21, 41, 0.7) 100%);
}

.final-cta--immersive .final-cta-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--blue-mid);
  margin-bottom: 22px;
}

.final-cta--immersive h2 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 22px;
}

.final-cta--immersive h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--white);
}

.final-cta-lede {
  font-size: 1.15rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 640px !important;
  margin: 0 auto 44px !important;
  font-weight: 400 !important;
}

.final-cta-lede em {
  font-style: italic;
  color: var(--blue-mid);
  font-family: var(--serif);
  font-weight: 400;
}

.final-cta-btn {
  padding: 18px 38px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
}

.final-cta-trust {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin: 44px 0 0;
  padding: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.final-cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.final-cta-trust-check {
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .final-cta--immersive { padding: 100px 0; }
  .final-cta--immersive h2 { font-size: 2rem; }
  .final-cta-lede { font-size: 1rem !important; }
  .final-cta-trust { gap: 12px 22px; font-size: 0.85rem; }
}

/* =========================================
   COURSE DETAIL (sub-pages) — light
   ========================================= */
.course-detail {
  padding: 100px 0;
  background: var(--bg-light);
}

.course-detail-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 80px;
  align-items: start;
}

.course-detail-body h2,
.content-page-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 48px 0 20px;
  line-height: 1.2;
}

.course-detail-body h2:first-child,
.content-page-inner h2:first-child { margin-top: 0; }
.course-detail-body h2 em,
.content-page-inner h2 em { color: var(--blue-mid); font-style: italic; font-weight: 300; }

.course-detail-body h3,
.content-page-inner h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 500;
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
}

.course-detail-body p,
.content-page-inner p {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 16px;
}

.course-detail-body p strong,
.content-page-inner p strong,
.course-detail-body li strong,
.content-page-inner li strong { color: var(--ink); font-weight: 600; }

.course-detail-body a,
.content-page-inner a {
  color: var(--blue-mid);
  border-bottom: 1px solid var(--line-accent);
}

.course-detail-body a:hover,
.content-page-inner a:hover { color: var(--navy-dark); border-bottom-color: var(--navy); }

.course-detail-body ul,
.content-page-inner ul {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-detail-body ul li,
.content-page-inner ul li {
  position: relative;
  padding-left: 32px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.course-detail-body ul.list-check li::before,
.content-page-inner ul.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: rgba(110, 217, 68, 0.18);
  border: 1px solid rgba(110, 217, 68, 0.5);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234cbb26' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
}

.course-detail-body ul.list-cross li::before,
.content-page-inner ul.list-cross li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: rgba(230, 96, 96, 0.1);
  border: 1px solid rgba(230, 96, 96, 0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c64a4a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
}

.course-detail-body ul.list-num,
.content-page-inner ul.list-num { counter-reset: step; }

.course-detail-body ul.list-num li,
.content-page-inner ul.list-num li {
  counter-increment: step;
  padding-left: 44px;
}

.course-detail-body ul.list-num li::before,
.content-page-inner ul.list-num li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--blue-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 600;
}

/* sidebar on course-detail — bold dark card on light page */
.course-detail-sidebar {
  position: sticky;
  top: 108px;
  padding: 36px 32px;
  background: var(--bg-deep);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--r-card);
  box-shadow: 0 24px 50px -16px rgba(15, 26, 46, 0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  overflow: hidden;
}

.course-detail-sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(126, 201, 232, 0.16) 0%, transparent 60%);
  pointer-events: none;
}

.course-detail-sidebar > * { position: relative; z-index: 1; }

.course-detail-sidebar-price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-light);
}

.course-detail-sidebar-price {
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-top: 2px;
}

.course-detail-sidebar-price small {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-on-dark-faint);
  font-weight: 400;
  margin-left: 4px;
  -webkit-text-fill-color: var(--text-on-dark-faint);
}

.course-detail-sidebar-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}

.course-detail-sidebar-detail {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.course-detail-sidebar-detail-label { color: var(--text-on-dark-faint); font-weight: 300; }

.course-detail-sidebar-detail-value {
  color: var(--white);
  font-weight: 500;
  text-align: right;
}

.course-detail-sidebar-note {
  font-size: 0.84rem;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
  text-align: center;
  font-weight: 300;
}

.course-detail-sidebar-note strong { color: var(--white); font-weight: 600; }

.course-detail-sidebar-note a {
  color: var(--blue-light);
  border-bottom: 1px solid rgba(126, 201, 232, 0.3);
}

.course-detail-sidebar-note a:hover { color: var(--white); }

/* =========================================
   FOOTER — dark
   ========================================= */
.footer {
  background: var(--bg-deep);
  color: var(--text-on-dark-muted);
  padding-top: 90px;
  border-top: 1px solid var(--line-on-dark);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 70px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  border-bottom: 1px solid var(--line-on-dark);
}

.footer-brand { max-width: 340px; }

.footer-logo {
  display: block;
  margin-bottom: 20px;
  line-height: 0;
}

.footer-logo-img {
  height: 64px;
  margin-left: calc(64px * -0.045); /* transparenter PNG-Rand, siehe .nav-logo-img */
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(126, 201, 232, 0.18));
}

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
  margin-bottom: 22px;
  font-weight: 300;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  font-weight: 300;
}

.footer-address a { color: var(--text-on-dark); }
.footer-address a:hover { color: var(--blue-light); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  padding: 6px 0;
  font-weight: 300;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--blue-light); }

.footer-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 26px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-on-dark-faint);
  font-weight: 300;
}

.footer-legal { display: flex; gap: 26px; }
.footer-legal a:hover { color: var(--blue-light); }

/* =========================================
   LEAD MODAL — light, 4-step quick qualification
   ========================================= */
.lm {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: 20px;
  font-family: var(--sans);
}
.lm[hidden] { display: none; }
.lm__backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 21, 41, 0.72);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  animation: lmFade 0.2s ease;
}
@keyframes lmFade { from { opacity: 0; } to { opacity: 1; } }

.lm__dialog {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px;
  max-height: min(90vh, 760px);
  background: var(--bg-light);
  color: var(--ink);
  border-radius: 20px;
  box-shadow:
    0 40px 100px -20px rgba(6, 21, 41, 0.5),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: lmPop 0.28s cubic-bezier(.2,1,.3,1);
}
@keyframes lmPop {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

.lm__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f2f5fa;
  border: 1px solid #e4e9f2;
  display: grid; place-items: center;
  color: #4a5b79;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.lm__close:hover {
  background: #e4e9f2;
  color: var(--ink);
  transform: rotate(90deg);
}

.lm__head {
  padding: 18px 62px 18px 28px;
}
.lm__progress {
  height: 4px; border-radius: 999px;
  background: #e4e9f2;
  overflow: hidden;
}
.lm__progress-bar {
  height: 100%;
  background: var(--blue-gradient);
  border-radius: inherit;
  transition: width 0.35s cubic-bezier(.2,1,.3,1);
}
.lm__counter {
  font: 500 13px/1 var(--sans);
  color: #7a8aa3;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lm__body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px 20px;
  scrollbar-width: thin;
}
.lm-step { display: none; animation: lmStepIn 0.35s ease; }
.lm-step.is-active { display: block; }
@keyframes lmStepIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: none; }
}

.lm-eyebrow {
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-mid); margin: 0 0 10px;
}
.lm-title {
  font: 700 clamp(22px, 2.4vw, 28px)/1.15 var(--serif);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.lm-title em {
  font-style: italic; font-weight: 500;
  background: var(--blue-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lm-sub {
  color: #4a5b79; font-size: 14px; line-height: 1.55;
  margin: 0 0 22px; max-width: 52ch;
}
.lm-muted { color: #7a8aa3; font-weight: 400; }

/* choices */
.lm-choices { display: grid; gap: 10px; }
.lm-choice {
  position: relative; display: block; cursor: pointer;
}
.lm-choice input {
  position: absolute; opacity: 0; inset: 0; cursor: pointer;
}
.lm-choice__inner {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: #f7f9fc;
  border: 1.5px solid #e4e9f2;
  border-radius: 14px;
  transition: border-color 0.15s, background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.lm-choice__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  line-height: 1;
}
.lm-choice__body {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.lm-choice:hover .lm-choice__inner {
  border-color: #cad3e1; background: #fff;
}
.lm-choice input:focus-visible + .lm-choice__inner {
  outline: none;
  box-shadow: 0 0 0 3px rgba(58, 142, 212, 0.25);
}
.lm-choice input:checked + .lm-choice__inner {
  border-color: var(--blue-mid);
  background: rgba(58, 142, 212, 0.06);
  box-shadow: 0 0 0 1px var(--blue-mid);
}
.lm-choice__title { font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.3; }
.lm-choice__title em { font-style: normal; font-weight: 500; color: var(--blue-mid); }
.lm-choice__desc { font-size: 13px; color: #7a8aa3; line-height: 1.4; }

/* fields */
.lm-field { display: grid; gap: 6px; margin-bottom: 14px; }
.lm-field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.lm-field input, .lm-field textarea {
  appearance: none;
  background: #f7f9fc;
  border: 1.5px solid #e4e9f2;
  border-radius: 10px;
  padding: 11px 14px;
  font: 400 15px/1.4 var(--sans);
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.lm-field input::placeholder, .lm-field textarea::placeholder { color: #a6b1c4; }
.lm-field input:focus, .lm-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(58, 142, 212, 0.18);
}
.lm-field textarea { resize: vertical; min-height: 64px; }

.lm-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: #4a5b79; line-height: 1.5;
  padding-top: 6px;
}
.lm-check input { margin-top: 2px; accent-color: var(--blue-mid); }
.lm-check a { color: var(--blue-mid); text-decoration: underline; text-underline-offset: 3px; }

/* done state */
.lm-step--done { text-align: center; }
.lm-done { padding: 30px 10px 10px; }
.lm-done__mark {
  width: 64px; height: 64px;
  background: var(--blue-gradient);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 18px 40px -10px rgba(58, 142, 212, 0.45);
}
.lm-step--done .lm-sub { text-align: center; margin-inline: auto; }
.lm-step--done a { color: var(--blue-mid); font-weight: 600; }

/* footer */
.lm__foot {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 28px 22px;
  border-top: 1px solid #e4e9f2;
  background: var(--bg-light);
}
.lm__foot-spacer { flex: 1; }
.lm-btn {
  border: 0; border-radius: 999px;
  padding: 12px 20px;
  font: 600 14px/1 var(--sans);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.lm-btn--back {
  background: #fff; color: var(--ink);
  border: 1.5px solid #e4e9f2;
  padding: 10px 18px;
}
.lm-btn--back:hover { border-color: #cad3e1; background: #f7f9fc; }

.lm-btn--submit, .lm-btn--close-done {
  background: var(--blue-gradient);
  color: var(--ink);
  box-shadow:
    0 12px 28px -10px rgba(58, 142, 212, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.lm-btn--submit:hover, .lm-btn--close-done:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px -10px rgba(58, 142, 212, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.lm-btn--block {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  margin-top: 8px;
}
.lm-btn:disabled {
  background: #e4e9f2;
  color: #a6b1c4;
  box-shadow: none;
  cursor: not-allowed;
}
.lm-skip {
  display: block;
  width: 100%;
  margin: 12px 0 0;
  padding: 8px;
  background: transparent;
  border: 0;
  font: 500 13px/1.3 var(--sans);
  color: #7a8aa3;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.lm-skip:hover { color: var(--ink); }

/* body lock when modal is open */
body.lm-open { overflow: hidden; }

/* =========================================
   STICKY WHATSAPP FAB
   ========================================= */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 13px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid rgba(15, 26, 46, 0.06);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    0 18px 36px -10px rgba(15, 26, 46, 0.25),
    0 4px 12px -2px rgba(15, 26, 46, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.wa-fab:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow:
    0 24px 44px -10px rgba(15, 26, 46, 0.3),
    0 8px 18px -2px rgba(15, 26, 46, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.wa-fab:focus-visible {
  outline: 3px solid rgba(58, 142, 212, 0.4);
  outline-offset: 4px;
}

.wa-fab svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  color: #25d366;
}

.wa-fab-tip {
  white-space: nowrap;
  letter-spacing: 0.005em;
}

@media (max-width: 768px) {
  .wa-fab {
    right: 16px;
    bottom: 16px;
    padding: 10px 16px 10px 12px;
    font-size: 0.88rem;
  }
  .wa-fab svg { width: 22px; height: 22px; }
}

@media print {
  .wa-fab { display: none; }
}

@media (max-width: 560px) {
  .lm { padding: 0; place-items: end center; }
  .lm__dialog {
    max-width: 100%; max-height: 94vh;
    border-radius: 20px 20px 0 0;
    animation: lmSlide 0.3s cubic-bezier(.2,1,.3,1);
  }
  @keyframes lmSlide {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
  }
  .lm__head { padding: 18px 54px 18px 20px; }
  .lm__body { padding: 22px 20px 16px; }
  .lm__foot { padding: 14px 18px 16px; }
  .lm-choice__inner { padding-left: 18px; }
}

/* =========================================
   LEGAL PAGES — light
   ========================================= */
.legal {
  padding: 140px 0 100px;
  background: var(--bg-light);
  min-height: 60vh;
}

.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 48px;
}

.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.legal-lede { font-size: 1rem; color: var(--text-muted); margin-bottom: 40px; }

.legal h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 40px 0 14px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.legal h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  margin: 24px 0 10px;
  font-weight: 500;
}

.legal p {
  font-size: 0.98rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 14px;
}

.legal p strong { color: var(--ink); font-weight: 600; }

.legal ul {
  list-style: disc;
  padding-left: 22px;
  margin: 12px 0 18px;
}

.legal ul li {
  font-size: 0.98rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 6px;
}

.legal a { color: var(--blue-mid); border-bottom: 1px solid var(--line-accent); }
.legal a:hover { color: var(--navy-dark); border-bottom-color: var(--navy); }

.legal-placeholder {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(255, 170, 80, 0.14);
  color: #c77a2e;
  border-radius: var(--r-small);
  font-size: 0.88rem;
  font-family: monospace;
  border: 1px solid rgba(255, 170, 80, 0.3);
}

/* form inputs on light (fallback) */
input, textarea, select {
  color-scheme: light;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .instructor-grid { grid-template-columns: 1fr; gap: 48px; }
  .instructor-media { max-width: 480px; margin: 0 auto; }
  .roadmap-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .roadmap-line { display: none; }
  .course-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .course-detail-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 50px; }
  .top-bar-text { display: none; }
}

@media (max-width: 900px) {
  .intent-grid { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 768px) {
  .container, .nav-inner, .hero-content, .trust-strip-inner, .intent-grid,
  .courses-grid, .courses-head, .reviews-grid, .reviews-head, .process-steps,
  .process-head, .faq-list, .faq-head, .instructor-grid, .final-cta-inner,
  .course-detail-grid, .footer-inner, .footer-bar, .top-bar-inner,
  .roadmap-track, .roadmap-head, .legal-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Das Menü-Panel ist position:fixed und lag damit über dem Burger-Button —
     der war zwar noch da, aber verdeckt und nicht antippbar. Zum Schließen
     blieb nur ein Menüpunkt oder die Escape-Taste, auf dem Handy also nichts.
     Der Button bekommt einen eigenen Stacking-Kontext, bleibt über dem Panel
     und wird bei offenem Menü zum X. */
  .nav-toggle {
    position: relative;
    z-index: 1;
  }

  .nav-links.open ~ .nav-toggle span {
    background: var(--ink);
  }
  .nav-links.open ~ .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-links.open ~ .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-links.open ~ .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    width: 86%;
    max-width: 340px;
    /* 100vh ist auf iOS die Höhe OHNE Browser-Leisten. Solange Adressleiste und
       Toolbar sichtbar sind, ragt das Panel darunter — der letzte Eintrag
       (Kontakt) war dadurch nicht mehr erreichbar. 100dvh folgt der tatsächlich
       sichtbaren Höhe; vh bleibt als Fallback für alte Browser stehen. */
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    /* Reichlich Luft unten, plus Home-Indicator-Bereich auf randlosen iPhones. */
    padding: 90px 30px calc(56px + env(safe-area-inset-bottom, 0px));
    gap: 4px;
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px rgba(15, 26, 46, 0.15);
    overflow-y: auto;
    /* Ohne contain scrollt am Listenende die Seite dahinter weiter — das ist
       das Haken/Springen beim Wischen. */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  /* Seite hinter dem offenen Menü festhalten (Klasse wird in script.js gesetzt).
     position:fixed statt nur overflow:hidden, weil iOS Safari letzteres am Body
     ignoriert. Den Versatz (top: -scrollY) setzt das Skript. */
  body.nav-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }

  /* Schriftgrößen im Mobilmenü angehoben (Kundenwunsch): Hauptpunkte 16→18 px,
     Kurs-Einträge 14→16 px, Rubriktitel 10,9→12 px. Die Zeilenhöhen wachsen
     mit, damit jeder Eintrag die 44-px-Mindestgröße für Touch-Ziele erreicht. */
  .nav-links.open > li > a {
    display: block;
    padding: 15px 0;
    font-size: 1.125rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open .nav-sub {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 10px 14px;
    min-width: 0;
  }

  /* Mega-Menü mobil: eine Spalte, volle Breite, kein Overlay */
  .nav-links.open .nav-sub--mega {
    width: auto;
    max-width: none;
    left: auto;
    right: auto;
  }

  /* Untermenüs mobil eingeklappt (Akkordeon). Vorher standen alle 29 Kurse plus
     alle anderen Unterpunkte offen — das Menü war 2900 px lang und "Kontakt"
     ganz unten kaum erreichbar. Antippen klappt die jeweilige Gruppe auf. */
  .nav-links.open .nav-sub,
  .nav-links.open .nav-sub--mega { display: none; }
  .nav-links.open .nav-dropdown.is-open > .nav-sub { display: block; }

  .nav-links.open .nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links.open .nav-dropdown-caret {
    width: 12px;
    height: 8px;
    opacity: 0.55;
    transition: transform 0.25s var(--ease);
  }

  .nav-links.open .nav-dropdown.is-open > a .nav-dropdown-caret {
    transform: rotate(180deg);
    opacity: 1;
  }

  .nav-links.open .nav-sub a {
    font-size: 1rem;
    padding: 11px 0;
    display: block;
  }

  .nav-links.open .nav-mega-title {
    font-size: 0.75rem;
    padding: 14px 0 6px;
    margin-bottom: 4px;
  }

  .nav-links.open .nav-mega-foot {
    display: block;
    margin-top: 8px;
    padding-top: 10px;
  }

  .nav-links.open .nav-mega-foot a { padding: 11px 0; font-size: 1rem; display: block; }

  /* Hover-Brücke ist auf Touch sinnlos und würde Taps abfangen */
  .nav-dropdown::after { display: none !important; }

  .hero { padding: 110px 0 90px; min-height: 80vh; }
  .hero.hero-sub { padding: 120px 0 60px; }
  .hero-trust-mini { margin-top: 28px; }
  .hero-scroll { display: none; }

  .roadmap-steps { grid-template-columns: 1fr 1fr; gap: 28px 16px; }

  .courses-grid, .reviews-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }

  .instructor-stats { grid-template-columns: 1fr 1fr; gap: 24px; }

  .final-cta { padding: 100px 0; }
  .final-cta-actions .btn { width: 100%; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bar { flex-direction: column; gap: 12px; text-align: center; }

  .top-bar-right { gap: 12px; }
  .top-bar-badge { display: none; }

  /* Die volle Adresse (215 px) passt neben der Telefonnummer (134 px) nicht in
     die 345 px, die auf einem 393-px-Handy übrig bleiben — sie brach zweizeilig
     um. Auf dem Handy daher das Kurzlabel; der mailto-Link bleibt derselbe. */
  .top-bar-link { white-space: nowrap; }
  .tb-long { display: none; }
  .tb-short { display: inline; }

  .features, .intent, .roadmap, .courses, .process, .reviews, .instructor, .faq, .final-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .features-partners-grid { gap: 32px 16px; }
  .features-divider { margin: 56px 0 36px; }
  .partner { flex: 1 1 120px; min-width: 120px; }

  .course-detail-sidebar { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .roadmap-steps { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .instructor-stats { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}


/* ══════════════════════════════════════════════════════════════════════
   CONTENT-SEITEN (Guiding, Verleih, Partner, Team, Jobs, News …)
   Typografie wird von .course-detail-body geerbt — hier nur Layout
   und die zusätzlichen Bausteine.
   ══════════════════════════════════════════════════════════════════════ */

.content-page {
  padding: 100px 0;
  background: var(--bg-light);
}

.content-page-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
}

.content-page-inner .lead-out {
  font-size: 1.1rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--blue-mid);
  padding-left: 20px;
  margin-top: 40px;
}

/* ── Preis- und Datentabellen ─────────────────────────────────────── */

.table-wrap {
  overflow-x: auto;
  margin: 24px 0 8px;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  min-width: 420px;
}

.price-table thead th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 0 16px 12px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.price-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  line-height: 1.5;
}

.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: var(--bg-light-hover); }

.price-table tbody td:first-child {
  color: var(--ink);
  font-weight: 500;
}

.price-table tbody td:not(:first-child) {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--ink-soft);
  font-weight: 600;
}

.content-page-inner .table-note,
.course-detail-body .table-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 12px 0 32px;
}

/* ── Info-Karten (Ärzte, Partner, Gutscheine) ─────────────────────── */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin: 28px 0 40px;
}

.info-card {
  background: var(--bg-light-card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 26px 22px;
  transition: all 0.35s var(--ease);
}

.info-card:hover {
  border-color: var(--line-accent);
  box-shadow: 0 18px 44px -20px rgba(15, 26, 46, 0.18);
  transform: translateY(-2px);
}

.content-page-inner .info-card h3 {
  font-size: 1.12rem;
  margin: 0 0 8px;
}

.content-page-inner .info-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.content-page-inner .info-card p:last-child { margin-bottom: 0; }

.info-card-price {
  font-family: var(--serif);
  font-size: 1.5rem !important;
  color: var(--blue-mid) !important;
  font-weight: 500;
  margin-bottom: 10px !important;
}

.info-card-meta {
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  font-variant-numeric: tabular-nums;
}

/* ── Callouts ─────────────────────────────────────────────────────── */

.callout {
  border-radius: var(--r-card);
  padding: 22px 26px;
  margin: 32px 0;
  border: 1px solid var(--line);
  background: var(--bg-light-alt);
}

.content-page-inner .callout p,
.course-detail-body .callout p {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.callout--info {
  background: rgba(58, 142, 212, 0.07);
  border-color: rgba(58, 142, 212, 0.28);
}

.callout--warn {
  background: rgba(255, 193, 7, 0.09);
  border-color: rgba(255, 193, 7, 0.38);
}

/* ── Nummerierte Ablauf-Listen ────────────────────────────────────── */

.content-page-inner ol.list-steps,
.course-detail-body ol.list-steps {
  list-style: none;
  counter-reset: step;
  margin: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-page-inner ol.list-steps li,
.course-detail-body ol.list-steps li {
  position: relative;
  counter-increment: step;
  padding-left: 44px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.content-page-inner ol.list-steps li::before,
.course-detail-body ol.list-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-gradient);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── Team ─────────────────────────────────────────────────────────── */

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 8px 0 40px;
}

.team-member {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--bg-light-card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
}

.team-member-photo {
  border-radius: var(--r-small);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-light-alt);
}

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

.content-page-inner .team-member-body h3 { margin: 0 0 4px; }

.team-member-role {
  font-size: 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-mid) !important;
  margin-bottom: 14px !important;
}

.content-page-inner ul.team-member-creds {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.content-page-inner ul.team-member-creds li {
  padding: 5px 12px;
  font-size: 0.8rem;
  background: var(--bg-light-alt);
  border-radius: 100px;
  color: var(--ink-soft);
}

.content-page-inner ul.team-member-creds li::before { display: none; }

.content-page-inner .team-member-links { margin: 14px 0 6px; }
.content-page-inner .team-member-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-mid);
  border-bottom: none;
}
.content-page-inner .team-member-links a:hover { color: var(--navy-dark); }

.team-member-contact {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* ── TaucherNews ──────────────────────────────────────────────────── */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 8px 0 40px;
}

.news-card {
  background: var(--bg-light-card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px;
  transition: all 0.35s var(--ease);
}

.news-card:hover {
  border-color: var(--line-accent);
  box-shadow: 0 18px 44px -20px rgba(15, 26, 46, 0.18);
  transform: translateY(-2px);
}

.news-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}

.content-page-inner .news-card h3 {
  font-size: 1.18rem;
  margin: 0 0 10px;
  line-height: 1.3;
}

.content-page-inner .news-card h3 a { border-bottom: none; color: var(--ink); }
.content-page-inner .news-card h3 a:hover { color: var(--blue-mid); }

.content-page-inner .news-card p {
  font-size: 0.94rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .team-member { grid-template-columns: 1fr; gap: 20px; }
  .team-member-photo { max-width: 240px; aspect-ratio: 1 / 1; }
}

@media (max-width: 768px) {
  .content-page { padding: 64px 0; }
  .content-page-inner { padding: 0 24px; }
  .info-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .team-member { padding: 20px; }
  .callout { padding: 18px 20px; }
  .price-table { font-size: 0.92rem; }
  .price-table thead th,
  .price-table tbody td { padding-left: 12px; padding-right: 12px; }
}

/* Trustmary-Widget-Container (echte Bewertungen auf der Startseite) */
.reviews-widget {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  min-height: 120px;
}
@media (max-width: 768px) {
  .reviews-widget { padding: 0 24px; }
}

/* Leere Rezensionen (nur Sterne, kein Text) ausblenden — die Klasse setzt
   hideEmptyTrustmaryReviews() in script.js. !important, weil das Widget
   display per Inline-Style auf den Karussell-Items steuert. */
.reviews-widget .tm-carousel-item.review-empty {
  display: none !important;
}

/* Trustmary Lead-Gen-Popup ausblenden — siehe killTrustmaryPopup() in script.js.
   CSS-Netz, damit es nicht kurz aufblitzt, bevor das Skript greift. */
[class*="tm-widget-lead-gen"],
[class*="lead-gen-form-with-image-popup"] {
  display: none !important;
}
