/* =========================================================
   ZURICH FOOTBALL ACADEMY — Design System
   Modern Premium · Dark + Gold
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6.5vw, 7rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* Brand colors — official ZFA CI/CD (Stahlblau + Gold) */
  --brand-blue: #456D8A;            /* Stahlblau — HAUPTFARBE für Hero & Sektionen */
  --brand-blue-dark: #314F66;       /* Dunklere Variante */
  --brand-blue-light: #859EB1;      /* Hellere Variante für Akzente */
  --brand-blue-pale: #F2F4FC;       /* Sehr helles Blau für hellere Sektionen */
  --brand-gold: #AE9761;            /* Markengold */
  --brand-gold-dark: #746541;       /* Goldakzent dunkel */
  --brand-gold-light: #C9B584;

  /* Neutralfarben */
  --black: #000000;
  --dark: #242323;                  /* Footer/Dark Sections */
  --darker: #2D2E2D;
  --white: #FFFFFF;
  --gray: #8F8F8F;

  /* Token-Mapping */
  --bg-primary: var(--brand-blue);     /* Hero, Hauptsektionen */
  --bg-secondary: var(--white);        /* alternierende helle Sektionen */
  --bg-dark: var(--dark);              /* Footer und dunkle Akzent-Sektionen */
  --accent: var(--brand-gold);
  --text-on-blue: var(--white);
  --text-on-white: var(--dark);
  --text-muted: var(--gray);

  /* ---- Kompatibilitäts-Aliase (bestehende Klassen) ---- */
  --anthracite: var(--brand-blue);    /* .bg-anthracite -> wird per Klasse überschrieben */
  --anthracite-2: var(--dark);
  --surface: var(--white);            /* Cards: weiß */
  --surface-2: var(--brand-blue-pale);
  --gold: var(--brand-gold);
  --gold-bright: var(--brand-gold-light);
  --gold-deep: var(--brand-gold-dark);
  --grey: #6b6b6b;            /* war white-Alias — auf weissen Cards unlesbar; jetzt dunkles Grau */
  --grey-faint: #6b6b6b;     /* war rgba(255,255,255,0.7) — auf weisser Card unlesbar */
  --green: var(--brand-gold);
  --green-hover: var(--brand-gold-light);
  --accent-red: #df3131;
  --accent-blue: var(--brand-blue);
  --line: rgba(255,255,255,0.22);
  --line-soft: rgba(255,255,255,0.14);
  --border-strong: var(--brand-gold);

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-full: 999px;

  /* Transitions */
  --t: 220ms cubic-bezier(0.16,1,0.3,1);

  /* Widths */
  --wide: 1240px;
  --default: 1040px;
  --narrow: 720px;

  /* Fonts — Free-Alternativen zu Lulo Clean & DIN Next */
  --font-display: 'Archivo Black', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-quote: 'Archivo Black', 'Impact', sans-serif;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}
body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  color: var(--text-on-white);
  background-color: var(--white);
  overflow-x: hidden;
}
img,picture,video,svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input,button,textarea,select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4,.display { text-wrap: balance; line-height: 1.02; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em; }
p { text-wrap: pretty; }
p:not([class]) { max-width: 64ch; }

::selection { background: rgba(174,151,97,0.3); color: var(--white); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-sm); }

a,button,[role='button'],input,textarea,select {
  transition: color var(--t), background var(--t), border-color var(--t), box-shadow var(--t), transform var(--t), opacity var(--t);
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; scroll-behavior:auto!important; }
}

.sr-only { position:absolute; width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ---------- Layout helpers ---------- */
.container { width:100%; max-width: var(--wide); margin-inline:auto; padding-inline: var(--space-6); }
.container--narrow { max-width: var(--narrow); }
.container--default { max-width: var(--default); }
.section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }
.section--tight { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }

/* ===== Section-Themen (alternierend Blau / Weiß) =====
   Bestehende Utility-Klassen werden auf das neue Farbschema gemappt:
   .bg-black     -> BLAU (weißer Text)
   .bg-anthracite-> WEISS (dunkler Text)
   Zusätzlich: .section-blue / .section-white / .section-pale / .section-dark */
.bg-black,
.section-blue { background: var(--brand-blue); color: var(--text-on-blue); }
.bg-anthracite,
.section-white { background: var(--white); color: var(--text-on-white); }
.section-pale { background: var(--brand-blue-pale); color: var(--text-on-white); }
.section-dark { background: var(--dark); color: var(--white); }
.grad-top { background: var(--dark); color: var(--white); }

/* --- Text-Farben auf BLAUEN Sektionen --- */
.bg-black, .section-blue, .grad-top, .section-dark { }
.bg-black h1,.bg-black h2,.bg-black h3,.bg-black h4,
.section-blue h1,.section-blue h2,.section-blue h3,.section-blue h4,
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4,
.grad-top h1,.grad-top h2,.grad-top h3,.grad-top h4 { color: var(--white); }

/* --- Text-Farben auf WEISSEN/HELLEN Sektionen --- */
.bg-anthracite, .section-white, .section-pale { }
.bg-anthracite h1,.bg-anthracite h2,.bg-anthracite h3,.bg-anthracite h4,
.section-white h1,.section-white h2,.section-white h3,.section-white h4,
.section-pale h1,.section-pale h2,.section-pale h3,.section-pale h4 { color: var(--brand-blue-dark); }

/* Section-Head Sublines: auf Blau weiß, auf Weiß blau */
.bg-black .section-head p,
.section-blue .section-head p,
.section-dark .section-head p,
.grad-top .section-head p { color: rgba(255,255,255,0.85); }
.bg-anthracite .section-head p,
.section-white .section-head p,
.section-pale .section-head p { color: var(--brand-blue); }

/* ===== Body-Text pro Sektion (Absätze, Listen) ===== */
.section-white p,.section-pale p,.bg-anthracite p,
.section-white li,.section-pale li,.bg-anthracite li { color: var(--text-on-white); }
.section-blue p,.bg-black p,.section-dark p,.grad-top p,
.section-blue li,.bg-black li,.section-dark li,.grad-top li { color: rgba(255,255,255,0.9); }

/* ===== Karten: IMMER weiß mit dunklem Inhalt, blau/gold Akzent =====
   (gelten auf blauen UND weißen Sektionen) */
.prog-card,.feature,.phase,.founder,.value,.price-card,.form-card,
.cal,.order-summary,.dash,.modal,.legal-notice {
  background: var(--white);
  border-color: rgba(69,109,138,0.18);
  color: var(--text-on-white);
  box-shadow: 0 8px 28px rgba(49,79,102,0.08);
}
/* Karten-Überschriften: blau */
.prog-card h3,.feature h3,.phase h3,.founder h3,.value h4,
.price-card .amount,.form-card h2,.form-card h3,.dash-head h3,.modal-head h3 { color: var(--brand-blue-dark); }
/* Karten-Fließtext: dunkel-neutral */
.prog-card .teaser,.feature p,.phase p,.founder p,.value p,
.price-card .ptarget,.checklist li,.legal-notice p { color: #4a4a4a; }
/* Karten-Checklisten: dunkler Text auch auf blauer Sektion erzwingen */
.section-blue .checklist li,.bg-black .checklist li,.section-dark .checklist li,
.price-card .checklist li,.form-card .checklist li,.order-summary .checklist li { color: #4a4a4a; }
.prog-card .meta,.prog-card .price small,.founder .role,
.price-card .pname,.detail-meta .item .k { color: var(--brand-blue); }

/* eyebrow / kicker */
.eyebrow {
  display:inline-flex; align-items:center; gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 900;
}
.eyebrow::before { content:''; width: 28px; height:1px; background: currentColor; display:inline-block; opacity:0.8; }
.eyebrow--center::before { display:none; }
/* Eyebrow auf hellen Sektionen: Gold ist auf Weiß zu schwach — Blau verwenden */
.section-white .eyebrow, .section-pale .eyebrow, .bg-anthracite .eyebrow,
.trustbar .eyebrow, .prog-card .eyebrow, .feature .eyebrow { color: var(--brand-blue); }
/* Auf blauen/dunklen Sektionen + Hero: Gold */
.section-blue .eyebrow, .bg-black .eyebrow, .section-dark .eyebrow,
.grad-top .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .detail-hero .eyebrow { color: var(--gold); }

.section-head { max-width: 740px; margin-bottom: var(--space-12); }
.section-head.center { margin-inline:auto; text-align:center; }
.section-head h2 { font-size: var(--text-2xl); margin-top: var(--space-4); }
.section-head p { color: var(--gold); font-weight:300; font-size: var(--text-lg); margin-top: var(--space-5); }

.text-gold { color: var(--gold); }
.text-grey { color: var(--grey); }

/* ---------- Buttons ---------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap: var(--space-2);
  padding: 0.9rem 1.75rem; border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--text-xs); font-weight:900; letter-spacing: 0.08em; text-transform: uppercase;
  white-space:nowrap; border:1px solid transparent;
}
.btn svg { width:18px; height:18px; }
/* Primary CTA: goldener BG, dunkler Text */
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(174,151,97,0.3); }
/* Ehemals grüne CTAs — jetzt identisch zum Gold-Primary */
.btn-green { background: var(--gold); color: var(--dark); }
.btn-green:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(174,151,97,0.3); }
/* Sekundär (Default = auf hellem Grund): blauer Rand/Text */
.btn-ghost { background: transparent; border-color: var(--brand-blue); color: var(--brand-blue); }
.btn-ghost:hover { background: var(--brand-blue); color: #fff; transform: translateY(-2px); }
/* Sekundär auf BLAUER Sektion / Hero: weißer Rand/Text */
.hero .btn-ghost, .section-blue .btn-ghost, .bg-black .btn-ghost,
.section-dark .btn-ghost, .cta-band .btn-ghost, .page-hero .btn-ghost {
  border-color: var(--white); color: var(--white); }
.hero .btn-ghost:hover, .section-blue .btn-ghost:hover, .bg-black .btn-ghost:hover,
.section-dark .btn-ghost:hover, .cta-band .btn-ghost:hover, .page-hero .btn-ghost:hover {
  background: var(--white); color: var(--brand-blue-dark); }
.btn-dark { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.btn-dark:hover { background: var(--brand-blue-dark); border-color: var(--brand-blue-dark); }
.btn-block { width:100%; }
.btn-sm { padding: 0.6rem 1.2rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t), border-color var(--t), padding var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  display:flex; align-items:center; justify-content: space-between; gap: var(--space-6);
  padding-block: var(--space-5);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(69,109,138,0.15);
  box-shadow: 0 2px 18px rgba(49,79,102,0.08);
}
.site-header.scrolled .bar { padding-block: var(--space-3); }
/* ---------- Logo (offizielles ZFA-Wappen) ---------- */
.logo { display:flex; align-items:center; }
.logo img { display: block; width: 56px; height: 56px; border-radius: 4px; }
.site-footer .logo img { width: 48px; height: 48px; }
.logo:hover img { opacity: 0.9; }

.nav { display:flex; align-items:center; gap: var(--space-8); }
/* Standard (über Hero): weißer Text */
.nav a { font-size: var(--text-sm); color: rgba(255,255,255,0.82); font-weight:500; position:relative; }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a.active::after { content:''; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: var(--gold); border-radius:2px; }
.header-actions { display:flex; align-items:center; gap: var(--space-4); }
.header-actions .login { font-size: var(--text-sm); color: rgba(255,255,255,0.82); font-weight:500; }
.header-actions .login:hover { color: var(--white); }
/* Gescrollt (weißer Header): dunkler/blauer Text */
.site-header.scrolled .nav a { color: var(--brand-blue-dark); }
.site-header.scrolled .nav a:hover, .site-header.scrolled .nav a.active { color: var(--brand-blue); }
.site-header.scrolled .header-actions .login { color: var(--brand-blue-dark); }
.site-header.scrolled .header-actions .login:hover { color: var(--brand-blue); }
.site-header.scrolled .burger span,
.site-header.scrolled .burger span::before,
.site-header.scrolled .burger span::after { background: var(--brand-blue-dark); }

.burger { display:none; width:44px; height:44px; align-items:center; justify-content:center; }
.burger span { display:block; width:24px; height:2px; background: var(--white); position:relative; transition: var(--t); }
.burger span::before,.burger span::after { content:''; position:absolute; left:0; width:24px; height:2px; background: var(--white); transition: var(--t); }
.burger span::before { top:-7px; } .burger span::after { top:7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top:0; transform: rotate(45deg); }
body.menu-open .burger span::after { top:0; transform: rotate(-45deg); }

/* Mobile slide-in nav */
.mobile-nav {
  position: fixed; inset:0; z-index: 99; background: #0a0f1c;
  backdrop-filter: blur(8px); transform: translateX(100%); transition: transform 320ms cubic-bezier(0.16,1,0.3,1);
  display:flex; flex-direction:column; justify-content:center; padding: var(--space-12) var(--space-8);
  visibility:hidden;
}
body.menu-open .mobile-nav { transform: translateX(0); visibility:visible; }
.mobile-nav a { font-family: var(--font-display); font-size: var(--text-xl); color: var(--white); padding-block: var(--space-3); border-bottom:1px solid var(--line-soft); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: var(--space-8); }

/* ---------- Footer ---------- */
.site-footer { background: var(--anthracite-2); border-top:1px solid var(--line-soft); padding-block: var(--space-20) var(--space-10); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: var(--space-12); }
.footer-grid h4 { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing:0.2em; text-transform:uppercase; color: var(--gold); margin-bottom: var(--space-5); font-weight:600; }
.footer-grid ul { list-style:none; display:flex; flex-direction:column; gap: var(--space-3); }
.footer-grid li, .footer-grid a, .footer-grid p { color: var(--grey); font-size: var(--text-sm); }
.footer-grid a:hover { color: var(--white); }
.footer-brand p { margin-top: var(--space-5); max-width: 34ch; }
.footer-social { display:flex; gap: var(--space-3); margin-top: var(--space-6); }
.footer-social a { width:40px; height:40px; border:1px solid var(--line-soft); border-radius: var(--r-full); display:flex; align-items:center; justify-content:center; color: var(--grey); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-social svg { width:18px; height:18px; }
.footer-bottom { margin-top: var(--space-16); padding-top: var(--space-6); border-top:1px solid var(--line-soft); display:flex; justify-content:space-between; flex-wrap:wrap; gap: var(--space-4); }
.footer-bottom p, .footer-bottom a { color: var(--grey-faint); font-size: var(--text-xs); }
.footer-bottom a:hover { color: var(--grey); }

/* ---------- Hero ---------- */
.hero { position:relative; min-height: 92vh; display:flex; align-items:center; padding-top: 140px; padding-bottom: var(--space-20); overflow:hidden; }
.hero-bg { position:absolute; inset:0; z-index:-2; }
.hero-bg img { width:100%; height:100%; object-fit: cover; }
.hero-overlay { position:absolute; inset:0; z-index:-1;
  background: linear-gradient(120deg, rgba(49,79,102,0.88) 0%, rgba(69,109,138,0.78) 55%, rgba(69,109,138,0.62) 100%),
              linear-gradient(0deg, rgba(36,35,35,0.55) 0%, rgba(69,109,138,0) 55%); }
.hero-content { max-width: 820px; }
.hero h1, .hero-headline { color: var(--white); font-size: var(--text-hero); margin-block: var(--space-5) var(--space-6); font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.0; }
.hero .sub { font-family: var(--font-body); font-weight: 300; font-size: var(--text-lg); color: rgba(255,255,255,0.92); max-width: 54ch; line-height: 1.55; }
.hero .sub .text-gold { color: var(--gold); }
.hero-schedule { list-style: none; padding: 0; margin: var(--space-6) 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); max-width: 820px; }
.hero-schedule > li { display: flex; flex-direction: column; gap: 4px; padding: var(--space-4) var(--space-5); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-left: 3px solid var(--gold); border-radius: 6px; backdrop-filter: blur(6px); }
.hero-schedule .season { font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm); letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.hero-schedule .period { font-size: var(--text-xs); color: rgba(255,255,255,0.65); font-weight: 400; }
.hero-schedule .place { font-family: var(--font-body); font-size: var(--text-base); color: rgba(255,255,255,0.95); font-weight: 500; line-height: 1.35; }
@media (max-width: 840px) { .hero-schedule { grid-template-columns: 1fr; gap: var(--space-2); } }
.lead, .subline { font-family: var(--font-body); font-weight: 300; font-size: var(--text-lg); color: var(--brand-blue); max-width: 54ch; line-height: 1.55; }
.hero-cta { display:flex; gap: var(--space-4); margin-top: var(--space-8); flex-wrap:wrap; }
.scroll-hint { position:absolute; bottom: var(--space-8); left:50%; transform: translateX(-50%); color: rgba(255,255,255,0.75); font-size: var(--text-xs); letter-spacing:0.2em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap: var(--space-2); }
.scroll-hint svg { width:18px; height:18px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);} }

/* sub-hero for interior pages — BLAU */
.page-hero { position:relative; padding-top: 160px; padding-bottom: var(--space-16); background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%); color: var(--white); border-bottom:3px solid var(--brand-gold); }
.page-hero .eyebrow { margin-bottom: var(--space-4); color: var(--gold); }
.page-hero h1 { font-size: var(--text-3xl); color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.9); font-size: var(--text-lg); margin-top: var(--space-5); max-width: 56ch; }

/* ---------- Trust bar (weiß) ---------- */
.trustbar { background: var(--white); color: var(--text-on-white); border-block:1px solid rgba(69,109,138,0.12); padding-block: var(--space-8); }
.trustbar .row { display:flex; align-items:center; justify-content:space-between; gap: var(--space-8); flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap: var(--space-3); color: var(--brand-blue-dark); font-size: var(--text-sm); font-weight:600; }
.trust-item svg { width:22px; height:22px; color: var(--gold); flex-shrink:0; }

/* ---------- Program cards ---------- */
.card-grid { display:grid; gap: var(--space-6); }
.cols-4 { grid-template-columns: repeat(4,1fr); }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-2 { grid-template-columns: repeat(2,1fr); }

.prog-card { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--r-lg); overflow:hidden; display:flex; flex-direction:column; transition: var(--t); }
.prog-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.prog-card .media { aspect-ratio: 4/3; overflow:hidden; position:relative; }
.prog-card .media img { width:100%; height:100%; object-fit:cover; transition: transform 500ms cubic-bezier(0.16,1,0.3,1); }
.prog-card:hover .media img { transform: scale(1.06); }
.prog-card .tag { position:absolute; top: var(--space-3); left: var(--space-3); background: rgba(0,0,0,0.8); backdrop-filter: blur(6px); color: var(--gold); font-size: var(--text-xs); font-weight:600; padding: 0.35rem 0.7rem; border-radius: var(--r-full); letter-spacing:0.05em; }
.prog-card .body { padding: var(--space-6); display:flex; flex-direction:column; flex:1; gap: var(--space-3); }
.prog-card h3 { font-size: var(--text-lg); }
.prog-card .meta { color: var(--grey-faint); font-size: var(--text-xs); letter-spacing:0.05em; text-transform:uppercase; }
.prog-card .teaser { color: #4a4a4a; font-size: var(--text-sm); flex:1; }
.prog-card .price { font-family: var(--font-display); font-size: var(--text-lg); color: var(--white); font-weight:600; }
.prog-card .price small { font-size: 0.7rem; color: var(--grey-faint); font-weight:400; letter-spacing:0; }
.prog-card .card-foot { display:flex; align-items:center; justify-content:space-between; margin-top: var(--space-3); }
.card-link { display:inline-flex; align-items:center; gap: var(--space-2); color: var(--gold); font-size: var(--text-sm); font-weight:600; }
.card-link svg { width:16px; height:16px; transition: transform var(--t); }
.card-link:hover svg { transform: translateX(4px); }

/* ---------- USP / feature grid ---------- */
.feature { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--r-lg); padding: var(--space-8); transition: var(--t); }
.feature:hover { border-color: var(--line); transform: translateY(-4px); }
.feature .ico { width:56px; height:56px; border-radius: var(--r-md); background: rgba(174,151,97,0.14); display:flex; align-items:center; justify-content:center; color: var(--gold); margin-bottom: var(--space-5); }
.feature .ico svg { width:28px; height:28px; }
.feature h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.feature p { color: #4a4a4a; font-size: var(--text-sm); }

/* ---------- Method / phases ---------- */
.phase-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: var(--space-5); }
.phase { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--r-lg); padding: var(--space-8); position:relative; transition: var(--t); }
.phase:hover { border-color: var(--line); }
.phase .num { font-family: var(--font-display); font-size: var(--text-2xl); color: rgba(69,109,138,0.22); position:absolute; top: var(--space-5); right: var(--space-6); }
.phase .ico { color: var(--gold); margin-bottom: var(--space-4); }
.phase .ico svg { width:30px; height:30px; }
.phase h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.phase p { color: #4a4a4a; font-size: var(--text-sm); }

/* ---------- Founders ---------- */
.founders { display:grid; grid-template-columns: repeat(2,1fr); gap: var(--space-8); }
.founder { background: var(--white); border:2px solid var(--brand-gold); border-radius: var(--r-lg); overflow:hidden; }
.founder .media { aspect-ratio: 4/5; overflow:hidden; }
.founder .media img { width:100%; height:100%; object-fit:cover; }
.founder .body { padding: var(--space-6); }
.founder .role { color: var(--gold); font-size: var(--text-xs); letter-spacing:0.15em; text-transform:uppercase; font-weight:600; }
.founder h3 { font-size: var(--text-xl); margin-block: var(--space-2) var(--space-3); }
.founder p { color: #4a4a4a; font-size: var(--text-sm); }

/* ---------- Quote ---------- */
.quote-section { text-align:center; }
.quote-section blockquote { font-family: var(--font-quote); font-style:italic; font-size: var(--text-3xl); line-height:1.1; max-width: 16ch; margin-inline:auto; font-weight:500; color: var(--gold); }
.quote-section .attr { color: rgba(255,255,255,0.7); font-size: var(--text-sm); letter-spacing:0.1em; text-transform:uppercase; margin-top: var(--space-8); }

/* ---------- Split / CTA ---------- */
.cta-band { background: linear-gradient(120deg, var(--brand-blue-dark), var(--brand-blue)); border:1px solid rgba(255,255,255,0.15); border-radius: var(--r-xl); padding: clamp(var(--space-10), 6vw, var(--space-24)); text-align:center; color: var(--white); }
.cta-band h2 { font-size: var(--text-2xl); color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); font-size: var(--text-lg); margin-block: var(--space-4) var(--space-8); max-width: 48ch; margin-inline:auto; }
.cta-band .row { display:flex; gap: var(--space-4); justify-content:center; flex-wrap:wrap; }

.split { display:grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items:center; }
.split .media { border-radius: var(--r-lg); overflow:hidden; aspect-ratio: 4/3; }
.split .media img { width:100%; height:100%; object-fit:cover; }
.split h2 { font-size: var(--text-2xl); margin-bottom: var(--space-5); }
.split p { margin-bottom: var(--space-4); }

/* ---------- Code of conduct / values ---------- */
.values-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--space-4); }
.value { border:1px solid var(--line-soft); border-radius: var(--r-md); padding: var(--space-6); display:flex; align-items:center; gap: var(--space-4); background: var(--surface); }
.value .ico { color: var(--gold); flex-shrink:0; } .value .ico svg { width:26px; height:26px; }
.value h4 { font-family: var(--font-display); font-size: var(--text-lg); }
.value p { color: var(--grey-faint); font-size: var(--text-xs); margin-top:2px; }

/* ---------- Checklist ---------- */
.checklist { list-style:none; display:grid; gap: var(--space-3); }
.checklist li { display:flex; gap: var(--space-3); align-items:flex-start; color: #4a4a4a; font-size: var(--text-base); }
.checklist svg { width:22px; height:22px; color: var(--green); flex-shrink:0; margin-top:2px; }

/* ---------- Tabs (filter) ---------- */
.tabs { display:flex; gap: var(--space-2); flex-wrap:wrap; margin-bottom: var(--space-10); }
.tab { padding: 0.55rem 1.1rem; border-radius: var(--r-full); border:1px solid rgba(69,109,138,0.3); color: var(--brand-blue-dark); font-size: var(--text-sm); font-weight:600; background: var(--white); }
.tab.active, .tab:hover { background: var(--brand-blue); color: var(--white); border-color: var(--brand-blue); }
/* Tabs auf blauer Sektion */
.section-blue .tab, .bg-black .tab { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
.section-blue .tab.active, .section-blue .tab:hover,
.bg-black .tab.active, .bg-black .tab:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline:auto; }
.faq-item { border-bottom:1px solid var(--line-soft); }
.faq { background: var(--white); }
.faq-item { border-bottom:1px solid rgba(69,109,138,0.18); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap: var(--space-4); padding-block: var(--space-5); text-align:left; font-family: var(--font-display); font-size: var(--text-lg); color: var(--brand-blue-dark); }
.faq-q .pm { color: var(--gold); flex-shrink:0; transition: transform var(--t); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height 320ms ease; }
.faq-a p { color: #4a4a4a; font-size: var(--text-base); padding-bottom: var(--space-5); }

/* ---------- Forms ---------- */
.form-field { margin-bottom: var(--space-5); }
.form-field label { display:block; font-size: var(--text-sm); color: var(--brand-blue-dark); margin-bottom: var(--space-2); font-weight:600; }
.form-field input, .form-field textarea, .form-field select {
  width:100%; padding: 0.85rem 1rem; background: var(--brand-blue-pale); border:1px solid rgba(69,109,138,0.25);
  border-radius: var(--r-md); color: var(--dark); font-size: var(--text-base);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--gray); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); outline:none; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap: var(--space-4); }
.form-card { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(var(--space-6), 4vw, var(--space-10)); }

/* ---------- Pricing ---------- */
.pricing-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); align-items:stretch; }
.price-card { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--r-lg); padding: var(--space-8); display:flex; flex-direction:column; gap: var(--space-5); position:relative; transition: var(--t); }
.price-card:hover { transform: translateY(-6px); }
.price-card { padding-top: 0; }
/* Blauer Kartenkopf: der erste <div> im Card */
.price-card > div:first-of-type { background: var(--brand-blue); margin:0 calc(-1*var(--space-8)); padding: var(--space-5) var(--space-8); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.price-card > div:first-of-type .pname { color:#fff !important; letter-spacing:0.15em; }
.price-card > div:first-of-type .ptarget { color: rgba(255,255,255,0.85) !important; margin-top: 4px; }
.price-card.featured { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold), 0 20px 60px rgba(49,79,102,0.15); }
.price-card.featured > div:first-of-type { background: var(--brand-blue-dark); }
.price-card .badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background: var(--gold); color: var(--black); font-size: var(--text-xs); font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding: 0.35rem 1rem; border-radius: var(--r-full); }
.price-card .pname { color: var(--gold); font-size: var(--text-xs); letter-spacing:0.15em; text-transform:uppercase; font-weight:600; }
.price-card .ptarget { color: #4a4a4a; font-size: var(--text-sm); }
.price-card .amount { font-family: var(--font-display); font-size: var(--text-3xl); font-weight:600; line-height:1; }
.price-card .amount small { font-size: var(--text-base); color: #4a4a4a; font-weight:400; }
.price-card .checklist { margin-block: var(--space-2); }
.price-card .checklist li { font-size: var(--text-sm); }
.price-card .btn { margin-top:auto; }

/* ---------- Booking calendar ---------- */
.cal { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--r-lg); padding: var(--space-6); }
.cal-head { display:flex; align-items:center; justify-content:space-between; margin-bottom: var(--space-6); }
.cal-head h3 { font-size: var(--text-lg); }
.cal-nav { display:flex; gap: var(--space-2); }
.cal-head h3 { color: var(--brand-blue-dark); }
.cal-nav button { width:40px; height:40px; border:1px solid rgba(69,109,138,0.25); border-radius: var(--r-md); color: var(--brand-blue-dark); display:flex; align-items:center; justify-content:center; }
.cal-nav button:hover { border-color: var(--brand-blue); color: var(--brand-blue); background: var(--brand-blue-pale); }
.cal-weekdays span { color: var(--gray) !important; }
.cal-weekdays { display:grid; grid-template-columns: repeat(7,1fr); gap: var(--space-2); margin-bottom: var(--space-2); }
.cal-weekdays span { text-align:center; font-size: var(--text-xs); color: var(--grey-faint); text-transform:uppercase; letter-spacing:0.05em; }
.cal-grid { display:grid; grid-template-columns: repeat(7,1fr); gap: var(--space-2); }
.cal-day { aspect-ratio:1; border-radius: var(--r-md); display:flex; flex-direction:column; align-items:center; justify-content:center; font-size: var(--text-sm); position:relative; border:1px solid transparent; }
.cal-day.empty { visibility:hidden; }
.cal-day.available { background: #fff; border:2px solid var(--brand-gold); color: var(--dark); cursor:pointer; font-weight:600; }
.cal-day.available:hover, .cal-day.available.sel { background: var(--brand-gold); color:#fff; transform: scale(1.05); }
.cal-day.available .dot { width:5px; height:5px; border-radius:50%; background: var(--brand-gold); margin-top:3px; }
.cal-day.full { background: var(--brand-blue); color: rgba(255,255,255,0.8); cursor:not-allowed; text-decoration: line-through; }
.cal-day.none { color: var(--gray); }
.cal-legend { display:flex; gap: var(--space-5); margin-top: var(--space-6); flex-wrap:wrap; }
.cal-legend span { display:flex; align-items:center; gap: var(--space-2); font-size: var(--text-xs); color: #4a4a4a; }
.cal-legend i { width:12px; height:12px; border-radius:3px; display:inline-block; }
.cal-legend span { color: #4a4a4a; }
.lg-avail { background: #fff; border:2px solid var(--brand-gold); }
.lg-full { background: var(--brand-blue); border:1px solid var(--brand-blue); }
.lg-none { background: transparent; border:1px solid rgba(69,109,138,0.3); }

/* ---------- Modal ---------- */
.modal-overlay { position:fixed; inset:0; z-index:200; background: rgba(5,5,5,0.8); backdrop-filter: blur(6px); display:flex; align-items:center; justify-content:center; padding: var(--space-4); opacity:0; visibility:hidden; transition: opacity var(--t), visibility var(--t); }
.modal-overlay.open { opacity:1; visibility:visible; }
.modal { background: var(--white); border:1px solid rgba(69,109,138,0.2); border-radius: var(--r-lg); max-width: 540px; width:100%; max-height: 90vh; overflow-y:auto; transform: translateY(20px) scale(0.98); transition: transform var(--t); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.modal-head h3 { color: var(--brand-blue-dark); }
.modal-overlay.open .modal { transform: none; }
.modal-head { padding: var(--space-6); border-bottom:1px solid var(--line-soft); display:flex; align-items:flex-start; justify-content:space-between; gap: var(--space-4); }
.modal-head h3 { font-size: var(--text-xl); }
.modal-head { border-bottom-color: rgba(69,109,138,0.15); }
.modal-head .sub { color: var(--brand-blue); font-size: var(--text-sm); margin-top:4px; }
.modal-body { color: #4a4a4a; }
.modal-close { width:38px; height:38px; border-radius: var(--r-full); border:1px solid rgba(69,109,138,0.25); color: var(--brand-blue-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal-body { padding: var(--space-6); }
.time-slots { display:flex; gap: var(--space-3); flex-wrap:wrap; margin-bottom: var(--space-6); }
.time-slot { padding: 0.6rem 1rem; border:1px solid rgba(69,109,138,0.25); border-radius: var(--r-md); font-size: var(--text-sm); color: var(--brand-blue-dark); }
.time-slot.active, .time-slot:hover { border-color: var(--brand-blue); color: #fff; background: var(--brand-blue); }

/* ---------- Checkout ---------- */
.steps { display:flex; align-items:center; gap: var(--space-2); margin-bottom: var(--space-12); flex-wrap:wrap; }
.step { display:flex; align-items:center; gap: var(--space-3); color: var(--grey-faint); font-size: var(--text-sm); }
.step { color: var(--gray); }
.step .n { width:32px; height:32px; border-radius:50%; border:1px solid rgba(69,109,138,0.3); display:flex; align-items:center; justify-content:center; font-weight:600; flex-shrink:0; }
.step.done { color: var(--brand-blue); } .step.done .n { background: var(--brand-blue); border-color: var(--brand-blue); color:#fff; }
.step.current { color: var(--brand-blue-dark); } .step.current .n { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.step-line { flex:1; height:1px; background: rgba(69,109,138,0.2); min-width:20px; }
.checkout-grid { display:grid; grid-template-columns: 1fr 1.3fr; gap: var(--space-10); align-items:start; }
.order-summary { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--r-lg); padding: var(--space-6); position:sticky; top: 110px; }
.order-line { display:flex; justify-content:space-between; gap: var(--space-4); padding-block: var(--space-3); font-size: var(--text-sm); }
.order-summary { color: #4a4a4a; }
.order-summary h3, .order-summary .pname { color: var(--brand-blue-dark); }
.order-line { border-color: rgba(69,109,138,0.12); }
.order-line.total { border-top:1px solid rgba(69,109,138,0.2); margin-top: var(--space-2); padding-top: var(--space-4); font-family: var(--font-display); font-size: var(--text-lg); color: var(--brand-blue-dark); }
.pay-method { border:1px solid rgba(69,109,138,0.2); border-radius: var(--r-md); margin-bottom: var(--space-3); overflow:hidden; color: var(--dark); }
.pay-method label { display:flex; align-items:center; gap: var(--space-3); padding: var(--space-4); cursor:pointer; font-weight:500; }
.pay-method > label input[type="radio"] { accent-color: var(--gold); width:18px; height:18px; }
.pay-method.active { border-color: var(--gold); }
.pay-detail { padding: 0 var(--space-4) var(--space-4); display:none; }
.pay-method.active .pay-detail { display:block; }
.trust-badges { display:flex; gap: var(--space-5); margin-top: var(--space-6); flex-wrap:wrap; }
.trust-badges span { display:flex; align-items:center; gap: var(--space-2); color: var(--grey-faint); font-size: var(--text-xs); }
.trust-badges svg { width:16px; height:16px; color: var(--green); }

/* ---------- Members dashboard ---------- */
.member-split { display:grid; grid-template-columns: 0.9fr 1.4fr; gap: var(--space-10); align-items:start; }
.dash { background: var(--surface); border:1px solid var(--line-soft); border-radius: var(--r-lg); overflow:hidden; }
.dash-head { padding: var(--space-6); border-bottom:1px solid rgba(69,109,138,0.15); background: linear-gradient(120deg, var(--brand-blue-dark), var(--brand-blue)); }
.dash-head h3 { color:#fff !important; } .dash-head p { color: rgba(255,255,255,0.85) !important; }
.dash-head h3 { font-size: var(--text-xl); }
.dash-head p { color: #4a4a4a; font-size: var(--text-sm); }
.dash-body { padding: var(--space-6); display:grid; gap: var(--space-5); }
.dash-tile { border:1px solid var(--line-soft); border-radius: var(--r-md); padding: var(--space-5); }
.dash-tile { border-color: rgba(69,109,138,0.18); }
.dash-tile h4 { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing:0.12em; text-transform:uppercase; color: var(--brand-blue); margin-bottom: var(--space-3); font-weight:600; }
.dash-tile .big { font-family: var(--font-display); font-size: var(--text-lg); color: var(--brand-blue-dark); }
.mini-row { display:flex; justify-content:space-between; padding-block: var(--space-2); font-size: var(--text-sm); color: #4a4a4a; border-bottom:1px solid rgba(69,109,138,0.12); }
.mini-row:last-child { border-bottom:none; }
.bar-track { height:8px; background: var(--surface-2); border-radius:99px; overflow:hidden; margin-top: var(--space-2); }
.bar-fill { height:100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); border-radius:99px; }

/* ---------- Legal pages ---------- */
.legal-notice { background: rgba(174,151,97,0.08); border:1px solid var(--line); border-radius: var(--r-md); padding: var(--space-5) var(--space-6); display:flex; gap: var(--space-4); align-items:flex-start; margin-bottom: var(--space-10); }
.legal-notice svg { width:24px; height:24px; color: var(--gold); flex-shrink:0; }
.legal-notice p { color: #4a4a4a; font-size: var(--text-sm); }
.legal-body h2 { font-size: var(--text-xl); margin-block: var(--space-10) var(--space-4); color: var(--brand-blue-dark); }
.legal-body h3 { font-size: var(--text-lg); margin-block: var(--space-6) var(--space-3); color: var(--brand-blue); }
.legal-body p, .legal-body li { color: #4a4a4a; margin-bottom: var(--space-3); font-size: var(--text-base); }
.legal-body ul { padding-left: var(--space-6); margin-bottom: var(--space-4); }
.legal-body strong { color: var(--brand-blue-dark); }

/* ---------- Detail hero ---------- */
.detail-hero { display:grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-12); align-items:center; padding-top: 150px; padding-bottom: var(--space-16); }
.detail-hero .media { border-radius: var(--r-lg); overflow:hidden; aspect-ratio: 4/3; }
.detail-hero .media img { width:100%; height:100%; object-fit:cover; }
.detail-hero h1 { font-size: var(--text-3xl); margin-block: var(--space-4); color: var(--white); }
.detail-hero .lead { color: rgba(255,255,255,0.9); font-size: var(--text-lg); }
.detail-meta { display:flex; gap: var(--space-8); flex-wrap:wrap; margin-top: var(--space-8); padding-top: var(--space-6); border-top:1px solid rgba(255,255,255,0.2); }
.detail-meta .item .k { color: rgba(255,255,255,0.7); font-size: var(--text-xs); letter-spacing:0.1em; text-transform:uppercase; }
.detail-meta .item .v { color: var(--white); }
.detail-meta .item .v { font-family: var(--font-display); font-size: var(--text-lg); margin-top:4px; }
.detail-meta .item .v.gold { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity:1; transform:none; }
/* Fallback: falls JS deaktiviert oder Observer fehlschlägt, bleibt Inhalt sichtbar */
.no-js .reveal, html:not(.js) .reveal { opacity:1 !important; transform:none !important; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1 !important; transform:none !important; transition:none !important; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position:static; }
  .member-split { grid-template-columns: 1fr; }
  .detail-hero { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-actions .login { display:none; }
  .burger { display:flex; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline:auto; }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .split.rev .media { order:-1; }
  .founders { grid-template-columns: 1fr; max-width: 420px; margin-inline:auto; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cols-4, .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .phase-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .feature, .form-card { padding: var(--space-6); }
  .header-actions .btn-gold { display:none; }
  .logo-wordmark { font-size: 0.8rem; }
  .hero { padding-top: 110px; }
  .hero .eyebrow { font-size: 0.62rem; letter-spacing: 0.12em; }
  .footer-bottom { flex-direction:column; gap: var(--space-3); align-items:flex-start; }
}

/* ---------- Partner ---------- */
.partner-grid { display:grid; grid-template-columns: repeat(5,1fr); gap: var(--space-8); align-items:center; justify-items:center; padding: var(--space-6) 0; }
.partner { display:flex; align-items:center; justify-content:center; padding: var(--space-4) var(--space-5); border-radius: var(--r-md); transition: var(--t); opacity: 0.95; }
.partner:hover { opacity:1; transform: translateY(-2px); }
.partner img { max-width: 100%; max-height: 80px; width:auto; height:auto; object-fit: contain; }
@media (max-width: 900px) { .partner-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 540px) { .partner-grid { grid-template-columns: repeat(2,1fr); } .partner img { max-height: 56px; } }

/* Footer-Social: echte PNG-Icons */
.footer-social { display:flex; gap: var(--space-3); margin-top: var(--space-3); }
.footer-social a { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius: 50%; background: rgba(255,255,255,0.08); transition: var(--t); }
.footer-social a:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.footer-social img { width: 22px; height: 22px; object-fit: contain; }

/* ============================================================
   ZFA Original-Assets – Integration (Logo, Tech, Partner, Symbole)
   ============================================================ */

/* Header-/Footer-Logo: Original-Wortmarke (3-zeilig) */
.logo .logo-img { display:block; width:auto; height:auto; max-height:64px; border-radius:0; object-fit:contain; }
.site-header.scrolled .logo .logo-img { max-height:56px; }
.site-footer .logo .logo-img { max-height:72px; background:#fff; padding:6px 8px; border-radius:6px; }
@media (max-width:540px){ .logo .logo-img { max-height:52px; } }

/* Hero-Overlay: zusätzliche dunkle Abdunklung für lesbaren Text */
.hero-overlay { background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)),
    linear-gradient(120deg, rgba(49,79,102,0.78) 0%, rgba(69,109,138,0.62) 55%, rgba(69,109,138,0.42) 100%) !important; }

/* Technologie-Logos */
.tech-grid { display:grid; grid-template-columns: repeat(5,1fr); gap: var(--space-6); align-items:center; justify-items:center; }
.tech-logo { display:flex; align-items:center; justify-content:center; width:100%; min-height:96px; padding: var(--space-5) var(--space-4); background:#fff; border-radius: var(--r-md); box-shadow: 0 4px 18px rgba(0,0,0,0.10); }
.tech-logo img { max-width:100%; max-height:60px; width:auto; height:auto; object-fit:contain; }
@media (max-width:900px){ .tech-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:540px){ .tech-grid { grid-template-columns: repeat(2,1fr); } .tech-logo { min-height:78px; } .tech-logo img { max-height:46px; } }

/* Partner-Chips: helle Karten, damit RGZ (weiss) & Intersport-Voit (farbig) sichtbar bleiben */
.partner-grid--main { grid-template-columns: repeat(2,1fr); max-width:680px; margin-inline:auto; }
.partner--chip { background:#fff; box-shadow: 0 4px 18px rgba(0,0,0,0.08); padding: var(--space-6) var(--space-7); min-height:120px; }
.partner--chip img { max-height:88px; }
@media (max-width:540px){ .partner-grid--main { grid-template-columns:1fr; } .partner--chip img { max-height:72px; } }

/* Grundregeln-Symbole (Startseite) */
.rule-symbol { width:64px; height:64px; margin-bottom: var(--space-4); display:flex; align-items:center; justify-content:center; }
.rule-symbol img { max-width:100%; max-height:64px; width:auto; height:auto; object-fit:contain; }

/* Werte-Symbole (ueber.html) */
.value .ico--symbol { width:48px; height:48px; display:flex; align-items:center; justify-content:center; }
.value .ico--symbol img { max-width:100%; max-height:48px; width:auto; height:auto; object-fit:contain; }

/* Spielkompass-Grafik (ueber.html) */
.spielkompass { max-width:1000px; margin:0 auto var(--space-12); }
.spielkompass img { width:100%; height:auto; display:block; border-radius: var(--r-lg); background:#fff; padding: var(--space-4); }
.spielkompass figcaption { margin-top: var(--space-4); text-align:center; font-size: var(--text-sm); color: var(--grey); }

/* Feriencamp-Galerie (Startseite) */
.camp-gallery { display:grid; grid-template-columns: repeat(2,1fr); gap: var(--space-5); }
.camp-gallery img { width:100%; height:100%; aspect-ratio: 4/3; object-fit:cover; border-radius: var(--r-lg); }
@media (max-width:540px){ .camp-gallery { grid-template-columns:1fr; } }

/* Tech-Logo-Karte mit dunklem Hintergrund (für helle/weisse Logos wie A-CHAMPS) */
.tech-logo--dark { background: var(--brand-blue-dark); }

/* Partner-Chip mit dunklem Hintergrund (für weisses RGZ-Logo) */
.partner--chip-dark { background: var(--brand-blue-dark); }

/* ===== ZFA Custom Additions ===== */

/* Bestseller-Karte: erhöhte Hervorhebung */
.form-card--bestseller {
  position: relative;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 36px rgba(174,151,97,0.22), 0 4px 14px rgba(0,0,0,0.08);
  padding-top: var(--space-10);
}

.badge--bestseller {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.4rem;
  border-radius: var(--r-full);
  box-shadow: 0 4px 14px rgba(174,151,97,0.4);
  white-space: nowrap;
}

/* Partner-Grid für Corporate Events (3 Logos statt 5) */
.partner-grid--corporate {
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin-inline: auto;
}
.partner-grid--corporate .partner--chip {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  padding: var(--space-6) var(--space-7);
  min-height: 110px;
}
.partner-grid--corporate .partner--chip img {
  max-height: 70px;
}
@media (max-width: 720px) {
  .partner-grid--corporate { grid-template-columns: 1fr; max-width: 360px; }
}

/* Zürileu-Wappen-Slot (ersetzt das alte .ico) */
.feature--zuerileu {
  text-align: center;
}
.zuerileu-wappen {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zuerileu-wappen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Monatsabos-Sektion: Bild-Höhe an Karte anpassen */
.section section-white .split .media,
.split .media {
  /* aspect-ratio bleibt 4/3, aber wir wollen mehr Höhe für Hochformat */
}

/* STATSports Text-Logo (Fallback - bis offizielles Logo geliefert) */
.tech-logo--text {
  background: #000;
}
.tech-logo__text {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tech-logo__accent {
  color: #ff6b35;
}

/* ============================================================
   ROUND 3 — Logo, Tech-Logos, Corporate, Zürileu, Taktik
   ============================================================ */

/* Logo grösser (transparent, kein BG nötig) — Header und Footer */
.logo .logo-img {
  max-height: 72px;
  border-radius: 0;
  background: transparent;
}
.site-header.scrolled .logo .logo-img { max-height: 60px; }
.site-footer .logo .logo-img {
  max-height: 84px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
@media (max-width:540px){ .logo .logo-img { max-height: 58px; } }

/* STATSports Text-Logo für weissen BG (überschreibt --text) */
.tech-logo--text-white {
  background: #fff !important;
}
.tech-logo--text-white .tech-logo__text {
  color: var(--brand-blue-dark, #0f1a35);
}
.tech-logo--text-white .tech-logo__accent {
  color: #ff6b35;
}

/* Corporate-Partner ohne Chip-Hintergrund, grösser und freistehend */
.partner-grid--bare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10);
  max-width: 880px;
  margin-inline: auto;
  align-items: center;
  justify-items: center;
  padding: var(--space-8) 0;
}
.partner--bare {
  background: rgba(255,255,255,0.96) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18) !important;
  padding: var(--space-6) var(--space-8) !important;
  min-height: 160px;
  border-radius: var(--r-md, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
}
.partner--bare:hover { opacity: 1 !important; transform: translateY(-2px); }

/* Camp-Partner-Variante: heller Section-BG, weniger harter Shadow */
.partner--bare-camp {
  background: #ffffff !important;
  box-shadow: 0 4px 16px rgba(15, 26, 53, 0.10) !important;
}
.partner-grid--camp {
  max-width: 760px;
  gap: var(--space-9);
}
.partner--bare img {
  max-height: 110px !important;
  max-width: 100% !important;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 720px) {
  .partner-grid--bare { grid-template-columns: 1fr; gap: var(--space-7); max-width: 360px; }
  .partner--bare img { max-height: 120px; }
}

/* Zürileu-Section edel mit Gold-Akzent */
.feature--zuerileu-edel {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(212, 175, 55, 0.10) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--r-lg, 16px);
  padding: var(--space-9) var(--space-7);
  position: relative;
  overflow: hidden;
}
.feature--zuerileu-edel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold, #d4af37) 30%, var(--gold, #d4af37) 70%, transparent 100%);
}
.feature--zuerileu-edel h3 {
  font-family: 'Playfair Display', 'Inter', serif;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-top: var(--space-4);
}
.feature--zuerileu-edel p {
  font-style: italic;
  color: var(--ink-2, #5a6b8a);
  max-width: 540px;
  margin-inline: auto;
}
.zuerileu-wappen--edel {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.35));
  position: relative;
}
.zuerileu-wappen--edel::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  z-index: -1;
}

/* Taktik-Seminar 2-Spalten-Listen */
.taktik-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-8);
}
.taktik-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--r-md, 12px);
  padding: var(--space-7);
}
.taktik-col__head {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold, #d4af37);
  margin: 0 0 var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.30);
}
.taktik-col ul.checklist {
  margin: 0;
}
.taktik-col ul.checklist li {
  line-height: 1.5;
  color: var(--ink, #1a2747);
}
.taktik-col ul.checklist svg {
  color: var(--gold, #d4af37);
}
@media (max-width: 720px) {
  .taktik-lists { grid-template-columns: 1fr; gap: var(--space-6); }
  .taktik-col { padding: var(--space-6); }
}

/* ============================================================
   ROUND 4 — Camp-Sektion Bullets/Icons, Corporate-Grid Fix, Taktik-Boxen
   ============================================================ */

/* Camp-Sektion: Checklist-Icons mit zwei Zeilen (Untertitel) */
.section-pale .checklist li,
.section-pale .checklist li > span {
  align-items: flex-start;
}
.section-pale .checklist li {
  margin-bottom: var(--space-4);
  line-height: 1.45;
}
.section-pale .checklist li svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--gold, #d4af37);
}

/* Camp-Pakete (3 Tiles für Ganztags/Vormittags/Nachmittags) */
.camp-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.camp-package {
  text-align: center;
  padding: var(--space-4) var(--space-3);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--r-md, 10px);
}
.camp-package__time {
  font-weight: 800;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold, #d4af37);
  margin-bottom: 2px;
}
.camp-package__hours {
  font-size: var(--text-xs, 0.78rem);
  color: var(--ink-2, #5a6b8a);
}
@media (max-width: 640px) {
  .camp-packages { grid-template-columns: 1fr; }
}

/* FIX: Corporate-Logo-Grid 3 Spalten — überschreibt --bare 2-Spalten */
.partner-grid--corporate.partner-grid--bare {
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
  gap: var(--space-7);
  align-items: stretch;
}
.partner-grid--corporate .partner--bare {
  min-height: 140px;
  padding: var(--space-5) var(--space-6) !important;
}
/* Alle Corporate-Logos auf gleiche Größe normalisieren */
.partner-grid--corporate .partner--bare img {
  max-height: 64px !important;
  height: 64px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
}
@media (max-width: 720px) {
  .partner-grid--corporate.partner-grid--bare {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: var(--space-5);
  }
  .partner-grid--corporate .partner--bare img {
    max-height: 56px !important;
    height: 56px !important;
  }
}

/* TAKTIK-Boxen: untereinander statt nebeneinander (Text war eingeklemmt) */
.taktik-lists {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-7);
}
.taktik-col {
  padding: var(--space-7) var(--space-7);
}
.taktik-col ul.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-7);
  row-gap: var(--space-3);
  margin: 0;
}
.taktik-col ul.checklist li {
  margin: 0;
  padding: 0;
  align-items: flex-start;
  gap: var(--space-3);
  line-height: 1.5;
}
.taktik-col ul.checklist li svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}
@media (max-width: 720px) {
  .taktik-col ul.checklist {
    grid-template-columns: 1fr;
  }
  .taktik-col {
    padding: var(--space-6) var(--space-5);
  }
}

/* ============================================================
   ROUND 5 — MOBILE OPTIMIZATION (Header, Nav, Camp greys, h2 overflow, Forms)
   ============================================================ */

/* --- 0) Global: kein horizontales Scrollen --- */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }

/* FIX: Grid-Spalten dürfen niemals breiter werden als Container.
   Ohne minmax(0,1fr) sprengt min-content (z.B. langer Text) die 1fr-Spalte. */
.split, .split.rev { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
@media (max-width: 860px) {
  .split, .split.rev { grid-template-columns: minmax(0, 1fr); }
}

/* --- 1) Header: bleibt fixed (Original-Layout), aber z-index erhöht falls nötig --- */
/* Header ist position:fixed + transparent über Hero, .scrolled wechselt zu weißem BG.
   Wir lassen das original-Verhalten und passen nur das z-index leicht an. */

/* --- 2) FIX --grey unsichtbar auf hellen Sections ---
   --grey ist global auf var(--white) gesetzt (für dunkle Hintergründe).
   Auf hellen Sections muss --grey ein lesbares mittleres Grau sein. */
.section-white, .section-pale, .bg-white {
  --grey: #5a6b8a;
  --grey-faint: rgba(36, 50, 80, 0.7);
}

/* --- 3) Mobile-Nav: CTA passt ins Viewport, volle Höhe --- */
.mobile-nav {
  /* FIX: full viewport höhe statt collapsed */
  height: 100vh; height: 100dvh;
  width: 100vw;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 200;
}
@media (max-width: 540px) {
  .mobile-nav {
    padding: var(--space-12) var(--space-6);
  }
  .mobile-nav .btn {
    font-size: 0.78rem;
    padding: 0.85rem 1.2rem;
    letter-spacing: 0.04em;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
}

/* --- 4) Headlines/Body: kein Wort-Überlauf --- */
h1, h2, h3, h4 {
  overflow-wrap: break-word;
  hyphens: manual;
  -webkit-hyphens: manual;
}
p { overflow-wrap: break-word; hyphens: auto; }

/* Detail-Hero-H1: lange Titel duerfen nicht mehr explodieren */
.detail-hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .detail-hero h1 { font-size: clamp(1.75rem, 8vw, 2.6rem); }
}

@media (max-width: 540px) {
  /* h2 in split/section-head ein wenig kompakter */
  .split h2 { font-size: clamp(1.6rem, 7vw, 2rem); line-height: 1.15; }
  .section-head h2 { font-size: clamp(1.6rem, 7vw, 2rem); line-height: 1.15; }
}

/* --- 5) Container: konsequentes Mobile-Padding --- */
@media (max-width: 540px) {
  .container { padding-inline: var(--space-5); }
}

/* --- 6) Hero: lesbarer Subtitle auf Mobile --- */
@media (max-width: 540px) {
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.5rem); line-height: 1; }
  .hero p, .hero .lead { font-size: 0.95rem; line-height: 1.5; }
}

/* --- 7) Camp / Feature-Cards Padding auf Mobile --- */
@media (max-width: 540px) {
  .feature { padding: var(--space-5); }
  .feature h3 { font-size: var(--text-lg); }
}

/* --- 8) Forms: Inputs full-width und tap-friendly --- */
@media (max-width: 540px) {
  .form-card { padding: var(--space-5); }
  .form-field input, .form-field textarea, .form-field select {
    font-size: 16px; /* verhindert iOS auto-zoom */
    min-height: 44px;
  }
  .form-field textarea { min-height: 96px; }
  .form-row { gap: var(--space-3); }
  .btn-block { width: 100%; }
}

/* --- 9) Header CTA: bleibt auf Mobile sichtbar, kompakt --- */
@media (max-width: 600px) {
  .header-actions .btn-gold {
    display: inline-flex; /* zurück: bleibt sichtbar */
    font-size: 0.7rem;
    padding: 0.55rem 0.9rem;
    letter-spacing: 0.04em;
  }
}
@media (max-width: 420px) {
  .header-actions .btn-gold { display: none; } /* sehr schmale Phones: Burger reicht */
}

/* --- 10) Corporate Card: Padding & Spacing --- */
@media (max-width: 540px) {
  .corporate-card, .cta-card { padding: var(--space-7) var(--space-5); }
}

/* --- 11) Detail-Hero (Programm) Padding --- */
@media (max-width: 540px) {
  .detail-hero { padding-top: 110px; padding-bottom: var(--space-10); gap: var(--space-6); }
  .detail-hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}

/* --- 12) Buttons: kompakter Default auf Mobile --- */
@media (max-width: 540px) {
  .btn { font-size: 0.85rem; padding: 0.85rem 1.3rem; }
  .btn-sm { font-size: 0.72rem; padding: 0.6rem 1rem; }
}

/* --- 13) Section vertical Rhythmus auf Mobile --- */
@media (max-width: 540px) {
  .section { padding-block: var(--space-10); }
}

/* --- 14) Pricing- und Camp-Packages: gutes Spacing --- */
@media (max-width: 540px) {
  .camp-packages { gap: var(--space-2); }
  .camp-package { padding: var(--space-3); }
}

/* --- 15) FAQ items kompakter --- */
@media (max-width: 540px) {
  .faq-q { font-size: var(--text-base); }
  .faq-a p { font-size: 0.92rem; }
}


/* ============================================
   COOKIE-BANNER (DSG/DSGVO-konform, Opt-In)
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a1f44;
  color: #fff;
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1 1 320px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-banner__text strong {
  color: #d4af37;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}
.cookie-banner__text a {
  color: #d4af37;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  padding: 0.65rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.92rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.cookie-banner__actions button:hover {
  transform: translateY(-1px);
}
.cookie-banner__actions [data-consent="essential"] {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.cookie-banner__actions [data-consent="essential"]:hover {
  background: rgba(255, 255, 255, 0.1);
}
.cookie-banner__actions [data-consent="all"] {
  background: #d4af37;
  color: #0a1f44;
}
.cookie-banner__actions [data-consent="all"]:hover {
  background: #e6c352;
}
@media (max-width: 640px) {
  .cookie-banner {
    padding: 1rem;
  }
  .cookie-banner__inner {
    gap: 0.9rem;
  }
  .cookie-banner__text {
    font-size: 0.88rem;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__actions button {
    flex: 1 1 140px;
    padding: 0.7rem 0.8rem;
  }
}

/* ============================================
   SKIP-LINK (Accessibility)
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #0a1f44;
  color: #d4af37;
  padding: 12px 20px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  border-bottom-right-radius: 6px;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #d4af37;
  outline-offset: 2px;
}

/* ============================================
   PHILOSOPHY SLIDER (Über-Seite, Gold)
   ============================================ */
.philosophy-slider {
  background: var(--gold);
  color: var(--black);
  padding-block: var(--space-12, 4rem);
}
.philosophy-slider .container { position: relative; }
.slider-track {
  position: relative;
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  padding-inline: var(--space-6, 1.5rem);
}
.philosophy-slider .slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.philosophy-slider .slide p {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  line-height: 1.55;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  color: var(--black);
  font-weight: 400;
}
.slider-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: var(--space-8, 2rem);
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--black);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dots button[aria-selected="true"] {
  background: var(--black);
  transform: scale(1.15);
}
.slider-dots button:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .philosophy-slider .slide p { font-size: var(--text-base); line-height: 1.5; }
  .slider-track { min-height: 16rem; }
}
@media (prefers-reduced-motion: reduce) {
  .philosophy-slider .slide { transition: none; }
}

/* ============================================
   SLIDER-PFEILE (Über-Seite)
   ============================================ */
.philosophy-slider .container { position: relative; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--black);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.slider-arrow:hover {
  background: var(--black);
  color: var(--gold);
}
.slider-arrow:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow--prev { left: 0.5rem; }
.slider-arrow--next { right: 0.5rem; }
@media (min-width: 1024px) {
  .slider-arrow--prev { left: 1.5rem; }
  .slider-arrow--next { right: 1.5rem; }
}
@media (max-width: 640px) {
  .slider-arrow { width: 38px; height: 38px; }
  .slider-arrow svg { width: 18px; height: 18px; }
  .slider-arrow--prev { left: 0.25rem; }
  .slider-arrow--next { right: 0.25rem; }
}

/* ============================================
   FOOTER-SLOGAN + COPYRIGHT (links unter Logo/Social)
   ============================================ */
.footer-slogan {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  margin-top: var(--space-5, 1.25rem);
  margin-bottom: 0.5rem;
  max-width: 28ch;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* =========================================================
   KONTRAST-FIXES (Runde 4) — Lesbarkeit auf allen Seiten
   ========================================================= */

/* 1) Eyebrows auf BLAUEN/DUNKLEN Sections: helleres Gold für Kontrast */
.section-blue .eyebrow,
.bg-black .eyebrow,
.section-dark .eyebrow,
.grad-top .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.detail-hero .eyebrow {
  color: #F0D387;
}

/* 2) Section-Head Sublines auf Blau: heller, statt Gold #AE9761 */
.bg-black .section-head p,
.section-blue .section-head p,
.section-dark .section-head p,
.grad-top .section-head p,
.hero .section-head p,
.page-hero .section-head p {
  color: rgba(255,255,255,0.92);
}

/* 3) .text-gold auf hellen Sections / weissen Cards: dunkleres Gold */
.section-white .text-gold,
.section-pale .text-gold,
.bg-anthracite .text-gold,
.prog-card .text-gold,
.feature .text-gold,
.legal-body .text-gold,
.legal-notice .text-gold,
.form-card .text-gold,
.price-card .text-gold,
.founder .text-gold,
.checklist .text-gold,
.order-summary .text-gold {
  color: var(--brand-gold-dark);   /* #746541 — 5.71 auf weiss */
}
/* a.text-gold Links in weissen Cards (Impressum/Datenschutz/AGB) */
.legal-body a.text-gold {
  color: var(--brand-gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(116,101,65,0.4);
  text-underline-offset: 2px;
}
.legal-body a.text-gold:hover { color: var(--brand-blue-dark); text-decoration-color: var(--brand-blue-dark); }

/* 4) LEGAL-BODY: weisse Card (Impressum/Datenschutz/AGB) — sonst dunkler Text auf blauem BG unlesbar */
.bg-black .legal-body,
.section-blue .legal-body,
.section-dark .legal-body {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  box-shadow: 0 8px 28px rgba(49,79,102,0.08);
  border: 1px solid rgba(69,109,138,0.18);
}
.legal-body h2,
.legal-body h3,
.legal-body p,
.legal-body li,
.legal-body strong { /* überschreibt evtl. erbende bg-black/section-blue Regeln */ }
.bg-black .legal-body h2,
.section-blue .legal-body h2,
.section-dark .legal-body h2 { color: var(--brand-blue-dark); }
.bg-black .legal-body h3,
.section-blue .legal-body h3,
.section-dark .legal-body h3 { color: var(--brand-blue); }
.bg-black .legal-body p,
.bg-black .legal-body li,
.section-blue .legal-body p,
.section-blue .legal-body li,
.section-dark .legal-body p,
.section-dark .legal-body li { color: #2a2a2a; }
.bg-black .legal-body strong,
.section-blue .legal-body strong,
.section-dark .legal-body strong { color: var(--brand-blue-dark); }

/* 5) LEGAL-NOTICE Box: bei dunkler Section eigene Background-Logik beibehalten,
       aber Text immer auf hell-sichtbar */
.bg-black .legal-notice,
.section-blue .legal-notice,
.section-dark .legal-notice {
  background: var(--white);
  border: 1px solid rgba(69,109,138,0.18);
}
.bg-black .legal-notice p,
.section-blue .legal-notice p,
.section-dark .legal-notice p,
.bg-black .legal-notice strong,
.section-blue .legal-notice strong { color: #2a2a2a; }
.bg-black .legal-notice svg,
.section-blue .legal-notice svg { color: var(--brand-gold-dark); }

/* 6) KALENDER: #zfa-calendar als weisse Card auf blauer Section */
#zfa-calendar {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  box-shadow: 0 8px 28px rgba(49,79,102,0.08);
  border: 1px solid rgba(69,109,138,0.18);
}
#zfa-calendar .cal-head h3 { color: var(--brand-blue-dark); }
#zfa-calendar .cal-weekdays span { color: #4a4a4a !important; }
#zfa-calendar .cal-legend span { color: #4a4a4a; }
#zfa-calendar .cal-day.none { color: #8F8F8F; }
#zfa-calendar .cal-nav button { color: var(--brand-blue-dark); }
#zfa-calendar .cal-nav button:hover { color: var(--brand-gold-dark); }
#zfa-calendar .cal-legend i.lg-avail { background: var(--brand-gold); }
#zfa-calendar .cal-legend i.lg-full  { background: var(--brand-blue); }
#zfa-calendar .cal-legend i.lg-none  { background: #e5e7eb; }

/* 7) CHECKOUT-STEPS: .step ohne .done/.current war blau auf blau */
.bg-black .steps .step,
.section-blue .steps .step,
.section-dark .steps .step {
  color: rgba(255,255,255,0.75);
}
.bg-black .steps .step.current,
.section-blue .steps .step.current,
.section-dark .steps .step.current { color: var(--white); font-weight: 700; }
.bg-black .steps .step.done,
.section-blue .steps .step.done,
.section-dark .steps .step.done { color: #F0D387; }

/* 8) Programme/Cards: .meta, .price etc. in weissen Cards bleiben dunkel.
       Falls Cards transparent bleiben, sollten Sie auf BG-Farbe explizit weiss eingestellt sein. */

/* 9) Header-Nav-Links: Original-Header ist bei Index transparent über Hero — 
   nach Scroll bekommt er weissen BG. Sichtbarkeit auf weiss erforderlich. */
.site-header.scrolled .nav a,
.site-header.scrolled .login {
  color: var(--brand-blue-dark);
}
.site-header.scrolled .nav a.active,
.site-header.scrolled .nav a:hover {
  color: var(--brand-gold-dark);
}

/* 10) Mobile-Nav anmelden-Link: war inline color:var(--grey) = weiss → unlesbar */
.mobile-nav a.login { color: var(--brand-blue-dark) !important; }

/* 11) Programme-Karten: .meta auf weisser Card war weiss/transparent */
.prog-card .meta,
.feature .meta,
.price-card .meta { color: var(--brand-blue) !important; }
.prog-card .price, .price-card .price { color: var(--brand-blue-dark); }
.prog-card .price small { color: var(--brand-blue); }

/* 12) Span.price (Gross): weisser Card-BG, Gold-Tone funktioniert nicht → blau-dark */
.prog-card span.price,
.feature span.price,
.price-card span.price { color: var(--brand-blue-dark); font-weight: 800; }

/* 13) Span.role auf weissen Hero-Karten der Gründer */
.founder .role,
.prog-card .role,
.feature .role,
.value .role { color: var(--brand-gold-dark); }

/* 14) Camp Package Time (kleines Label "Ganztags") in pale section */
.section-pale .camp-package__time,
.section-white .camp-package__time,
.bg-anthracite .camp-package__time {
  color: var(--brand-gold-dark);
  font-weight: 700;
}

/* 15) Hero-Schedule .season (SOMMER/WINTER/ZFA Pro GANZJÄHRIG) — auf Hero (dunkel) OK,
       aber falls inneres Element weisser BG hat: Goldton dunkler */
.section-white .season,
.section-pale .season,
.bg-anthracite .season,
.prog-card .season {
  color: var(--brand-gold-dark);
}
.section-white .place,
.section-pale .place,
.bg-anthracite .place,
.prog-card .place {
  color: var(--brand-blue-dark);
}
.section-white .period,
.section-pale .period,
.bg-anthracite .period,
.prog-card .period {
  color: var(--brand-blue);
}

/* 16) Hero-Buttons Ghost-Variante auf weisser Card */
.section-white .btn-ghost,
.section-pale .btn-ghost,
.bg-anthracite .btn-ghost,
.prog-card .btn-ghost {
  color: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
}
.section-white .btn-ghost:hover,
.section-pale .btn-ghost:hover,
.bg-anthracite .btn-ghost:hover,
.prog-card .btn-ghost:hover {
  background: var(--brand-blue-dark);
  color: var(--white);
}

/* 17) Card-Link Pfeil (Kurs ansehen) — Gold zu schwach auf weiss */
.prog-card .card-link,
.feature .card-link,
.section-white .card-link,
.section-pale .card-link {
  color: var(--brand-gold-dark);
}

/* 18) Tech-Logo Accent: orange #FF6B35 auf weiss = 2.84 → dunkler */
.section-white .tech-logo__accent,
.section-pale .tech-logo__accent,
.bg-anthracite .tech-logo__accent {
  color: #c84413; /* dunkleres Orange, besserer Kontrast auf Weiss */
}

/* 19) Generic catch-all: text-gold auf weissem Hintergrund braucht dunkleres Gold.
       (Spätere CSS-Regeln gewinnen, daher hier nochmal explizit) */
html:not([data-color-scheme="dark"]) body .section-white .text-gold,
html:not([data-color-scheme="dark"]) body .section-pale .text-gold {
  color: var(--brand-gold-dark);
}

/* =========================================================
   KONTRAST-FIXES Runde 4.2 — Feintuning
   ========================================================= */

/* Eyebrow auf Blau/Dunkel/Hero: helleres Gold #FFEC9C → 4.66 auf #456D8A */
.section-blue .eyebrow,
.bg-black .eyebrow,
.section-dark .eyebrow,
.grad-top .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.detail-hero .eyebrow {
  color: #FFEC9C;
}

/* Section-Head Sublines auf Blau bleiben weiss-leicht-transparent */

/* Kalender deaktivierte Tage: #8F8F8F war 3.23 → #6b6b6b = 5.33 */
#zfa-calendar .cal-day.none { color: #6b6b6b !important; }

/* Tech-Logo Accent "SPORTS" dunkler */
.tech-logo__accent { color: #b3370f; }

/* Detail-Hero .v.gold (Preis-Display) heller */
.detail-hero .v.gold,
.detail-meta .item .v.gold {
  color: #FFEC9C !important;
}

/* 404-Page hopp@... Link (auf bg-black) — Gold heller */
.bg-black p a.text-gold,
.section-blue p a.text-gold,
.section-dark p a.text-gold {
  color: #FFEC9C;
  text-decoration: underline;
  text-decoration-color: rgba(255,236,156,0.4);
  text-underline-offset: 2px;
}
.bg-black p a.text-gold:hover,
.section-blue p a.text-gold:hover,
.section-dark p a.text-gold:hover { color: #FFFFFF; }

/* CTA-Band btn-ghost auf hellem BG: dunkelblau border + text */
.bg-anthracite .cta-band .btn-ghost,
.section-white .cta-band .btn-ghost,
.section-pale .cta-band .btn-ghost {
  color: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  background: transparent;
}
.bg-anthracite .cta-band .btn-ghost:hover,
.section-white .cta-band .btn-ghost:hover,
.section-pale .cta-band .btn-ghost:hover {
  background: var(--brand-blue-dark);
  color: var(--white);
}

/* Auf Blau bleibt btn-ghost weiss/transparent — sicherstellen */
.bg-black .cta-band .btn-ghost,
.section-blue .cta-band .btn-ghost,
.section-dark .cta-band .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  background: transparent;
}
.bg-black .cta-band .btn-ghost:hover,
.section-blue .cta-band .btn-ghost:hover,
.section-dark .cta-band .btn-ghost:hover {
  background: var(--white);
  color: var(--brand-blue-dark);
}

/* =========================================================
   KONTRAST-FIXES Runde 4.3 — Card-Inhalt-Überschreibungen
   Cards (white background) dürfen niemals weiss-transparente Texte enthalten
   ========================================================= */

/* .value Card — Subtext */
.value p { color: #4a4a4a !important; }
.value h4 { color: var(--brand-blue-dark); }

/* .prog-card Meta + Price-Small */
.prog-card .meta { color: var(--brand-blue) !important; }
.prog-card .price small { color: var(--brand-blue) !important; }

/* .order-summary, .mini-row in weisser Card (sind Karten in bg-black Section, müssen dunkel sein) */
.order-summary { background: var(--white); color: var(--text-on-white); }
.order-summary h3, .order-summary h4 { color: var(--brand-blue-dark); }
.order-summary p, .order-summary li, .order-summary span,
.order-summary .mini-row span { color: #4a4a4a; }
.order-summary strong { color: var(--brand-blue-dark); }
.order-summary .mini-row span:first-child { color: var(--brand-blue); }
/* Gold-Akzente in order-summary auf weiss → dunkler */
.order-summary .text-gold,
.order-summary .price-gold { color: var(--brand-gold-dark); }

/* .dash + dash-tile in weisser Card */
.dash { background: var(--white); color: var(--text-on-white); }
.dash-head { background: var(--brand-blue-dark); color: var(--white); }
.dash-head h3 { color: var(--white) !important; }
.dash-head p { color: rgba(255,255,255,0.9) !important; }
.dash-body { color: var(--text-on-white); }
.dash-tile { color: var(--text-on-white); }
.dash-tile h4 { color: var(--brand-blue-dark); }
.dash-tile p, .dash-tile span,
.dash-tile .mini-row span { color: #4a4a4a; }
.dash-tile .mini-row span:first-child { color: var(--brand-blue); }
.dash-tile strong { color: var(--brand-blue-dark); }
/* btn-ghost in dash auf weiss */
.dash .btn-ghost {
  color: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
}
.dash .btn-ghost:hover {
  background: var(--brand-blue-dark); color: var(--white);
}

/* Trust-Badges nur überschreiben wenn auf hellem BG */
.section-white .trust-badges span,
.section-pale .trust-badges span,
.bg-anthracite .trust-badges span,
.prog-card .trust-badges span,
.form-card .trust-badges span {
  color: var(--brand-blue);
}

/* Text-gold Links speziell in weissen Cards (form-card, legal-body, dash, order-summary) → dunkler */
.form-card a.text-gold,
.legal-body a.text-gold,
.legal-notice a.text-gold,
.dash a.text-gold,
.order-summary a.text-gold {
  color: var(--brand-gold-dark) !important;
  text-decoration: underline;
  text-decoration-color: rgba(116,101,65,0.4);
  text-underline-offset: 2px;
}
.form-card a.text-gold:hover,
.legal-body a.text-gold:hover,
.dash a.text-gold:hover,
.order-summary a.text-gold:hover {
  color: var(--brand-blue-dark) !important;
  text-decoration-color: var(--brand-blue-dark);
}

/* Schweizer Spielkompass Bildunterschrift war weiss auf weiss */
.spielkompass figcaption,
.spielkompass .source {
  color: #4a4a4a;
}
.bg-anthracite .spielkompass figcaption,
.section-white .spielkompass figcaption,
.section-pale .spielkompass figcaption {
  color: #4a4a4a;
}

/* Strong-Hinweis in Programm-Detail auf bg-anthracite (weiss) */
.bg-anthracite strong.text-gold,
.section-white strong.text-gold,
.section-pale strong.text-gold {
  color: var(--brand-gold-dark);
}
/* Generic: jede strong im split auf weissem Hintergrund */
.bg-anthracite .split strong,
.section-white .split strong { color: var(--brand-blue-dark); }

/* =========================================================
   KONTRAST-FIXES Runde 4.4 — Scoped Variable Overrides
   Footer + Header sind dunkel → --grey/--grey-faint dort heller halten
   ========================================================= */
.site-footer,
header.site-header,
.hero,
.page-hero,
.detail-hero,
.section-dark,
.bg-black,
.section-blue,
.grad-top {
  --grey: rgba(255,255,255,0.85);
  --grey-faint: rgba(255,255,255,0.65);
}

/* Aber: Cards INNERHALB dunkler Sektionen müssen --grey wieder auf dunkel setzen */
.bg-black .prog-card,        .section-blue .prog-card,        .section-dark .prog-card,
.bg-black .feature,          .section-blue .feature,          .section-dark .feature,
.bg-black .phase,            .section-blue .phase,            .section-dark .phase,
.bg-black .founder,          .section-blue .founder,          .section-dark .founder,
.bg-black .value,            .section-blue .value,            .section-dark .value,
.bg-black .price-card,       .section-blue .price-card,       .section-dark .price-card,
.bg-black .form-card,        .section-blue .form-card,        .section-dark .form-card,
.bg-black .order-summary,    .section-blue .order-summary,    .section-dark .order-summary,
.bg-black .dash,             .section-blue .dash,             .section-dark .dash,
.bg-black .modal,            .section-blue .modal,            .section-dark .modal,
.bg-black .legal-notice,     .section-blue .legal-notice,     .section-dark .legal-notice,
.bg-black .legal-body,       .section-blue .legal-body,       .section-dark .legal-body,
.bg-black #zfa-calendar,     .section-blue #zfa-calendar,     .section-dark #zfa-calendar {
  --grey: #6b6b6b;
  --grey-faint: #6b6b6b;
}

/* Auf Hero (dunkel) gibt es .hero-cta mit btn-ghost — sollte weiss bleiben */
.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.hero .btn-ghost:hover {
  background: var(--white);
  color: var(--brand-blue-dark);
}

/* Mobile-Nav login Link — bleibt im inline-style "color:var(--grey)" → über Cascade scope */
.mobile-nav { 
  --grey: var(--brand-blue-dark);  /* Mobile-Nav hat weissen BG */
}

/* =========================================================
   KONTRAST-FIXES Runde 4.5 — Letzte Feinheiten
   ========================================================= */

/* tech-logo__accent muss überall dunkles Orange sein (#FF6B35 ist auf weiss 2.84) */
.tech-logo__accent { color: #b3370f !important; }
/* Auf dunklen Sections darf es heller sein — ABER NICHT auf .tech-logo--text-white (das hat weisse Card) */
.section-blue .tech-logo--text:not(.tech-logo--text-white) .tech-logo__accent,
.bg-black .tech-logo--text:not(.tech-logo--text-white) .tech-logo__accent,
.section-dark .tech-logo--text:not(.tech-logo--text-white) .tech-logo__accent {
  color: #FFA56B !important;
}
/* .tech-logo--text-white hat weisse Card → dunkles Orange erzwingen */
.tech-logo--text-white .tech-logo__accent { color: #b3370f !important; }

/* CTA-Band ist immer Gradient Dunkelblau → btn-ghost MUSS weiss sein, egal welche Parent-Section */
.cta-band .btn-ghost {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.7) !important;
  background: transparent !important;
}
.cta-band .btn-ghost:hover {
  background: var(--white) !important;
  color: var(--brand-blue-dark) !important;
}

/* Step.done (Checkout-Fortschritt: "Programm" abgeschlossen) — auf weiss umstellen für besseren Kontrast */
.steps .step.done { color: var(--white) !important; opacity: 0.85; }
.steps .step.done::before { background: var(--white); color: var(--brand-blue-dark); }

/* ============================================================
   ROUND 5 — Founder-Layout, Slogan-Linie, Boxes, Logo-Grid, Maps
   ============================================================ */

/* Founder-Name: gleichmässige Höhe & Linie */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10); align-items: start; }
.founders .founder { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); overflow: hidden; }
/* R7: Founder-Portraits in voller Höhe – natürliche Bildhöhe, kein Crop.
   Bilder sind 4:5 (746x804 / 752x820). Container passt sich an. */
.founders .founder .media { overflow: hidden; background: rgba(0,0,0,0.08); aspect-ratio: auto; }
.founders .founder .media img { width: 100%; height: auto; display: block; object-fit: contain; aspect-ratio: auto; }
.founders .founder .body { padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-4); }

/* Rolle als kleines Eyebrow oben — gleichmässige Höhe für ausgerichtete Namen-Linie */
.founders .founder .role {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFEC9C;
  min-height: 2.6em; /* deckt 1- und 2-zeilige Rollen ab → Namen landen auf gleicher Linie */
  line-height: 1.3;
  margin: 0;
}

/* Founder-Name: gross, einheitlich */
.founders .founder .founder-name,
.founders .founder h3.founder-name {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.05;
  margin: 0 0 var(--space-2) 0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: var(--space-3);
}

/* Strukturierte Blocks für Ausbildung / Sonstiges */
.founder-block { margin-top: var(--space-4); }
.founder-block .founder-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFEC9C;
  margin-bottom: var(--space-2);
}
.founder-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.founder-list li {
  padding-left: 1.1em;
  position: relative;
  margin-bottom: var(--space-2);
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}
.founder-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFEC9C;
}
.founder-block p { color: rgba(255,255,255,0.92); margin: 0; line-height: 1.6; }

@media (max-width: 820px) {
  .founders { grid-template-columns: 1fr; }
  .founders .founder .role { min-height: 0; }
}

/* ---- Footer: Social-Media in eine Linie ---- */
.site-footer .social,
.site-footer .footer-social,
.footer-social-row {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: flex-start;
}
.site-footer .social a,
.footer-social-row a {
  flex: 0 0 auto;
}
@media (max-width: 480px) {
  .site-footer .social,
  .footer-social-row { flex-wrap: wrap; }
}

/* ---- Taktik-Seminar: takeaway-Boxen mit ordentlichem Padding ---- */
.takeaway-box,
.box-takeaway,
.section-blue .check-grid,
.tactic-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  margin: var(--space-4) 0;
  border: 1px solid rgba(0,0,0,0.05);
}
.takeaway-box .takeaway-title,
.box-takeaway .takeaway-title {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-blue-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-gold);
}
.takeaway-box ul,
.box-takeaway ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
.takeaway-box ul li,
.box-takeaway ul li {
  position: relative;
  padding-left: 2rem;
  color: var(--brand-blue-dark);
  line-height: 1.55;
}
.takeaway-box ul li::before,
.box-takeaway ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23746541' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  .takeaway-box ul,
  .box-takeaway ul { grid-template-columns: 1fr; }
}

/* ---- Corporate Partner Logos: einheitliche Card-Grösse ---- */
.partner-grid--bare,
.corporate-grid,
.partner-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  align-items: stretch;
  justify-items: center;
}
.partner-grid--bare > *,
.corporate-grid > *,
.partner-cards > * {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 5 / 3;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.partner-grid--bare img,
.corporate-grid img,
.partner-cards img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---- «Wir haben den Ball» — Spacing zwischen Nummer und Text ---- */
.numbered-quote,
.quote-block,
.philo-slide,
.split.tactics {
  position: relative;
}
.numbered-quote .num,
.philo-slide .num,
.quote-num {
  display: block;
  margin-right: 0.4em;
  padding-right: 0.25em;
  line-height: 1;
}

/* Philosophy-Slider Quote-Layout */
.philo-slide__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.18);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.philo-slide__quote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0 0 1rem 0;
  display: block;
}

/* ---- Abos Stichpunkt-Zeile: Innenabstand für Bullets ---- */
.checklist-row,
.feature-row,
.benefit-row,
.zfa-trust-row {
  padding-left: clamp(2rem, 8vw, 6rem) !important;
  padding-right: clamp(2rem, 8vw, 6rem) !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
}
.checklist-row > *,
.feature-row > *,
.benefit-row > *,
.zfa-trust-row > * {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
@media (max-width: 720px) {
  .checklist-row,
  .feature-row,
  .benefit-row,
  .zfa-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* ---- Google Maps Embed ---- */
.map-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  background: #1c2833;
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.map-embed__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  pointer-events: none;
}
.map-embed__badge svg { width: 18px; height: 18px; color: var(--brand-gold); }
@media (max-width: 720px) {
  .map-embed iframe { height: 320px; }
}

/* ---- Phase-Karten: Nummer überlappt nicht mehr mit dem Titel ---- */
.phase { padding-top: clamp(3.2rem, 5vw, 4.4rem); padding-right: var(--space-6); }
.phase .num {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-size: 3rem;
  font-family: 'Archivo Black', sans-serif;
  color: rgba(69,109,138,0.18);
  line-height: 1;
  pointer-events: none;
}
.phase h3 { padding-right: 0; margin-top: var(--space-2); }
.phase .ico { margin-top: var(--space-1); }

@media (max-width: 720px) {
  .phase .num { font-size: 2.4rem; top: var(--space-3); right: var(--space-4); }
}

/* ---- ROUND 5: Taktik-Box Padding-Refresh (Haken klebten am Rand) ---- */
.taktik-lists {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.taktik-col {
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.8rem, 4vw, 2.8rem) !important;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  border-radius: 14px;
}
.taktik-col__head {
  color: var(--brand-blue-dark) !important;
  border-bottom: 2px solid var(--brand-gold) !important;
  margin-bottom: clamp(1.1rem, 2.2vw, 1.5rem) !important;
  padding-bottom: 0.6rem !important;
}
.taktik-col ul.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.8rem, 4vw, 3rem);
  row-gap: 0.9rem;
  margin: 0;
  list-style: none;
  padding: 0;
}
.taktik-col ul.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0;
  line-height: 1.55;
  color: var(--brand-blue-dark);
}
.taktik-col ul.checklist li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--brand-gold-dark);
  stroke: var(--brand-gold-dark);
  stroke-width: 3;
}
.taktik-col ul.checklist li strong {
  color: var(--brand-blue-dark);
  font-weight: 700;
}
@media (max-width: 760px) {
  .taktik-col ul.checklist { grid-template-columns: 1fr; row-gap: 0.7rem; }
  .taktik-col { padding: 1.4rem 1.3rem !important; }
}

/* ---- Trustbar/Abos-Bullets: weiter weg vom Rand ---- */
.trustbar {
  padding-inline: clamp(2rem, 6vw, 5rem) !important;
}
.trustbar .row {
  justify-content: space-around !important;
  gap: clamp(1.5rem, 4vw, 3rem) !important;
  padding-inline: clamp(1rem, 4vw, 3rem) !important;
}
.trust-item {
  flex: 0 1 auto;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .trustbar { padding-inline: 1.5rem !important; }
  .trustbar .row { flex-direction: column; align-items: flex-start !important; gap: 1rem !important; padding-inline: 0 !important; }
  .trust-item { white-space: normal; }
}

/* ---- Corporate-Partner-Grid: einheitliche Card-Grösse ---- */
.partner-grid--corporate {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(1rem, 3vw, 2rem) !important;
  align-items: stretch !important;
  justify-items: center !important;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.partner-grid--corporate .partner,
.partner-grid--corporate .partner--bare {
  width: 100% !important;
  max-width: 220px !important;
  aspect-ratio: 5 / 3 !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.2rem 1.6rem !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08) !important;
  border: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-grid--corporate .partner:hover,
.partner-grid--corporate .partner--bare:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
}
.partner-grid--corporate .partner img,
.partner-grid--corporate .partner--bare img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 !important;
}
@media (max-width: 720px) {
  .partner-grid--corporate { grid-template-columns: repeat(2, 1fr) !important; max-width: 460px; }
}
@media (max-width: 460px) {
  .partner-grid--corporate { grid-template-columns: 1fr !important; max-width: 280px; }
}

/* ============================================================
   Round 5b — Founder-Fixes (Frontpage + Über-Seite)
   - Beide Seiten: dunkle Card, weisse Schrift
   - Köpfe nicht anschneiden: object-position center top
   ============================================================ */

/* Founder-Card auf BEIDEN Seiten: dunkler Background, weisse Schrift */
.founders .founder,
section .founders .founder {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: var(--r-lg) !important;
  overflow: hidden;
}

/* Köpfe nicht anschneiden — object-position oben */
.founders .founder .media img,
.founder .media img {
  object-position: center top !important;
}

/* Alle Texte im Founder-Body weiss (höhere Spezifität als Z.412 .founder p { #4a4a4a }) */
.founders .founder .body p,
.founders .founder .body,
section .founders .founder .body p {
  color: rgba(255,255,255,0.92) !important;
}

/* H3 Founder-Name immer weiss (auf Frontpage auch) UND auf einer Linie */
.founders .founder .body h3,
.founders .founder .body h3.founder-name,
section .founders .founder h3 {
  color: #ffffff !important;
  white-space: nowrap !important;
  letter-spacing: 0 !important;
}
/* Frontpage-Founder-H3: kleinere Schrift, damit auf einer Linie passt */
#gruender .founders .founder .body h3,
section.section-blue .founders .founder .body h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem) !important;
  line-height: 1.1 !important;
}

/* Role/Eyebrow: gold auch auf Frontpage */
.founders .founder .role,
section .founders .founder .role {
  color: #FFEC9C !important;
}

/* ============================================================
   R7 — Founder-Bilder & Hero-Bilder: kein Crop, voller Portrait
   ============================================================ */
/* Mike-Schuss Hero auf ueber.html: Hochformat 2:3 (1667x2500) – nicht in 4:3 quetschen */
#vision .split .media,
section#vision .split .media {
  aspect-ratio: auto;
  overflow: hidden;
}
#vision .split .media img,
section#vision .split .media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--r-lg);
}

/* Mobile: Founder-Karten vertikal stapeln, Bild bleibt voller Portrait */
@media (max-width: 768px) {
  .founders {
    grid-template-columns: 1fr !important;
    max-width: 480px;
    margin-inline: auto;
  }
  .founders .founder .media img {
    max-height: 70vh;
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: auto;
  }
}

/* ============================================================
   R7 — Checkout: Account-Tabs (Neu/Bestehend)
   ============================================================ */
.acct-tabs { margin-bottom: var(--space-5); }
.acct-tab {
  flex: 1 1 auto;
  padding: 12px 16px;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--grey);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.acct-tab:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.acct-tab.is-active {
  background: var(--brand-gold);
  color: var(--brand-blue-dark);
  border-color: var(--brand-gold);
}
@media (max-width: 520px) {
  .acct-tabs { flex-direction: column; }
  .acct-tab { flex: 1 1 100%; }
}
