/* =========================================================
   zack.online – Landingpage
   Styles abgeleitet aus 07_Brand/Styleguide (styleguide.html, ui-kit.html)
   und 07_Brand/design.md
   ========================================================= */

:root {
  /* Farben (design.md §1) */
  --color-navy:        #000D65;
  --color-navy-2:      #0A1875;
  --color-royal-blue:  #2540F0;
  --color-royal-dark:  #1B30C7;
  --color-sky-blue:    #5E99FF;
  --color-soft-blue:   #92BAFF;
  --color-sunshine:    #D4FF3D;
  --color-sunshine-dk: #B9E32A;
  --color-white:       #FFFFFF;
  --color-line:        rgba(255,255,255,0.14);
  --color-line-hover:  rgba(255,255,255,0.32);

  /* Typografie (design.md §2) */
  --font-display: 'Sofia Sans', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --tracking-tight: -0.02em;

  /* Form (design.md §3) */
  --shape-skew: -10deg;
  --shape-scale-y: 0.98;

  /* Fluid type */
  --fs-mega:    clamp(64px,  13vw, 220px);
  --fs-h1:      clamp(44px,  6.6vw, 120px);
  --fs-h2:      clamp(34px,  4.6vw,  80px);
  --fs-h3:      clamp(22px,  2.4vw,  40px);
  --fs-lead:    clamp(19px,  1.5vw,  28px);
  --fs-body:    clamp(18px,  1.1vw,  20px);
  --fs-small:   clamp(13px,  0.85vw, 15px);
  --fs-eyebrow: clamp(11px,  0.78vw, 13px);

  --gut:  clamp(24px, 4.6vw, 88px);
  --vpad: clamp(64px, 8vw, 140px);

  --radius-pill: 999px;
  --radius-card: 18px;
  --radius-cta:  28px;

  /* Globale Max-Content-Breite für alle Sections */
  --max-content-width: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  background: var(--color-navy);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: var(--tracking-tight);
  /* `clip` statt `hidden` – `hidden` würde den Sticky-Pin der Scrolly-Section
     unbrauchbar machen, weil ein scrollender Vorfahr Sticky deaktiviert. */
  overflow-x: clip;
}

img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; }

/* Skip-Link (Barrierearmut) */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--color-sunshine); color: var(--color-navy);
  font-weight: 700; padding: 12px 18px; border-radius: 10px;
  z-index: 200; transition: top 0.15s;
}
.skip-link:focus { top: 12px; }

/* Sichtbarer Fokus für alle interaktiven Elemente — Royal-Blue #2540F0 */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--color-royal-blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Placeholder-Farbe systemweit: Royal-Blue #2540F0 */
input::placeholder, textarea::placeholder { color: var(--color-royal-blue); opacity: 1; }

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

section { position: relative; width: 100%; }
.wrap { max-width: var(--max-content-width); margin: 0 auto; }

/* ---------- Shared bits ---------- */
/* Tagline / Eyebrow – global einheitlich auf Hero-Look:
   16 px Sofia Sans, Royal-Blue, letter-spacing 0.1em, 8 px Abstand zur Headline.
   Kein Dot mehr; Section-spezifische Farb-Overrides weiter unten bleiben gültig. */
.eyebrow {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-royal-blue);
  margin: 0 0 8px;
}
.bg-light .eyebrow { color: var(--color-royal-blue); }
/* Tagline auf dunkelblauem (Navy) Section-Hintergrund: immer Soft-Blue #92BAFF.
   Ausnahme: Eyebrows in Karten (z. B. .usp-card__tagline), die auf hellem
   Card-Background sitzen — die behalten Royal-Blue. */
.bg-navy .eyebrow:not(.usp-card__tagline),
.usp .eyebrow:not(.usp-card__tagline),
.scrolly-steps .eyebrow,
.faq .eyebrow { color: var(--color-soft-blue); }

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  font-style: normal;            /* Bold-Teil von Headlines NIE italic – nur em-Child */
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-wrap: balance; /* verhindert einsame Wörter / Wort-pro-Zeile */
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h1 em, h2 em, h3 em {
  display: block; font-style: italic; font-weight: 200;
  color: var(--color-sunshine);
}
.bg-light h1 em, .bg-light h2 em, .bg-light h3 em { color: var(--color-royal-blue); }

p {
  font-size: var(--fs-body);
  font-weight: 400;            /* USP-Card-Body-Style: Regular statt Light */
  line-height: 1.5;
  color: var(--color-soft-blue);
  margin: 0 0 1em;
  max-width: 58ch;
  letter-spacing: -0.005em;
}
.bg-light p { color: var(--color-navy); }
p.lead {
  font-size: var(--fs-lead);
  line-height: 1.4;
  max-width: 34ch;
  color: var(--color-soft-blue);
}
.bg-light p.lead { color: var(--color-navy); }
p b, p strong { color: var(--color-soft-blue); font-weight: 700; }
.bg-light p b, .bg-light p strong { color: var(--color-navy); }

/* ---------- Buttons (ui-kit.html) ---------- */
.btn {
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  font-size: 16px; letter-spacing: -0.015em;
  border: none; border-radius: var(--radius-pill);
  padding: 14px 28px; cursor: pointer;
  transition: transform 0.12s, background-color 0.15s, color 0.15s, box-shadow 0.15s;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary  { background: var(--color-royal-blue); color: var(--color-white); }
.btn-primary:hover { background: var(--color-royal-dark); }
.btn-sunshine { background: var(--color-sunshine); color: var(--color-navy); }
.btn-sunshine:hover {
  background: var(--color-sunshine-dk);
  transform: translateY(-2px);
}
.btn-sunshine:active { transform: translateY(0); }
.btn-outline  { background: transparent; color: var(--color-white); box-shadow: inset 0 0 0 1.5px var(--color-white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 18px 36px; font-size: 19px; }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1;
}
.pill-sunshine { background: var(--color-sunshine); color: var(--color-navy); }
.pill-sky      { background: var(--color-sky-blue); color: var(--color-navy); }
.pill-outline  { background: transparent; color: var(--color-soft-blue); box-shadow: inset 0 0 0 1.5px var(--color-line); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; justify-content: center;
  padding: 0 var(--gut);
  transition: transform 0.32s ease;
  will-change: transform;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: 100%; max-width: var(--max-content-width);
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s, margin 0.3s, border-radius 0.3s, box-shadow 0.3s, max-width 0.3s;
}
.nav .brand { display: inline-flex; align-items: center; }
.nav .brand img { height: clamp(42px, 3.8vw, 58px); width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); }
/* Text-Links (KEINE .btn) – IDENTISCH zum Hero-Textlink "So geht's":
   Sofia Sans italic, uppercase, letter-spacing 0.05em, navy,
   wachsender Sunshine-Unterstrich on Hover. */
.nav-links a:not(.btn) {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(15px, 1.1vw, 18px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative; padding: 0.3em 0;
  transition: color 0.2s;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--color-sunshine); transition: right 0.25s;
}
.nav-links a:not(.btn):hover::after { right: 0; }

/* CTA-Button in der Nav – IDENTISCH zum Hero-CTA: btn-lg + Hero-Override
   (siehe .hero-marketing__cta .btn-lg weiter unten, jetzt auf Nav ausgeweitet). */

/* Zustand TOP – oben, transparenter Nav-Hintergrund (Hero ist weiß), Navy Links */
.nav[data-state="top"] .nav-inner { background: transparent; }
.nav[data-state="top"] .nav-links a:not(.btn) { color: var(--color-navy); }

/* Zustand ISLAND – beim Hochscrollen: weiße Pille mit Schatten, Navy Links */
.nav[data-state="island"] .nav-inner {
  margin-top: 14px;
  padding: 20px 24px 20px 30px;
  background: var(--color-white);
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(0, 13, 101, 0.18);
}
.nav[data-state="island"] .nav-links a:not(.btn) { color: var(--color-navy); }

/* Zustand HIDDEN – beim Runterscrollen ausgeblendet */
.nav[data-state="hidden"] { transform: translateY(-130%); }

/* Phone-Nav: nur Logo + CTA-Button anzeigen – alle Text-Menüpunkte raus,
   damit Logo und CTA mehr Platz haben. CTA wird kompakter, damit der Text
   nie umbricht und der Button sauber in die Sticky-Nav passt. */
@media (max-width: 820px) {
  .nav-links .nav-text { display: none; }
  .nav-links .btn {
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;       /* "Sei auf zack" niemals umbrechen */
  }
  /* Falls jemand .btn-lg im Nav-Bereich nutzt: zurück auf kompakte Größe */
  .nav-links .btn-lg {
    padding: 10px 18px;
    font-size: 14px;
  }
  /* Island-State: gleicher kompakter Button, aber etwas mehr Padding der Pill außenrum */
  .nav[data-state="island"] .nav-inner {
    padding: 14px 16px 14px 20px;
  }
}

/* =========================================================
   HERO (Marketing) – Foto rechts, curved Shapes, Headline links.
   Mobile-First: Layout stapelt vertikal, Shapes ausgeblendet.
   Desktop (≥900px): exakte Figma-Komposition.
   ========================================================= */
.hero-marketing {
  position: relative;
  width: 100%;
  background: var(--color-white);
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  /* Top-Padding: GENÜGEND Weißraum, damit die Top-Nav sauber atmen kann
     und das Foto NIE die Navigation überdeckt oder berührt. */
  padding-top: clamp(130px, 11vw, 200px);
  /* Bottom-Padding für etwas Atmen unten */
  padding-bottom: clamp(40px, 4vw, 72px);
  color: var(--color-navy);
}

/* =========================================================
   HERO-IMAGE – fertige PNGs aus Figma, art-direction per <picture>.
   Desktop-Bild (1890 × 2160, aspect 0.875) und Mobile-Bild (750 × 790,
   aspect 0.949) haben unterschiedliche natürliche Proportionen, die pro
   Breakpoint strikt beibehalten werden. KEINE Stauchung.
   ========================================================= */
.hero-image {
  display: block;
  pointer-events: none;
}
.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

/* =========================================================
   Hero-Image im Hero-Marketing-Kontext platzieren.
   Frame sitzt FLUSH am rechten Viewport-Rand (right:0), Frame-Aspect
   strikt 945/1080 = 0.875. Höhe wird durch max-height begrenzt damit
   die Top-Nav nie überdeckt wird; daraus folgt die tatsächliche Breite.
   Das Sky-Blue Shape spillt 26.94 % nach rechts über den Frame, wird
   aber von .hero-marketing { overflow: hidden } am Viewport geclippt
   → "rechts angeschnitten".
   ========================================================= */
.hero-marketing .hero-image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  /* Frame-Aspect 945/1080 – wird strikt gehalten, KEINE Stauchung */
  aspect-ratio: 945 / 1080;
  /* Figma 1920-Canvas (245:1783): Frame 945 px breit = 49.22 % der Canvas.
     - 49.22 vw skaliert proportional bis 1920 px Viewport
     - Cap bei Figma-Naturalbreite (945 px) auf sehr breiten Displays
     - max-height verhindert, dass das Bild höher wird als der Viewport-Bereich
       unter der Nav. */
  width: min(49.22vw, 945px);
  height: auto;
  max-height: calc(100vh - 200px);
  z-index: 1;
}

/* Container – Mobile: Passthrough (display:contents).
   Desktop: positioned ancestor mit Max-Content-Breite 1280px, zentriert. */
.hero-marketing__container {
  display: contents;
}
@media (min-width: 900px) {
  .hero-marketing__container {
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-content-width);
    z-index: 4;
    pointer-events: none;
  }
}

/* Content links – auf der weißen Fläche platziert, vertikal zentriert */
.hero-marketing__content {
  position: relative;     /* Default mobile; auf Desktop wird's absolute */
  z-index: 4;
  padding: clamp(56px, 12vw, 96px) var(--gut) clamp(40px, 8vw, 64px);
  max-width: 643px;
  color: var(--color-navy);
}

.hero-marketing__eyebrow {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-royal-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.5;
}

.hero-marketing__title {
  font-family: var(--font-display);
  font-style: normal;     /* Bold-Teil aufrecht (globale Regel) */
  font-weight: 700;
  font-size: clamp(48px, 5.21vw, 110px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--color-navy);
  margin: 0 0 clamp(20px, 2.08vw, 40px);
  text-wrap: balance;
}
.hero-marketing__title em {
  display: block;
  font-style: italic;
  font-weight: 200;
  color: var(--color-royal-blue);
  font-size: inherit;
  line-height: inherit;
}

.hero-marketing__lead {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin: 0;
  max-width: 643px;
}

/* Hero CTA-Block: Sunshine-Button + Textlink rechts daneben */
.hero-marketing__cta {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 32px);
  margin-top: clamp(24px, 2.4vw, 40px);
  flex-wrap: wrap;
}
.hero-marketing__cta .btn-lg,
.nav-links .btn-lg {
  /* Etwas breiter und prominenter als Default – matched den Screenshot.
     Selektor auf Nav ausgeweitet, damit Nav-CTA und Hero-CTA identisch sind. */
  padding: 18px 40px;
  font-size: clamp(18px, 1.2vw, 22px);
}
.hero-marketing__textlink {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3em 0;
  transition: color 0.2s;
}
.hero-marketing__textlink::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--color-sunshine);
  transition: right 0.25s;
}
.hero-marketing__textlink:hover::after {
  right: 0;
}

/* Desktop (≥1280px) – Content absolut positioniert innerhalb des 1440er Wrappers
   (.hero-marketing__container, max-width: var(--max-content-width)).
   Der left-Wert bildet exakt das ab, was die anderen Sections via Section-Padding +
   .wrap erzeugen: Content startet bei max(--gut, (100vw - 1440px) / 2) – also --gut
   auf kleineren Viewports und bündig mit dem zentrierten 1440er Wrapper auf breiteren. */
@media (min-width: 1280px) {
  .hero-marketing__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: max(0px, calc(var(--gut) - max(0px, calc((100vw - var(--max-content-width)) / 2))));
    padding: 0;
    width: 643px;
    /* max-width: 45 % statt 50 % – garantiert auf jedem Desktop-Viewport (auch 1280 px)
       eine Lücke zum Hero-Image rechts. Text darf das Bild NIE berühren. */
    max-width: 45%;
    pointer-events: auto;
  }
}

/* Mobile / Tablet (<1280px) – Hero-Image oben, Text drunter. */
@media (max-width: 1279px) {
  .hero-marketing {
    background: var(--color-white);
    min-height: auto;
    /* Abstand zur Top-Nav: knapp halten – Logo/Button + etwas Luft, mehr nicht. */
    padding-top: clamp(104px, 17vw, 145px);
    padding-bottom: clamp(40px, 8vw, 80px);
  }

  /* Default (= Phone <768): hero-image-phone.png, aspect 1500/1283 ≈ 1.169.
     Etwas landscape – Handwerker mit Phone in der Rounded-Shape.
     Bild läuft jetzt full-width edge-to-edge, weil die neue Komposition breit
     aufgebaut ist und im Right-Anchor-Layout zu klein wirken würde. */
  .hero-marketing .hero-image {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: none;
    aspect-ratio: 1500 / 1283;   /* natürliches Aspect des Phone-PNGs */
    height: auto;
    max-height: none;
    margin: 0;                    /* edge-to-edge */
  }
  .hero-marketing .hero-image img {
    object-position: center;
  }

  /* Container/Content stack normal unter dem Photo, mit ordentlichem Margin */
  .hero-marketing__container {
    display: block;
    position: relative;
    width: 100%;
    margin-top: clamp(32px, 6vw, 56px);
  }
  .hero-marketing__content {
    position: relative;
    inset: auto;
    transform: none !important;
    width: 100%;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 var(--gut);
  }
  .hero-marketing__title {
    font-size: clamp(34px, 7vw, 52px);
  }
  .hero-marketing__lead {
    font-size: clamp(16px, 3.8vw, 20px);
  }
}

/* Tablet (768–1279px) – hero-image-tablet.png ist 16/9 (3200 × 1800) Landscape.
   Layout: Full-Width-Banner ganz oben, Text drunter. KEIN Right-Anchor mehr,
   sondern edge-to-edge über den ganzen Viewport. */
@media (min-width: 768px) and (max-width: 1279px) {
  .hero-marketing .hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;        /* natürliches Aspect des Tablet-PNGs */
    margin: 0;                    /* edge-to-edge */
  }
}

/* =========================================================
   HERO – Attention + Action (Wizard-Einstieg)
   ========================================================= */
.hero {
  background: var(--color-white);
  color: var(--color-navy);
  padding: calc(var(--vpad) + 70px) var(--gut) var(--vpad);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-content-width); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-content h1 { color: var(--color-navy); margin-bottom: 0.35em; }
.hero-content h1 em { color: var(--color-royal-blue); }
.hero-content .lead { color: var(--color-navy); }
.hero-trust {
  margin-top: clamp(20px, 2.4vw, 34px);
  display: flex; flex-wrap: wrap; gap: 10px 14px;
  list-style: none; padding: 0;
}
.hero-trust li {
  font-size: var(--fs-small); font-weight: 600; color: var(--color-navy);
  display: inline-flex; align-items: center; gap: 0.5em;
}
.hero-trust li::before {
  content: ""; width: 0.55em; height: 0.55em; border-radius: 50%;
  background: var(--color-royal-blue); flex-shrink: 0;
}

/* =========================================================
   WIZARD-SECTION – Action-Section mit Headline links + Wizard rechts.
   Mobile first: Headline oben, Wizard darunter.
   Ab 900 px: zwei Spalten, Headline links, Karte rechts.
   ========================================================= */
.wizard-section {
  background: var(--color-royal-blue);
  padding: var(--vpad) var(--gut);
  /* Beim Anker-Scroll soll die fixe Nav die Section nicht überdecken. */
  scroll-margin-top: clamp(80px, 8vw, 120px);
}
.wizard-section__inner {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  justify-items: stretch;
}
.wizard-section__copy {
  width: 100%;
}
.wizard-section__title {
  color: var(--color-white);
  margin: 0;
}
.wizard-section__title em {
  color: var(--color-sunshine);
}

@media (min-width: 900px) {
  .wizard-section__inner {
    /* Wizard mindestens 50% der Section-Content-Breite. */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    justify-items: stretch;
    align-items: center;
  }
  .wizard-section__copy { max-width: none; justify-self: start; }
  .wizard-section .wizard { justify-self: stretch; }
}

/* Wizard – schmale, mobil anmutende Step-Karte (kein Phone-Mockup)
   Alle Texte auf dem Navy-Background liegen einheitlich auf
   --color-soft-blue (#92BAFF). Eingabefelder weiß mit blauem Placeholder. */
.wizard {
  background: var(--color-navy);
  color: var(--color-soft-blue);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 34px 80px rgba(0,13,101,0.30);
  width: 100%; min-height: 640px;
  display: flex; flex-direction: column;
}
.wizard-top {
  display: flex; align-items: center; justify-content: flex-start;
  margin-bottom: 22px;
}
/* Progress-Label im Tagline/Eyebrow-Look */
.wizard-progress {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-soft-blue);
}
.wizard-progress b { color: var(--color-soft-blue); font-weight: 700; }

.wizard-form { display: flex; flex-direction: column; flex: 1; }
.wz-step { border: 0; margin: 0; padding: 0; min-width: 0; }
.wz-step[hidden] { display: none; }
.wz-step .wz-q {
  font-style: normal; font-weight: 700; line-height: 1.06;
  font-size: clamp(23px, 2.1vw, 31px); color: var(--color-white);
  padding: 0; margin: 0 0 0.5em; text-wrap: balance;
}
.wz-step .wz-help {
  font-size: var(--fs-body); line-height: 1.45;
  color: var(--color-soft-blue);
  margin: 0 0 14px;
}

/* Eingabefelder: weiß, Text dunkelblau, Placeholder Royal-Blue */
.wz-step textarea {
  font-family: var(--font-display);
  font-size: var(--fs-body); font-weight: 400; width: 100%;
  background: var(--color-white);
  border: 1.5px solid var(--color-white);
  border-radius: 12px; padding: 14px 18px;
  color: var(--color-navy);
  outline: none; min-height: 150px; resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wz-step textarea::placeholder { color: var(--color-royal-blue); opacity: 1; }
.wz-step textarea:hover { border-color: var(--color-soft-blue); }
.wz-step textarea:focus {
  border-color: var(--color-royal-blue);
  box-shadow: 0 0 0 3px rgba(37,64,240,0.35);
}

.wz-spacer { flex: 1; min-height: 18px; }
.wz-nav { display: flex; gap: 10px; align-items: center; margin-top: 18px; }
.wz-nav .btn { flex: 1; justify-content: center; }
.wz-back {
  background: transparent; color: var(--color-soft-blue); border: none;
  font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 15px;
  cursor: pointer; padding: 12px 8px; flex: 0 0 auto;
}
.wz-back:hover { color: var(--color-white); }
.wz-back[hidden], .wz-next[hidden], .wz-submit[hidden] { display: none; }
.wz-bar { height: 4px; background: rgba(146,186,255,0.20); border-radius: 999px; margin-top: 16px; overflow: hidden; }
.wz-bar span { display: block; height: 100%; width: 25%; background: var(--color-sunshine); border-radius: 999px; transition: width 0.3s ease; }
.wizard .below {
  margin: 12px 0 0;
  font-size: var(--fs-small);
  color: var(--color-soft-blue);
  text-align: center;
}

/* =========================================================
   Wizard – Done-Panel
   Erscheint nach Submit, zeichnet Check wie die Step-Numerals.
   ========================================================= */
.wizard.is-done .wizard-form,
.wizard.is-done .wizard-top { display: none; }

.wz-done {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: clamp(14px, 1.6vw, 22px);
  flex: 1;
}
.wz-done[hidden] { display: none; }

.wz-check {
  width: clamp(96px, 11vw, 140px);
  /* SVG-Aspect 184.795:165.673 */
  aspect-ratio: 184.795 / 165.673;
  color: var(--color-sunshine);
  margin-bottom: 4px;
}
.wz-check svg { width: 100%; height: 100%; display: block; overflow: visible; }
.wz-check__tick {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.wizard.is-done .wz-check__tick {
  animation: wzDrawStroke 1.1s cubic-bezier(.55,.08,.32,1) forwards;
}
@keyframes wzDrawStroke { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .wz-check__tick { stroke-dashoffset: 0 !important; animation: none !important; }
}

.wz-done__title {
  font-family: var(--font-display);
  font-weight: 700; font-style: normal;
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0; text-wrap: balance;
}
.wz-done__lead {
  font-size: var(--fs-body); line-height: 1.45;
  color: var(--color-soft-blue);
  margin: 0;
}
.wz-done__form {
  display: flex; flex-direction: column; gap: 12px;
  width: 100%;
  flex: 1;
}
/* Submit-Button bleibt unten an der gleichen Position wie der Weiter-Button. */
.wz-done__form .btn { margin-top: auto; }
.wz-done__form input[type="email"],
.wz-done__form input[type="tel"] {
  font-family: var(--font-display);
  font-size: var(--fs-body); font-weight: 400; width: 100%;
  background: var(--color-white);
  border: 1.5px solid var(--color-white);
  border-radius: 12px; padding: 14px 18px;
  color: var(--color-navy);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wz-done__form input[type="email"]:hover,
.wz-done__form input[type="tel"]:hover { border-color: var(--color-soft-blue); }
.wz-done__form input[type="email"]:focus,
.wz-done__form input[type="tel"]:focus {
  border-color: var(--color-royal-blue);
  box-shadow: 0 0 0 3px rgba(37,64,240,0.35);
}
.wz-done__form .btn { justify-content: center; }

@media (max-width: 900px) {
  .wizard { min-height: auto; }
}

/* =========================================================
   STEPS – Interest (Wie es funktioniert)
   ========================================================= */
.section-dark { background: var(--color-navy); padding: var(--vpad) var(--gut); }
.section-head { margin: 0 0 clamp(36px, 4vw, 64px); }
.section-head h2 { color: var(--color-white); margin-bottom: 0.4em; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.step {
  background: rgba(255,255,255,0.04); border: 1px solid var(--color-line);
  border-radius: var(--radius-card); padding: clamp(24px, 2.4vw, 36px);
}
.step .num {
  font-size: clamp(40px, 4.5vw, 76px); font-weight: 700; font-style: italic;
  color: var(--color-sunshine); line-height: 1; letter-spacing: -0.04em; margin-bottom: 0.3em;
}
.step h3 { color: var(--color-white); font-size: var(--fs-h3); margin-bottom: 0.4em; }
.step p { margin: 0; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   SCROLLY STEPS – 3 gepinnte Step-Panels (Scrollytelling)
   Mobile-first: gestapelt im Pin, vertikal lesbar.
   Desktop (≥900px): exakte Figma-Positionierung (1920×1080 Frame).
   ========================================================= */

/* Outer scrolly container – gibt den Scroll-Weg für 4 Panels (Intro + 3 Steps) */
.scrolly-steps {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  /* 4 Panels × 100vh Scroll-Weg pro Panel */
  height: 400vh;
}

/* Sticky Pin – bleibt während des Scrollens im Viewport stehen */
.scrolly-steps__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Progress-Bar am unteren Rand des Viewports – full-bleed, ohne Padding.
   Diskrete Stufen pro Step (Snap statt smooth continuous). */
.scrolly-steps__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}
.scrolly-steps__progress-fill {
  display: block;
  height: 100%;
  width: 0%;          /* via JS auf Step-Index gesetzt: 25/50/75/100% */
  background: var(--color-royal-blue);
  transition: width 0.5s cubic-bezier(.4, .0, .2, 1);
  will-change: width;
}

/* Jedes Panel füllt den Pin vollständig – alle 3 absolut gestapelt */
.step-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.step-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Numeral (SVG "1", "2", "3") – auf Navy: Sunshine ---- */
.step-panel__numeral {
  color: var(--color-sunshine);
  pointer-events: none;
}
.step-panel__numeral-stroke {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

/* ---- Phone (3 verschachtelte Layer: slot → rotate → img) ---- */
.step-panel__phone-slot {
  position: relative;
}
.step-panel__phone-rotate {
  position: absolute;
  inset: 0;
  transform: rotate(var(--rotate, 0deg));
  transform-origin: center center;
}
.step-panel__phone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Alle Phone-PNGs sind jetzt quadratisch (2160², 2435², 2227², 2791²)
     mit dem Phone tilted und zentriert. CONTAIN reicht – das Phone sitzt
     proportional im Slot, ohne dass etwas beschnitten wird. */
  object-fit: contain;
  object-position: center;
  /* Startzustand: unter dem Pin, transparent */
  transform: translate3d(0, 110%, 0);
  opacity: 0;
  will-change: transform, opacity;
  /* Sehr dezenter Schatten – Figma hat keinen, aber leichter Schatten gibt
     Tiefe ohne das Phone "fett" wirken zu lassen. */
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.20));
}

/* ---- Container (Max-Content-Wrapper) – Mobile: Passthrough ---- */
.step-panel__container {
  display: contents;
}

/* ---- Content (Titel + Lead) ---- */
.step-panel__content {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  will-change: transform, opacity;
}
.step-panel__title {
  font-family: var(--font-display);
  font-style: normal;            /* Bold-Teil von Headlines aufrecht */
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin: 0 0 0.55em;
  text-wrap: balance;
}
.step-panel__lead {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--color-soft-blue);
  margin: 0;
}
.step-panel__cta {
  display: inline-flex;
  margin-top: clamp(20px, 2.4vw, 32px);
  align-self: flex-start;
}

/* ---- Animations-Trigger über .is-active ---- */
.step-panel.is-active .step-panel__numeral-stroke--1 {
  animation: stepDrawStroke 1.0s cubic-bezier(.55,.08,.32,1) forwards;
}
.step-panel.is-active .step-panel__numeral-stroke--2 {
  animation: stepDrawStroke 0.35s 0.96s cubic-bezier(.55,.08,.32,1) forwards;
}
.step-panel.is-active .step-panel__phone {
  animation: stepPhoneSlideIn 0.95s 1.10s cubic-bezier(.2,.85,.25,1) forwards;
}
.step-panel.is-active .step-panel__content {
  animation: stepContentFadeIn 0.65s 1.85s cubic-bezier(.2,.7,.25,1) forwards;
}

@keyframes stepDrawStroke   { to { stroke-dashoffset: 0; } }
@keyframes stepPhoneSlideIn {
  0%   { transform: translate3d(0, 110%, 0); opacity: 0; }
  55%  { opacity: 1; }
  100% { transform: translate3d(0, 0, 0);    opacity: 1; }
}
@keyframes stepContentFadeIn { to { opacity: 1; transform: translate3d(0, 0, 0); } }

/* === MOBILE LAYOUT (default – kein Media-Query) =====================
   Mobile-First: Numeral als Hintergrund-Watermark, Phone groß davor,
   Text unter dem Phone. Alle 3 Elemente vertikal gestapelt.
*/
.step-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;          /* Text sitzt unten */
  padding: clamp(48px, 10vw, 80px) var(--gut) clamp(40px, 8vw, 64px);
  gap: clamp(20px, 4vw, 32px);
  overflow: hidden;                   /* clippt das spillende Phone */
}
/* Numeral als Hintergrund-Watermark, groß und links angedockt. */
.step-panel__numeral {
  position: absolute;
  top: 6%;
  left: 26%;
  transform: translateX(-50%);
  height: 50%;
  width: auto;
  z-index: 1;
}
/* Phone-Slot dominiert das Panel – riesiger quadratischer Slot, der
   am rechten Viewport-Rand verankert ist und horizontal überragt.
   Höhe = 78vh füllt fast die volle Pin-Höhe, das Phone (im Source
   ca. 60–85 % der Canvas) wird dadurch riesig. Unten bleibt Platz
   für Title + Lead; seitlicher Überstand wird vom Panel abgeschnitten. */
.step-panel__phone-slot {
  position: absolute;
  top: 4vh;
  right: 0;
  transform: translateX(18%);
  height: 62vh;
  width: auto;
  aspect-ratio: 1 / 1;
  z-index: 2;
}
/* Intro hat keine Zahl im Hintergrund → Phone zentriert statt rechts angedockt. */
.step-panel[data-step="intro"] .step-panel__phone-slot {
  right: 50%;
  transform: translateX(50%);
}
.step-panel__content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: left;
}
.step-panel__title {
  font-size: clamp(28px, 7vw, 44px);
}
.step-panel__lead {
  font-size: clamp(17px, 4.4vw, 22px);
  /* Text läuft über die volle Spalten-Breite, keine ch-Cap mehr. */
  max-width: none;
}

/* === DESKTOP LAYOUT (≥900px) =====================
   Pixelgenaue Figma-Frame-Position (1920×1080). Pin nimmt full viewport.
*/
@media (min-width: 900px) {
  .step-panel {
    display: block;
    padding: 0;
    /* Aspect ratio Frame 1920×1080. Im Pin (100vh) wird die maximale Höhe
       genutzt; bei zu schmalen Viewports wird Breite zur begrenzenden Größe. */
  }

  /* Numeral – pro Step eigene Figma-Position */
  .step-panel__numeral {
    position: absolute;
    height: 100%;
    width: auto;
    transform: none;
    top: 0;
    left: 0;
  }
  /* Step 1 "1": viewBox 525×1078, frame (50.5, -0.5) → 2.6% / 0% / aspectRatio 0.487 */
  .step-panel--1 .step-panel__numeral,
  .step-panel[data-step="1"] .step-panel__numeral {
    left: 2.6%;
    top: 0%;
    height: 99.8%;
  }
  /* Step 2 "2": viewBox 933×1172.62, frame (0.5, 7.7) → 0.03% / 0.71% / aspect 0.796 */
  .step-panel[data-step="2"] .step-panel__numeral {
    left: 0.03%;
    top: 0.7%;
    height: 100%;
  }
  /* Step 3 "3": viewBox 981×1075, frame (-246.5, 2.5) → -12.8% / 0.23% / aspect 0.913 */
  .step-panel[data-step="3"] .step-panel__numeral {
    left: -12.8%;
    top: 0.23%;
    height: 99.5%;
  }

  /* Phone-Slot: zentriert auf gemessener Phone-Bbox-Mitte (aus Figma-Render) */
  .step-panel__phone-slot {
    position: absolute;
    transform: translate(-50%, -50%);
    aspect-ratio: 1 / 1;
    pointer-events: none;
    /* Mobile-Werte zurücksetzen – Desktop steuert Position/Größe per Step. */
    max-width: none;
    margin: 0;
    height: auto;
  }
  /* Step 1: phone bbox center @ (35.23%, 49.54%), display width ≈ 56.5% panel */
  .step-panel[data-step="1"] .step-panel__phone-slot {
    left: 35.23%;
    top: 49.54%;
    width: 68%;
  }
  /* Step 2: bbox center @ (37.89%, 50.23%), Phone-Anteil etwas vergrößert */
  .step-panel[data-step="2"] .step-panel__phone-slot {
    left: 37.89%;
    top: 50.23%;
    width: 64%;
  }
  /* Step 3: bbox center @ (37.42%, 51.30%), display ≈ 53.0% */
  .step-panel[data-step="3"] .step-panel__phone-slot {
    left: 37.42%;
    top: 51.30%;
    width: 53.0%;
  }

  /* Intro: Phone größer und mit Top-Left-Anker statt Center.
     Figma: Container 1550x1550 bei left=-240, top=0 → left -12.5%, top 0, width 80.7% */
  .step-panel[data-step="intro"] .step-panel__phone-slot {
    left: -12.5%;
    top: 0;
    width: 80.7%;
    transform: none;             /* Override translate(-50%,-50%) – Top-Left-Anker */
  }

  /* Intro-Content: rechts im 1280-Container, vertikal etwas höher als Mitte */
  .step-panel[data-step="intro"] .step-panel__content {
    right: var(--gut);
    left: auto;
    top: 50%;
    width: 50%;
    max-width: 580px;
    /* translateY-Offset: -97/1080 = -9%; bleibt während Animation */
    transform: translateY(calc(-50% - 9%)) translate3d(0, 16px, 0);
  }
  .step-panel[data-step="intro"].is-active .step-panel__content {
    animation: stepIntroFadeInDesktop 0.65s 0.55s cubic-bezier(.2,.7,.25,1) forwards;
  }

  /* Content-Container: Max-Content-Breite 1280px, zentriert.
     Decoration (Numeral, Phone) bleeded weiter über die Panel-Breite, aber der Text-Content
     ist auf max. 1280px begrenzt. */
  .step-panel__container {
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-content-width);
    pointer-events: none;
    z-index: 3;
  }

  /* Text-Content rechts im 1280-Container, vertikal zentriert */
  .step-panel__content {
    position: absolute;
    right: var(--gut);
    top: 50%;
    width: 45%;
    max-width: 540px;
    transform: translateY(-50%) translate3d(0, 16px, 0);
    pointer-events: auto;
  }

  /* Desktop-Animation für Content braucht translateY(-50%) als Konstante */
  .step-panel.is-active .step-panel__content {
    animation: stepContentFadeInDesktop 0.65s 1.85s cubic-bezier(.2,.7,.25,1) forwards;
  }

  .step-panel__title {
    /* Figma: 81px @ 1920 ≈ 4.22vw */
    font-size: clamp(40px, 4.22vw, 90px);
    margin: 0 0 2.08vw;
  }
  .step-panel__lead {
    /* Figma: 48px @ 1920 ≈ 2.5vw */
    font-size: clamp(20px, 2.5vw, 52px);
    line-height: 1.2;
    max-width: none;
  }
}

@keyframes stepContentFadeInDesktop {
  to { opacity: 1; transform: translateY(-50%) translate3d(0, 0, 0); }
}

/* Intro: leichter Offset im translateY um Figma-Top-Position zu treffen */
@keyframes stepIntroFadeInDesktop {
  to { opacity: 1; transform: translateY(calc(-50% - 9%)) translate3d(0, 0, 0); }
}

/* Intro-Titel: matched das Problem-Section-Pattern (h2 + em, gleiche Größe,
   line-height 0.95, em als display:block in Sunshine ExtraLight Italic).
   Bold-Teil bleibt aufrecht (font-style: normal); nur em ist italic.
   Margin-Bottom wegnehmen, damit die zwei Zeilen tight aneinander stehen. */
.step-panel__title--intro {
  line-height: 0.95;
  font-style: normal;            /* Bold-Teil aufrecht – überschreibt evtl. Erbe */
  margin: 0;
}
.step-panel__title--intro em {
  display: block;
  font-style: italic;
  font-weight: 200;
  color: var(--color-sunshine);
  /* Größe + Line-Height vom Eltern-h2 erben */
  font-size: inherit;
  line-height: inherit;
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  .step-panel { transition: none !important; }
  .step-panel__numeral-stroke { stroke-dashoffset: 0 !important; animation: none !important; }
  .step-panel__phone { transform: translate3d(0,0,0) !important; opacity: 1 !important; animation: none !important; }
  .step-panel__content { transform: translate3d(0,0,0) !important; opacity: 1 !important; animation: none !important; }
  @media (min-width: 900px) {
    .step-panel__content { transform: translateY(-50%) translate3d(0,0,0) !important; }
  }
}

/* ---- Animationen ---- */
@keyframes stepDrawStroke {
  to { stroke-dashoffset: 0; }
}
@keyframes stepPhoneFlyIn {
  0%   { transform: translate3d(0, 120%, 0) rotate(-1deg); opacity: 0; }
  55%  { opacity: 1; }
  100% { transform: translate3d(0, 0, 0) rotate(-3deg); opacity: 1; }
}
@keyframes stepTextIn {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ---- Reduced motion: Endzustand zeigen, keine Bewegung ---- */
@media (prefers-reduced-motion: reduce) {
  .step-panel__numeral-stroke { stroke-dashoffset: 0 !important; animation: none !important; }
  .step-panel__phone          { transform: none !important; opacity: 1 !important; animation: none !important; }
  .step-panel__content        { transform: none !important; opacity: 1 !important; animation: none !important; }
}

/* =========================================================
   PROBLEM – Interest (PAS)
   ========================================================= */
.problem { background: var(--color-white); color: var(--color-navy); padding: var(--vpad) var(--gut); }
.problem .eyebrow { color: var(--color-royal-blue); }
.problem h2 { color: var(--color-navy); max-width: 26ch; margin-bottom: 0.5em; }
.problem h2 em { color: var(--color-royal-blue); }
.problem p { color: var(--color-navy); max-width: 52ch; }

/* =========================================================
   USP – Desire (Bento-Grid im Google-Chrome-Style, zack.online Look)
   Mobile-First: single column stack, jede Card mit eigener Farbe.
   Desktop (≥720px): 2-column Grid mit variierenden Kartenproportionen.
   ========================================================= */
.usp {
  background: var(--color-navy);
  padding: var(--vpad) var(--gut);
}
/* Direkt unter dem letzten USP-Element folgt das Mega-Marquee — Abstand halbieren. */
.usp + .mega { padding-top: clamp(20px, 3vw, 45px); }
.usp { padding-bottom: calc(var(--vpad) / 2); }

/* Grid: Mobile 1 Spalte (gestapelt), Desktop 2×2 – alle Karten gleich groß. */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 1.6vw, 24px);
  max-width: var(--max-content-width);
  margin: 0 auto;
}

@media (min-width: 720px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Einzelne USP-Karte – alle Karten WEISS auf navy Section-Hintergrund */
.usp-card {
  position: relative;
  border-radius: clamp(20px, 2.2vw, 32px);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 18px);
  min-height: clamp(280px, 26vw, 360px);
  overflow: hidden;
  transition: transform 0.25s ease;
  background: var(--color-white);
  color: var(--color-navy);
}
.usp-card:hover {
  transform: translateY(-2px);
}

/* Icon oben links – Majesticons via iconify-icon Web Component */
.usp-card__icon {
  width: clamp(44px, 3.6vw, 60px);
  height: clamp(44px, 3.6vw, 60px);
  margin: 0 0 clamp(8px, 1vw, 14px);
  color: var(--color-royal-blue);
  flex-shrink: 0;
  font-size: 0;
}
.usp-card__icon :is(svg, iconify-icon, img) {
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
}

/* Tagline – Royal Blue auf weißem Hintergrund */
.usp-card__tagline {
  margin: 0;
  color: var(--color-royal-blue);
}
.usp-card__tagline::before {
  background: var(--color-royal-blue);
}

/* Headline */
.usp-card__title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: currentColor;
  margin: 0;
  text-wrap: balance;
}

/* Body – globaler 18px Body-Style, volle Card-Breite */
.usp-card__body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: currentColor;
  opacity: 0.85;
  margin: 0;
  max-width: none;
}

/* =========================================================
   MEGA BAND – Desire-Verstärker
   ========================================================= */
.mega {
  background: var(--color-navy);
  padding: clamp(40px, 6vw, 90px) 0;
  overflow: hidden;
}
/* Marquee-Track: zwei identische Reihen nebeneinander, animiert von 0 auf -50%
   → nahtlose Endlos-Schleife von rechts nach links. */
.mega__track {
  display: flex;
  width: max-content;
  animation: megaMarquee 28s linear infinite;
  will-change: transform;
}
.mega__row {
  margin: 0;
  flex-shrink: 0;
  font-size: var(--fs-mega);
  font-weight: 700;
  font-style: italic;
  white-space: nowrap;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--color-royal-blue);
  padding-right: clamp(24px, 4vw, 80px);
}

@keyframes megaMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .mega__track { animation: none; }
}

/* =========================================================
   TRUST – Desire (Vertrauen)
   ========================================================= */
.trust { background: var(--color-white); color: var(--color-navy); padding: var(--vpad) var(--gut); }
.trust .eyebrow { color: var(--color-royal-blue); }
.trust h2 { color: var(--color-navy); max-width: 26ch; margin-bottom: 0.6em; }
.trust h2 em { color: var(--color-royal-blue); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); margin-top: clamp(28px, 3vw, 48px); }
.trust-card { background: var(--color-sky-blue); border-radius: var(--radius-card); padding: clamp(22px, 2.2vw, 32px); }
.trust-card .big { font-size: clamp(28px, 3vw, 48px); font-weight: 700; font-style: normal; color: var(--color-navy); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.3em; }
.trust-card p { color: var(--color-navy); margin: 0; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ – Einwände
   ========================================================= */
.faq { background: var(--color-white); color: var(--color-navy); padding: var(--vpad) var(--gut); }
.faq .wrap { max-width: 820px; }
.faq h2 { color: var(--color-navy); margin-bottom: clamp(28px, 3vw, 48px); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid rgba(0,13,101,0.15); }
.faq-item:last-child { border-bottom: 1px solid rgba(0,13,101,0.15); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: clamp(20px, 2vw, 28px) 0;
  font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; font-style: normal;
  color: var(--color-navy); display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
/* Plus-Icon im royalblauen Kreis rechts */
.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(32px, 2.4vw, 40px);
  height: clamp(32px, 2.4vw, 40px);
  border-radius: 50%;
  background-color: var(--color-royal-blue);
  background-image:
    linear-gradient(var(--color-white), var(--color-white)),
    linear-gradient(var(--color-white), var(--color-white));
  background-size: 45% 2px, 2px 45%;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.25s ease, background-size 0.25s ease;
}
.faq-item[open] summary::after {
  /* Vertikalen Strich ausblenden → Minus, plus 180° als kleine Geste */
  background-size: 45% 2px, 0 0;
  transform: rotate(180deg);
}
.faq-item .answer { padding: 0 0 clamp(22px, 2.2vw, 30px); }
.faq-item .answer p { margin: 0; color: var(--color-navy); }

/* =========================================================
   FINAL CTA – Action
   ========================================================= */
.cta-final { background: var(--color-sunshine); color: var(--color-navy); padding: var(--vpad) var(--gut); text-align: center; }
.cta-final h2 { color: var(--color-navy); margin: 0 auto 0.5em; max-width: 24ch; }
.cta-final h2 em { color: var(--color-royal-blue); }
.cta-final p { color: var(--color-navy); margin: 0 auto 1.8em; max-width: 46ch; }
.cta-final .btn-primary { background: var(--color-navy); }
.cta-final .btn-primary:hover { background: var(--color-royal-blue); }

/* =========================================================
   LEGAL PAGES (Impressum, Datenschutz)
   Weißer Hintergrund, navy Text, royal-blue Akzent-Headlines.
   Mobile-First.
   ========================================================= */
.legal-page {
  background: var(--color-white);
  color: var(--color-navy);
  padding: clamp(120px, 14vw, 200px) var(--gut) clamp(60px, 8vw, 120px);
}
.legal-page__wrap {
  max-width: 820px;
  margin: 0 auto;
}
.legal-page .eyebrow {
  color: var(--color-royal-blue);
}
.legal-page .eyebrow::before {
  background: var(--color-royal-blue);
}
.legal-page h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--color-navy);
  margin: 0 0 clamp(28px, 3vw, 48px);
  text-wrap: balance;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin: clamp(40px, 5vw, 72px) 0 clamp(14px, 1.4vw, 20px);
}
.legal-page h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-navy);
  margin: clamp(28px, 3vw, 40px) 0 clamp(10px, 1vw, 14px);
}
.legal-page h4 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.25;
  color: var(--color-navy);
  margin: clamp(24px, 2.4vw, 32px) 0 clamp(8px, 0.8vw, 12px);
}
.legal-page p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--color-navy);
  margin: 0 0 1em;
  max-width: 72ch;
  letter-spacing: -0.005em;
}
.legal-page strong, .legal-page b {
  font-weight: 700;
  color: var(--color-navy);
}
.legal-page ul, .legal-page ol {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--color-navy);
}
.legal-page ul li, .legal-page ol li {
  margin-bottom: 0.55em;
}
.legal-page a {
  color: var(--color-royal-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.15s;
}
.legal-page a:hover {
  color: var(--color-royal-dark);
}
.legal-page__contact {
  background: rgba(37, 64, 240, 0.06);
  border-left: 3px solid var(--color-royal-blue);
  padding: clamp(20px, 2.4vw, 32px);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  margin: clamp(20px, 2.4vw, 32px) 0 clamp(32px, 4vw, 56px);
}
.legal-page__contact p {
  margin-bottom: 0.4em;
}
.legal-page__contact p:last-child {
  margin-bottom: 0;
}
.legal-page__divider {
  border: 0;
  border-top: 1px solid rgba(0, 13, 101, 0.12);
  margin: clamp(40px, 5vw, 72px) 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--color-navy); padding: clamp(48px, 6vw, 88px) var(--gut) clamp(28px, 3vw, 40px); border-top: 1px solid var(--color-line); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; align-items: flex-start; }
.footer .brand img { height: clamp(42px, 3.8vw, 58px); width: auto; display: block; }
.footer-links { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 48px); }
.footer-links nav { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--color-soft-blue); text-decoration: none; font-size: var(--fs-body); }
.footer-links a:hover { color: var(--color-white); }

/* Mobile (Phone-Ansicht): Logo linksbündig, Links zweispaltig darunter. */
@media (max-width: 720px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(28px, 6vw, 40px);
  }
  .footer .brand { display: flex; justify-content: flex-start; width: 100%; }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px clamp(24px, 6vw, 40px);
    width: 100%;
    max-width: 420px;
    justify-items: start;
  }
}
.footer-bottom {
  margin-top: clamp(36px, 4vw, 56px); padding-top: 24px; border-top: 1px solid var(--color-line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: var(--fs-small); color: var(--color-soft-blue); opacity: 0.8;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
