/* =========================================================
   bodoschaferseminare.de — Design System
   "Tresor-Ledger" Identität: dunkles Tresor-Navy, Messing-Gold,
   gestufte Wachstumslinie als wiederkehrendes Signaturmotiv
   ========================================================= */

:root {
  /* Farben */
  --navy-900: #0b1c30;
  --navy-800: #0e2238;
  --navy-700: #16324f;
  --navy-600: #204468;
  --gold-500: #c9a227;
  --gold-400: #dbb84a;
  --gold-300: #e8cd7e;
  --green-600: #2e7d5b;
  --green-100: #e3f1ea;
  --linen-100: #f3f4f6;
  --linen-000: #fbfbfa;
  --ink-900: #182430;
  --ink-600: #46525e;
  --ink-400: #6f7a84;
  --line: #dfe3e7;
  --white: #ffffff;

  /* Typografie */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  /* Layout */
  --maxw: 1180px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-card: 0 12px 30px -14px rgba(11, 28, 48, 0.28);
  --shadow-lift: 0 20px 44px -18px rgba(11, 28, 48, 0.38);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--linen-000);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { padding-left: 1.2em; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; color: var(--navy-900); }
p { margin: 0 0 1em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Ledger-Linien Signaturmotiv ---------- */
.ledger-lines {
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.045) 0px,
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px,
    transparent 27px
  );
}
.ledger-lines--dark {
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(14, 34, 56, 0.05) 0px,
    rgba(14, 34, 56, 0.05) 1px,
    transparent 1px,
    transparent 27px
  );
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.01em;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: var(--shadow-card);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-300); }
.btn-block { width: 100%; }
.btn-sub {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  margin-top: 10px;
  color: var(--ink-400);
}
.btn-sub--light { color: rgba(255,255,255,0.72); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 28, 48, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 36px; height: 36px; }
.brand-word { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.08rem; line-height: 1.1; }
.brand-word small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.66rem; letter-spacing: 0.12em; color: var(--gold-300); text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.92rem; font-weight: 600; }
.main-nav a:hover { color: var(--gold-300); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .main-nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(120% 140% at 85% 0%, var(--navy-700) 0%, var(--navy-900) 62%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: end;
}
.hero-copy { padding-bottom: 56px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 600;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--gold-300); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 30px; }
.hero-figure { position: relative; align-self: end; }
.hero-figure img { width: 100%; max-width: 460px; margin: 0 auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45)); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 20, 34, 0.55);
}
.stat-row div { padding: 18px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-row div:last-child { border-right: none; }
.stat-num { font-family: var(--font-mono); font-size: 1.5rem; color: var(--gold-300); display: block; }
.stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.68); text-transform: uppercase; letter-spacing: 0.04em; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 320px; margin: 0 auto; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-row div:nth-child(2) { border-right: none; }
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-light { background: var(--linen-000); }
.section-tint { background: var(--linen-100); }
.section-dark { background: var(--navy-900); color: rgba(255,255,255,0.88); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-head { max-width: 68ch; margin-bottom: 42px; }
.section-head .eyebrow-mini {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 10px;
  display: block;
}
.section-dark .eyebrow-mini { color: var(--gold-300); }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.lede { font-size: 1.08rem; color: var(--ink-600); }
.section-dark .lede { color: rgba(255,255,255,0.78); }

/* ---------- Two-col with image ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split img { border-radius: var(--radius-l); box-shadow: var(--shadow-card); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split.reverse .split-media { order: 2; }

/* ---------- Story quote block ---------- */
.story-quote {
  border-left: 4px solid var(--gold-500);
  padding: 6px 0 6px 24px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-900);
  margin: 24px 0;
}
.section-dark .story-quote { color: var(--white); }

/* ---------- Seminar table ---------- */
.sem-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 0.98rem; }
.sem-table th, .sem-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.sem-table th { font-family: var(--font-mono); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-400); font-weight: 600; }
.sem-table td.date { font-family: var(--font-mono); color: var(--navy-700); white-space: nowrap; }
.sem-table tr:last-child td { border-bottom: none; }
.sem-table tr.highlight td { background: var(--green-100); font-weight: 600; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--white); padding: 4px 8px; }
.table-note { font-size: 0.86rem; color: var(--ink-400); margin-top: 12px; }

/* ---------- Stepped growth chart (Signature element) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: end;
  margin: 36px 0 10px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 16px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  color: var(--gold-500);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 8px;
}
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.86rem; color: var(--ink-600); margin: 0; }
/* stagger heights to form ascending staircase, echoing the growth-curve mark */
.step:nth-child(1) { transform: translateY(46px); }
.step:nth-child(2) { transform: translateY(34px); }
.step:nth-child(3) { transform: translateY(22px); }
.step:nth-child(4) { transform: translateY(12px); }
.step:nth-child(5) { transform: translateY(4px); }
.step:nth-child(6) { transform: translateY(0); border-color: var(--gold-500); }
@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { transform: none !important; }
}
@media (min-width: 981px) { .steps { margin-bottom: 58px; } }

/* ---------- Cards / grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 880px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.card h3 { font-size: 1.08rem; }
.card .value-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--green-600);
  background: var(--green-100);
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 10px;
}

/* ---------- Bonus list ---------- */
.bonus-list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.bonus-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 16px 20px;
}
.bonus-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  font-family: var(--font-mono);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.bonus-item h4 { margin: 0 0 2px; font-size: 1rem; }
.bonus-item p { margin: 0; font-size: 0.88rem; color: var(--ink-600); }
.bonus-val { font-family: var(--font-mono); color: var(--green-600); font-weight: 700; white-space: nowrap; }
@media (max-width: 620px) {
  .bonus-item { grid-template-columns: 36px 1fr; }
  .bonus-val { grid-column: 2; }
}

/* ---------- Pricing panel ---------- */
.price-panel {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-l);
  padding: 44px;
  box-shadow: var(--shadow-lift);
  text-align: center;
}
.price-panel .old-value { color: rgba(255,255,255,0.6); text-decoration: line-through; font-family: var(--font-mono); }
.price-panel .price-now { font-family: var(--font-mono); font-size: 3.2rem; color: var(--gold-300); font-weight: 700; }
.price-panel .price-now sup { font-size: 1.3rem; }
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(46,125,91,0.18);
  border: 1px solid rgba(46,125,91,0.5);
  color: #a9e0c4;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  margin: 18px 0 6px;
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.testi-card .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 10px; font-size: 0.95rem; }
.testi-card p.quote { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy-900); margin-bottom: 14px; }
.testi-who { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--ink-500); }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-800); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem;
}
.testi-who strong { color: var(--ink-900); display: block; }

/* ---------- FAQ (accordion, no JS required for basic use via <details>) ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--gold-500);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 12px; color: var(--ink-600); }

/* ---------- Fit / not-fit lists ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 780px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-card { border-radius: var(--radius-m); padding: 26px; }
.fit-card.yes { background: var(--green-100); border: 1px solid #bfe0cf; }
.fit-card.no { background: #f4ecec; border: 1px solid #e6cccc; }
.fit-card h3 { font-size: 1.02rem; }
.fit-card ul { list-style: none; padding: 0; margin: 0; }
.fit-card li { padding: 6px 0 6px 28px; position: relative; font-size: 0.94rem; }
.fit-card.yes li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 700; }
.fit-card.no li::before { content: "✕"; position: absolute; left: 0; color: #a04848; font-weight: 700; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-900);
  padding: 12px 16px;
  z-index: 60;
  display: none;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}
.sticky-cta .btn { width: 100%; }
@media (max-width: 720px) { .sticky-cta { display: block; } body { padding-bottom: 78px; } }

/* ---------- Disclosure box ---------- */
.disclosure {
  font-size: 0.84rem;
  color: var(--ink-400);
  background: var(--linen-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 14px 18px;
  margin: 18px 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  font-size: 0.9rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-grid a:hover { color: var(--gold-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ---------- Legal pages ---------- */
.legal-page { padding: 64px 0 96px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .updated { color: var(--ink-400); font-size: 0.86rem; margin-bottom: 36px; }
.legal-page h2 { font-size: 1.25rem; margin-top: 2.2em; }
.legal-page address { font-style: normal; line-height: 1.8; }
.legal-page a.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--navy-700); font-weight: 600; text-decoration: none; margin-bottom: 28px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.86rem; color: var(--ink-400); }
.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--gold-500); color: var(--navy-900);
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }
