@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A8873A;
  --bg-dark: #0D2B2E;
  --bg-card: #133438;
  --text-white: #F5F5F5;
  --text-muted: #9BBFC4;
  --border: rgba(201, 168, 76, 0.25);
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── STICKY HEADER ────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 20px;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 30, 34, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header-logo {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header.scrolled .site-header-logo {
  opacity: 1;
}

.site-header-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #1a1400;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(201,168,76,0.3);
  animation: btn-scale 2.5s ease-in-out infinite;
}

.site-header.scrolled .site-header-cta {
  opacity: 1;
}

.site-header-cta:hover {
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
  animation: none;
  transform: scale(1.06);
  filter: brightness(1.25);
}

/* ── HERO SECTION ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 65%),
    linear-gradient(160deg, #1A4D52 0%, #0D2B2E 50%, #071E22 100%);
}

/* Subtle background grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Diagonal shimmer sweep */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.03) 44%,
    rgba(255, 255, 240, 0.07) 50%,
    rgba(255, 255, 255, 0.03) 56%,
    transparent 65%
  );
  background-size: 200% 100%;
  background-position: 150% 0;
  animation: hero-shimmer 15s linear infinite;
  pointer-events: none;
}

@keyframes hero-shimmer {
  0%   { background-position: 150% 0; }
  50%  { background-position: -50% 0; }
  100% { background-position: 150% 0; }
}

@media (max-width: 768px) {
  .hero::after {
    display: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ── TOP BADGE ─────────────────────────────────── */
.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  background: rgba(201,168,76,0.06);
}

/* ── MAIN HEADLINE ─────────────────────────────── */
.hero-headline {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-white);
}

.hero-headline .highlight {
  color: var(--gold);
  position: relative;
  white-space: nowrap;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 800;
}

/* ── SUBHEADLINE ───────────────────────────────── */
.hero-sub {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--text-white);
  opacity: 0.92;
  line-height: 1.4;
}

/* ── BODY TEXT ─────────────────────────────────── */
.hero-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
}
.hero-text strong {
  color: var(--text-white);
}

/* ── CTA BUTTON ────────────────────────────────── */
.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #1a1400;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 18px 44px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
  animation: btn-scale 2.5s ease-in-out infinite;
}

@keyframes btn-scale {
  0%, 100% { transform: scale(1);    filter: brightness(1); }
  50%       { transform: scale(1.04); filter: brightness(1.25); }
}

.hero-cta:hover {
  transform: scale(1.06);
  filter: brightness(1.25);
  box-shadow: 0 8px 36px rgba(201,168,76,0.5);
  animation: none;
}

/* ── DIVIDER LINE ──────────────────────────────── */
.hero-divider {
  width: 100%;
  max-width: 700px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── COUNTDOWN TIMER ───────────────────────────── */
.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 440px;
}

.countdown-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  position: relative;
}

.countdown-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: var(--border);
}

.countdown-number {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  min-width: 44px;
  text-align: center;
}

.countdown-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

br.mobile-only { display: none; }

/* ── HERO MOBILE ───────────────────────────────── */
@media (max-width: 600px) {
  .hero {
    padding: 66px 20px 20px;
  }

  .hero-inner {
    gap: 18px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  br.desktop-only {
    display: none;
  }

  br.mobile-only {
    display: block;
  }

  .hero-cta {
    font-size: 15px;
    padding: 14px 28px;
  }

  .hero-headline {
    hyphens: none;
  }

}

/* ══════════════════════════════════════════════════
   SHARED SECTION BASE
   ══════════════════════════════════════════════════ */
.section {
  padding: 100px 20px;
  position: relative;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-headline {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-white);
  text-align: center;
  line-height: 1.2;
  margin-top: -28px;
}

.section-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
}

/* ── ROADMAP: 3 TAGE (hell) ────────────────────── */
.roadmap-section {
  position: relative;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(26,107,114,0.12) 0%, transparent 65%),
    linear-gradient(180deg, #E8F5F5 0%, #D2EAEA 60%, #C8E4E4 100%);
  border-top: 1px solid rgba(13,43,46,0.12);
  overflow: hidden;
}

/* Subtiles Grid-Muster */
.roadmap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,107,114,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,114,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.roadmap-section .section-eyebrow { color: #1A6B72; }
.roadmap-section .section-headline { color: #0D2B2E; }

.roadmap-intro {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.8;
  color: #3D5C5F;
  text-align: center;
  max-width: 680px;
  margin-top: -16px;
}

/* ── Timeline ────────────────────────────────── */
.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  position: relative;
  margin: 8px 0 4px;
}

/* Verbindungslinie von Mitte Punkt 1 bis Mitte Punkt 3 */
.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0.4;
  pointer-events: none;
}

.roadmap-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.roadmap-tl-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold-dark) 100%);
  color: #1a1400;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.roadmap-tl-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A6B72;
  white-space: nowrap;
}

/* ── Grid & Cards ────────────────────────────── */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.roadmap-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(13,43,46,0.15);
  border-top: 3px solid #1A6B72;
  border-radius: 12px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.roadmap-card--day2 { border-top-color: #208A72; }
.roadmap-card--day3 { border-top-color: var(--gold); }

.roadmap-card:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(201,168,76,0.5);
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.18), 0 4px 16px rgba(13,43,46,0.08);
}

/* ── Card Icon ───────────────────────────────── */
.roadmap-card-icon {
  color: #1A6B72;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,107,114,0.1);
  border-radius: 10px;
  flex-shrink: 0;
  align-self: center;
}

.roadmap-card--day3 .roadmap-card-icon {
  color: var(--gold-dark);
  background: rgba(201,168,76,0.12);
}

.roadmap-card-icon svg {
  width: 22px;
  height: 22px;
}

/* ── Badge ───────────────────────────────────── */
.roadmap-day-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A6B72;
  border: 1px solid rgba(26,107,114,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  background: rgba(26,107,114,0.08);
  align-self: center;
}

.roadmap-card-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #0D2B2E;
  line-height: 1.25;
  text-align: center;
}

.roadmap-card-subtitle {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1A6B72;
  margin-top: 5px;
  text-align: center;
}

.roadmap-card--day3 .roadmap-card-subtitle {
  color: var(--gold-dark);
}

.roadmap-card-intro {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #3D5C5F;
  border-bottom: 1px solid rgba(13,43,46,0.12);
  padding-bottom: 18px;
}

.roadmap-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.roadmap-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #3D5C5F;
}

.roadmap-points li strong {
  color: #0D2B2E;
}

.roadmap-point-icon {
  color: #1A6B72;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .roadmap-timeline {
    display: none;
  }
}

/* ── SECTION 1: BULLET POINTS (dunkel) ─────────── */
.bullets-section {
  background: linear-gradient(180deg, #071E22 0%, #0D2B2E 100%);
}

.bullets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.bullet-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 -2px 16px rgba(201,168,76,0.1);
  backdrop-filter: blur(4px);
}

.bullet-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 -2px 24px rgba(201,168,76,0.22), 0 8px 32px rgba(0,0,0,0.18);
}

.bullet-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.bullet-number {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(201,168,76,0.15);
  line-height: 1;
}

.bullet-icon-wrap {
  color: var(--gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.bullet-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.bullet-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.bullet-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── SECTION 2: VORHER / NACHHER ───────────────── */
.beforeafter-section {
  position: relative;
  background: linear-gradient(180deg, #EAF4F4 0%, #D6ECEC 100%);
  border-top: 1px solid rgba(13,43,46,0.12);
  border-bottom: 1px solid rgba(13,43,46,0.12);
}

.beforeafter-section .section-eyebrow { color: #1A6B72; }
.beforeafter-section .section-headline { color: #0D2B2E; }

.ba-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 20px;
  width: 100%;
  align-items: stretch;
}

/* ── VS Divider ─────────────────────────────── */
.ba-vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 40px;
  flex-shrink: 0;
}

.ba-vs-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(13,43,46,0.15) 50%, transparent);
}

.ba-vs-label {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201,168,76,0.6);
  padding: 10px 0;
  flex-shrink: 0;
  line-height: 1;
}

.ba-column {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ba-column-before {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.10);
  filter: saturate(0.35);
  opacity: 0.75;
}

.ba-column-after {
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 20px 60px rgba(201,168,76,0.22), 0 4px 16px rgba(0,0,0,0.08);
  transform: scale(1.025);
  transform-origin: center center;
  position: relative;
  z-index: 1;
}

.ba-column-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.ba-column-before .ba-column-header {
  background: linear-gradient(90deg, #2a1a1a 0%, #3d1f1f 100%);
  border-bottom: 1px solid rgba(180, 50, 50, 0.25);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.ba-column-after .ba-column-header {
  background: linear-gradient(90deg, #8a6a10 0%, #C9A84C 60%, #e8c96a 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  color: #1a1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.ba-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.ba-column-before .ba-header-icon {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}

.ba-column-after .ba-header-icon {
  background: rgba(0,0,0,0.15);
  color: #1a1000;
  border: 1px solid rgba(0,0,0,0.12);
}

.ba-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.ba-item-icon--cross {
  background: rgba(200, 60, 60, 0.2);
  border: 1px solid rgba(200, 70, 70, 0.35);
  color: #d96060;
}

.ba-item-icon--check {
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.45), 0 0 4px rgba(201,168,76,0.3);
}

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

.ba-list li {
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ba-list li + li {
  border-top: 1px solid rgba(13,43,46,0.08);
}

.ba-column-before .ba-list li {
  color: rgba(13,43,46,0.6);
}

.ba-column-after .ba-list li {
  color: #0D2B2E;
}

.ba-list li::before {
  display: none;
}

/* ── SECTION 3: WAS DU LERNST (dunkel) ─────────── */
.learn-section {
  background: linear-gradient(180deg, #0D2B2E 0%, #071E22 100%);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.learn-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
}

.learn-card--2 {
  border-left-color: rgba(201,168,76,0.5);
}

.learn-card--3 {
  border-left-color: var(--gold);
  box-shadow: -3px 0 20px rgba(201,168,76,0.08);
}

.learn-card:hover {
  border-color: rgba(201,168,76,0.55);
  border-left-color: var(--gold);
  background: rgba(255,255,255,0.09);
  box-shadow: -3px 0 24px rgba(201,168,76,0.18), 0 8px 32px rgba(0,0,0,0.15);
}

.learn-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.learn-icon-wrap {
  color: var(--gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.learn-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.learn-number {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(201,168,76,0.18);
  line-height: 1;
}

.learn-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.learn-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.learn-question {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}

.learn-question p {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  opacity: 0.85;
}

/* ── RESPONSIVE: NEUE SEKTIONEN ────────────────── */
@media (max-width: 760px) {
  .bullets-grid,
  .learn-grid {
    grid-template-columns: 1fr;
  }

  .ba-columns {
    grid-template-columns: 1fr;
  }

  .ba-vs-divider {
    flex-direction: row;
    width: 100%;
    height: 40px;
  }

  .ba-vs-line {
    flex: 1;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.12) 50%, transparent);
  }

  .ba-vs-label {
    padding: 0 12px;
    transform: rotate(90deg);
    font-size: 20px;
  }

  .ba-column-after {
    transform: scale(1);
  }
}

/* ── SECTION 4: WARUM UNSERE NISCHE (hell) ─────── */
.niche-section {
  background: linear-gradient(180deg, #EAF4F4 0%, #D6ECEC 100%);
  border-top: 1px solid rgba(13,43,46,0.12);
}

.niche-section .section-eyebrow { color: #1A6B72; }
.niche-section .section-headline { color: #0D2B2E; }

.niche-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.85;
  color: #3D5C5F;
  text-align: center;
  max-width: 720px;
  margin-top: -16px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.niche-image-wrap {
  margin-bottom: 40px;
  text-align: center;
}

.niche-image {
  width: 100%;
  max-width: 560px;
  display: inline-block;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 0 0 1px rgba(13,43,46,0.1);
}

.niche-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(13,43,46,0.15);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.niche-card:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(26,107,114,0.4);
}

.niche-card--highlight {
  background: rgba(26,107,114,0.05);
  border-color: rgba(26,107,114,0.25);
  border-top: 3px solid #1A6B72;
  box-shadow: 0 -2px 20px rgba(26,107,114,0.1);
}

.niche-card--highlight:hover {
  background: rgba(26,107,114,0.08);
  border-color: rgba(26,107,114,0.45);
  box-shadow: 0 -2px 28px rgba(26,107,114,0.18), 0 8px 32px rgba(0,0,0,0.06);
}

.niche-card-icon-wrap {
  color: #1A6B72;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,107,114,0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.niche-card-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.niche-card-icon-wrap--highlight {
  background: rgba(26,107,114,0.15);
  border: 1px solid rgba(26,107,114,0.25);
}

.br-mobile { display: none; }
@media (max-width: 767px) { .br-mobile { display: inline; } }

.niche-quote {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: #1A6B72;
  line-height: 1.4;
  margin: 4px 0;
  padding: 14px 20px;
  border-left: 3px solid #1A6B72;
  border-right: 3px solid #1A6B72;
  background: rgba(26,107,114,0.06);
  border-radius: 6px;
  text-align: center;
}

.niche-card-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D2B2E;
  line-height: 1.3;
}

.niche-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #3D5C5F;
}

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

@media (max-width: 960px) and (min-width: 761px) {
  .niche-grid {
    grid-template-columns: 1fr 1fr;
  }

  .niche-card:last-child {
    grid-column: 1 / -1;
  }
}

/* ── SECTION 5: HOT-SEAT (dunkel) ──────────────── */
.hotseat-section {
  background: linear-gradient(180deg, #071E22 0%, #0D2B2E 100%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hotseat-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hotseat-section .section-inner {
  position: relative;
  z-index: 1;
}

.hotseat-intro {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin-top: -16px;
}

.hotseat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.hotseat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.hotseat-card:hover {
  border-color: rgba(201,168,76,0.6);
  border-top-color: var(--gold-light);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.hotseat-card--highlight {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.4);
  border-top-color: var(--gold);
}

.hotseat-card--highlight:hover {
  background: rgba(201,168,76,0.09);
}

.hotseat-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hotseat-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.hotseat-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.hotseat-num {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(201,168,76,0.55);
  letter-spacing: 0.08em;
  line-height: 1;
  align-self: flex-start;
  margin-top: 2px;
}

.hotseat-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.hotseat-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── SECTION 6: FÜR WEN (hell) ─────────────────── */
.fitcheck-section {
  background: linear-gradient(180deg, #EAF4F4 0%, #D6ECEC 100%);
  border-top: 1px solid rgba(13,43,46,0.12);
}

.fitcheck-section .section-eyebrow { color: #1A6B72; }
.fitcheck-section .section-headline { color: #0D2B2E; }

.fitcheck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  align-items: start;
}

.fitcheck-col {
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 4px solid transparent;
  box-shadow: 0 4px 20px rgba(13,43,46,0.08);
}

.fitcheck-yes {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(26,107,114,0.15);
  border-top: 4px solid #1A6B72;
}

.fitcheck-no {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(180,60,60,0.12);
  border-top: 4px solid #b94040;
}

.fitcheck-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fitcheck-col-header h3 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #0D2B2E;
  line-height: 1.3;
}

.fitcheck-icon {
  font-size: 20px;
  font-weight: 700;
  color: #1A6B72;
  flex-shrink: 0;
}

.fitcheck-icon--no { color: #b94040; }

.fitcheck-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fitcheck-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(13,43,46,0.04);
  border-radius: 8px;
  padding: 10px 12px;
}

.fitcheck-no .fitcheck-list li {
  background: rgba(185,64,64,0.05);
}

.fc-check, .fc-cross {
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.fc-check { color: #1A6B72; }
.fc-cross  { color: #b94040; }

.fitcheck-list p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #3D5C5F;
}

.fitcheck-list strong { color: #0D2B2E; }

/* ── SECTION 7: ÜBER ROBERT (dunkel) ───────────── */
.about-section {
  background: linear-gradient(180deg, #071E22 0%, #0D2B2E 100%);
  border-top: 1px solid var(--border);
}

.about-inner {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 60px !important;
}

.about-photo {
  flex-shrink: 0;
}

.about-photo-img {
  width: 280px;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  border: 2px solid var(--border);
  display: block;
}

.about-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A4D52 0%, #0D2B2E 100%);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.about-headline {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-top: -8px;
}

.about-lead {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  gap: 4px;
}

.about-stat:last-child { border-right: none; }

.about-stat-number {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

.about-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-point-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-point strong { color: var(--text-white); }

/* ── RESPONSIVE: S5–S7 ─────────────────────────── */
@media (max-width: 760px) {
  .hotseat-grid { grid-template-columns: 1fr; }

  .fitcheck-grid { grid-template-columns: 1fr; }

  .about-inner {
    flex-direction: column !important;
    align-items: center !important;
  }

  .about-stats { flex-direction: column; }
  .about-stat  { border-right: none; border-bottom: 1px solid var(--border); }
  .about-stat:last-child { border-bottom: none; }
}

/* ── SECTION 8: FAQ (hell) ──────────────────────── */
.faq-section {
  background: linear-gradient(180deg, #EAF4F4 0%, #D6ECEC 100%);
  border-top: 1px solid rgba(13,43,46,0.12);
}

.faq-section .section-eyebrow { color: #1A6B72; }
.faq-section .section-headline { color: #0D2B2E; }

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(13,43,46,0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(26,107,114,0.35);
}

.faq-question {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 700;
  color: #0D2B2E;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #1A6B72;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #3D5C5F;
  padding: 0 28px 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item[open] .faq-answer {
  max-height: 600px;
  padding: 0 28px 24px;
}

/* ── SECTION 9: FINALER CTA (dunkel) ───────────── */
.finalcta-section {
  background: linear-gradient(160deg, #1A4D52 0%, #0D2B2E 50%, #071E22 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.finalcta-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 680px;
  text-align: center;
  margin-top: -16px;
}

.finalcta-details {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 640px;
  text-align: left;
}

.finalcta-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.fcd-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.finalcta-detail-item strong {
  color: var(--text-white);
}

.finalcta-note {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gold);
  max-width: 560px;
  text-align: center;
  font-style: italic;
}

/* ── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: #040E10;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 28px 20px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(155,191,196,0.5);
}

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

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(155,191,196,0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ── RESPONSIVE: S8–S9 ─────────────────────────── */
@media (max-width: 600px) {
  .finalcta-details {
    padding: 24px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ── MODAL OVERLAY ─────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 18, 20, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.modal--visible {
  display: flex;
}

.modal-box {
  position: relative;
  background: linear-gradient(160deg, #1A4D52 0%, #0D2B2E 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
  animation: modal-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--text-white); }

.modal-icon {
  color: var(--gold);
  font-size: 22px;
  text-align: center;
  margin-bottom: 16px;
  opacity: 0.8;
}

.modal-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--text-white);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 10px;
}

.modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ── AC FORM FIELDS ────────────────────────────── */
.ac-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ac-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ac-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.ac-required {
  color: #ff6b6b;
}

.ac-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.ac-input::placeholder { color: rgba(160,168,192,0.5); }

.ac-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}

.ac-input--error {
  border-color: #ff6b6b !important;
}

.ac-submit {
  margin-top: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #1a1400;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s, opacity 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  animation: btn-scale 2.5s ease-in-out infinite;
  width: 100%;
}

.ac-submit:hover:not(:disabled) {
  transform: scale(1.06);
  filter: brightness(1.25);
  box-shadow: 0 8px 36px rgba(201,168,76,0.5);
}

.ac-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ac-privacy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin: 4px 0 0;
}

.ac-thankyou {
  text-align: center;
  padding: 20px 0;
}

/* ── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

.reveal-from-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-from-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.18s;
}

.reveal-from-left.visible,
.reveal-from-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 600px) {
  .hero {
    padding: 50px 16px 32px;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .countdown-number {
    font-size: 20px;
    min-width: 32px;
  }

  .countdown-label {
    font-size: 9px;
  }
}

/* ── CTA WRAPPER & META LINE ──────────────────── */
.cta-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-meta {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-align: center;
}

/* ── Countdown in heller Roadmap-Sektion ──────── */
.roadmap-section .countdown-number {
  color: #0D2B2E;
}
.roadmap-section .countdown-label {
  color: #1A6B72;
}
.roadmap-section .countdown-item:not(:last-child)::after {
  background: rgba(13,43,46,0.2);
}

/* ── CTA-META in hellen Sektionen ─────────────── */
.roadmap-section .cta-meta,
.fitcheck-section .cta-meta,
.faq-section .cta-meta {
  color: #1A6B72;
}

.beforeafter-section .cta-meta {
  color: #1A6B72;
}

.beforeafter-section .countdown-number {
  color: #0D2B2E;
}

.beforeafter-section .countdown-label {
  color: #1A6B72;
}

/* ── Abstand nach Countdown am Sektionsende angleichen ── */
/* Hero hat padding-bottom: 40px; andere Sektionen 100px.
   Countdown ist letztes Element → 60px Differenz ausgleichen. */
.section-inner > .section-cta-wrap:last-child,
.section-inner > .learn-question:last-child,
.section-inner > .countdown-wrapper:last-child {
  margin-bottom: -60px;
}

/* Zeilenumbruch nur auf Desktop anzeigen */
br.desktop-break { display: inline; }
@media (max-width: 600px) {
  br.desktop-break { display: none; }
}
