/* ============================================================================
   Rauert Peters Akademie -- Stylesheet
   Aufgebaut auf dem Design der Originalseite (Navy/Gold, Cormorant/Inter).
   Verbesserungen sind mit [+] gekennzeichnet.
   ========================================================================== */

@import url('fonts.css');

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

:root {
  /* Farben -- unverändert aus dem Original übernommen */
  --navy: #0B1F3A;
  --navy-mid: #162D52;
  --navy-light: #1E3D6E;
  --navy-deep: #060F1C;
  --gold: #B8992A;
  --gold-light: #D4B347;
  --gold-pale: #F5EDD0;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-100: #F0EEE9;
  --gray-300: #C8C4BC;
  --text-dark: #0B1F3A;
  --text-mid: #3D3A36;

  /* [+] Etwas dunkler als das Original (#7A7570) -- erreicht auf Weiß
         ein Kontrastverhältnis von 5,3:1 und erfüllt damit WCAG AA
         auch bei kleinen Schriftgraden. */
  --text-muted: #6B665F;

  /* [+] Helligkeitsstufen für Text auf dunklem Grund. Im Original standen
         hier Werte bis 0,2 Deckkraft -- das war auf Navy nicht lesbar. */
  --on-dark-strong: rgba(255, 255, 255, 0.92);
  --on-dark: rgba(255, 255, 255, 0.74);
  --on-dark-soft: rgba(255, 255, 255, 0.58);

  /* [+] Einheitliche Abstandsskala statt Einzelwerte */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 44px;
  --space-8: 64px;
  --space-9: 96px;

  --radius: 4px;
  --radius-sm: 3px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* [+] Serifenschrift als Anzeigeschrift. Im Original wurde Cormorant
         nur im Logo verwendet, alle Überschriften liefen auf Inter. */
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-5); }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--space-5); }
/* Verschachtelte Fassung: äußerer Container liefert den Rand schon */
.container--flush { padding: 0; }

/* Kleine Hilfsklassen, ersetzen frühere Inline-Stile */
.mt-4 { margin-top: var(--space-4); }
.section-label--center { text-align: center; }
.btn-block { width: 100%; }

/* [+] Sichtbarer Fokusrahmen für Tastaturbedienung. Im Original fehlte
       jede Fokusanzeige -- die Seite war per Tastatur nicht navigierbar. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.hero :focus-visible,
.guide :focus-visible,
.bundles-strip :focus-visible,
.cta-section :focus-visible,
.footer :focus-visible {
  outline-color: var(--gold-light);
}

/* [+] Sprunglink: war im Original per Inline-Stil gelöst und beim Fokus
       nur mit JavaScript sichtbar. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ============================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(11, 31, 58, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184, 153, 42, 0.18);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold-light); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--on-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-right { display: flex; align-items: center; gap: var(--space-4); flex-shrink: 0; }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--on-dark-strong);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
/* [+] Kreuz-Animation im geöffneten Zustand */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* [+] Mobiles Menü. Im Original gab es den Hamburger-Knopf, aber weder
       Menü noch Funktion -- auf dem Handy war die Navigation unerreichbar. */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open { background: rgba(11, 31, 58, 0.98); backdrop-filter: blur(12px); }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 31, 58, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(184, 153, 42, 0.2);
    padding: var(--space-2) var(--space-5) var(--space-5);
  }
  .nav.menu-open .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .nav.menu-open .nav-links li:last-child { border-bottom: none; }
  .nav.menu-open .nav-links a { display: block; padding: 16px 0; font-size: 15px; }
}

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  animation: grainShift 8s steps(2) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

.hero-bg-lines { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-lines span {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(184,153,42,0.15) 40%, rgba(184,153,42,0.05) 100%);
  transform: translateY(-100%);
  animation: lineReveal 1.2s var(--ease) forwards;
}
.hero-bg-lines span:nth-child(1) { left: 33%; animation-delay: 0.2s; }
.hero-bg-lines span:nth-child(2) { left: 66%; animation-delay: 0.4s; }
.hero-bg-lines span:nth-child(3) { left: 80%; animation-delay: 0.6s; }
@keyframes lineReveal { to { transform: translateY(0); } }

.hero-orb {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(184,153,42,0.12) 0%, rgba(184,153,42,0.04) 50%, transparent 70%);
  animation: orbPulse 6s ease-in-out infinite;
  z-index: 0;
}
@keyframes orbPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

.hero-layout {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-8);
  align-items: center;
  padding: 80px 0;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s 0.3s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

/* [+] Anzeigeschrift statt Inter. Cormorant entfaltet ihre Wirkung erst
       in großen Graden -- genau hier. */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0; transform: translateY(24px);
  animation: wordReveal 0.5s var(--ease) forwards;
}
/* [+] Verzögerungen als Klassen statt als Inline-Stil. Damit kommt die Seite
       ohne 'unsafe-inline' in der Content-Security-Policy aus. */
.hero h1 .w1 { animation-delay: 0.50s; }
.hero h1 .w2 { animation-delay: 0.74s; }
.hero h1 .w3 { animation-delay: 1.10s; }
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 17px;
  color: var(--on-dark);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: var(--space-7);
  font-weight: 400;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s 1.1s forwards;
}
.hero-actions {
  display: flex; gap: var(--space-4); flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s 1.3s forwards;
}

.hero-photo-col {
  opacity: 0; transform: translateX(32px) scale(0.97);
  animation: photoReveal 0.9s var(--ease) 0.8s forwards;
}
@keyframes photoReveal { to { opacity: 1; transform: translateX(0) scale(1); } }
.hero-photo-wrap { position: relative; }
.hero-photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  background: var(--navy-mid);
  border: 1px solid rgba(184, 153, 42, 0.2);
}
.hero-photo-frame::before, .hero-photo-frame::after {
  content: ''; position: absolute; width: 24px; height: 24px; z-index: 3;
}
.hero-photo-frame::before { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.hero-photo-frame::after { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero-badge {
  position: absolute; bottom: -16px; left: -20px;
  background: var(--gold); color: var(--navy);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  line-height: 1.2; margin-bottom: 2px;
}
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--on-dark-soft);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(184,153,42,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }

/* ============================================================================
   SCHALTFLÄCHEN
   ========================================================================== */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 15px 32px;
  font-family: var(--font-text);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-decoration: none; border: none; cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,153,42,0.35); }
.btn-primary:active { transform: translateY(0); }
/* [+] Zustand während des Absendens war im Original nicht gestaltet */
.btn-primary[disabled] { opacity: 0.6; cursor: progress; transform: none; box-shadow: none; }

.btn-outline {
  background: transparent; color: var(--on-dark-strong);
  padding: 15px 32px;
  font-family: var(--font-text);
  font-size: 14px; letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(184,153,42,0.08); }

/* ============================================================================
   EINBLENDEN BEIM SCROLLEN
   ========================================================================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.19s; }
.d4 { transition-delay: 0.26s; }
.d5 { transition-delay: 0.33s; }
.d6 { transition-delay: 0.40s; }

/* ============================================================================
   ABSCHNITTE
   ========================================================================== */
section { padding: var(--space-9) 0; }

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.section-title em { font-style: italic; color: var(--navy-light); }

/* ============================================================================
   PROBLEM
   ========================================================================== */
.problem { background: var(--off-white); overflow: hidden; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--gray-300);
}
.problem-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), background 0.2s;
}
.problem-card.visible { opacity: 1; transform: translateY(0); }
.problem-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.problem-card:hover::after { transform: scaleX(1); }
.problem-card:hover { background: #FDFCFA; }
.problem-card-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}
.problem-card h3 { font-size: 19px; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; line-height: 1.3; }
.problem-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================================
   ÜBER MICH
   ========================================================================== */
.guide { background: var(--navy); overflow: hidden; }
.guide-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.guide-text .section-title { color: var(--white); }
.guide-text .section-title em { color: var(--gold-light); }
.guide-text p { color: var(--on-dark); font-size: 16px; margin-top: var(--space-5); line-height: 1.8; font-weight: 400; }
.guide-cred { margin-top: 36px; padding-top: 36px; border-top: 1px solid rgba(184,153,42,0.25); }
.cred-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: var(--space-4); }
.cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 9px; flex-shrink: 0; }
.cred-item span { color: var(--on-dark); font-size: 14px; line-height: 1.6; }

.guide-visual { display: flex; flex-direction: column; gap: var(--space-4); }
.guide-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,153,42,0.18);
  border-radius: var(--radius);
  padding: 28px 32px;
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), background 0.25s, border-color 0.25s;
}
.guide-stat.visible { opacity: 1; transform: translateX(0); }
.guide-stat:hover { background: rgba(255,255,255,0.08); border-color: rgba(184,153,42,0.45); }
.guide-stat-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 300;
  color: var(--gold-light);
  letter-spacing: -0.01em; line-height: 1.1;
}
.guide-stat-label { font-size: 13px; color: var(--on-dark-soft); margin-top: 6px; line-height: 1.5; }

/* ============================================================================
   KURSE
   ========================================================================== */
.audiences { background: var(--white); }
.audience-intro p { font-size: 17px; color: var(--text-muted); margin-top: 20px; line-height: 1.75; font-weight: 400; max-width: 70ch; }

.audience-tabs { display: flex; flex-wrap: wrap; margin-top: 48px; border-bottom: 2px solid var(--gray-300); gap: 4px; }
.tab-btn {
  padding: 16px 32px;
  font-family: var(--font-text);
  font-size: 15px; font-weight: 400; letter-spacing: 0.03em;
  background: var(--gray-100);
  border: none; border-bottom: 2px solid transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: -2px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.tab-btn:hover:not(.active) { color: var(--navy); background: #E9E6E0; }
.tab-btn.active { color: var(--navy); background: var(--white); border-bottom-color: var(--gold); font-weight: 600; }

.tab-content { display: none; padding: 48px 0; }
.tab-content.active { display: block; }

/* [+] Im Original als Inline-Stil im Markup, jetzt als Klasse */
.audience-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 36px; }
.audience-split h3 { font-size: 21px; font-weight: 600; color: var(--text-dark); margin-bottom: var(--space-4); line-height: 1.35; }
.audience-note { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

.audience-pain { display: flex; gap: var(--space-3); align-items: flex-start; margin-bottom: 14px; }
.pain-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.pain-icon svg { width: 10px; height: 10px; }
.pain-text { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

.bundle-selector { display: flex; gap: var(--space-3); margin-bottom: 36px; flex-wrap: wrap; }
.bundle-btn {
  padding: 11px 22px;
  font-family: var(--font-text);
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bundle-btn:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
.bundle-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.bundle-view { display: none; }
.bundle-view.active { display: block; }

.bundle-header {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: start;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--gray-100);
}
.bundle-title { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--text-dark); margin-bottom: var(--space-2); }
.bundle-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 60ch; }
.bundle-price-box { background: var(--gold-pale); border-radius: var(--radius); padding: 20px 24px; text-align: right; min-width: 168px; }
.bundle-price-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; }
.bundle-price-amount { font-family: var(--font-display); font-size: 34px; font-weight: 400; color: var(--navy); line-height: 1.1; }
.bundle-price-compare { font-size: 12px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }

.course-list { display: flex; flex-direction: column; gap: var(--space-3); }
.course-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 24px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  text-decoration: none; color: inherit;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.course-item.visible { opacity: 1; transform: translateY(0); }
.course-item:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(184,153,42,0.12); }
.course-num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 5px 10px;
  border-radius: 2px;
  white-space: nowrap;
  margin-top: 2px;
}
.course-body h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; line-height: 1.4; }
.course-hook { font-size: 13px; color: var(--text-muted); font-style: italic; line-height: 1.55; }
.course-skill { font-size: 12px; color: var(--gold); margin-top: 7px; font-weight: 600; line-height: 1.5; }

/* [+] Preiskasten im Tab „Privatverkäufer" -- war Inline-Stil */
.price-inline { margin-top: 20px; padding: 20px 24px; background: var(--gold-pale); border-radius: var(--radius); }
.price-inline-label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.03em; }
.price-inline-amount { font-family: var(--font-display); font-size: 32px; font-weight: 400; color: var(--navy); line-height: 1.2; }
.price-inline-compare { font-size: 12px; color: var(--text-muted); }

/* ============================================================================
   DER WEG
   ========================================================================== */
.process { background: var(--gray-100); overflow: hidden; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 56px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 56px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.25;
}
.step {
  padding: 36px 28px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.step.visible { opacity: 1; transform: translateY(0); }
.step-num {
  font-family: var(--font-display);
  font-size: 54px; font-weight: 300;
  color: var(--gold);
  opacity: 0.55; line-height: 1;
  margin-bottom: var(--space-4);
  transition: opacity 0.2s;
}
.step:hover .step-num { opacity: 1; }
.step h3 { font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================================
   BUNDLE-ÜBERSICHT
   ========================================================================== */
.bundles-strip { background: var(--navy); position: relative; overflow: hidden; }
.bundles-strip::before, .bundles-strip::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1px solid rgba(184,153,42,0.08);
  animation: ringPulse 8s ease-in-out infinite;
}
.bundles-strip::before { top: -80px; right: -80px; width: 500px; height: 500px; }
.bundles-strip::after { top: -20px; right: -20px; width: 300px; height: 300px; animation-delay: 2s; border-color: rgba(184,153,42,0.06); }
@keyframes ringPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.bundles-strip-inner { position: relative; z-index: 1; }
.bundles-strip .section-title { color: var(--white); }
.bundles-strip .section-title em { color: var(--gold-light); }
.bundles-strip .section-label { color: var(--gold-light); }
.bundles-strip-lead { color: var(--on-dark); font-size: 16px; margin-top: 20px; font-weight: 400; line-height: 1.8; max-width: 68ch; }

.bundle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-3); margin-top: var(--space-7); }
.bundle-tile {
  border: 1px solid rgba(184,153,42,0.18);
  border-radius: var(--radius);
  padding: var(--space-5);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.25s, background 0.25s;
}
.bundle-tile.visible { opacity: 1; transform: translateY(0); }
.bundle-tile:hover { border-color: rgba(184,153,42,0.55); background: rgba(184,153,42,0.07); }
.bundle-tile-code { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--gold-light); }
.bundle-tile-name { font-size: 15px; font-weight: 600; color: var(--white); margin: var(--space-2) 0 6px; line-height: 1.35; }
.bundle-tile-group { font-size: 12px; color: var(--on-dark-soft); }
.bundle-tile-price { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--gold-light); margin-top: 14px; }
.bundle-tile-price small { font-family: var(--font-text); font-size: 12px; color: var(--on-dark-soft); text-decoration: line-through; margin-left: 6px; }

/* ============================================================================
   WARTELISTE / FORMULAR
   ========================================================================== */
.reservation { background: var(--off-white); }
.reservation-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.reservation-text p { font-size: 16px; color: var(--text-muted); margin-top: 20px; line-height: 1.8; }

.res-form {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
/* [+] Pflichtfeld-Kennzeichnung -- im Original nicht vorhanden */
.form-group label .req { color: var(--gold); margin-left: 2px; }

.form-group input, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-text);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,153,42,0.14);
}
/* [+] Fehlerhafte Felder werden markiert */
.form-group input[aria-invalid="true"], .form-group select[aria-invalid="true"] {
  border-color: #B03A2E;
  background: #FDF6F5;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B665F' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.gdpr-row { display: flex; gap: var(--space-3); align-items: flex-start; margin-bottom: var(--space-5); }
.gdpr-row input[type="checkbox"] { width: 17px; height: 17px; min-width: 17px; margin-top: 3px; accent-color: var(--gold); cursor: pointer; }
.gdpr-row label { font-size: 13px; color: var(--text-muted); line-height: 1.55; cursor: pointer; }
.gdpr-row a { color: var(--navy-light); text-decoration: underline; text-underline-offset: 2px; }

.form-success { display: none; text-align: center; padding: var(--space-5); }
.form-success-icon { font-size: 34px; margin-bottom: var(--space-3); color: var(--gold); animation: spinIn 0.5s var(--ease); }
@keyframes spinIn { from { transform: scale(0) rotate(-180deg); } to { transform: scale(1) rotate(0); } }
.form-success h4 { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--text-dark); margin-bottom: var(--space-2); }
.form-success p { font-size: 14px; color: var(--text-muted); }

.form-error-msg { font-size: 13px; color: #B03A2E; margin-top: var(--space-2); display: none; line-height: 1.5; }
.form-error-msg.show { display: block; }

/* [+] Hinweis, wenn der Versand technisch scheitert. Im Original wurde in
       diesem Fall trotzdem „Danke" angezeigt und der Lead war verloren. */
.form-fallback {
  display: none;
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 1px solid #E0C9A0;
  border-left: 3px solid var(--gold);
  background: #FDF9EF;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
}
.form-fallback.show { display: block; }
.form-fallback a { color: var(--navy-light); font-weight: 600; }

/* [+] Honigtopf gegen Bots -- für Menschen unsichtbar, nicht per display:none,
       damit Ausfüllhilfen ihn nicht überspringen. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ============================================================================
   ABSCHLUSS-AUFRUF
   ========================================================================== */
.cta-section { background: var(--navy); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent calc(25% - 0.5px), rgba(184,153,42,0.06) 25%, transparent calc(25% + 0.5px)),
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(184,153,42,0.06) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(90deg, transparent calc(75% - 0.5px), rgba(184,153,42,0.06) 75%, transparent calc(75% + 0.5px));
  animation: ctaBgShift 12s ease-in-out infinite;
}
@keyframes ctaBgShift { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1.12;
  margin: var(--space-3) 0 20px;
}
.cta-section h2 em { font-style: italic; color: var(--gold-light); }
.cta-section p { color: var(--on-dark); font-size: 17px; max-width: 520px; margin: 0 auto 40px; font-weight: 400; }
.cta-section .btn-outline { margin-left: var(--space-3); }

/* ============================================================================
   FUSSZEILE
   ========================================================================== */
.footer { background: var(--navy-deep); padding: 48px 0 36px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5); flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo { font-family: var(--font-display); font-size: 19px; font-weight: 400; color: var(--on-dark); }
.footer-logo span { color: var(--gold); }
.footer-social { display: flex; gap: var(--space-3); align-items: center; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  color: var(--on-dark-soft);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover { color: var(--gold-light); border-color: rgba(184,153,42,0.45); background: rgba(184,153,42,0.07); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap; }
.footer-links { display: flex; gap: var(--space-5); flex-wrap: wrap; align-items: center; }
/* [+] Im Original 0,3 Deckkraft -- praktisch unlesbar */
.footer-links a { font-size: 13px; color: var(--on-dark); text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.footer-copy { font-size: 12px; color: var(--on-dark-soft); }

/* ============================================================================
   ANIMATIONEN
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 0.7; } }
@keyframes wordReveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================================
   ANPASSUNG AN BILDSCHIRMBREITEN
   ========================================================================== */
@media (max-width: 1000px) {
  /* [+] Im Original wurde das Foto hier komplett ausgeblendet. Es wandert
         jetzt über den Text -- das Gesicht des Gründers ist ein
         Vertrauenssignal und auf dem Handy besonders wichtig. */
  .hero-layout { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero-photo-col { order: -1; max-width: 300px; }
  .hero-badge { left: auto; right: -12px; }
  .hero { min-height: 0; padding-top: 96px; padding-bottom: var(--space-8); }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 900px) {
  .guide-content, .reservation-inner { grid-template-columns: 1fr; gap: 48px; }
  .audience-split { grid-template-columns: 1fr; gap: var(--space-5); }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .bundle-header { grid-template-columns: 1fr; }
  .bundle-price-box { text-align: left; }
  .legal-header { padding: 116px 0 44px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; }
  .tab-btn { padding: 13px 16px; font-size: 13px; flex: 1 1 auto; }
  .res-form { padding: var(--space-5); }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-section { padding: 84px 0; }
  .cta-section .btn-outline { margin-left: 0; margin-top: var(--space-3); }
  .course-item { flex-direction: column; gap: var(--space-3); }
}

/* ============================================================================
   [+] BEWEGUNG REDUZIEREN
   Im Original respektierte nur das Einblenden beim Scrollen diese
   Einstellung. Die Dauer-Animationen (Körnung, Kreise, Leuchtpunkt,
   schwebendes Abzeichen) liefen weiter -- für Menschen mit
   Bewegungsempfindlichkeit ein echtes Problem.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-eyebrow, .hero-sub, .hero-actions, .hero h1 .word, .hero-photo-col,
  .reveal, .reveal-left, .reveal-right, .problem-card, .guide-stat,
  .course-item, .bundle-tile, .step, .hero-scroll-hint {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================================
   [+] DRUCKANSICHT -- vor allem für die Rechtsseiten
   ========================================================================== */
@media print {
  .nav, .hero-bg-lines, .hero-orb, .hero-scroll-hint, .footer-social,
  .skip-link, .legal-back, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .legal-header { background: none; padding: 0 0 16pt; }
  .legal-header h1 { color: #000; font-size: 20pt; }
  .legal-header .legal-kicker, .legal-header .legal-updated { color: #444; }
  .legal-body { padding: 0; }
  .legal-body p, .legal-body li { color: #000; }
  .legal-body a { color: #000; text-decoration: underline; }
  .legal-body a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  section { padding: 12pt 0; }
}
