/* =====================================================================
   TLAP SPORTS — Website Zusatz-Layer (site.css)
   Baut auf tlap.css auf. Neue Bausteine: Wissen-Dropdown, Login,
   Sport-Umschalter, Sport-Banner, rotierender Hero, Live-Demo-Frame.
   ===================================================================== */

/* ----------  HEADER: Wissen-Dropdown  ---------- */
.nav-dd { position: relative; }
.nav-dd .dd-trigger {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: .55em .85em; border-radius: var(--r-pill); color: var(--text-dim);
  display: inline-flex; align-items: center; gap: .4em; transition: color .25s, background .25s;
}
.nav-dd .dd-trigger:hover, .nav-dd.open .dd-trigger { color: var(--text); background: var(--surface-2); }
.nav-dd .dd-trigger svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav-dd.open .dd-trigger svg { transform: rotate(180deg); }
.dd-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  width: 250px; background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); box-shadow: var(--shadow-2); padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; z-index: 120;
}
.nav-dd.open .dd-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd-panel a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--r-sm); color: var(--text-dim); font-weight: 500; font-size: .92rem; transition: background .18s, color .18s; }
.dd-panel a:hover { background: var(--surface-2); color: var(--brand-bright); }
.dd-panel a svg { width: 16px; height: 16px; opacity: .8; }
.dd-panel hr { border: 0; border-top: 1px solid var(--hairline); margin: 6px 4px; }
.dd-panel .dd-sec { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .14em; font-size: .62rem; color: var(--text-mute); padding: 8px 12px 4px; }

/* ----------  BRAND als Sport-Umschalter  ---------- */
.brand-sport { background: none; border: 0; cursor: pointer; }
.brand-chev { width: 15px; height: 15px; color: var(--text-mute); margin-left: 2px; transition: transform .25s; flex: none; }
.sport-switch.open .brand-chev { transform: rotate(180deg); }
/* Logo ist die Bildmarke (sagt schon TLAP); daneben nur die Sportart */
.brand .wordmark {
  font-family: var(--font-stencil); font-weight: 600; font-size: .88rem;
  letter-spacing: .3em; text-transform: uppercase; line-height: 1; white-space: nowrap;
}
.brand .wordmark .sport-label { color: var(--text-dim); font-weight: 600; }
[data-sport]:not([data-sport="all"]) .brand .wordmark .sport-label { color: var(--brand-bright); }

/* Sport-Menü (Popover unter dem Logo) */
.sport-switch { position: relative; display: flex; align-items: center; gap: 3px; margin-right: auto; }
.sport-switch .brand { margin-right: 0; }
.brand-sport { padding: 7px; border-radius: 9px; color: var(--text-mute); display: inline-grid; place-items: center; transition: background .2s, color .2s; }
.brand-sport:hover { background: var(--surface-2); color: var(--text); }
.sport-menu {
  position: absolute; top: calc(100% + 8px); left: 0; width: 300px; max-width: 92vw;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: 10px; z-index: 130;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s, transform .2s, visibility .2s;
}
.sport-switch.open .sport-menu { opacity: 1; visibility: visible; transform: none; }
.sport-menu .sm-head { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .14em; font-size: .64rem; color: var(--text-mute); padding: 6px 10px 8px; }
.sport-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sport-opt { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: var(--r-sm); cursor: pointer; text-align: left; transition: background .15s; width: 100%; }
.sport-opt:hover { background: var(--surface-2); }
.sport-opt .so-ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--grad-brand-soft); color: var(--brand-bright); flex: none; }
.sport-opt .so-ico svg { width: 18px; height: 18px; }
.sport-opt b { font-size: .88rem; font-family: var(--font-display); }
.sport-opt[aria-current="true"] { background: var(--grad-brand-soft); }
.sport-opt[aria-current="true"] b { color: var(--brand-bright); }
.sport-opt.all { grid-column: 1 / -1; justify-content: center; border: 1px dashed var(--border-strong); }

/* ----------  SPORT-BANNER (schmale Leiste ganz oben, über dem Header)  ---------- */
:root { --banner-h: 42px; }
.sport-banner { display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 130; background: var(--grad-brand); color: #fff; }
[data-sport]:not([data-sport="all"]) .sport-banner { display: block; }
[data-sport]:not([data-sport="all"]) body { padding-top: var(--banner-h); }
[data-sport]:not([data-sport="all"]) .site-header { top: var(--banner-h); }
.sport-banner .container { display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap; padding-block: 10px; font-size: .88rem; line-height: 1.2; }
.sport-banner b { font-family: var(--font-display); }
.sport-banner button { color: #fff; text-decoration: underline; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.sport-banner svg { width: 15px; height: 15px; }
@media (max-width: 640px) {
  .sport-banner .container { gap: 4px 12px; padding-block: 8px; font-size: .8rem; }
  .sport-banner [data-i18n="g.banner.current"] { display: none; }
  .hero-scroll { display: none; }
}

/* ----------  HERO: rotierende Sport-Bilder  ---------- */
.hero-rotate { position: absolute; inset: 0; z-index: 0; }
.hero-rotate .hr-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: grayscale(.18) contrast(1.05); opacity: 0; transition: opacity 1.3s var(--ease); }
.hero-rotate .hr-img.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-rotate .hr-img { transition: none; } }
/* Sport-Tabs unter der Hero-Headline */
.hero-sports { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero-sports button {
  display: inline-flex; align-items: center; gap: 7px; padding: .5em .9em; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-weight: 600; font-size: .85rem; transition: background .2s, border-color .2s, transform .2s;
}
.hero-sports button:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.hero-sports button.is-active { background: var(--grad-brand); border-color: transparent; }
.hero-sports .hs-more { display: inline-flex; align-items: center; gap: 7px; padding: .5em .9em; border-radius: var(--r-pill); border: 1px dashed rgba(255,255,255,.5); color: #fff; background: transparent; font-family: var(--font-display); font-weight: 600; font-size: .85rem; transition: background .2s, border-color .2s, transform .2s; }
.hero-sports .hs-more:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.hero-sports button svg { width: 15px; height: 15px; }

/* Hero-Variante ohne Foto (Sportarten ohne Bild): markenfarbener Verlauf + Icon-Wasserzeichen */
.hero.is-gradient .hero-rotate { opacity: 0; }
.hero.is-gradient .hero-bg { background: radial-gradient(85% 95% at 72% 8%, rgba(200,31,45,.55), transparent 58%), linear-gradient(160deg, #2a0a0c 0%, #0c0c0e 72%); }
.hero-watermark { position: absolute; right: -2%; bottom: -12%; width: clamp(220px, 42vh, 470px); color: rgba(255,255,255,.06); z-index: 1; pointer-events: none; }
.hero-watermark svg { width: 100%; height: auto; }

/* ----------  SPORTARTEN-SEKTION (klickbar)  ---------- */
/* ----------  SPORTARTEN-RASTER (TLAP-Logo in der Mitte)  ----------
   Desktop: 5x3-Schachbrett mit Luecken (+ Marker), Logo im Zentrum.
   Mobil:   3x3-Ring, alle 8 Kacheln direkt um das Logo. */
.sports-raster {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 10px;
  grid-template-areas:
    "af g1 fb g2 bb"
    "g3 vb tl la g4"
    "hb g5 eh g6 ds";
}
.sport-tile {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px; text-align: center; padding: 16px 12px; aspect-ratio: 1.08 / 1; width: 100%;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md);
  cursor: pointer; font: inherit; color: inherit;
  transition: transform .3s var(--ease), border-color .25s, box-shadow .3s, background .25s;
}
.sport-tile:hover { transform: translateY(-4px); border-color: var(--brand-bright); box-shadow: var(--shadow-2); }
.sport-tile .s-ico { width: 34px; height: 34px; color: var(--text); flex: none; }
.sport-tile h4 { font-family: var(--font-display); font-size: .96rem; line-height: 1.15; }
.sport-tile .s-state { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; color: var(--text-mute); }
.sport-tile .s-state .dot-live { color: var(--brand-bright); font-weight: 700; }
.sport-tile.is-active { border-color: var(--brand-bright); background: linear-gradient(160deg, rgba(200,31,45,.16), var(--surface)); box-shadow: var(--shadow-red); }
.sport-tile.tl-logo { background: linear-gradient(160deg, rgba(200,31,45,.18), var(--surface)); border-color: rgba(200,31,45,.5); }
.sport-tile.tl-logo img { width: 52px; height: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
/* Light Mode: dunkle Logo-Kachel, damit die weisse TLAP-Schrift im Logo lesbar bleibt */
[data-theme="light"] .sport-tile.tl-logo { background: linear-gradient(160deg, #3a1114, #17171c); border-color: rgba(200,31,45,.55); }
[data-theme="light"] .sport-tile.tl-logo .s-state { color: rgba(255,255,255,.72); }
.sport-tile.t-ds { border-style: dashed; }
.sport-tile.t-ds .s-ico { color: var(--brand-bright); }
.sport-tile.t-ds:hover { border-style: solid; }
/* Rasterpunkte in den Luecken */
.raster-gap { display: grid; place-items: center; }
.raster-gap::before { content: "+"; font-family: var(--font-stencil); font-size: 1.2rem; color: var(--text-mute); opacity: .45; }
/* Positionen im Raster + Flugrichtung fuer die Scroll-Animation */
.t-af { grid-area: af; --fx: -90px; --fy: -70px; --d: .1s }
.t-fb { grid-area: fb; --fy: -95px; --d: .18s }
.t-bb { grid-area: bb; --fx: 90px; --fy: -70px; --d: .26s }
.t-vb { grid-area: vb; --fx: -100px; --d: .22s }
.t-la { grid-area: la; --fx: 100px; --d: .3s }
.t-hb { grid-area: hb; --fx: -90px; --fy: 70px; --d: .34s }
.t-eh { grid-area: eh; --fy: 95px; --d: .42s }
.t-ds { grid-area: ds; --fx: 90px; --fy: 70px; --d: .5s }
.tl-logo { grid-area: tl; --d: 0s }
.g1 { grid-area: g1 } .g2 { grid-area: g2 } .g3 { grid-area: g3 }
.g4 { grid-area: g4 } .g5 { grid-area: g5 } .g6 { grid-area: g6 }
/* Einflug: Kacheln kommen aus ihrer Richtung auf das Logo zu */
.js .sports-raster .sport-tile { opacity: 0; }
.js .sports-raster.in .sport-tile { opacity: 1; animation: tile-in .8s cubic-bezier(.18, .74, .24, 1.12) var(--d, 0s) backwards; }
@keyframes tile-in {
  from { opacity: 0; transform: translate(var(--fx, 0), var(--fy, 0)) scale(.55); }
  to   { opacity: 1; transform: none; }
}
.js .sports-raster .raster-gap::before { opacity: 0; transition: opacity .6s ease .7s; }
.js .sports-raster.in .raster-gap::before { opacity: .45; }
@media (prefers-reduced-motion: reduce) {
  .js .sports-raster .sport-tile { opacity: 1; animation: none !important; }
  .js .sports-raster .raster-gap::before { opacity: .45; transition: none; }
}
@media (max-width: 980px) {
  .sports-raster {
    grid-template-columns: repeat(3, 1fr); gap: 10px;
    grid-template-areas:
      "af fb bb"
      "vb tl la"
      "hb eh ds";
  }
  .raster-gap { display: none; }
  .sport-tile { aspect-ratio: 1 / 1; padding: 10px 8px; gap: 7px; }
  .sport-tile .s-ico { width: 26px; height: 26px; }
  .sport-tile h4 { font-size: .76rem; }
  .sport-tile .s-state { font-size: .54rem; }
  .sport-tile.tl-logo img { width: 40px; }
  /* kuerzere Flugwege auf kleinen Screens */
  .t-af { --fx: -46px; --fy: -40px } .t-fb { --fy: -52px } .t-bb { --fx: 46px; --fy: -40px }
  .t-vb { --fx: -52px } .t-la { --fx: 52px }
  .t-hb { --fx: -46px; --fy: 40px } .t-eh { --fy: 52px } .t-ds { --fx: 46px; --fy: 40px }
}

/* ----------  LIVE-DEMO (SaaS Product Demo)  ---------- */
.demo { background: radial-gradient(70% 80% at 80% 0%, rgba(200,31,45,.16), transparent 60%), var(--bg-2); overflow: hidden; }
.demo-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(28px, 5vw, 64px); align-items: center; }
.demo-phone { width: 330px; max-width: 84vw; aspect-ratio: 330 / 700; margin: 0 auto; position: relative;
  background: #0a0a0c; border: 11px solid #17171c; border-radius: 46px; box-shadow: 0 30px 70px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.05); padding: 0; overflow: hidden; }
.demo-phone::before { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 62px; height: 15px; background: #000; border-radius: 0 0 10px 10px; z-index: 3; pointer-events: none; }
/* iframe liegt ueber dem Lade-Hinweis und ist direkt bedienbar */
.demo-phone iframe { position: relative; width: 100%; height: 100%; border: 0; display: block; background: #0a0a0c; z-index: 2; }
.demo-phone .demo-load { position: absolute; inset: 0; display: grid; place-items: center; color: var(--text-mute); font-size: .85rem; z-index: 1; pointer-events: none; }
/* Countdown zum App-Release */
.countdown { display: flex; gap: 8px; margin-top: 20px; }
.cd-box { min-width: 66px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-sm); padding: 11px 8px 9px; text-align: center; }
.cd-box b { display: block; font-family: var(--font-stencil); font-size: 1.75rem; font-weight: 700; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.cd-box span { display: block; margin-top: 5px; font-family: var(--font-stencil); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); }
.cd-done { font-family: var(--font-stencil); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-bright); }
@media (max-width: 560px) { .cd-box { min-width: 0; flex: 1; } .cd-box b { font-size: 1.4rem; } }

/* Anruf-Zeile unter den Demo-Buttons */
.demo-call { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; padding: 11px 16px 11px 12px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); transition: border-color .25s, transform .25s, box-shadow .25s; }
.demo-call:hover { border-color: var(--brand-bright); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.demo-call .dc-ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(200,31,45,.14); color: var(--brand-bright); display: grid; place-items: center; flex: none; }
.demo-call .dc-ico svg { width: 18px; height: 18px; }
.demo-call .dc-txt { line-height: 1.25; }
.demo-call .dc-txt b { display: block; font-family: var(--font-stencil); font-size: 1.02rem; letter-spacing: .06em; color: var(--text); }
.demo-call .dc-txt span { display: block; font-size: .8rem; color: var(--text-dim); margin-top: 2px; }

.demo-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.demo-tag { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--text-dim); }
.demo-tag svg { width: 17px; height: 17px; color: var(--brand-bright); }
@media (max-width: 920px) { .demo-grid { grid-template-columns: 1fr; } .demo-phone { margin-top: 8px; } }

/* Vollbild-Overlay der Live-Demo */
.demo-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.84); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: grid; place-items: center; padding: 26px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); }
.demo-overlay.is-open { opacity: 1; visibility: visible; }
.demo-close { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; display: grid; place-items: center; z-index: 3; transition: background .2s; }
.demo-close:hover { background: rgba(255,255,255,.22); }
.demo-close svg { width: 22px; height: 22px; }
.demo-overlay-phone { width: min(392px, 92vw); height: min(820px, 88vh); background: #0a0a0c; border: 12px solid #17171c; border-radius: 48px; box-shadow: 0 30px 80px rgba(0,0,0,.6); overflow: hidden; position: relative; }
.demo-overlay-phone::before { content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 68px; height: 16px; background: #000; border-radius: 0 0 10px 10px; z-index: 3; pointer-events: none; }
.demo-overlay-phone iframe { width: 100%; height: 100%; border: 0; display: block; background: #0a0a0c; }
@media (max-width: 560px) { .demo-overlay { padding: 0; } .demo-overlay-phone { width: 100vw; height: 100svh; border: 0; border-radius: 0; } .demo-overlay-phone::before { display: none; } .demo-close { top: 12px; right: 12px; } }

/* ----------  FUNKTIONEN: kompaktes Raster  ---------- */
.fn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(14px, 1.8vw, 20px); }
.fn-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.fn-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-2); }
.fn-card .fn-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-brand-soft); color: var(--brand-bright); border: 1px solid rgba(200,31,45,.2); margin-bottom: 14px; }
.fn-card .fn-ico svg { width: 23px; height: 23px; }
.fn-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.fn-card p { color: var(--text-dim); font-size: .92rem; }
.fn-card .fn-tag { display: inline-block; margin-top: 10px; font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .1em; font-size: .62rem; color: var(--text-mute); border: 1px solid var(--border); border-radius: 999px; padding: 2px 9px; }

/* ----------  LOGIN BUTTON  ---------- */
.btn-login { padding: .7em 1.1em; }

/* ----------  MOBILE HEADER ANPASSUNGEN  ---------- */
@media (max-width: 980px) {
  .nav-dd { display: none; }            /* Dropdown nur Desktop; mobil im Drawer */
  .btn-login.btn-login-desktop { display: none; }
}
/* Mobile-Menü Erweiterung */
.mobile-menu .mm-section { font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .16em; font-size: .64rem; color: var(--text-mute); margin: 24px 0 8px; }
.mobile-menu .mm-sub { gap: 0; }
.mobile-menu .mm-sub a { font-size: .98rem; font-weight: 600; color: var(--text-dim); padding: .55em 0; }
.mobile-menu .mm-sub a:last-child { border-bottom: 0; }
/* Im Sportmodus sitzt der Header unter dem Banner, das Menue muss beides freihalten */
[data-sport]:not([data-sport="all"]) .mobile-menu { padding-top: calc(84px + var(--banner-h)); }

/* Bei offenem Drawer bekommt der Header einen festen Hintergrund,
   damit gescrollter Menue-Inhalt nicht durchscheint */
html:has(.mobile-menu.open) .site-header { background: var(--bg); border-bottom: 1px solid var(--hairline); }

/* Aktionsbereich: fest am unteren Rand, immer erreichbar */
.mobile-menu .mm-actions {
  flex: none; display: flex; flex-direction: column; gap: 10px;
  padding: 14px var(--gutter) calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--hairline); background: var(--bg);
}
.mobile-menu .mm-btnrow { display: flex; gap: 10px; }
.mobile-menu .mm-btnrow a.btn { flex: 1; border-bottom: 0; justify-content: center; font-size: .98rem; padding: .9em .6em; white-space: nowrap; }
.mobile-menu .mm-actions .lang-toggle { width: 100%; justify-content: center; padding: 10px; margin-top: 0; font-size: .82rem; }
/* Sportart-Aufklapper */
.mobile-menu .mm-acc {
  width: 100%; display: flex; align-items: center; justify-content: space-between; cursor: pointer;
  font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .16em; font-size: .64rem;
  color: var(--text-mute); padding: 16px 0 10px; background: none; border: 0; border-bottom: 1px solid var(--hairline);
}
.mobile-menu .mm-acc svg { width: 15px; height: 15px; transition: transform .28s var(--ease); }
.mobile-menu .mm-acc.open { color: var(--brand-bright); border-bottom-color: transparent; }
.mobile-menu .mm-acc.open svg { transform: rotate(180deg); }
.mobile-menu .mm-sports { max-height: 0; opacity: 0; overflow: hidden; margin-top: 0; transition: max-height .38s var(--ease), opacity .28s, margin .28s; }
.mobile-menu .mm-sports.open { max-height: 480px; opacity: 1; margin-top: 4px; margin-bottom: 8px; }
.mobile-menu .mm-sports { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 6px; }
.mobile-menu .mm-sports button { border: 1px solid var(--border-strong); border-radius: var(--r-sm); padding: 10px; font-family: var(--font-display); font-weight: 600; font-size: .9rem; text-align: left; display: flex; align-items: center; gap: 8px; }
.mobile-menu .mm-sports button.is-active { background: var(--grad-brand-soft); border-color: var(--brand-bright); color: var(--brand-bright); }

/* ----------  KONTAKT  ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.cf-field label { font-size: .85rem; font-weight: 600; color: var(--text-dim); }
.cf-field input, .cf-field select, .cf-field textarea {
  border: 1px solid var(--border); background: var(--surface-2); border-radius: var(--r-sm);
  padding: 12px 14px; color: var(--text); font: inherit; font-size: .95rem; width: 100%;
}
.cf-field textarea { min-height: 130px; resize: vertical; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { outline: none; border-color: var(--brand-bright); }
.contact-info .ci-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.contact-info .ci-item:last-child { border-bottom: 0; }
.contact-info .ci-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-brand-soft); color: var(--brand-bright); display: grid; place-items: center; flex: none; }
.contact-info .ci-ico svg { width: 20px; height: 20px; }
.contact-info .ci-item b { display: block; font-family: var(--font-display); }
.contact-info .ci-item span { color: var(--text-dim); font-size: .92rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .cf-row { grid-template-columns: 1fr; } }

/* kleine Helfer */
.section-tight2 { padding-block: clamp(40px, 6vw, 80px); }

/* ==================================================================
   BLOG-ARTIKEL (gemeinsame Bausteine fuer alle Beitragsseiten)
   ================================================================== */
.art-wrap { max-width: 880px; margin: 0 auto; }
.art-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.art-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-stencil); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 20px; border: 1px solid var(--border-strong); color: var(--text-dim); background: var(--surface); }
.art-chip.hot { background: var(--grad-brand); border-color: transparent; color: #fff; }
.art-chip svg { width: 13px; height: 13px; }
.art-body { padding-top: 8px; }
.art-body p { color: var(--text-dim); line-height: 1.75; margin: 0 0 18px; }
.art-body p b, .art-body p strong { color: var(--text); }
.art-body h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; margin: 46px 0 14px; letter-spacing: -.01em; }
.art-body h2:first-child { margin-top: 0; }
.art-body h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; margin: 28px 0 10px; }
.art-body ul.art-list { margin: 0 0 18px; padding-left: 20px; color: var(--text-dim); line-height: 1.7; }
.art-kicker { font-family: var(--font-stencil); font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--brand-bright); margin-bottom: 8px; }
.art-back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text-dim); font-size: .92rem; margin-top: 6px; transition: color .2s; }
.art-back:hover { color: var(--brand-bright); }
.art-back svg { width: 15px; height: 15px; }

/* Tipp-/Info-Karten (nummeriert, mit Icon) */
.tip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 30px; }
.tip-card { position: relative; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 20px 18px 18px; overflow: hidden; transition: transform .35s var(--ease), border-color .25s, box-shadow .35s; }
.tip-card:hover { transform: perspective(700px) rotateX(2.5deg) translateY(-4px); border-color: var(--brand-bright); box-shadow: var(--shadow-2); }
.tip-card .tip-num { position: absolute; top: 8px; right: 14px; font-family: var(--font-stencil); font-size: 2.6rem; font-weight: 700; color: var(--text); opacity: .07; line-height: 1; }
.tip-card .tip-ico { width: 40px; height: 40px; border-radius: 11px; background: rgba(200,31,45,.13); color: var(--brand-bright); display: grid; place-items: center; margin-bottom: 12px; }
.tip-card .tip-ico svg { width: 20px; height: 20px; }
.tip-card h3 { margin: 0 0 7px; font-size: 1.02rem; }
.tip-card p { margin: 0; font-size: .92rem; line-height: 1.65; }

/* Wochen-Raster (7 Tage, Vormittag/Nachmittag) */
.sched-week { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; margin: 20px 0 28px; }
.sched-day { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 13px 13px 12px; }
.sched-day.is-free { border-style: dashed; }
.sched-day .sd-head { display: flex; align-items: baseline; gap: 7px; margin-bottom: 10px; }
.sched-day .sd-head b { font-family: var(--font-stencil); font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase; }
.sched-day .sd-head span { font-family: var(--font-stencil); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-bright); }
.sched-day .sd-slot { padding: 7px 0; border-top: 1px solid var(--hairline); }
.sched-day .sd-slot small { display: block; font-family: var(--font-stencil); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 3px; }
.sched-day .sd-slot div { font-size: .86rem; color: var(--text-dim); line-height: 1.45; }

/* Tagesablauf (Uhrzeiten-Timeline) */
.tl-day { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 18px; margin: 16px 0; }
.tl-day h4 { font-family: var(--font-stencil); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 12px; color: var(--brand-bright); }
.tl-item { display: grid; grid-template-columns: 58px 14px 1fr; gap: 10px; align-items: start; position: relative; padding-bottom: 12px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .tl-time { font-family: var(--font-stencil); font-size: .84rem; font-weight: 600; color: var(--text); text-align: right; padding-top: 1px; font-variant-numeric: tabular-nums; }
.tl-item .tl-dot { position: relative; width: 14px; display: flex; justify-content: center; padding-top: 5px; }
.tl-item .tl-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-bright); z-index: 1; }
.tl-item:not(:last-child) .tl-dot::after { content: ""; position: absolute; top: 14px; bottom: -6px; width: 2px; background: var(--hairline); }
.tl-item .tl-txt { font-size: .92rem; color: var(--text-dim); line-height: 1.55; padding-top: 0; }
.tl-item .tl-txt b { color: var(--text); }
.tl-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Spieler-Karten (Deutsche in der NFL) */
.player-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 30px; }
.player-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 18px; transition: transform .3s var(--ease), border-color .25s, box-shadow .3s; }
.player-card:hover { transform: translateY(-4px); border-color: var(--brand-bright); box-shadow: var(--shadow-2); }
.player-card .pc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.player-card .pc-pos { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-stencil); font-weight: 700; font-size: .95rem; letter-spacing: .04em; }
.player-card h3 { margin: 0; font-size: 1.06rem; }
.player-card .pc-fact { font-size: .88rem; color: var(--text-dim); line-height: 1.55; margin: 0 0 12px; }
.player-card .career { list-style: none; margin: 0; padding: 0; }
.player-card .career li { position: relative; padding: 3px 0 3px 20px; font-size: .84rem; color: var(--text-dim); }
.player-card .career li::before { content: ""; position: absolute; left: 5px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--text-mute); }
.player-card .career li.de::before { background: var(--brand-bright); }
.player-card .career li.nfl::before { background: #2fbf71; }
.player-card .career li b { color: var(--text); font-weight: 600; }
.career-legend { display: flex; flex-wrap: wrap; gap: 16px; margin: 14px 0 6px; font-size: .8rem; color: var(--text-mute); }
.career-legend span { display: inline-flex; align-items: center; gap: 6px; }
.career-legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

/* Versus / Vergleich */
.vs-head { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; margin: 26px 0 18px; text-align: center; }
.vs-head .vs-side { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 22px 14px; }
.vs-head .vs-side b { display: block; font-family: var(--font-stencil); font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: .06em; }
.vs-head .vs-side span { font-size: .82rem; color: var(--text-mute); }
.vs-head .vs-badge { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-stencil); font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-red); }
.cmp-table { width: 100%; border-collapse: collapse; margin: 18px 0 28px; font-size: .92rem; }
.cmp-table th, .cmp-table td { padding: 12px 14px; text-align: center; border-bottom: 1px solid var(--hairline); }
.cmp-table th { font-family: var(--font-stencil); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); }
.cmp-table td:first-child { text-align: left; color: var(--text-mute); font-size: .84rem; }
.cmp-table td { color: var(--text-dim); }
.cmp-table td b { color: var(--text); }
.table-scroll { overflow-x: auto; }

/* Punkte-/Zahlen-Karten */
.pt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 20px 0 28px; }
.pt-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 20px 14px; text-align: center; transition: transform .3s var(--ease), border-color .25s; }
.pt-card:hover { transform: translateY(-4px); border-color: var(--brand-bright); }
.pt-card .pt-num { font-family: var(--font-stencil); font-size: 2.4rem; font-weight: 700; line-height: 1; color: var(--brand-bright); }
.pt-card .pt-name { font-family: var(--font-stencil); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; margin-top: 8px; }
.pt-card .pt-desc { font-size: .8rem; color: var(--text-mute); margin-top: 7px; line-height: 1.5; }

/* Spielfeld-Grafik */
.field-wrap { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 14px; margin: 20px 0 28px; }
.field-wrap svg { width: 100%; height: auto; display: block; }

/* Strafen-Karten */
.pen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 28px; }
.pen-card { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 16px; }
.pen-card .pen-y { flex: none; min-width: 64px; text-align: center; background: rgba(200,31,45,.13); border-radius: 10px; padding: 10px 8px; font-family: var(--font-stencil); }
.pen-card .pen-y b { display: block; font-size: 1.3rem; color: var(--brand-bright); line-height: 1; }
.pen-card .pen-y span { display: block; font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin-top: 4px; }
.pen-card h3 { margin: 0 0 5px; font-size: .98rem; }
.pen-card p { margin: 0; font-size: .86rem; line-height: 1.55; }

/* Combine-Rekorde (Balken) */
.drill-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 20px 18px; margin: 18px 0; }
.drill-card .drill-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.drill-card .drill-head .tip-ico { margin-bottom: 0; }
.drill-card .drill-head h3 { margin: 0; font-size: 1.08rem; }
.drill-card .drill-head span { font-family: var(--font-stencil); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); display: block; margin-top: 2px; }
.drill-card > p { font-size: .92rem; }
.rec-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.rec-row { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 10px; }
.rec-row .rec-rank { font-family: var(--font-stencil); font-size: .8rem; color: var(--text-mute); text-align: center; }
.rec-row .rec-main { min-width: 0; }
.rec-row .rec-name { font-size: .88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rec-row .rec-name small { font-weight: 500; color: var(--text-mute); }
.rec-row .rec-bar { height: 7px; border-radius: 6px; background: var(--surface-2); margin-top: 5px; overflow: hidden; }
.rec-row .rec-bar i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--red-700), var(--brand-bright)); }
.rec-row .rec-val { font-family: var(--font-stencil); font-weight: 700; font-size: .95rem; font-variant-numeric: tabular-nums; }
.rec-row.is-moritz { background: rgba(200,31,45,.09); border: 1px solid rgba(200,31,45,.35); border-radius: 10px; padding: 8px 10px 8px 0; }
.rec-row.is-moritz .rec-rank { color: var(--brand-bright); }
.rec-row.is-moritz .rec-val { color: var(--brand-bright); }

/* Ablauf / grosse Zahlen */
.flow-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }
.flow-strip .fs-num { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 18px 22px; text-align: center; min-width: 128px; }
.flow-strip .fs-num b { display: block; font-family: var(--font-stencil); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.flow-strip .fs-num.hot b { color: var(--brand-bright); }
.flow-strip .fs-num span { display: block; font-family: var(--font-stencil); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); margin-top: 6px; }
.flow-strip .fs-arrow { color: var(--text-mute); }
.flow-strip .fs-arrow svg { width: 22px; height: 22px; }

/* Artikel-CTA */
.art-cta { background: linear-gradient(160deg, rgba(200,31,45,.16), var(--surface)); border: 1px solid rgba(200,31,45,.4); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); text-align: center; margin: 40px 0 8px; }
.art-cta h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 8px; }
.art-cta p { max-width: 54ch; margin: 0 auto; }

/* sanftes Schweben (Hero-Deko) */
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-9px) rotate(2deg); } }
.art-float { animation: floaty 5.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .art-float { animation: none; } .tip-card:hover, .player-card:hover, .pt-card:hover { transform: none; } }

/* Responsive */
@media (max-width: 860px) {
  .tip-grid, .player-grid, .pen-grid, .tl-cols { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .vs-head { grid-template-columns: 1fr; }
  .vs-head .vs-badge { margin: 0 auto; }
  .rec-row .rec-val { font-size: .86rem; }
  .flow-strip .fs-num { flex: 1; min-width: 100px; padding: 14px 10px; }
  .flow-strip .fs-arrow { display: none; }
}

/* Blog-Uebersicht: Icon-Kacheln statt Fotos */
.icon-media { position: relative; height: 185px; display: grid; place-items: center; background: linear-gradient(150deg, rgba(200,31,45,.22), var(--surface-2)); overflow: hidden; }
.icon-media .im-ico { width: 60px; height: 60px; color: var(--brand-bright); position: relative; z-index: 1; filter: drop-shadow(0 6px 14px rgba(200,31,45,.35)); transition: transform .4s var(--ease); }
.feature-card:hover .icon-media .im-ico { transform: translateY(-4px) scale(1.06); }
.icon-media .im-ghost { position: absolute; right: -18px; bottom: -26px; font-family: var(--font-stencil); font-size: 7rem; font-weight: 700; line-height: 1; color: var(--text); opacity: .05; letter-spacing: -.02em; }

/* Sprach-Umschalter (DE/EN) im Header */
.lang-toggle { display: inline-flex; align-items: center; gap: 4px; padding: 8px 11px; border-radius: var(--r-pill); border: 1px solid var(--border-strong); background: transparent; cursor: pointer; font-family: var(--font-stencil); font-size: .74rem; font-weight: 600; letter-spacing: .08em; color: var(--text-mute); transition: border-color .2s, background .2s; }
.lang-toggle:hover { border-color: var(--brand-bright); background: var(--surface-2); }
.lang-toggle i { font-style: normal; opacity: .5; }
.lang-toggle span { transition: color .2s; }
.lang-toggle span.on { color: var(--brand-bright); }
.mobile-menu .lang-toggle { width: 100%; justify-content: center; padding: 12px; margin-top: 18px; font-size: .84rem; }

/* Formular-Status unter dem Kontaktformular */
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: var(--r-sm); font-size: .92rem; line-height: 1.5; border: 1px solid var(--border-strong); background: var(--surface-2); color: var(--text-dim); }
.form-status.ok { border-color: rgba(47,191,113,.55); background: rgba(47,191,113,.12); color: #2fbf71; }
.form-status.err { border-color: rgba(200,31,45,.55); background: rgba(200,31,45,.1); color: var(--brand-bright); }
.form-status.note { border-color: var(--border-strong); }

/* Lange deutsche Woerter in Hero-Ueberschriften auf schmalen Screens sauber umbrechen */
.page-hero h1 { overflow-wrap: break-word; }
@media (max-width: 520px) {
  .page-hero h1 { hyphens: auto; -webkit-hyphens: auto; }
}

/* Schmale Screens: Header-Zeile kompakt halten (lange Sportnamen wie Leichtathletik) */
@media (max-width: 560px) {
  .sport-switch { min-width: 0; }
  .sport-switch .brand { min-width: 0; gap: 9px; }
  .brand .wordmark { font-size: .68rem; letter-spacing: .12em; max-width: 92px; overflow: hidden; text-overflow: ellipsis; display: block; }
  .brand img { width: 29px; }
  .nav { gap: 12px; }
  .lang-toggle { padding: 7px 8px; }
  .nav-actions { gap: 8px; }
}

/* =====================================================================
   PREISE — vier Stufen: Sportler / Team / Abteilung / Verein
   ===================================================================== */
.pricing-solo { margin-bottom: clamp(18px, 2.4vw, 26px); }

.price-card .pc-head { display: flex; flex-direction: column; align-items: flex-start; }
.price-card .pc-for {
  font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .14em;
  font-size: .7rem; color: var(--brand-bright); margin-bottom: 12px;
}
.price-card .price .pre {
  font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .1em;
  font-size: .82rem; color: var(--text-dim); margin-right: 2px;
}
.price-card .pc-scope {
  display: inline-block; margin-top: 14px; padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim);
  font-size: .8rem; line-height: 1.35;
}
.price-card .pc-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: var(--grad-brand); color: #fff; border-color: transparent;
  box-shadow: 0 6px 18px rgba(138,24,24,.35);
}

/* Illustrations-Kachelkopf (Grafiken aus dem Kundendokument) */
.price-card.pc-illu .pc-media {
  aspect-ratio: 4 / 3; background: #fdfbfb; border-bottom: 1px solid var(--border);
  display: grid; place-items: center; padding: clamp(12px, 1.8vw, 22px);
}
.price-card.pc-illu .pc-media::after { content: none; }
.price-card.pc-illu .pc-media img {
  width: auto; height: auto; max-width: 100%; max-height: 100%;
  object-fit: contain; filter: none;
}
.price-card .pc-title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1;
  margin-bottom: 10px;
}

/* Breite Einzelkachel: Illustration schwebt als helle Flaeche mittig in der Karte */
.price-card.pc-wide { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.price-card.pc-wide.pc-illu .pc-media {
  aspect-ratio: auto; min-height: 0; align-self: center; border: 0;
  background: transparent; padding: clamp(18px, 2.6vw, 34px);
}
.price-card.pc-wide.pc-illu .pc-media img {
  border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-1);
}
.price-card .feat-list.feat-2col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
.pc-foot.pc-foot-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pc-foot.pc-foot-row .btn { flex: 1 1 200px; }

.pricing-grid.pricing-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Im Hellmodus ist der weisse Button auf weisser Karte unsichtbar */
[data-theme="light"] .price-card .btn-white { background: #16161b; color: #fff; }
[data-theme="light"] .price-card .btn-white:hover { background: #000; }

@media (max-width: 1080px) {
  .pricing-grid.pricing-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .price-card.pc-wide { grid-template-columns: 1fr; }
  .price-card.pc-wide.pc-illu .pc-media { padding: clamp(16px, 4vw, 26px) clamp(16px, 4vw, 26px) 0; }
  .price-card .feat-list.feat-2col { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .pricing-grid.pricing-3 { grid-template-columns: 1fr; }
}

/* ---- Vergleichstabelle ---- */
.pricing-compare { margin-top: clamp(32px, 5vw, 60px); }
.pricing-compare > h3 { margin-bottom: 20px; }
.pricing-compare .table-scroll {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: auto;
}
.price-cmp { margin: 0; min-width: 780px; font-size: .9rem; }
.price-cmp th, .price-cmp td { padding: 13px 16px; border-bottom: 1px solid var(--hairline); }
.price-cmp thead th { background: var(--surface); border-bottom: 1px solid var(--border-strong); }
.price-cmp thead th:not(:first-child) { color: var(--text); font-size: .74rem; }
.price-cmp tbody tr:last-child td { border-bottom: 0; }
.price-cmp tbody tr:hover td { background: var(--surface-2); }
.price-cmp th:first-child,
.price-cmp td:first-child {
  position: sticky; left: 0; z-index: 1; text-align: left;
  background: var(--surface); min-width: 240px;
}
.price-cmp tbody tr:hover td:first-child { background: var(--surface-2); }
.price-cmp tr.is-price td { padding-top: 18px; padding-bottom: 18px; }
.price-cmp tr.is-price b { font-family: var(--font-stencil); font-size: 1.15rem; letter-spacing: .01em; }
.price-cmp .cmp-sub { font-size: .78rem; color: var(--text-mute); }
.price-cmp td.yes::before { content: "\2713"; display: block; color: var(--brand-bright); font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.price-cmp td.no::before { content: "\2013"; display: block; color: var(--text-mute); line-height: 1.2; }
.price-cmp .cmp-plus { display: block; font-size: .74rem; color: var(--text-mute); margin-top: 2px; }
/* Stern direkt hinter dem Haken, in einer Zeile */
.price-cmp td.with-star::before { display: inline; }
.price-cmp .cmp-star { color: var(--text-mute); font-size: .8em; vertical-align: super; margin-left: 3px; }
.cmp-note { margin-top: 14px; font-size: .82rem; color: var(--text-mute); text-align: center; }

/* =====================================================================
   ERFAHRUNGSBERICHTE — Karussell
   ===================================================================== */
.testi-carousel { position: relative; }
.testi-viewport { overflow: hidden; }
.testi-track { display: flex; transition: transform .55s var(--ease); will-change: transform; }
.testi-slide { flex: 0 0 100%; min-width: 100%; }

.testi .by .badge { position: relative; overflow: hidden; flex: none; }
.testi .by .badge img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 7px; background: #fff; }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.testi-nav[hidden] { display: none; }
.tc-btn {
  width: 46px; height: 46px; border-radius: 50%; flex: none; cursor: pointer;
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--text);
  display: grid; place-items: center; transition: border-color .25s, color .25s, transform .25s var(--ease);
}
.tc-btn:hover { border-color: var(--brand-bright); color: var(--brand-bright); transform: translateY(-2px); }
.tc-btn svg { width: 20px; height: 20px; }
.tc-dots { display: flex; align-items: center; gap: 8px; }
.tc-dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: var(--r-pill); cursor: pointer;
  background: var(--border-strong); transition: background .25s, width .3s var(--ease);
}
.tc-dot:hover { background: var(--text-mute); }
.tc-dot.is-active { background: var(--brand-bright); width: 28px; }
@media (prefers-reduced-motion: reduce) { .testi-track { transition: none; } }

/* =====================================================================
   GRÜNDER — Laufbahn nach Sportart gruppiert
   ===================================================================== */
.career li.career-sec {
  grid-template-columns: 1fr; border-top: 0; padding: 20px 0 4px;
  font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .16em;
  font-size: .68rem; color: var(--text-mute);
}
.career li.career-sec:first-child { padding-top: 0; }

/* =====================================================================
   POSITIONSTRAINER — Portraitfoto in der Karte
   ===================================================================== */
.member .m-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden;
  margin-bottom: 14px; background: var(--surface-2);
}
.member .m-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.member:hover .m-photo img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .member:hover .m-photo img { transform: none; } }

/* =====================================================================
   HERO — Hinweis auf KI-generierte Bilder (unten rechts)
   ===================================================================== */
.hero-ai {
  position: absolute; z-index: 3;
  right: clamp(16px, 4vw, 40px); bottom: 16px;
  font-size: .7rem; letter-spacing: .04em; line-height: 1;
  color: rgba(255,255,255,.66); background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill);
  padding: 6px 11px; backdrop-filter: blur(4px);
}
@media (max-width: 640px) { .hero-ai { bottom: 12px; font-size: .66rem; padding: 5px 9px; } }

/* =====================================================================
   ERFAHRUNGSBERICHTE — Folien mit Athletenfoto
   ===================================================================== */
.testi .by .badge { width: 56px; height: 56px; }
.testi .by .badge img { padding: 5px; }

.testi.testi-photo { grid-template-columns: 1.08fr .92fr; align-items: center; }
.testi-who { margin-bottom: 18px; }
.testi-who b {
  display: block; font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: .02em; line-height: 1;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.testi-who span {
  display: block; margin-top: 7px; color: var(--brand-bright);
  font-family: var(--font-stencil); text-transform: uppercase;
  letter-spacing: .16em; font-size: .72rem;
}
.testi.testi-photo .quote { font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 500; }
.testi-shot {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3;
  background: var(--surface-2); box-shadow: var(--shadow-2);
}
.testi-shot img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; display: block; }
@media (max-width: 980px) {
  .testi.testi-photo { grid-template-columns: 1fr; }
  .testi-shot { max-width: 480px; }
}

/* =====================================================================
   VERGLEICHSTABELLE — Tarif-Tabs statt seitlichem Scrollen (mobil)
   ===================================================================== */
.cmp-tabs { display: none; }
.cmp-tab {
  flex: 1 1 0; min-width: 0; cursor: pointer; padding: 11px 8px;
  background: transparent; border: 0; border-radius: calc(var(--r-md) - 4px);
  font-family: var(--font-stencil); text-transform: uppercase; letter-spacing: .1em;
  font-size: .7rem; color: var(--text-mute); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  transition: background .2s, color .2s;
}
.cmp-tab.is-active { background: var(--grad-brand); color: #fff; }

@media (max-width: 760px) {
  .cmp-tabs {
    display: flex; gap: 4px; margin-bottom: 12px; padding: 4px;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: var(--r-md);
  }
  .pricing-compare .table-scroll { overflow: visible; }
  .price-cmp { min-width: 0; }
  .price-cmp th:not(:first-child):not(.is-col),
  .price-cmp td:not(:first-child):not(.is-col) { display: none; }
  .price-cmp th:first-child, .price-cmp td:first-child { position: static; min-width: 0; width: 58%; }
  .price-cmp th, .price-cmp td { padding: 12px 10px; }
}

/* =====================================================================
   LOGO — im Hellmodus die schwarz/rote Bildmarke verwenden
   (die weiss/rote verschwindet auf hellem Grund)
   ===================================================================== */
[data-theme="light"] img[src$="logo-tlap.png"] { content: url("../img/logo-tlap-light.png"); }
/* Ausnahme: die TLAP-Kachel im Sportarten-Raster bleibt auch im Hellmodus dunkel,
   dort muss die weisse Marke stehen bleiben. */
[data-theme="light"] .sport-tile.tl-logo img { content: normal; }

/* =====================================================================
   RECHTSTEXTE — Hinweis, dass sie nur auf Deutsch vorliegen
   ===================================================================== */
.legal-en-note { display: none; }
[lang="en"] .legal-en-note {
  display: block; margin: 0 0 26px; padding: 12px 16px;
  border-left: 3px solid var(--brand-bright); background: var(--surface);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--text-dim); font-size: .92rem;
}
/* Muster-Widerrufsformular */
.legal-form-box {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); padding: clamp(20px, 2.6vw, 30px); margin: 18px 0 26px;
}
.legal-form-box .lf-line { border-bottom: 1px solid var(--border-strong); height: 34px; margin: 6px 0 20px; }
.legal-form-box .lf-label { font-size: .88rem; color: var(--text-dim); }
.legal-form-box address { font-style: normal; color: var(--text); margin-bottom: 20px; line-height: 1.7; }
.legal-body .legal-basis {
  font-size: .86rem; color: var(--text-mute);
  border-left: 2px solid var(--border-strong); padding-left: 12px; margin-bottom: 18px;
}
