/* ==========================================================================
   Berliner Taxiwerbung — Relaunch 2026
   Dunkler Premium-Look: Anthrazit, Taxi-Elfenbein, Ampelgelb
   ========================================================================== */

/* Standard = helles Premium-Theme: warmes Off-White, dunkle Tinte, gedämpftes Gold.
   [data-theme="dark"] ist KEIN Nutzer-Theme, sondern der Baustein für bewusst dunkle
   Flächen (Hero-Foto, Footer, Navigation über dem Hero, Lightbox). */
:root,
[data-theme="light"] {
  --bg: #f6f4ef;
  --bg-elev: #ffffff;
  --bg-card: #ffffff;
  --line: #ded9cf;
  --line-soft: #e9e5dc;
  --ink: #191a1e;
  --ink-dim: #5c5a54;
  --ink-faint: #8b887f;
  --accent: #9a6f00;          /* dunkleres Gold – lesbar auf Weiß */
  --accent-bg: #f2b705;       /* Button-/Chip-Flächen – immer Taxischild-Gelb */
  --accent-ink: #141310;
  --ivory: #8a6d2a;
  --ok: #2e9c63;
  --shadow-card: 0 12px 40px rgba(30, 28, 22, .10);
  --nav-scrolled-bg: rgba(246, 244, 239, .86);
  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1200px;
  --wrap-wide: 1440px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Wichtig: Jede Fläche mit eigenem Theme muss `color` neu deklarieren.
   Sonst erben Kinder (z. B. die Hero-<h1>) den auf <body> berechneten Farbwert –
   die Variable ändert sich, der geerbte Wert nicht.
   `:where()` hält die Spezifität bei 0, damit eigene Regeln (footer, .lead …) weiter greifen. */
:where([data-theme]) { color: var(--ink); }

[data-theme="dark"] {
  --bg: #0e0f12;
  --bg-elev: #16181d;
  --bg-card: #1b1e25;
  --line: #2a2e37;
  --line-soft: #22252d;
  --ink: #f4f1ea;
  --ink-dim: #b9b4a8;
  --ink-faint: #8a867c;
  --accent: #f2b705;          /* auf Dunkel trägt das volle Taxischild-Gelb */
  --accent-bg: #f2b705;
  --accent-ink: #141310;
  --ivory: #e9d9ba;           /* Hellelfenbein RAL 1015 */
  --ok: #58c98b;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, .45);
  --nav-scrolled-bg: rgba(14, 15, 18, .82);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Typografie ---------- */

h1, h2, h3 { line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }

.display {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 850;
  letter-spacing: -.03em;
}

.h-section {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: .5em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1em;
}
.kicker::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-dim); max-width: 46em; }

.muted { color: var(--ink-dim); }

/* ---------- Layout ---------- */

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }

section { padding: clamp(64px, 9vw, 120px) 0; }
section.tight { padding: clamp(40px, 6vw, 72px) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }

/* Formular/Inhalt links, Info-Karten rechts – stapelt auf kleinen Screens */
.grid-form { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }

@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-form { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .9em 1.7em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-bg);
  color: var(--accent-ink);
  box-shadow: 0 6px 24px rgba(242, 183, 5, .25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(242, 183, 5, .38); }
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .02);
}
.btn-ghost:hover { border-color: var(--ivory); background: rgba(233, 217, 186, .06); }
.btn-lg { padding: 1.05em 2.1em; font-size: 1.06rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45em;
  color: var(--accent); font-weight: 700;
}
.arrow-link svg { transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-scrolled-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
/* Nicht-Overlay-Seiten: Navigation von Anfang an auf heller Fläche */
.nav:not(.nav--overlay) {
  background: var(--nav-scrolled-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 14px clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: -.01em; font-size: 1.05rem; }
.nav-logo img { height: 42px; width: auto; }
@media (max-width: 980px) { .nav-logo img { height: 36px; } }
/* Logo-Variante nach Untergrund: Vollfarb auf Hell, Weiß-Version auf dunklen Flächen.
   Kein display auf `.nav-logo img`, sonst überschreibt es diese Regeln (höhere Spezifität). */
.nav-logo .logo-ondark { display: none; }
.nav-logo .logo-onlight { display: block; }
[data-theme="dark"] .nav-logo .logo-ondark { display: block; }
[data-theme="dark"] .nav-logo .logo-onlight { display: none; }
.nav-links { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav-links a {
  padding: .55em 1em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-dim);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, .05); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; display: block; height: 2px; margin: 1px .9em 0; background: var(--accent); border-radius: 2px; }
.nav-cta { margin-left: 10px; }
.nav-lang {
  margin-left: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  padding: .45em .8em;
  border-radius: 999px;
  transition: color .2s, border-color .2s;
}
.nav-lang:hover { color: var(--ink); border-color: var(--ivory); }

.nav-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  cursor: pointer;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: transform .3s, opacity .3s; }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 62px; right: 12px; left: 12px;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elev);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: .8em 1em; }
  .nav-cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .nav-burger { display: block; }
  .nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  isolation: isolate;
}
.hero-media, .hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Panorama-Hero: Ausschnitt nach links verschieben, damit das Taxi rechts
     neben der Headline steht statt darunter zu verschwinden */
  object-position: 24% center;
  z-index: -2;
}
@media (max-width: 980px) { .hero-media img { object-position: 40% center; } }

/* Ken-Burns: langsamer Zoom mit leichtem Schwenk, damit der Hero „lebt“ – kostet 0 KB.
   scale beginnt bei 1, damit im ersten Moment nichts unscharf wirkt.
   Der Schwenk bleibt deutlich innerhalb der durch den Zoom entstehenden Reserve
   (13 % Zoom = 6,5 % Überhang je Seite), sonst würden Bildränder sichtbar. */
.hero-media img {
  transform-origin: 30% 55%;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.13) translateX(-1.6%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  /* Kräftiger Scrim: Die Headline liegt links über hellen Karosserieflächen und
     braucht dort verlässlichen Kontrast – nicht nur oben/unten abdunkeln. */
  background:
    linear-gradient(180deg, rgba(14,15,18,.62) 0%, rgba(14,15,18,.34) 45%, rgba(14,15,18,.92) 88%, var(--bg) 100%),
    linear-gradient(90deg, rgba(14,15,18,.88) 0%, rgba(14,15,18,.62) 38%, rgba(14,15,18,.12) 72%, rgba(14,15,18,0) 100%);
  z-index: -1;
}
.hero-content { width: 100%; padding: 140px 0 clamp(48px, 7vw, 96px); }
.hero .display { max-width: 13em; margin-bottom: .4em; }
.hero .lead { margin-bottom: 1.8em; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-sub {
  position: relative;
  padding: clamp(20px, 3vw, 34px) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-elev);
}

/* ---------- Stats ---------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); row-gap: 30px; } }
.stat .num {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 850;
  letter-spacing: -.02em;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.stat .num em { font-style: normal; color: var(--accent); }
.stat .lbl { color: var(--ink-dim); font-size: .95rem; margin-top: .15em; }

/* ---------- Cards ---------- */

.card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--shadow-card); }
.card h3 { font-size: 1.25rem; margin-bottom: .5em; }
.card p { color: var(--ink-dim); font-size: .98rem; }
.card .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(242, 183, 5, .12);
  color: var(--accent);
  margin-bottom: 18px;
}
.card .icon svg { width: 24px; height: 24px; }

/* Format-Karten mit Bild */
.format-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.format-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.format-card .media { aspect-ratio: 16 / 10; overflow: hidden; }
.format-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.format-card:hover .media img { transform: scale(1.05); }
.format-card .body { padding: 22px 24px 26px; }
.format-card .body h3 { font-size: 1.2rem; margin-bottom: .35em; }
.format-card .body p { color: var(--ink-dim); font-size: .95rem; margin-bottom: 1em; }
.format-card .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(14, 15, 18, .75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  color: #e9d9ba;             /* liegt immer auf dunklem Chip – feste helle Tinte */
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45em .9em;
  border-radius: 999px;
}

/* ---------- Trust / Referenzen ---------- */

.logo-wall {
  display: flex; flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
}
.logo-wall .client {
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  border-radius: 999px;
  padding: .6em 1.3em;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink-dim);
  transition: color .25s, border-color .25s;
}
.logo-wall .client:hover { color: var(--ivory); border-color: var(--ivory); }

.quote-card {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 26px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  max-width: 34em;
}
.quote-card cite { display: block; font-style: normal; font-size: .92rem; color: var(--ink-faint); margin-top: 1em; font-weight: 600; }

/* ---------- Prozess / Steps ---------- */

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px 22px 24px; background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: .95rem;
  font-weight: 850;
  color: var(--accent);
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.08rem; margin-bottom: .4em; }
.step p { font-size: .92rem; color: var(--ink-dim); }

/* ---------- Split-Section mit Bild ---------- */

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.checklist { list-style: none; margin-top: 1.4em; display: grid; gap: .85em; }
.checklist li { display: flex; gap: .8em; align-items: flex-start; color: var(--ink-dim); }
.checklist li strong { color: var(--ink); }
.checklist .check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  margin-top: .15em;
  border-radius: 50%;
  background: rgba(88, 201, 139, .15);
  color: var(--ok);
  display: grid; place-items: center;
}
.checklist .check svg { width: 12px; height: 12px; }

/* ---------- Galerie ---------- */

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--ink-dim);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 700;
  padding: .55em 1.25em;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.chip:hover { color: var(--ink); border-color: var(--ivory); }
.chip.active { background: var(--accent-bg); border-color: var(--accent-bg); color: var(--accent-ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.g-item {
  position: relative;
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  aspect-ratio: 3 / 2;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.g-item.wide { grid-column: span 8; }
.g-item.tall { aspect-ratio: 3 / 2.6; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }
.g-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(10, 11, 13, .88));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.g-item:hover .cap { opacity: 1; transform: none; }
.g-item .cap b { display: block; font-size: 1.02rem; }
.g-item .cap span { font-size: .82rem; color: var(--ink-dim); }
.g-item.hidden { display: none; }

@media (max-width: 980px) {
  .g-item, .g-item.wide { grid-column: span 6; }
}
@media (max-width: 620px) {
  .g-item, .g-item.wide { grid-column: span 12; }
  .g-item .cap { opacity: 1; transform: none; }
}

/* Featured Case (Galerie) */
.case-feature {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
}
.case-feature .media { height: 100%; min-height: 320px; cursor: zoom-in; overflow: hidden; }
.case-feature .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.case-feature .media:hover img { transform: scale(1.04); }
.case-feature .body { padding: clamp(24px, 3vw, 44px); }
.case-feature .body .facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.2em 0 0; }
.case-feature .fact {
  font-size: .8rem; font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4em .95em;
  color: var(--ink-dim);
}
.case-feature.flip { grid-template-columns: 1fr 1.35fr; }
.case-feature.flip .media { order: 2; }
@media (max-width: 900px) {
  .case-feature, .case-feature.flip { grid-template-columns: 1fr; }
  .case-feature.flip .media { order: 0; }
  .case-feature .media { min-height: 240px; }
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(8, 9, 11, .96);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox figure { max-width: min(92vw, 1400px); max-height: 86vh; display: grid; gap: 14px; }
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  width: auto; height: auto;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
}
.lightbox figcaption { text-align: center; color: var(--ink-dim); font-size: .95rem; }
.lightbox figcaption b { color: var(--ink); font-size: 1.05rem; display: block; }
.lb-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(27, 30, 37, .8);
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
  z-index: 201;
}
.lb-btn:hover { background: var(--bg-card); border-color: var(--ivory); }
.lb-prev { left: clamp(10px, 3vw, 40px); }
.lb-next { right: clamp(10px, 3vw, 40px); }
.lb-close { top: 30px; right: clamp(10px, 3vw, 40px); transform: none; font-size: 1.1rem; }
.lb-count {
  position: fixed; top: 40px; left: 50%;
  transform: translateX(-50%);
  color: var(--ink-faint);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .1em;
}

/* ---------- Preis-Pakete ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;   /* gleiche Kartenhöhe → Buttons fluchten unten */
}
@media (max-width: 1000px) { .price-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 34px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.price-card.featured {
  border-color: var(--accent-bg);
  box-shadow: 0 0 0 1px var(--accent-bg), var(--shadow-card);
}
.price-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-bg);
  color: var(--accent-ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45em 1em;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.45rem; margin-bottom: .25em; }
/* Feste Reserve für 4 Zeilen, damit die Preiszeilen aller Karten auf einer Höhe sitzen */
.price-persona { color: var(--ink-dim); font-size: .93rem; min-height: 6.4em; }
@media (max-width: 1000px) { .price-persona { min-height: 0; } }

.price-amount {
  margin: 22px 0 4px;
  display: flex;
  align-items: baseline;
  gap: .3em;
  flex-wrap: wrap;
}
.price-amount .num {
  font-size: clamp(2.1rem, 3.4vw, 2.7rem);
  font-weight: 850;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.price-amount .unit { color: var(--ink-dim); font-size: .92rem; font-weight: 600; }
.price-total {
  font-size: .95rem;
  color: var(--ink-dim);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.price-total b { color: var(--ink); font-variant-numeric: tabular-nums; }

/* Die Wirkung, die eingekauft wird – Reichweite und TKP je Paket */
.price-reach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(242, 183, 5, .1);
  border: 1px solid rgba(242, 183, 5, .3);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.price-reach div { display: grid; gap: 2px; }
.price-reach b {
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--ink);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.price-reach span { font-size: .76rem; color: var(--ink-dim); line-height: 1.3; }

.price-specs { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.price-specs li { display: flex; justify-content: space-between; gap: 1em; font-size: .94rem; color: var(--ink-dim); }
.price-specs li b { color: var(--ink); font-weight: 700; text-align: right; }

.price-note {
  font-size: .88rem;
  color: var(--ink-dim);
  background: rgba(242, 183, 5, .1);
  border: 1px solid rgba(242, 183, 5, .3);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 22px;
}
.price-note b { color: var(--ink); }
.price-card .btn { margin-top: auto; justify-content: center; }

.price-legal { color: var(--ink-faint); font-size: .88rem; margin-top: 26px; }

/* ---------- Formular ---------- */

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 700; color: var(--ink-dim); }
.field input, .field select, .field textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-elev);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: .85em 1.05em;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, .18);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%), linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.form-note { font-size: .84rem; color: var(--ink-faint); margin-top: 14px; }
.form-note a { color: var(--ink-dim); text-decoration: underline; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 12px; max-width: 860px; }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 20px 54px 20px 24px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--ink-dim); font-size: .97rem; max-width: 60em; }

/* ---------- CTA-Band ---------- */

.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  background:
    radial-gradient(1200px 400px at 10% -20%, rgba(242, 183, 5, .16), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--line-soft);
  text-align: left;
}
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); max-width: 18em; margin-bottom: .5em; }
.cta-band p { color: var(--ink-dim); max-width: 40em; margin-bottom: 1.6em; }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-elev);
  padding: clamp(44px, 6vw, 72px) 0 36px;
  margin-top: clamp(40px, 6vw, 80px);
  color: var(--ink-dim);
  font-size: .95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { color: var(--ink); font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
footer ul { list-style: none; display: grid; gap: 9px; }
footer a:hover { color: var(--ivory); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--ink-faint);
}

/* ---------- Scroll-Reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Marquee (Referenz-Band) ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  background: var(--bg-elev);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink-faint);
  letter-spacing: .02em;
}
.marquee-track span { display: flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee-track i { font-style: normal; color: var(--accent); font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; width: auto; } }

/* ---------- Sub-Hero (Unterseiten) ---------- */

.page-hero { padding: 150px 0 clamp(30px, 5vw, 60px); background: var(--bg); }
.page-hero .display { font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 16em; }
