/* ============================================================
   KAVVAMOS — Website Design-System
   Heller Creme-Editorial-Look (Floating Shell) als Bühne,
   dunkle App (Gold) in Phone-Mockups im Vordergrund.
   Tokens aus der App: Gold #D4A24E / #DB9542, Ink #131417,
   Creme #F4F1EA, Mono-Labels (JetBrains Mono).
   ============================================================ */

/* ============================================================
   Schriften — lokal gehostet (DSGVO: kein Google-Fonts-Abruf)
   ============================================================ */
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/sora-v17-latin_latin-ext-regular.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/sora-v17-latin_latin-ext-500.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/sora-v17-latin_latin-ext-600.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('fonts/sora-v17-latin_latin-ext-700.woff2') format('woff2'); }

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 200; font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-200.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2'); }

@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/jetbrains-mono-v24-latin_latin-ext-regular.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/jetbrains-mono-v24-latin_latin-ext-500.woff2') format('woff2'); }

:root {
  /* --- Helle Website-Palette (Creme) --- */
  --paper:        #FBF8F2;   /* Floating Shell (fast weiß, warm) */
  --paper-2:      #F4EEE2;   /* leicht abgesetzte Flächen */
  --paper-3:      #EDE5D6;   /* Karten-Hintergrund warm */
  --sand:         #E4D9C6;   /* Borders / dezente Trennungen */
  --sand-line:    #E9E1D2;

  /* --- App-Dunkel (für Mockups & dunkle Sektionen) --- */
  --ink-0:        #131417;
  --ink-1:        #1B1C20;
  --ink-2:        #232529;
  --ink-3:        #2C2E33;
  --ink-line:     #34363C;

  /* --- Text --- */
  --text:         #1A1B1E;   /* fast schwarz, warm */
  --text-soft:    #4A4B50;
  --muted:        #86827A;    /* warmes Grau auf Creme */
  --cream:        #F4F1EA;    /* Text auf Dunkel */
  --cream-muted:  #9A9CA3;

  /* --- Gold (Akzent) — "Gold zeichnet, Gold füllt nicht" --- */
  --gold:         #C8922F;    /* etwas satter für Kontrast auf hell */
  --gold-app:     #D4A24E;    /* App-Basis-Gold (auf Dunkel) */
  --gold-warm:    #DB9542;    /* warm, große Akzente */
  --gold-soft:    rgba(200,146,47,0.12);
  --gold-line:    rgba(200,146,47,0.30);

  /* --- Daten-Akzente (Zonen) — sparsam, nur in Visualisierungen --- */
  --z-green:      #5DBE8A;
  --z-teal:       #3E9D9B;
  --z-amber:      #D9A53E;
  --z-orange:     #E07B3F;
  --z-red:        #C0392B;

  /* --- Radius / Shell --- */
  --r-card:       26px;
  --r-shell:      40px;

  --shell-shadow:
     -28px 28px 100px rgba(40,32,18,0.16),
     -12px 14px 44px rgba(40,32,18,0.10),
     0 4px 22px rgba(40,32,18,0.05);

  /* --- Fonts --- */
  --f-logo:  'Sora', sans-serif;
  --f-head:  'Sora', sans-serif;
  --f-body:  'Inter', sans-serif;
  --f-mono:  'JetBrains Mono', monospace;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--text);
  /* bräunlicher Grundton + dezentes Landschaftsbild im Hintergrund (hinter der Karte) */
  background-color: #ECE6DB;
  background-image:
    linear-gradient(rgba(236,230,219,0.90), rgba(236,230,219,0.90)),
    url('img/bg-landschaft.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   Floating Page Shell
   ============================================================ */
.shell {
  max-width: 1600px;
  margin: 1.6rem auto;
  background-color: var(--paper);
  border-radius: var(--r-shell);
  overflow-x: clip;                 /* NICHT hidden — sticky-Nav darf bleiben */
  box-shadow: var(--shell-shadow);
  position: relative;
}

@media (max-width: 720px) {
  .shell { margin: 0.8rem; border-radius: 28px; }
}


/* ============================================================
   Typografie
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 600; letter-spacing: -0.02em; color: var(--text); line-height: 1.08; text-wrap: balance; }

.display {
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.035em;
}
.display .thin { font-weight: 200; }
.h-section { font-size: clamp(2.2rem, 4.6vw, 3.8rem); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.35rem); color: var(--text-soft); font-weight: 400; max-width: 60ch; }

p { font-size: clamp(1rem, 1.1vw, 1.08rem); color: var(--text-soft); }

/* Mono-Label (aus der App) — UPPERCASE mit Gold-Punkt */
.mono-label {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mono-label::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
  flex-shrink: 0;
}
/* Eyebrows über Überschriften & im Hero deutlich größer */
.eyebrow-row .mono-label,
.hero-copy .mono-label {
  font-size: 15px;
  letter-spacing: 0.2em;
}
.eyebrow-row .mono-label::before,
.hero-copy .mono-label::before { width: 8px; height: 8px; box-shadow: 0 0 0 5px var(--gold-soft); }
.mono-label.no-dot::before { display: none; }
.mono-label.on-dark { color: var(--gold-app); }
.mono-label.on-dark::before { background: var(--gold-app); }

/* Wasserzeichen-Nummer */
.watermark {
  position: absolute;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(8rem, 18vw, 16rem);
  color: var(--gold);
  opacity: 0.05;
  line-height: 0.8;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  background: rgba(251,248,242,0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--sand-line);
  border-radius: var(--r-shell) var(--r-shell) 0 0;
  transition: height 0.4s var(--ease-out), background 0.4s ease;
}
.nav.shrink { height: 70px; background: rgba(251,248,242,0.92); }

.logo {
  font-family: var(--f-logo);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}
.logo .dot { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-links a:hover { background: var(--paper-2); color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 0.8rem; }

/* Sprachumschalter */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--sand);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
}
.lang-switch button {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-switch button.active { background: var(--text); color: var(--paper); }

/* Buttons */
.btn {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold));
  color: #fff;
  box-shadow: 0 8px 24px rgba(200,146,47,0.30);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(200,146,47,0.40); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--sand); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--gold-line); }
.btn-dark { background: var(--ink-0); color: var(--cream); }
.btn-dark:hover { transform: translateY(-2px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ============================================================
   Layout-Helfer
   ============================================================ */
.section { padding: clamp(4rem, 7vw, 6.4rem) clamp(1.5rem, 4vw, 4rem) clamp(2.6rem, 4.5vw, 4rem); position: relative; }
.section.tight { padding-top: clamp(4rem, 7vw, 6.4rem); }
.container { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }

/* Parallax-Foto-Band über die volle Karten-Breite */
.parallax-band { position: relative; min-height: 440px; height: 58vh; background-image: url('img/parallax-rennrad.webp?3'); background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: flex-end; justify-content: center; text-align: center; }
.parallax-band--mtb { background-image: url('img/parallax-mtb.webp?2'); }
.parallax-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,12,0.20) 0%, rgba(10,11,12,0.26) 42%, rgba(10,11,12,0.74) 100%); }
.parallax-band .pb-inner { position: relative; z-index: 1; color: #fff; padding: 0 1.6rem clamp(2.2rem, 5vw, 3.6rem); }
.parallax-band .pb-eyebrow { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-app); }
.parallax-band h2 { font-family: var(--f-head); font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 700; color: #fff; margin-top: 0.5rem; line-height: 1.12; text-shadow: 0 2px 30px rgba(0,0,0,0.45); }
@media (max-width: 820px) { .parallax-band { background-attachment: scroll; height: 46vh; min-height: 340px; } }
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  margin: 0 auto;
}
.eyebrow-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 6vw, 7rem) clamp(2.5rem, 5vw, 4rem); overflow-x: clip; overflow-y: visible; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 560px; }
.hero h1 { margin: 1.2rem 0 1.4rem; }
.hero .lead { margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-note { font-family: var(--f-mono); font-size: 13.5px; letter-spacing: 0.1em; color: var(--muted); margin-top: 1.4rem; text-transform: uppercase; }
/* Testphase-Hinweis am Hero-CTA: Badge + Folgepreis (Abo-Pflichtangabe) */
.hero-trial { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.72rem; margin-top: 1.5rem; }
.ht-badge { font-family: var(--f-head); font-weight: 700; font-size: 0.92rem; color: var(--gold); padding: 0.34rem 0.74rem; border: 1px solid rgba(200,146,47,0.45); border-radius: 999px; background: rgba(200,146,47,0.10); white-space: nowrap; }
.ht-price { font-size: 0.9rem; color: var(--text-soft); }
/* gleiche Aussage im Download-Block */
.cta-trial { font-size: 1rem; line-height: 1.5; color: var(--text-soft); max-width: 36ch; }
.cta-trial strong { color: var(--gold); font-weight: 700; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--text); background: var(--paper);
  border: 1px solid var(--sand-line); border-radius: 999px;
  padding: 0.5rem 0.9rem; line-height: 1;
}
.trust-pill svg { flex-shrink: 0; }

/* Hero Phone-Bühne */
.hero-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.hero-stage .glow {
  position: absolute; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(219,149,66,0.30), transparent 65%);
  filter: blur(20px); z-index: 0;
}
/* Zwei gefächerte Hero-Telefone */
.hero-phones { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-phone--back { position: absolute; z-index: 1; transform: translate(118px, -24px) scale(0.88) rotate(6deg); }
.hero-phone--back .phone { width: clamp(204px, 21vw, 286px); }
.hero-phone--front { position: relative; z-index: 2; transform: translateX(-60px) rotate(-2deg); }
.hero-phone--front .phone { width: clamp(220px, 23vw, 312px); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 480px; margin-top: 1rem; }
}
/* Mobil: beide Telefone ABSOLUT nebeneinander (kann nicht stapeln), kleiner, kein Überlauf */
@media (max-width: 600px) {
  .hero-stage { min-height: auto; margin-top: 0.5rem; }
  .hero-phones { display: block; position: relative; width: 100%; max-width: 330px; margin: 0 auto; height: clamp(340px, 96vw, 380px); }
  /* Live-Telefon (vorne) links, oben drauf */
  .hero-phone--front { position: absolute; left: 0; top: 22px; z-index: 2; transform: rotate(-3deg); }
  .hero-phone--front .phone { width: min(48vw, 168px); }
  /* Home-Telefon (hinten) rechts, leicht versetzt dahinter */
  .hero-phone--back { position: absolute; right: 0; top: 0; z-index: 1; transform: rotate(5deg); }
  .hero-phone--back .phone { width: min(43vw, 150px); }
  /* Eck-Radius an die kleinere Größe anpassen (sonst „Eier" statt iPhones) */
  .hero-phone--front .phone, .hero-phone--back .phone { border-radius: 28px; padding: 4px; }
  .hero-phone--front .phone .screen, .hero-phone--back .phone .screen { border-radius: 24px; border-width: 5px; }
}

/* ============================================================
   Phone-Mockup (App-UI in CSS nachgebaut, dunkel/gold)
   ============================================================ */
.phone {
  position: relative;
  width: 290px;
  aspect-ratio: 290 / 600;
  border-radius: 48px;
  padding: 4px;                         /* Breite des Metall-Rahmens */
  background: linear-gradient(145deg, #5e5f64 0%, #2b2c30 22%, #1b1c1f 52%, #313236 80%, #57585d 100%);
  box-shadow:
    -26px 38px 74px rgba(20,16,8,0.32),
    -8px 14px 30px rgba(20,16,8,0.22),
    inset 0 1px 1.5px rgba(255,255,255,0.45),
    inset 0 -1.5px 2px rgba(0,0,0,0.55);
  flex-shrink: 0;
  z-index: 1;
}
/* Power-Taste rechts */
.phone::after {
  content: ''; position: absolute; right: -1.5px; top: 30%;
  width: 3px; height: 10%;
  background: linear-gradient(90deg, #2b2c30, #56575d);
  border-radius: 0 2px 2px 0;
}
/* Lautstärke-Wippe links */
.phone::before {
  content: ''; position: absolute; left: -1.5px; top: 23%;
  width: 3px; height: 16%;
  background: linear-gradient(90deg, #56575d, #2b2c30);
  border-radius: 2px 0 0 2px;
}
.phone .screen {
  width: 100%; height: 100%;
  background: #000;
  border: 7px solid #070708;            /* schwarzer Bezel */
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  color: var(--cream);
  font-size: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.phone .scr-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.phone.sm { width: 230px; border-radius: 42px; }
.phone.sm .screen { border-radius: 38px; border-width: 6px; }
.phone.xs { width: 196px; border-radius: 38px; padding: 3px; }
.phone.xs .screen { border-radius: 35px; border-width: 5px; font-size: 11px; }

/* Zwei Phones nebeneinander (leicht gefächert) */
.phone-pair { display: flex; justify-content: center; align-items: center; gap: 1.2rem; }
.phone-pair .phone.xs { width: clamp(220px, 22vw, 270px); }
.phone-pair .phone:nth-child(1) { transform: rotate(-4deg) translateY(10px); }
.phone-pair .phone:nth-child(2) { transform: rotate(4deg) translateY(-10px); z-index: 2; }
@media (max-width: 520px) { .phone-pair { gap: 0.6rem; } .phone-pair .phone.xs { width: 165px; } }

/* Bild – Text – Bild */
.triptych { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.triptych .tri-text { text-align: center; }
.triptych .phone { width: 240px; }
@media (max-width: 920px) {
  .triptych { grid-template-columns: 1fr; gap: 2.5rem; }
  .triptych .tri-text { order: -1; }
  .triptych .phone { width: 230px; }
}

/* Screen-Innenleben */
.scr-pad { padding: 40px 16px 16px; height: 100%; display: flex; flex-direction: column; }
.scr-status { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.scr-pill {
  font-family: var(--f-mono); font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream-muted); display: inline-flex; align-items: center; gap: 5px;
}
.scr-pill .rec { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-app); box-shadow: 0 0 8px var(--gold-app); }

/* Live-Hero-Zahl */
.scr-hero-num { text-align: center; margin: auto 0; }
.scr-hero-num .big { font-family: var(--f-body); font-weight: 200; font-size: 78px; line-height: 1; color: var(--cream); letter-spacing: -0.04em; }
.scr-hero-num .unit { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--gold-app); text-transform: uppercase; margin-top: 6px; }
.scr-arc { display: flex; justify-content: center; gap: 6px; margin-top: 18px; }
.scr-arc span { font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.08em; color: var(--cream-muted); padding: 4px 7px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.08); }
.scr-arc span.on { color: var(--ink-0); background: var(--gold-app); border-color: var(--gold-app); }
.scr-pause {
  width: 56px; height: 56px; border-radius: 50%; margin: 20px auto 8px;
  border: 2px solid var(--gold-app); box-shadow: 0 0 0 4px rgba(212,162,78,0.12), 0 0 22px rgba(212,162,78,0.25);
  display: flex; align-items: center; justify-content: center;
}
.scr-pause::before { content: ''; width: 14px; height: 14px; background: var(--gold-app); border-radius: 3px; }

/* Karten im Screen */
.scr-card { background: var(--ink-2); border-radius: 16px; padding: 12px; margin-bottom: 10px; }
.scr-card-dark { background: #17181c; }
.scr-row { display: flex; gap: 8px; }
.scr-row .scr-card { flex: 1; margin-bottom: 0; }
.scr-k { font-family: var(--f-mono); font-size: 7.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-app); margin-bottom: 6px; }
.scr-v { font-family: var(--f-body); font-weight: 300; font-size: 22px; color: var(--cream); line-height: 1; }
.scr-v small { font-size: 10px; color: var(--cream-muted); font-weight: 400; }
.scr-greet { font-family: var(--f-head); font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 2px; }
.scr-sub { font-size: 9.5px; color: var(--cream-muted); margin-bottom: 14px; }

/* Hero-Bild im Heute-Screen */
.scr-photo { height: 120px; border-radius: 16px; background-size: cover; background-position: center; position: relative; margin-bottom: 12px; }
.scr-photo::after { content: ''; position: absolute; inset: 0; border-radius: 16px; background: linear-gradient(to bottom, transparent 30%, var(--ink-1) 98%); }
.scr-photo .lbl { position: absolute; left: 12px; bottom: 10px; z-index: 2; }

/* Kalender-Zellen im Screen */
.cal { aspect-ratio: 1; border-radius: 6px; background: var(--ink-3); display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-size: 8px; color: var(--cream-muted); }
.cal.g { background: var(--gold-app); color: var(--ink-0); font-weight: 500; }

/* Mini-MMP-Kurve / Balken */
.scr-bars { display: flex; align-items: flex-end; gap: 4px; height: 64px; margin-top: 6px; }
.scr-bars i { flex: 1; background: linear-gradient(to top, rgba(212,162,78,0.25), var(--gold-app)); border-radius: 3px 3px 0 0; display: block; }
.scr-zone { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.scr-zone .zb { height: 8px; border-radius: 999px; }
.scr-line { height: 1px; background: rgba(255,255,255,0.06); margin: 10px 0; }

/* Mockup-Galerie (3 nebeneinander) */
.mockup-row {
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 4rem);
  perspective: 1600px;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.mockup-row .phone { transition: transform 0.9s var(--ease-out), opacity 0.9s var(--ease-out); }
.mockup-row .phone:nth-child(2) { z-index: 3; }
/* Endzustand (Fächerung) — Standard, falls keine Scroll-Animation */
.mockup-row .phone:nth-child(1) { transform: rotateY(14deg) translateY(18px) scale(0.92); }
.mockup-row .phone:nth-child(2) { transform: translateY(-10px) scale(1.04); }
.mockup-row .phone:nth-child(3) { transform: rotateY(-14deg) translateY(18px) scale(0.92); }
/* Scroll-Animation: linkes von links, rechtes von rechts, Mitte von unten */
.mock-anim .phone:nth-child(1) { opacity: 0; transform: translateX(-140px) rotateY(14deg) scale(0.88); }
.mock-anim .phone:nth-child(2) { opacity: 0; transform: translateY(60px) scale(1.0); }
.mock-anim .phone:nth-child(3) { opacity: 0; transform: translateX(140px) rotateY(-14deg) scale(0.88); }
.mock-anim .phone:nth-child(1) { transition-delay: 0.12s; }
.mock-anim .phone:nth-child(3) { transition-delay: 0.12s; }
.mock-anim.in .phone:nth-child(1) { opacity: 1; transform: rotateY(14deg) translateY(18px) scale(0.92); }
.mock-anim.in .phone:nth-child(2) { opacity: 1; transform: translateY(-10px) scale(1.04); }
.mock-anim.in .phone:nth-child(3) { opacity: 1; transform: rotateY(-14deg) translateY(18px) scale(0.92); }
.mock-anim.in:hover .phone:nth-child(1) { transform: rotateY(8deg) translateY(8px) scale(0.95); }
.mock-anim.in:hover .phone:nth-child(3) { transform: rotateY(-8deg) translateY(8px) scale(0.95); }

/* Phones über dem Glow */
.mockup-row .phone { position: relative; z-index: 2; }
/* Warmer Glow hinter den Mockups auf dunklem Grund (hebt sie ab) */
.section-dark .mockup-row { position: relative; }
.section-dark .mockup-row::before {
  content: ''; position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%);
  width: 82%; height: 88%; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(219,149,66,0.22), rgba(219,149,66,0.07) 45%, transparent 72%);
  filter: blur(28px);
}

@media (max-width: 820px) {
  .mockup-row { flex-direction: column; align-items: center; flex-wrap: nowrap; gap: clamp(2.5rem, 7vw, 3.5rem); margin-top: clamp(2.2rem, 6vw, 3.5rem); perspective: none; }
  /* Auf Mobil flach gestapelt: keine 3D-Drehung, immer sichtbar (überschreibt die Fächer-Animation) */
  .mockup-row .phone,
  .mock-anim .phone:nth-child(1),
  .mock-anim .phone:nth-child(2),
  .mock-anim .phone:nth-child(3),
  .mock-anim.in .phone:nth-child(1),
  .mock-anim.in .phone:nth-child(2),
  .mock-anim.in .phone:nth-child(3) { transform: none !important; opacity: 1 !important; }
  .mockup-row .phone,
  .mockup-row .phone.sm { width: min(58vw, 228px); border-radius: 34px; padding: 4px; }
  .mockup-row .phone .screen { border-radius: 30px; border-width: 5px; }
}

/* ============================================================
   Feature-Sektionen
   ============================================================ */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature-split.rev .feature-media { order: 2; }
@media (max-width: 860px) { .feature-split, .feature-split.rev { grid-template-columns: 1fr; gap: clamp(2.6rem, 9vw, 3.6rem); } .feature-split.rev .feature-media { order: 2; } }

.feature-media { display: flex; justify-content: center; align-items: center; position: relative; }
.feature-list { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 1rem; color: var(--text-soft); }
.feature-list .ic {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  border: 1.8px solid var(--gold); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; font-weight: 700;
}

/* Karten-Grid */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--paper);
  border: 1px solid var(--sand-line);
  border-radius: var(--r-card);
  padding: 1.8rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(40,32,18,0.08); border-color: var(--gold-line); }
.card .card-ic, .tier .card-ic {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.1rem;
}
.card .card-ic svg, .tier .card-ic svg { width: 24px; height: 24px; stroke: var(--gold-app); fill: none; stroke-width: 1.8; }
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.96rem; }

/* Disziplin-Karte (Foto + Daten + Vorteil) */
.disc-card {
  background: var(--paper);
  border: 1px solid var(--sand-line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
}
.disc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(40,32,18,0.10); border-color: var(--gold-line); }
.disc-photo { height: 200px; background-size: cover; background-position: center; position: relative; }
.disc-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,20,23,0.62), transparent 55%); }
.disc-photo .disc-name { position: absolute; left: 1.3rem; bottom: 1rem; z-index: 2; font-family: var(--f-head); font-weight: 600; font-size: 1.5rem; color: #fff; letter-spacing: -0.01em; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.disc-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.5rem; }
.disc-body .mono-label { font-size: 11.5px; margin-bottom: 0.1rem; }
.disc-data { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.disc-data span { font-size: 0.8rem; font-weight: 500; color: var(--text-soft); background: var(--paper-2); border: 1px solid var(--sand-line); border-radius: 999px; padding: 0.32rem 0.7rem; }
.disc-adv { font-size: 0.96rem; color: var(--text-soft); }
.disc-adv strong { color: var(--text); font-weight: 600; }
@media (max-width: 880px) { .disc-card .disc-photo { height: 180px; } }
/* Disziplin-Karten: 3 Spalten am Desktop, untereinander auf dem Handy */
.card-grid.disc-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .card-grid.disc-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
@media (max-width: 820px) { .disc-card .disc-photo { height: 220px; } }

/* App-Ausschnitt-Karte (zeigt nur Teil der App) */
.snippet {
  background: var(--ink-1);
  border-radius: var(--r-card);
  padding: 1.4rem;
  border: 1px solid var(--ink-line);
  position: relative;
  overflow: hidden;
}
.snippet .mono-label { margin-bottom: 1rem; }

/* Echter App-Ausschnitt als abgerundete Bild-Karte */
.feature-shot {
  width: 100%;
  max-width: 360px;
  display: block;
  border-radius: 26px;
  border: 1px solid var(--ink-line);
  box-shadow:
    -18px 26px 56px rgba(20,16,8,0.20),
    -6px 10px 22px rgba(20,16,8,0.12);
}
/* In dunkler Sektion: feine helle Kante, tieferer Schatten */
.feature-shot.on-dark {
  border-color: rgba(255,255,255,0.08);
  box-shadow:
    -18px 26px 60px rgba(0,0,0,0.45),
    -6px 10px 24px rgba(0,0,0,0.30);
}
/* Zwei Siegel-Karten (Datensicherheit) — Desktop schmal, Mobil volle Breite */
.seal-stack { width: 100%; max-width: 360px; display: flex; flex-direction: column; gap: 1rem; }
@media (max-width: 860px) { .seal-stack { max-width: 100%; padding: 5px; } }
/* Einzelnes Telefon in einem Text-Bild-Block (z. B. Vorteils-Block) — Mobil: kleinerer Radius, korrekte Proportion */
@media (max-width: 600px) {
  .feature-media > .phone.shot { width: min(60vw, 235px) !important; border-radius: 34px; padding: 4px; }
  .feature-media > .phone.shot .screen { border-radius: 30px; border-width: 5px; }
}

/* ============================================================
   Dunkle Sektion (App-Welt)
   ============================================================ */
.section-dark { background: var(--ink-0); color: var(--cream); border-radius: 36px; margin: 0 clamp(2.5rem, 7vw, 6rem); overflow: hidden; position: relative; }
/* Mobil: schwarze Boxen breiter (weniger weißer Rand), Inhalt weniger eingequetscht */
@media (max-width: 700px) {
  .section-dark { margin-left: 0.6rem; margin-right: 0.6rem; border-radius: 26px; }
}
.section-dark h2 { color: var(--cream); }
.section-dark p { color: var(--cream-muted); }
.section-dark .watermark { color: var(--gold-app); opacity: 0.06; }

/* Tier-Stufen */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.tier {
  background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: var(--r-card);
  padding: 1.6rem; position: relative; transition: transform 0.4s var(--ease-out);
}
.tier:hover { transform: translateY(-5px); }
.tier .step { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--gold-app); text-transform: uppercase; }
.tier h3 { color: var(--cream); font-size: 1.32rem; margin: 0.6rem 0 0.7rem; }
.tier p { color: var(--cream-muted); font-size: 1.05rem; line-height: 1.55; }
.tier .step { font-size: 11px; }
@media (max-width: 760px) { .tiers { grid-template-columns: 1fr; } }

/* Helle Variante der Tier-/Stufen-Karten */
.tier-light .tier { background: var(--paper); border-color: var(--sand-line); }
.tier-light .tier:hover { box-shadow: 0 18px 40px rgba(40,32,18,0.08); border-color: var(--gold-line); }
.tier-light .tier h3 { color: var(--text); }
.tier-light .tier p { color: var(--text-soft); }
.tier-light .tier .step { color: var(--gold); }

/* Stat-Banner / Glas-Badge */
.glass-badge {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 1rem 1.3rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
}

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper-2); border: 1px solid var(--sand-line); border-radius: var(--r-card); overflow: hidden; }
.stat { padding: clamp(1.8rem, 3vw, 2.7rem) 1.2rem; text-align: center; border-right: 1px solid var(--sand-line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--f-body); font-weight: 200; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--text); line-height: 1; letter-spacing: -0.03em; }
.section-dark .stat .num { color: var(--cream); }
.stat .num .u { color: var(--gold); font-weight: 300; }
.section-dark .stat .num .u { color: var(--gold-app); }
.stat .lbl { font-family: var(--f-mono); font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); margin-top: 0.85rem; }
.section-dark .stat .lbl { color: var(--cream-muted); }
@media (max-width: 720px) { .stat-strip { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: none; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--sand-line); } }

/* ============================================================
   Szenen-Illustration (Linien-Landschaft, "unterwegs")
   ============================================================ */
.scene { width: 100%; max-width: 1000px; margin: 0 auto; }
.scene svg { width: 100%; height: auto; display: block; }
.scene-img { width: 100%; height: auto; display: block; }
.scene .road-dash { stroke-dasharray: 4 12; }
@keyframes ride { 0% { transform: translateX(-14px); } 50% { transform: translateX(14px); } 100% { transform: translateX(-14px); } }
.scene .rider { animation: ride 9s ease-in-out infinite; transform-origin: center; }

/* kleine Deko-Motive in Ecken (wie Wasserzeichen) */
.decor { position: absolute; z-index: 0; pointer-events: none; opacity: 0.5; }
.decor svg { display: block; }
.section-dark .decor { opacity: 0.32; }
@media (max-width: 1200px) { .decor { display: none; } }

/* ============================================================
   App-Store CTA
   ============================================================ */
.cta-band { text-align: center; }
.appstore-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--ink-0); color: var(--cream);
  padding: 0.85rem 1.5rem; border-radius: 16px; text-decoration: none;
  border: 1px solid var(--ink-line);
  transition: transform 0.3s var(--ease-spring);
}
.appstore-badge:hover { transform: translateY(-3px); }
.appstore-badge svg { width: 26px; height: 26px; fill: var(--cream); }
.appstore-badge .small { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-muted); display: block; line-height: 1.2; }
.appstore-badge .big { font-family: var(--f-head); font-size: 1.05rem; font-weight: 600; display: block; line-height: 1.2; }
/* Offizieller App-Store-Badge */
.appstore-link { display: inline-block; text-decoration: none; transition: transform 0.3s var(--ease-spring); }
.appstore-link:hover { transform: translateY(-3px); }
.appstore-link img { display: block; width: 168px; height: auto; }
.appstore-link--nav img { width: 132px; }
.appstore-link--nav:hover { transform: translateY(-2px); }
.cta-soon { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 1rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--paper-2); border-radius: 0 0 var(--r-shell) var(--r-shell); padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 4rem) 2rem; border-top: 1px solid var(--sand-line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer h4 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; font-weight: 500; }
.footer a { display: block; color: var(--text-soft); text-decoration: none; font-size: 0.95rem; padding: 0.3rem 0; transition: color 0.2s; }
.footer a:hover { color: var(--gold); }
.footer .logo { font-size: 1.4rem; margin-bottom: 0.8rem; }
.footer .tag { font-size: 0.9rem; color: var(--muted); max-width: 30ch; }
.footer-legal { border-top: 1px solid var(--sand-line); padding-top: 1.4rem; margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-legal p { font-size: 0.8rem; line-height: 1.5; color: var(--muted); margin: 0; max-width: 92ch; }
.footer-bottom { border-top: 1px solid var(--sand-line); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: var(--muted); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   Rechts-/Text-Seiten
   ============================================================ */
.doc { max-width: 760px; margin: 0 auto; }
/* Breitere Variante (z. B. Support-Seite mit Formular + Seitenbox) */
.doc.doc-wide { max-width: 1080px; }
.doc h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.6rem; }
.doc .updated { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem; }
.doc h2 { font-size: 1.4rem; margin: 2.4rem 0 0.8rem; }
.doc h3 { font-size: 1.1rem; margin: 1.6rem 0 0.5rem; }
.doc p, .doc li { color: var(--text-soft); font-size: 1rem; margin-bottom: 0.8rem; }
.doc ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.doc a { color: var(--gold); }
.doc .callout { background: var(--paper-2); border-left: 3px solid var(--gold); border-radius: 12px; padding: 1.2rem 1.4rem; margin: 1.5rem 0; }
.doc .callout p { margin: 0; }

/* FAQ */
.faq { max-width: 760px; }
/* Kategorie-Label zwischen Fragen-Gruppen */
.faq-cat { font-family: var(--f-head); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold); margin: 2.8rem 0 1.1rem; display: flex; align-items: center; gap: 0.65rem; }
.faq-cat::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.faq-cat:first-child { margin-top: 0.5rem; }
/* Frage-Karten */
.faq-item { background: var(--paper); border: 1px solid var(--sand-line); border-radius: 16px; margin-bottom: 0.7rem; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.faq-item:hover { border-color: var(--gold-line); }
.faq-item:has(.faq-q.open) { border-color: var(--gold-line); box-shadow: 0 12px 32px rgba(40,32,18,0.07); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--f-head); font-weight: 600; font-size: 1.05rem; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 1rem; line-height: 1.35; }
.faq-q .pm { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--gold-line); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; line-height: 1; transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s; }
.faq-q:hover .pm { border-color: var(--gold); }
.faq-q.open .pm { transform: rotate(45deg); background: var(--gold); color: #fff; border-color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-a .inner { padding: 0 1.3rem 1.25rem; color: var(--text-soft); line-height: 1.65; }
.faq-a .inner a { color: var(--gold); }

/* ============================================================
   Animationen (Scroll-Reveal) — langsam & sanft
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px) scale(0.98); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-blur { opacity: 0; transform: translateY(30px); filter: blur(8px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out); }
.reveal-blur.in { opacity: 1; transform: none; filter: blur(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.9s var(--ease-out); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.9s var(--ease-out); }
.reveal-right.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.55s; }
[data-delay="6"] { transition-delay: 0.7s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.floaty { animation: float 5s ease-in-out infinite; }
.floaty-slow { animation: float 7s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-blur, .reveal-left, .reveal-right { opacity: 1; transform: none; filter: none; }
}

/* ============================================================
   Cookie-Consent-Banner
   ============================================================ */
.cc-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 9999;
  max-width: 560px; margin: 0 auto;
  background: var(--paper); color: var(--text);
  border: 1px solid var(--sand-line); border-radius: 20px;
  box-shadow: 0 24px 60px rgba(20,16,8,0.22);
  padding: 1.4rem 1.5rem; font-size: 0.95rem; line-height: 1.55;
}
.cc-banner h3 { font-family: var(--f-head); font-size: 1.12rem; margin: 0 0 0.5rem; }
.cc-banner p { margin: 0; color: var(--text-soft); }
.cc-banner a { color: var(--gold); }
.cc-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }
.cc-btn { flex: 1 1 auto; min-width: 120px; text-align: center; cursor: pointer;
  font-family: var(--f-body); font-size: 0.95rem; font-weight: 500;
  border-radius: 999px; padding: 0.7rem 1.1rem;
  border: 1.5px solid var(--sand-line); background: var(--paper); color: var(--text); }
.cc-btn:hover { border-color: var(--gold); }
/* „Ablehnen“ und „Akzeptieren“ optisch gleichwertig (Vorgabe TDDDG / Urteil 03/2025) */
.cc-btn-primary { border-color: var(--gold); color: var(--text); font-weight: 600; }
.cc-btn-primary:hover { background: var(--gold-soft); }
/* „Einstellungen“ ist eine Sekundär-Aktion (keine Einwilligungs-Wahl) und darf zurücktreten */
.cc-btn-quiet { flex: 0 1 auto; min-width: 0; border-color: transparent;
  background: none; color: var(--muted); text-decoration: underline; }
.cc-btn-quiet:hover { color: var(--gold); }
.cc-settings { margin-top: 1.1rem; display: none; flex-direction: column; gap: 0.2rem; }
.cc-settings.open { display: flex; }
.cc-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  border-top: 1px solid var(--sand-line); padding: 0.8rem 0; }
.cc-row strong { font-weight: 600; font-size: 0.92rem; }
.cc-row small { color: var(--muted); display: block; font-size: 0.82rem; margin-top: 0.15rem; }
.cc-sw { position: relative; width: 42px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.cc-sw input { opacity: 0; width: 0; height: 0; }
.cc-sw span { position: absolute; inset: 0; background: var(--sand); border-radius: 999px; cursor: pointer; transition: 0.2s; }
.cc-sw span::after { content:''; position:absolute; top:3px; left:3px; width:18px; height:18px; border-radius:50%; background:#fff; transition:0.2s; }
.cc-sw input:checked + span { background: var(--gold); }
.cc-sw input:checked + span::after { transform: translateX(18px); }
.cc-sw input:disabled + span { opacity: 0.55; cursor: not-allowed; }
.cc-reopen { position: fixed; left: 1rem; bottom: 1rem; z-index: 9998;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--sand-line);
  background: var(--paper); color: var(--gold); cursor: pointer;
  box-shadow: 0 6px 18px rgba(20,16,8,0.16); display: none; align-items: center; justify-content: center; }
.cc-reopen.show { display: flex; }
@media (max-width: 520px) { .cc-btn { flex-basis: 100%; } }

/* ============================================================
   Kontaktformular (Support)
   ============================================================ */
.contact-block { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--sand-line); }
.sform { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 1rem; max-width: 640px; }
.sform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .sform-row { grid-template-columns: 1fr; } }
.sform-field { display: flex; flex-direction: column; gap: 0.4rem; }
.sform-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.sform input, .sform textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--text);
  background: var(--paper); border: 1.5px solid var(--sand-line); border-radius: 14px;
  padding: 0.75rem 0.9rem; width: 100%; transition: border-color 0.2s;
}
.sform input:focus, .sform textarea:focus { outline: none; border-color: var(--gold); }
.sform textarea { resize: vertical; min-height: 130px; }
.sform-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sform-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--text-soft); line-height: 1.5; }
.sform-consent input { margin-top: 0.15rem; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--gold); }
.sform-consent a { color: var(--gold); }
.sform-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.3rem; }
.sform-status { margin: 0; font-size: 0.92rem; }

/* Support-Seite: Formular + E-Mail-Box nebeneinander */
.support-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; margin-top: 1.8rem; }
.support-grid .sform { margin-top: 0; }
.support-aside { background: var(--paper-2); border: 1px solid var(--sand-line); border-radius: 18px; padding: 1.6rem 1.5rem; }
.support-aside-title { font-family: var(--f-head); font-size: 1.35rem; font-weight: 600; color: var(--text); margin: 0 0 0.9rem; line-height: 1.2; }
.support-aside p { margin: 0 0 0.9rem; color: var(--text-soft); line-height: 1.6; }
.support-aside a { color: var(--gold); }
.support-mail { font-family: var(--f-head); font-size: 1.15rem; font-weight: 600; word-break: break-all; }
.support-aside-line { height: 1px; background: var(--sand-line); margin: 1.2rem 0; }
@media (max-width: 820px) { .support-grid { grid-template-columns: 1fr; } .support-aside { margin-top: 120px; } }

/* Sprach-Sichtbarkeit */
[data-lang-en] { display: none; }
html[lang="en"] [data-lang-de] { display: none; }
html[lang="en"] [data-lang-en] { display: revert; }

/* Mobile Nav */
@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 0.5rem; background: var(--paper); padding: 2rem; transform: translateX(100%); transition: transform 0.4s var(--ease-out); box-shadow: -20px 0 60px rgba(0,0,0,0.15); z-index: 200; }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.2rem; width: 100%; }
  .mobile-toggle { display: flex; z-index: 201; }
  .nav .btn-gold { display: none; }
}
