/* =========================================================================
   Sinan Kurt Fussballschule – Styles
   Struktur nach aufbau.png · Farbpalette:
     #FEFEFE Weiß · #30637D Stahlblau · #FCFCFA Creme
     #212F43 Dunkelblau (Navy) · #7CC7DB Himmelblau (Akzent)
   ========================================================================= */

:root {
  --navy:        #212F43;
  --navy-2:      #2a3a54;
  --navy-3:      #33445f;
  --steel:       #30637D;
  --steel-dark:  #274f64;
  --sky:         #7CC7DB;
  --sky-strong:  #5fb6cd;
  --cream:       #FCFCFA;
  --white:       #FEFEFE;

  --ink:         #212F43;
  --ink-soft:    #4a5a70;
  --on-dark:     #FCFCFA;
  --on-dark-soft: rgba(252, 252, 250, 0.66);

  --line-light:  #e6e8ea;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 18px 40px -24px rgba(33, 47, 67, 0.45);
  --shadow-card: 0 12px 30px -20px rgba(33, 47, 67, 0.35);
  --container:   1160px;
  --header-h:    88px;
  --ease:        cubic-bezier(.22, .61, .36, 1);

  --font-display: "Montserrat", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
}

/* ------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink);
}
section[id] { scroll-margin-top: 84px; }

/* ----------------------------- Layout --------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 800px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
/* Sanfte Farbverläufe für Tiefe (wie im Aufbau) */
.section-light { background: linear-gradient(180deg, #ffffff 0%, #eef4f9 100%); color: var(--ink); }
.section-cream { background: radial-gradient(120% 85% at 50% 0%, #e9f1f8 0%, #f7fafc 45%, #fcfcfa 100%); color: var(--ink); }
.section-dark  { background: linear-gradient(180deg, #26374f 0%, var(--navy) 55%, #1a2536 100%); color: var(--on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--on-dark); }
.text-accent { color: var(--sky); }

/* --------------------------- Eyebrow / Heads -------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky); margin-bottom: 22px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); }
.eyebrow .line { width: 26px; height: 2px; background: var(--sky); border-radius: 2px; }
.eyebrow-dark { color: var(--steel); }
.eyebrow-dark .line { background: var(--steel); }
.center-eyebrow { justify-content: center; }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; flex-wrap: wrap; }

h1 { font-size: clamp(38px, 6vw, 62px); }
h2 { font-size: clamp(28px, 4.2vw, 44px); }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--on-dark-soft); max-width: 46ch; }
.section-light .lead, .section-cream .lead { color: var(--ink-soft); }

/* ----------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-accent { background: var(--sky); color: var(--navy); box-shadow: 0 10px 24px -12px rgba(124,199,219,0.9); }
.btn-accent:hover { background: var(--sky-strong); transform: translateY(-2px); }
.btn-primary { background: #2f80ed; color: #fff; box-shadow: 0 14px 30px -14px rgba(47,128,237,0.85); }
.btn-primary:hover { background: #2570d6; transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,0.20); border-color: #fff; }
.btn-whatsapp { background: var(--white); color: var(--navy); border-color: var(--line-light); }
.btn-whatsapp svg { width: 20px; height: 20px; color: #25D366; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ------------------------------ Header -------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent; transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(28, 40, 58, 0.94); backdrop-filter: blur(14px); box-shadow: 0 12px 30px -20px rgba(0,0,0,0.6); }
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--on-dark); }
.brand-mark {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px;
  background: var(--sky); color: var(--navy); overflow: hidden;
  font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.03em;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
/* Navbar-Logo: Icon-Hintergrund transparent (nur im oberen Header) */
.site-header .brand-mark,
.legal-header .brand-mark,
.site-footer .brand-mark { background: transparent; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-size: 17px; letter-spacing: 0.02em; }
.brand-text span { font-size: 11.5px; letter-spacing: 0.22em; color: var(--on-dark-soft); }
.main-nav { display: flex; gap: 34px; margin-left: auto; }
.main-nav a { font-size: 16.5px; font-weight: 500; color: var(--on-dark-soft); transition: color .2s var(--ease); position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--sky); transition: width .25s var(--ease); }
.main-nav a:hover { color: var(--on-dark); }
.main-nav a:hover::after { width: 100%; }
.header-cta { margin-left: 4px; padding: 13px 24px; font-size: 15px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--on-dark); border-radius: 2px; transition: .25s var(--ease); }

/* Header über hellem Hero (oben, nicht gescrollt): Button-Blau als Navbar-Farbe */
.site-header:not(.scrolled) .brand { color: #2f80ed; }
.site-header:not(.scrolled) .brand-text span { color: rgba(47,128,237,0.72); }
.site-header:not(.scrolled) .brand-mark { color: #2f80ed; }
.site-header:not(.scrolled) .main-nav a { color: #2f80ed; }
.site-header:not(.scrolled) .main-nav a:hover { color: #2570d6; }
.site-header:not(.scrolled) .main-nav a::after { background: #2f80ed; }
.site-header:not(.scrolled) .nav-toggle span { background: #2f80ed; }

/* ------------------------------- Hero --------------------------------- */
/* Heller Split-Hero: Text links, Coach-Foto rechts, Feature-Leiste unten. */
.hero {
  --hero-navy: #16233b;
  --hero-blue: #2f80ed;
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background: #ffffff;
  padding-top: calc(var(--header-h) + 16px);
}
/* Coach-Foto: rechte Seite, links weich in Weiß auslaufend */
.hero-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 16%; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.72) 20%, rgba(255,255,255,0) 44%),
              linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 18%),
              linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(255,255,255,0.62) 100%);
}
/* Hero-Inhalte komplett linksbündig (volle Breite, kleiner linker Abstand) */
.hero-inner, .hero-features { max-width: none; margin-inline: 0; padding-inline: clamp(24px, 4vw, 56px); }
.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; }
.hero-copy { max-width: 560px; }
.hero-eyebrow {
  font-size: 13.4px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hero-navy); margin-bottom: 22px;
}
.hero-eyebrow strong { color: var(--hero-blue); font-weight: 700; }
.hero-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(43px, 6.6vw, 95px); line-height: 0.98; letter-spacing: -0.02em;
  text-transform: uppercase; margin-bottom: 26px;
}
.hero-headline span { display: block; }
.hero-headline .hl-dark { color: #052957; }
.hero-headline .hl-blue { color: var(--hero-blue); }
.hero-lead { font-size: clamp(16.5px, 1.55vw, 18.5px); line-height: 1.6; color: #5a6472; max-width: 44ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Feature-Leiste unten */
.hero-features {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(3, auto); justify-content: start;
  gap: clamp(24px, 4vw, 60px);
  padding-top: 22px; padding-bottom: clamp(28px, 4vw, 48px);
}
.hero-feature { display: flex; align-items: center; gap: 14px; position: relative; }
.hero-feature + .hero-feature { padding-left: clamp(24px, 4vw, 60px); }
.hero-feature + .hero-feature::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(22,35,59,0.16);
}
.hf-icon { display: grid; place-items: center; width: 40px; height: 40px; color: var(--hero-navy); flex-shrink: 0; }
.hf-icon svg { width: 30px; height: 30px; }
.hf-text { display: flex; flex-direction: column; line-height: 1.3; }
.hf-text strong { font-size: 13.9px; font-weight: 700; letter-spacing: 0.04em; color: var(--hero-navy); text-transform: uppercase; }
.hf-text span { font-size: 13.4px; color: #6b7482; }

/* ------------------------------ Trust --------------------------------- */
.trust-section { padding: clamp(44px, 6vw, 72px) 0; }
.trust-section .container { max-width: 1300px; }
.trust-title { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #4a9df2; text-align: center; margin-bottom: clamp(30px, 4vw, 46px); }
/* Erfahrungs-Leiste: 3 zentrierte Spalten mit vertikalen Trennlinien */
.trust-stations { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-stations li { text-align: center; padding: 4px clamp(12px, 2vw, 26px); position: relative; }
.trust-stations li + li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 58px; background: rgba(124,199,219,0.28);
}
.trust-stations strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--on-dark); font-size: clamp(17px, 1.7vw, 21px); letter-spacing: -0.01em; margin-bottom: 10px; }
.trust-stations span { color: var(--on-dark-soft); font-size: clamp(14px, 1.4vw, 15.5px); }
.trust-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0; overflow: hidden; }
.trust-icon svg { width: 22px; height: 22px; }
.trust-icon img { width: 100%; height: 100%; object-fit: contain; }

/* --------------------------- Konzept (nach Aufbau) -------------------- */
.konzept {
  position: relative; overflow: hidden;
  --kb: #2f80ed;            /* Konzept-Blau (Akzent) */
  --kb-soft: #e6eefb;       /* helles Icon-/Pill-Blau */
  background: radial-gradient(130% 90% at 50% 8%, #eaf1fb 0%, #f2f6fc 48%, #eef3fa 100%);
  /* Unten mehr Luft, damit Kreis-/Foto-Cluster ausgewogen sitzt */
  padding-bottom: clamp(96px, 13vw, 176px);
}
.konzept-head { text-align: center; max-width: 760px; margin: 0 auto clamp(44px, 6vw, 72px); position: relative; }
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kb-soft); color: var(--kb);
  font-weight: 700; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 26px;
}
.konzept-head h2 { font-size: clamp(30px, 5vw, 52px); letter-spacing: -0.02em; color: #1e2b45; }
.konzept-head h2 .text-accent { color: var(--kb); }
.konzept-sub { margin-top: 20px; color: var(--kb); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: clamp(14px, 1.5vw, 17px); }
.konzept-intro { margin: 18px auto 0; max-width: 54ch; color: var(--ink-soft); font-size: clamp(15px, 1.4vw, 17px); }

.konzept-grid { display: grid; grid-template-columns: 1fr 0.92fr 1fr; gap: 26px; grid-template-areas: "a c e" "b c f"; align-items: center; }
.konzept-grid > *:nth-child(1) { grid-area: a; }
.konzept-grid > *:nth-child(2) { grid-area: b; }
.konzept-grid > *:nth-child(3) { grid-area: c; }
.konzept-grid > *:nth-child(4) { grid-area: e; }
.konzept-grid > *:nth-child(5) { grid-area: f; }

.k-card { position: relative; z-index: 2; background: #ffffff; border: 1px solid #eef1f6; border-radius: 22px; padding: 26px 26px; box-shadow: 0 24px 50px -30px rgba(30,43,69,0.35); }
.k-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.k-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--kb-soft); color: var(--kb); flex-shrink: 0; }
.k-icon svg { width: 23px; height: 23px; }
.k-card h3 { color: #1e2b45; font-size: 20px; margin: 0; letter-spacing: -0.01em; }
.k-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

.konzept-center { grid-area: c; position: relative; display: flex; flex-direction: column; align-items: center; }
.konzept-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 180%; aspect-ratio: 1/1; border-radius: 50%;
  border: 1px solid rgba(47,128,237,0.16); z-index: 0; pointer-events: none;
}
/* zweiter, innerer Kreis */
.konzept-ring::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78%; aspect-ratio: 1/1; border-radius: 50%;
  border: 1px solid rgba(47,128,237,0.12);
}
.konzept-center .media-frame {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5;
  border-radius: 22px; box-shadow: 0 30px 60px -28px rgba(30,43,69,0.45);
}
.konzept-caption-out { position: relative; z-index: 1; text-align: center; margin-top: 20px; }
.konzept-caption-out strong { display: block; font-family: var(--font-display); font-weight: 800; letter-spacing: 0.16em; color: #1e2b45; font-size: 16px; }
.konzept-caption-out span { display: block; margin-top: 3px; color: var(--kb); font-weight: 700; letter-spacing: 0.16em; font-size: 13px; }

/* Hover-Heben auch für die Konzept-Karten (blaue Variante) */
.konzept .k-card:hover { transform: translateY(-10px); border-color: rgba(47,128,237,0.5); box-shadow: 0 30px 55px -28px rgba(47,128,237,0.4); }

/* --------------------------- Media frames ----------------------------- */
/* Popup-Nachricht (Toast) nach dem Absenden des Kontaktformulars */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  z-index: 400; max-width: min(92vw, 460px);
  background: #16273f; color: #fff; font-size: 15px; font-weight: 600; line-height: 1.4;
  padding: 15px 22px; border-radius: 14px; box-shadow: 0 20px 44px -18px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast.toast-error { background: #7a271a; }

/* Honeypot-Feld (Bot-Schutz) – für Menschen unsichtbar */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Kleiner, unscheinbarer KI-Hinweis auf Fotos */
.ai-note {
  position: absolute; right: 8px; bottom: 8px; z-index: 4;
  font-family: var(--font-body); font-size: 9.5px; line-height: 1; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.32);
  padding: 3px 7px; border-radius: 6px; pointer-events: none; backdrop-filter: blur(2px);
}
.media-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: linear-gradient(135deg, #e9edf0, #dfe4e8); box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-portrait { aspect-ratio: 4 / 5; }
.media-landscape { aspect-ratio: 4 / 3; }
.media-square { aspect-ratio: 1 / 1; }
.media-phone { aspect-ratio: 10 / 19; max-width: 300px; margin-inline: auto; border-radius: 30px; border: 8px solid var(--navy-2); }

/* ------------------------------ Split --------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split-reverse .split-media { order: 2; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy > p { color: var(--ink-soft); margin-bottom: 22px; }
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.check-list svg { width: 22px; height: 22px; color: var(--steel); flex-shrink: 0; margin-top: 1px; }

/* --------------------------- Format cards ----------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.format-card {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.format-card:hover { transform: translateY(-6px); border-color: var(--sky); box-shadow: 0 24px 40px -26px rgba(48,99,125,0.5); }
.format-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--navy); color: var(--sky); margin-bottom: 20px; }
.format-icon svg { width: 26px; height: 26px; }
.format-icon.small { width: 44px; height: 44px; margin-bottom: 0; }
.format-card h3, .format-card h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-size: 20px; margin-bottom: 4px; color: var(--ink); }
.format-card-accent h4 { color: var(--on-dark); }
.format-sub { font-size: 13px; color: var(--steel); font-weight: 600; margin-bottom: 14px; }
.format-card > p { font-size: 15px; color: var(--ink-soft); }
.format-price { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line-light); font-weight: 600; font-size: 14px; color: var(--ink); }
.card-link { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--steel); }
.card-link .arrow { transition: transform .2s var(--ease); }
.card-link:hover .arrow { transform: translateX(4px); }
.format-card-accent { background: var(--navy); border-color: var(--navy); color: var(--on-dark); }
.format-card-accent h3 { color: var(--on-dark); }
.format-card-accent > p { color: var(--on-dark-soft); }
.format-card-accent .format-icon { background: var(--sky); color: var(--navy); }
.format-card-accent .format-price { color: var(--on-dark); border-top-color: rgba(255,255,255,0.15); }
.format-card-accent .card-link { color: var(--sky); }

/* --------------------- Trainingsformate (nach Aufbau) ----------------- */
/* Trainingsformate: diagonaler Verlauf (Sky → Weiß → zartes Blau) */
.formate {
  position: relative; overflow: hidden; --fb: #2f80ed; --fb-soft: #e6eefb;
  background: linear-gradient(135deg,
    rgba(47,128,237,0.30) 0%,
    #d9e3f3 46%,
    rgba(30,64,140,0.24) 100%);
}
.formate .container { position: relative; z-index: 2; }
.formate .eyebrow { color: var(--fb); }
.formate .eyebrow .dot { background: var(--fb); }
.formate .section-head h2 { color: #1e2b45; }
.formate .section-head h2 .text-accent { color: var(--fb); }

/* Umschalter: aktiver Knopf dunkelblau */
.formate .fs-thumb { background: #1e2b45; }
.formate .fs-btn.is-active { color: #fff; }
.format-note { text-align: center; color: var(--ink-soft); font-size: 14.5px; margin: -22px 0 30px; }

/* Karten: Icon links neben Titel, kein Preis/Link */
.formate .format-card { padding: 24px 24px; }
/* Karten in beiden Panels (Kinder/Erwachsene) gleich gross */
@media (min-width: 761px) { .formate .format-card { min-height: 336px; } }
.fc-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.formate .format-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--fb-soft); color: var(--fb); margin-bottom: 0; }
.formate .format-icon svg { width: 22px; height: 22px; }
.fc-head h4 { font-size: 18px; margin: 0; color: #1e2b45; }
.fc-head .format-sub { margin: 3px 0 0; }
.formate .format-card > p { font-size: 14.5px; color: var(--ink-soft); }
.formate .format-card-accent { background: #17233b; border-color: #17233b; }
.formate .format-card-accent .fc-head h4 { color: #fff; }
.formate .format-card-accent .format-icon { background: rgba(124,199,219,0.18); color: var(--sky); }

/* Dunkle CTA-Box -> Weiterleitung zum Kontaktformular */
.format-cta {
  margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: linear-gradient(120deg, #17233b 0%, #1f3252 100%); border-radius: 22px;
  padding: clamp(26px, 3.5vw, 40px); box-shadow: 0 26px 50px -30px rgba(23,35,59,0.6);
}
.format-cta-text strong { display: block; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: clamp(20px, 2.4vw, 28px); margin-bottom: 10px; letter-spacing: -0.01em; }
.format-cta-text p { color: rgba(255,255,255,0.68); font-size: 15px; max-width: 48ch; margin: 0; }
.format-cta-action { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.format-cta-action .btn { background: #fff; color: var(--navy); border-color: #fff; }
.format-cta-action .btn:hover { background: var(--sky); border-color: var(--sky); }
.format-cta-action small { color: rgba(255,255,255,0.5); font-size: 12.5px; }

/* Zwei Info-Boxen */
.format-help2 { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.help2-box { background: #fff; border: 1px solid #eef1f6; border-radius: 22px; padding: 26px 28px; box-shadow: 0 20px 44px -30px rgba(30,43,69,0.3); }
.help2-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.help2-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--fb-soft); color: var(--fb); flex-shrink: 0; }
.help2-icon svg { width: 19px; height: 19px; }
.help2-head strong { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #1e2b45; }
.help2-box ul { display: grid; gap: 12px; }
.help2-box li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.help2-box li svg { width: 18px; height: 18px; color: var(--fb); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 760px) { .format-help2 { grid-template-columns: 1fr; } .format-cta { flex-direction: column; align-items: flex-start; } .format-cta-action { align-items: flex-start; } }

/* --------------------------- Trainer box ------------------------------ */
.achievements { display: grid; gap: 8px; background: var(--cream); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 12px 20px; margin-top: 8px; }
.achievements li { display: flex; align-items: center; gap: 16px; padding: 14px 0; }
.achievements li + li { border-top: 1px solid var(--line-light); }
.ach-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #1e2b45; color: #ffffff; flex-shrink: 0; }

/* --------------------------- Über den Trainer ------------------------- */
#trainer .eyebrow-trainer { color: #2f80ed; }
#trainer .eyebrow-trainer .line { background: #2f80ed; }
#trainer .split-copy h2 { color: #1e2b45; }
#trainer .split { align-items: stretch; }
#trainer .split-media { display: flex; }
.trainer-img {
  flex: 1; width: 100%; height: auto; aspect-ratio: auto; min-height: 560px;
  border-radius: 24px; background: none;
  box-shadow: 0 30px 60px -30px rgba(30,43,69,0.35);
}
#trainer .achievements { border-radius: 22px; }
.ach-icon svg { width: 22px; height: 22px; }
.achievements strong { display: block; font-size: 16px; color: var(--ink); }
.achievements div span { font-size: 14px; color: var(--ink-soft); }

/* ---------------------------- Instagram ------------------------------- */
.ig-handle { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--steel); font-size: 15px; }
.ig-handle svg { width: 20px; height: 20px; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ig-tile { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.ig-overlay { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(33,47,67,0.55); color: var(--white); opacity: 0; transition: opacity .25s var(--ease); }
.ig-overlay svg { width: 26px; height: 26px; }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile:hover .ig-overlay { opacity: 1; }

/* --------------------- Instagram-Sektion (nach Aufbau) ---------------- */
.ig-section { --ib: #2f80ed; --ib-light: #4a9df2; }
.ig-eyebrow { display: inline-block; color: var(--ib); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 12.5px; margin-bottom: 22px; }
.ig-eyebrow::after { content: ""; display: block; width: 44px; height: 2px; background: var(--ib); border-radius: 2px; margin: 12px auto 0; }
.ig-section .section-head h2 { color: #1e2b45; }
.ig-handle-center { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--ib); font-weight: 600; font-size: 16px; }
.ig-handle-center svg { width: 20px; height: 20px; }

.ig-section .container { max-width: 1240px; }
.ig-section .ig-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 50px; }
.ig-card { display: flex; flex-direction: column; }
.ig-thumb { position: relative; display: block; aspect-ratio: 5 / 6; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 36px -26px rgba(30,43,69,0.4); color: inherit; text-decoration: none; }
.ig-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.ig-thumb:hover img { transform: scale(1.06); }
.ig-thumb-dark { background: linear-gradient(160deg, #22375c 0%, #131f34 100%); }
.ig-thumb-dark::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 80% 15%, rgba(74,157,242,0.18), transparent 60%); }
.ig-reel { position: absolute; top: 11px; right: 11px; z-index: 3; color: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45)); }
.ig-reel svg { width: 22px; height: 22px; }

.ig-tile-text { position: absolute; inset: 0; z-index: 2; padding: 22px; display: flex; flex-direction: column; justify-content: center; }
.ig-thumb-top .ig-tile-text { justify-content: flex-start; }
.ig-tile-text h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.02; font-size: clamp(18px, 1.7vw, 23px); color: #fff; }
.ig-tile-text h3 span { color: var(--ib-light); }
.ig-tile-text > p { margin-top: 12px; color: rgba(255,255,255,0.74); font-size: 12.5px; line-height: 1.4; }
.ig-schedule { margin-top: 10px; display: grid; gap: 5px; }
.ig-schedule li { display: flex; gap: 8px; font-size: 10.5px; color: rgba(255,255,255,0.82); line-height: 1.18; }
.ig-schedule li b { color: var(--ib-light); font-weight: 700; min-width: 17px; }
/* Plan-Kachel: kompaktere Überschrift, damit alle 5 Zeilen passen & Reel nicht überlappt */
.ig-thumb-top .ig-tile-text { padding: 18px; }
.ig-thumb-top .ig-tile-text h3 { font-size: 17px; line-height: 1.04; }

.ig-date { margin-top: 14px; font-size: 12px; color: #8494a6; }
.ig-caption { margin-top: 6px; font-size: 12px; color: #33445f; line-height: 1.42; }

.ig-cta { text-align: center; margin-top: 48px; }
.ig-btn { background: var(--ib); color: #fff; border-color: var(--ib); padding: 15px 30px; box-shadow: 0 14px 30px -14px rgba(47,128,237,0.7); }
.ig-btn:hover { background: #2670d8; border-color: #2670d8; transform: translateY(-2px); }
.ig-btn svg { width: 20px; height: 20px; }

@media (max-width: 1000px) { .ig-section .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .ig-section .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------ Steps --------------------------------- */
.app-mock { position: relative; }
.app-mock-badge {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--navy);
  font-weight: 600; font-size: 13px; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-card); white-space: nowrap;
}
.app-mock-badge svg { width: 16px; height: 16px; color: #25D366; }
.steps { display: grid; gap: 26px; margin-top: 8px; }
.steps li { display: flex; gap: 18px; align-items: flex-start; }
.step-num { display: grid; place-items: center; flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--sky); color: var(--navy); font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.steps strong { display: block; font-size: 18px; margin-bottom: 4px; }
.steps p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* --------------------- So einfach geht's (nach Aufbau) ---------------- */
#ablauf .eyebrow-ablauf { color: #2f80ed; }
#ablauf .eyebrow-ablauf .line { background: #2f80ed; }
#ablauf .split-copy h2 { color: #1e2b45; }
#ablauf .step-num { background: #2f80ed; color: #ffffff; }
#ablauf .steps strong { color: #1e2b45; }

/* ------------------------------- FAQ ---------------------------------- */
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius-sm); padding: 4px 22px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq-item[open] { border-color: var(--sky); box-shadow: var(--shadow-card); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 26px; line-height: 1; color: var(--steel); transition: transform .25s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 0 20px; }
.faq-body p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

/* ----------------------- FAQ-Sektion (nach Aufbau) -------------------- */
/* FAQ: radialer Sky-Glow oben mittig, nach unten auslaufend */
.faq-section {
  position: relative; overflow: hidden; --fq: #2f80ed;
  background: radial-gradient(125% 130% at 50% -12%,
    rgba(47,128,237,0.34) 0%,
    #d8e2f2 46%,
    #c9d6ec 100%);
}
.faq-section > .container { position: relative; z-index: 2; }
.faq-section .container-narrow { max-width: 860px; }
.faq-section .faq-eyebrow { color: var(--fq); }
.faq-section .faq-eyebrow .line { background: var(--fq); }
.faq-section .section-head h2 { color: #1e2b45; }
.faq-section .faq-list { gap: 16px; }
.faq-section .faq-item { background: #fff; border: 1px solid rgba(30,43,69,0.05); border-radius: 14px; padding: 4px 28px; box-shadow: 0 16px 38px -26px rgba(30,43,69,0.32); }
.faq-section .faq-item[open] { border-color: rgba(47,128,237,0.35); box-shadow: 0 20px 42px -24px rgba(47,128,237,0.32); }
.faq-section .faq-item summary { color: #1e2b45; font-weight: 700; font-size: 17px; padding: 22px 0; }
.faq-section .faq-item summary::after { color: var(--fq); font-weight: 400; font-size: 28px; }
.faq-section .faq-body p { color: var(--ink-soft); }

/* ----------------------------- Contact -------------------------------- */
.contact { position: relative; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 20% 20%, rgba(124,199,219,0.14), transparent 60%); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 68px); align-items: start; }
.contact-copy .lead { margin-bottom: 28px; }
.contact-form { background: var(--navy-2); border: 1px solid var(--navy-3); border-radius: var(--radius); padding: 28px; display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--on-dark); }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--on-dark);
  background: rgba(255,255,255,0.05); border: 1px solid var(--navy-3); border-radius: 10px;
  padding: 13px 15px; width: 100%; resize: vertical; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(252,252,250,0.4); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--sky); background: rgba(124,199,219,0.08); }
.form-note { font-size: 12px; color: var(--on-dark-soft); text-align: center; margin: 0; }

/* --------------------- Kontakt-Sektion (nach Aufbau) ------------------ */
/* Jetzt anfragen: gegenläufiger Verlauf (Blau oben-rechts → Sky unten-links) */
.contact-light {
  position: relative; overflow: hidden; --cb: #2f80ed;
  background: linear-gradient(210deg,
    rgba(30,64,140,0.24) 0%,
    #d9e3f3 44%,
    rgba(47,128,237,0.34) 100%);
}
.contact-light > .container { position: relative; z-index: 2; }
.contact-light .contact-grid { grid-template-columns: 0.92fr 1.08fr; align-items: center; }
.contact-light .eyebrow-contact { color: var(--cb); }
.contact-light .eyebrow-contact .line { background: var(--cb); }
.contact-light .contact-copy h2 { color: #1e2b45; }
.contact-light .contact-copy .lead { color: var(--ink-soft); margin-bottom: 30px; }
.contact-light .btn-whatsapp { background: #fff; color: #1e2b45; border-color: rgba(30,43,69,0.08); box-shadow: 0 14px 30px -18px rgba(30,43,69,0.4); }
.contact-light .btn-whatsapp svg { color: #25D366; }

/* Weiße Formular-Karte */
.contact-light .contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  background: #fff; border: 1px solid rgba(30,43,69,0.06); border-radius: 24px;
  padding: clamp(24px, 3vw, 36px); box-shadow: 0 34px 70px -34px rgba(30,43,69,0.4);
}
.contact-light .contact-form label { display: grid; gap: 8px; color: #1e2b45; font-size: 13px; font-weight: 600; }
.fc-full { grid-column: 1 / -1; }
.contact-light .contact-form input,
.contact-light .contact-form select,
.contact-light .contact-form textarea {
  font-family: var(--font-body); font-size: 15px; color: #1e2b45;
  background: #fff; border: 1px solid #e2e7ee; border-radius: 12px; padding: 14px 16px; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-light .contact-form input::placeholder,
.contact-light .contact-form textarea::placeholder { color: #9aa7b6; }
.contact-light .contact-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer; color: #9aa7b6; padding-right: 42px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239aa7b6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 15px center;
}
.contact-light .contact-form input:focus,
.contact-light .contact-form select:focus,
.contact-light .contact-form textarea:focus {
  outline: none; border-color: var(--cb); box-shadow: 0 0 0 3px rgba(47,128,237,0.13);
}
.contact-light .form-consent { flex-direction: row; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-weight: 400; font-size: 12.5px; }
.contact-light .form-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--cb); flex-shrink: 0; }
.contact-light .form-consent a { color: var(--cb); text-decoration: underline; }
.contact-light .contact-form .btn { background: var(--cb); color: #fff; border-color: var(--cb); box-shadow: 0 16px 34px -16px rgba(47,128,237,0.7); }
.contact-light .contact-form .btn:hover { background: #2670d8; border-color: #2670d8; transform: translateY(-2px); }

/* Abschluss-Zeile */
.closing { text-align: center; margin-top: clamp(52px, 7vw, 84px); }
.closing-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.closing-divider .line { width: 40px; height: 2px; background: rgba(30,43,69,0.18); border-radius: 2px; }
.closing-divider svg { width: 22px; height: 22px; color: #1e2b45; }
.closing-title { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; font-size: clamp(22px, 3vw, 33px); color: #1e2b45; }
.closing-title .text-accent { color: var(--cb); }
.closing-sub { margin-top: 12px; color: var(--ink-soft); font-size: 15px; }
@media (max-width: 860px) { .contact-light .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .contact-light .contact-form { grid-template-columns: 1fr; } }

/* ------------------------------ Footer -------------------------------- */
.site-footer { padding: clamp(56px, 7vw, 84px) 0 28px; border-top: 1px solid rgba(255,255,255,0.06); background: radial-gradient(120% 80% at 15% 0%, #223247 0%, #16212f 55%, #101a26 100%); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; }
.footer-brand p { color: var(--on-dark-soft); font-size: 14.5px; margin-top: 18px; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sky); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--on-dark-soft); font-size: 14.5px; margin-bottom: 10px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--on-dark); }

.footer-media .media-frame { box-shadow: none; border: 1px solid var(--navy-3); }
.footer-map { width: 100%; height: 100%; border: 0; display: block; }

/* Karte: Einwilligungs-Gate (DSGVO – erst nach Klick laden) */
.map-embed { background: var(--navy-2); }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px; }
.map-consent-pin { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(124,199,219,0.14); color: var(--sky); }
.map-consent-pin svg { width: 22px; height: 22px; }
.map-consent p { color: var(--on-dark); font-weight: 600; font-size: 14px; margin: 0; }
.map-consent small { color: var(--on-dark-soft); font-size: 11px; line-height: 1.4; max-width: 30ch; }
.map-consent small a { color: var(--sky); text-decoration: underline; }

/* Einwilligungs-Checkbox im Kontaktformular */
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; font-weight: 400 !important; color: var(--on-dark-soft); }
.form-consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--sky); flex-shrink: 0; cursor: pointer; }
.form-consent a { color: var(--sky); text-decoration: underline; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: var(--on-dark-soft); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--on-dark); }

/* ---------------------- Rechtliche Seiten ----------------------------- */
.legal-header { background: var(--navy); }
.legal-header .header-inner { justify-content: space-between; }
.legal { padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px); background: var(--white); }
.legal h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 28px; }
.legal h2 { font-size: clamp(19px, 2.2vw, 24px); margin: 36px 0 12px; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; }
.legal a { color: var(--steel); text-decoration: underline; }
.legal a:hover { color: var(--sky-strong); }
.legal-list { display: grid; gap: 8px; margin: 0 0 16px; padding-left: 4px; }
.legal-list li { position: relative; padding-left: 22px; color: var(--ink-soft); }
.legal-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 2px; background: var(--sky); }
.legal-updated { margin-top: 36px; font-size: 13px; color: var(--ink-soft); font-style: italic; }
.legal-footer { background: var(--navy); color: var(--on-dark-soft); padding: 24px 0; }
.legal-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.legal-footer a { color: var(--on-dark-soft); }
.legal-footer a:hover { color: var(--on-dark); }
.legal-footer .footer-legal a { transition: color .2s var(--ease); }

/* ---------------------------- 404-Seite ------------------------------- */
.error-page {
  min-height: calc(100vh - var(--header-h)); display: grid; place-items: center;
  text-align: center; padding: clamp(56px, 10vw, 120px) 0;
  background: radial-gradient(120% 90% at 50% 0%, #eaf1fb 0%, #f2f6fc 55%, #eef3fa 100%);
}
.error-code { font-family: var(--font-display); font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: #2f80ed; font-size: clamp(84px, 18vw, 180px); }
.error-page h1 { font-size: clamp(26px, 4vw, 40px); color: #1e2b45; margin: 6px 0 14px; }
.error-text { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 28px; font-size: clamp(15px, 1.5vw, 17px); }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.btn-glass-dark { background: #fff; color: #1e2b45; border-color: rgba(30,43,69,0.12); }
.btn-glass-dark:hover { border-color: #2f80ed; color: #2f80ed; transform: translateY(-2px); }
.error-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.error-links a { color: var(--steel); font-size: 14.5px; font-weight: 500; transition: color .2s var(--ease); }
.error-links a:hover { color: #2f80ed; }

/* ------------------------- Hilfsklassen ------------------------------- */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --------------------------- Ladebildschirm --------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: var(--navy);
  animation: loaderHide .6s ease forwards; animation-delay: 1s;
}
.loader.done { animation: none; opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader-logo { width: 124px; height: 124px; object-fit: contain; animation: loaderPulse 1.4s ease-in-out infinite; }
.loader-name { font-family: var(--font-display); font-weight: 800; color: var(--on-dark); font-size: 20px; letter-spacing: 0.04em; text-align: center; line-height: 1.1; }
.loader-name span { display: block; font-size: 11px; letter-spacing: 0.28em; color: var(--on-dark-soft); margin-top: 4px; }
.loader-bar { width: 140px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 40%; border-radius: 999px; background: var(--sky); animation: loaderSlide 1.1s ease-in-out infinite; }
@keyframes loaderHide { to { opacity: 0; visibility: hidden; } }
@keyframes loaderPulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes loaderSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

/* -------------------- Hero-Headline (emotional) ----------------------- */
.hero-headline {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  line-height: 0.98; letter-spacing: -0.02em; color: #FEFEFE;
  font-size: clamp(45px, 8.25vw, 95px); margin-bottom: 22px;
}


/* -------------------- Zielgruppen-Umschalter -------------------------- */
.format-switch {
  position: relative; display: inline-flex; margin: 0 auto 40px; gap: 4px;
  background: var(--white); border: 1px solid var(--line-light); border-radius: 999px;
  padding: 5px; box-shadow: var(--shadow-card);
}
.section-cream .format-switch, .format-switch { display: flex; width: max-content; margin-inline: auto; }
.fs-btn {
  position: relative; z-index: 2; border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--ink-soft);
  padding: 11px 22px; border-radius: 999px; transition: color .25s var(--ease); white-space: nowrap;
}
.fs-btn.is-active { color: var(--navy); }
.fs-thumb {
  position: absolute; z-index: 1; top: 5px; bottom: 5px; left: 5px; width: 0;
  background: var(--sky); border-radius: 999px;
  transition: left .3s var(--ease), width .3s var(--ease);
}
.format-panel[hidden] { display: none; }
.format-panel { animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* -------------------- Format-Helfer-Box ------------------------------- */
.format-helper { margin-top: 26px; background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-card); }
.format-helper > strong { display: block; font-family: var(--font-display); font-size: 19px; margin-bottom: 16px; }
.helper-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.helper-cols > div { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.helper-cols svg { width: 20px; height: 20px; color: var(--steel); flex-shrink: 0; margin-top: 1px; }
.helper-cols b { color: var(--ink); }

/* Formular: Select wie Inputs */
.contact-form select {
  font-family: var(--font-body); font-size: 15px; color: var(--on-dark);
  background: rgba(255,255,255,0.05); border: 1px solid var(--navy-3); border-radius: 10px;
  padding: 13px 15px; width: 100%; cursor: pointer;
}
.contact-form select option { color: #111; }

/* -------------- Kästchen heben sich beim Hovern nach oben -------------- */
.k-card, .benefit-tile {
  transition: transform .3s var(--ease), border-color .25s var(--ease), box-shadow .3s var(--ease);
}
.k-card:hover { transform: translateY(-10px); border-color: var(--sky); box-shadow: 0 26px 44px -26px rgba(48,99,125,0.5); }
.benefit-tile:hover { transform: translateY(-10px); border-color: var(--sky); }
/* Format-Karten heben sich ebenfalls stärker */
.format-card:hover { transform: translateY(-10px); }

/* -------------------- Scroll-Übergänge / Reveal ----------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------------------- Responsive ------------------------------ */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-media { grid-column: span 2; max-width: 320px; }
  .konzept-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "c c" "a e" "b f"; }
  .konzept-center .media-frame { min-height: 320px; }
}
@media (max-width: 860px) {
  .hero-photo { width: 100%; opacity: 0.9; }
  .hero-photo img { object-position: 78% 12%; }
  .hero-photo::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.85) 42%, #fff 78%);
  }
  .hero-copy { max-width: 100%; }
  .hero-features { grid-template-columns: 1fr; gap: 0; }
  .hero-feature + .hero-feature { padding-left: 0; }
  .hero-feature { padding: 12px 0; }
  .hero-feature + .hero-feature::before { display: none; }
}
@media (max-width: 760px) {
  .main-nav, .header-cta { display: none; }
  .main-nav.open { display: flex; flex-direction: column; gap: 4px; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--navy); padding: 18px 24px 24px; border-bottom: 1px solid var(--navy-3); }
  .main-nav.open a { padding: 10px 0; font-size: 17px; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-reverse .split-media { order: 0; }
  .trust-stations { grid-template-columns: 1fr; gap: 26px; }
  .trust-stations li { padding: 0; }
  .trust-stations li + li::before { display: none; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .konzept-grid { grid-template-columns: 1fr; grid-template-areas: "c" "a" "b" "e" "f"; }
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-media { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
