/* =============================================================
   GASSNER CONSULTING – Premium Website Stylesheet
   Version 2.0 | Dark Theme | Studio Interrobang
   ============================================================= */

/* ── Montserrat: lokal gehostet, Variable Font (kein Google Fonts) ── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('Asset/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
}

/* ── Custom Cursor (Desktop only) ───────────────────────────── */
@media (pointer: fine) {
  *, *::before, *::after {
    cursor: url('Asset/cursor.svg') 16 16, auto !important;
  }
}
/* Fallback für Nicht-Desktop (kein Override) */
*, *::before, *::after {
  cursor: url('Asset/cursor.svg') 16 16, auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── HTML/Body Basis ─────────────────────────────────────────── */
/* iOS Safari Safe Area: html-Hintergrund verhindert weißen Streifen
   über der Navigation, da iOS die Safe Area mit html-bg rendert.   */
html {
  background-color: #0D0D0D;
  -webkit-text-size-adjust: 100%;
}

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --accent:         #EB5E34;
  --accent-dark:    #c94a23;
  --accent-glow:    rgba(235, 94, 52, 0.18);

  /* Dark palette */
  --bg:             #0D0D0D;
  --bg-2:           #111111;
  --bg-3:           #161616;
  --bg-card:        #1A1A1A;
  --bg-card-2:      #202020;

  --white:          #FFFFFF;
  --black:          #0D0D0D;

  --border:         rgba(255,255,255,0.08);
  --border-accent:  rgba(235, 94, 52, 0.25);

  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted:     rgba(255,255,255,0.30);
  --text-subtle:    rgba(255,255,255,0.18);

  /* Legacy vars for compat */
  --gray-light:     #222222;
  --gray-mid:       #444444;
  --gray-text:      rgba(255,255,255,0.55);
  --gray-dark:      #1A1A1A;
  --gray-section:   #111111;

  --font: 'Montserrat', sans-serif;

  --size-xs:   0.75rem;
  --size-sm:   0.875rem;
  --size-base: 1rem;
  --size-md:   1.125rem;
  --size-lg:   1.375rem;
  --size-xl:   1.75rem;
  --size-2xl:  2.25rem;
  --size-3xl:  3rem;
  --size-4xl:  3.75rem;
  --size-5xl:  5rem;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semi:    600;
  --weight-bold:    700;
  --weight-black:   900;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 16px 64px rgba(0,0,0,0.5);
  --shadow-xl:  0 24px 80px rgba(0,0,0,0.6);
  --shadow-accent: 0 8px 32px rgba(235,94,52,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1280px;
  --section-padding: 120px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip; /* Verhindert horizontales Scrollen — clip statt hidden, damit position:sticky funktioniert */
  background-color: #FFFFFF; /* Hintergrund hinter Pull-to-Refresh und Safe Area immer weiß */
}

body {
  font-family: var(--font);
  font-weight: var(--weight-regular);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip; /* clip statt hidden — verhindert horizontales Scrollen ohne Scroll-Container */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); border: none; background: none; }

/* ── Typography ─────────────────────────────────────────────── */
/*
   Typografie-Hierarchie:
   .display   → große Hero-/Page-Headlines   (5xl, black, -0.03em)
   .h1        → Haupt-Seitenheadlines        (4xl, bold,  -0.025em)
   .h2        → Section-Headlines            (3xl, bold,  -0.02em)
   .h3        → Sub-Section / Card-Titles    (xl,  bold,  -0.01em)
   .h4        → Karten-Labels / Akkord.      (lg,  semi,  0)
   .lead      → Intro-Texte / Sub-Headlines  (md,  regular, 0)
   body text  → var(--size-sm), 1.65–1.75 lh
   .ty-label  → Eyebrow-Texte (ohne Linie)   (xs,  bold,  0.12em, uppercase)
*/

.display {
  font-size: clamp(2.5rem, 5vw, var(--size-5xl));
  font-weight: var(--weight-black);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.h1 {
  font-size: clamp(2rem, 3.5vw, var(--size-4xl));
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.h2 {
  font-size: clamp(1.75rem, 2.8vw, var(--size-3xl));
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.h3 {
  font-size: clamp(1.25rem, 1.8vw, var(--size-xl));
  font-weight: var(--weight-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.h4 { font-size: var(--size-lg); font-weight: var(--weight-semi); line-height: 1.3; margin-bottom: 12px; }

.lead {
  font-size: clamp(1rem, 1.2vw, var(--size-md));
  font-weight: var(--weight-regular);
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Eyebrow ohne dekorative Linie (Seitenheader, Karten) */
.ty-label {
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  display: block;
}

.accent-text { color: var(--accent); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section { padding: var(--section-padding) 0; }
.section--gray { background: var(--bg-2); }
.section--dark { background: var(--bg); }
.section--dark-soft { background: var(--bg-3); }
.section--card { background: var(--bg-3); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

.section-header { max-width: 720px; margin: 0 auto 72px; text-align: center; }
.section-header--left { text-align: left; margin: 0 0 72px; }

/* Zweispaltiger Abschnitts-Header: Headline links, Begleittext rechts, Unterkante bündig */
.section-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;     /* Unterkante Begleittext = Unterkante Headline */
  margin-bottom: 64px;
}
.section-header-sub {
  padding-top: 0;
  margin-top: 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.section-eyebrow span {
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-eyebrow--dark span { color: var(--accent); }

/* Case-Study-Labels (Herausforderung / Lösung / Ergebnis) */
.ref-label {
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

/* Case-Study-Tag (Pill) */
.case-tag {
  display: inline-flex;
  padding: 5px 14px;
  background: rgba(235,94,52,0.08);
  border-radius: 100px;
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  color: var(--accent);
  margin-bottom: 20px;
  width: fit-content;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: var(--size-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-secondary--white {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-secondary--white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-lg { padding: 20px 40px; font-size: var(--size-sm); }

.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Navigation ─────────────────────────────────────────────── */
/* Safe Area Cover – Desktop: füllt nur den Notch/Dynamic-Island-Streifen weiß.
   Mobile (≤1100px): wird zum frosted-glass Backdrop, der von oben bis unter die
   Pill-Nav reicht (Override im 1100px-Block). */
#safe-area-cover {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: env(safe-area-inset-top, 0px);
  background: #FFFFFF;
  z-index: 9999;
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0D0D0D;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding-top: env(safe-area-inset-top, 0px);
}

.nav.scrolled {
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
}

/* Logo – single img, src-Swap per JS */
.nav__logo { display: block; }

/* 3-spaltig: Logo links | Links zentriert | Button rechts */
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  padding: 0 48px;
}

.nav__logo-wrap { display: flex; align-items: center; }
.nav__logo { height: 30px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0; padding: 0;
}

.nav__link {
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
  color: #FFFFFF;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
/* Animierter oranger Unterstrich */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link:hover  { color: #FFFFFF; }
.nav__link.active { color: #FFFFFF; }
.nav.scrolled .nav__link        { color: rgba(0,0,0,0.45); }
.nav.scrolled .nav__link:hover  { color: rgba(0,0,0,0.85); }
.nav.scrolled .nav__link.active { color: rgba(0,0,0,0.85); }

.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #FFFFFF;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(235, 94, 52, 0.45), 0 0 6px rgba(235, 94, 52, 0.25);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.nav__cta-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(235, 94, 52, 0.6), 0 0 10px rgba(235, 94, 52, 0.35);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: #FFFFFF;
  border-radius: 1px;
  transform-origin: center;
  transition: background 0.3s, transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
}
.nav.scrolled .nav__hamburger span { background: #0D0D0D; }

/* Hamburger → X animation (kein JS nötig – via aria-expanded) */
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: calc(64px + env(safe-area-inset-top)); left: 0; right: 0;
  background: #0D0D0D;
  padding: 32px 48px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 999;
}
.nav__mobile-menu.open { transform: translateY(0); }
.nav__mobile-links { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.nav__mobile-link { font-size: var(--size-lg); font-weight: var(--weight-semi); color: #FFFFFF; }

/* ══════════════════════════════════════════════════
   HERO — Vollbild-Video · Inhalt als Overlay linksbündig
   ══════════════════════════════════════════════════ */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #0D0D0D;
}

/* Video füllt gesamten Hintergrund */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #1E1E1E 0%, #0D0D0D 55%, #111 100%);
}
.hero__video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 68% 45%, rgba(235,94,52,0.07) 0%, transparent 55%);
}
/* Seichte Transparenz: links dunkel (Text lesbar) · rechts subtil */
.hero__video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.44) 45%, rgba(0,0,0,0.18) 100%),
    linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 42%);
}

/* Overlay-Inhalt: zentriert im sicheren Bereich (unter Nav, über Melanie-Karte) */
.hero__content {
  position: absolute;
  top: 80px; /* unter der Nav */
  left: 0; right: 0;
  bottom: 180px; /* Raum für Melanie-Karte + Audio-Toggle, verhindert Überlappung */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  pointer-events: none; /* Klicks auf Videofläche durchlassen */
}
.hero__panel {
  pointer-events: all;
}

/* Halbtransparenter Rahmen, bündig am linken Rand */
.hero__panel {
  width: clamp(340px, 46%, 590px);
  padding: 52px 56px 52px 48px;
  background: rgba(6,6,6,0.58);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-right: 30px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px 8px 8px 12px;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1.6;
}

.hero__headline {
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  font-weight: var(--weight-black);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  hyphens: none;
  -webkit-hyphens: none;
}
.hero__headline .line { display: block; }
.hero__headline .line + .line { margin-top: 0.6em; }
.hero__headline .line--accent { color: var(--accent); }

.hero__sub {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  margin-bottom: 36px;
}

.hero__panel .btn-group {
  gap: 12px;
  flex-direction: column;
}
.hero__panel .btn-group .btn {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  white-space: normal;
  font-size: clamp(11px, 1.1vw, var(--size-sm));
  padding: clamp(14px, 1.6vw, 20px) clamp(20px, 2.5vw, 40px);
}

/* Controls-Wrapper: Melanie-Karte rechts, über dem Ton-Button (50px Toggle + 10px Gap + 28px Bottom) */
.hero__controls {
  position: absolute;
  bottom: 88px;
  right: 28px;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  z-index: 4;
}
/* Audio-Toggle: zentriert unten im Hero */
.hero__video-bg .hero__audio-toggle {
  position: absolute;
  bottom: 40px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__melanie-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 14px;
  background: rgba(8,8,8,0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.hero__melanie-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(235,94,52,0.45);
  overflow: hidden;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.hero__melanie-name {
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.9); line-height: 1.3;
}
.hero__melanie-role {
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 2px; line-height: 1.3;
}

/* Ton-Toggle Button — groß und präsent */
.hero__audio-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px 16px 22px;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  z-index: 4;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: none;
}
.hero__audio-toggle:hover {
  /* kein translateY — Button bleibt an Ort, nur leicht größer */
}
/* Ton an (stumm) → orange, auffällig */
.hero__audio-toggle.is-muted {
  background: var(--accent);
  box-shadow: 0 4px 24px rgba(235,94,52,0.55);
  border-color: rgba(255,255,255,0.2);
}
.hero__audio-toggle.is-muted:hover {
  background: #c94428;
  box-shadow: 0 6px 28px rgba(235,94,52,0.65);
}
/* Hover im Hero: zentrierte Position beibehalten, nur leicht skalieren */
.hero__video-bg .hero__audio-toggle:hover {
  transform: translateX(-50%) scale(1.05);
}

/* ── Hero: Play-Button ──────────────────────────────────────── */
.hero__play-btn {
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 28px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.hero__play-btn:hover {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 32px rgba(235,94,52,0.5);
}
/* (Ton-Toggle Position: bereits oben definiert) */

/* Legacy-Hilfsklassen (andere Seiten) */
.placeholder-label {
  font-size: var(--size-xs);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.placeholder-icon {
  width: 52px; height: 52px;
  border: 1.5px dashed rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.16);
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 0 16px;
}
.trust-item + .trust-item { border-left: 1px solid var(--border); }

.trust-number {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: var(--weight-black);
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.trust-label {
  font-size: var(--size-xs);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
/* "bis zu" klein inline vor der Zahl */
.trust-number-prefix {
  font-size: 0.48em;
  font-weight: var(--weight-medium);
  color: var(--text-muted);
  vertical-align: middle;
  margin-right: 3px;
  letter-spacing: 0.02em;
}

/* ── Problem Section ────────────────────────────────────────── */
.problem-section {
  background: var(--bg-2);
  padding: var(--section-padding) 0;
  color: var(--white);
}

.problem__headline {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: var(--weight-black);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.problem__headline em { font-style: normal; color: var(--accent); }
.problem__sub { font-size: var(--size-md); color: var(--text-secondary); max-width: 480px; line-height: 1.7; }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.problem-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  /* Flex-Column: alle Karten gleiche innere Struktur, Text füllt Rest */
  display: flex;
  flex-direction: column;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.problem-card:hover {
  background: var(--bg-card);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.problem-card:hover::before { transform: scaleX(1); }

.problem-card__number { display: none; } /* ersetzt durch __tag */

.problem-card__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start; /* verhindert Strecken auf volle Kartenbreite */
  gap: 6px;
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(235,94,52,0.15);
  border: 1px solid rgba(235,94,52,0.35);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.problem-card__title { font-size: var(--size-base); font-weight: var(--weight-bold); color: var(--white); line-height: 1.3; margin-bottom: 12px; }
.problem-card__text { font-size: var(--size-sm); color: var(--text-secondary); line-height: 1.65; flex: 1; }

.problem__conclusion {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;   /* Unterkante Sub-Text = Unterkante Headline */
}
.problem__conclusion-text {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: var(--weight-bold);
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.problem__conclusion-text em { font-style: normal; color: var(--accent); }
.problem__conclusion-sub { font-size: var(--size-md); color: var(--text-secondary); line-height: 1.7; }

/* ── Melanie Section ────────────────────────────────────────── */
.melanie-section { padding: var(--section-padding) 0; background: var(--bg); }

/* Portrait-Spalte startet oben bündig mit Eyebrow */
.melanie-section .grid-2 { align-items: start; }

.melanie__portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  will-change: transform;
}

.melanie__quote {
  font-size: clamp(1.4rem, 1.7vw, 1.65rem);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.melanie__quote em { font-style: normal; color: var(--accent); }

.melanie__story p { font-size: var(--size-md); line-height: 1.75; color: var(--text-secondary); margin-bottom: 20px; }
.melanie__story p:last-child { margin-bottom: 0; }

.melanie__timeline { margin: 48px 0; display: flex; flex-direction: column; gap: 0; }

.melanie__timeline-item { display: flex; gap: 24px; padding-bottom: 32px; position: relative; }
.melanie__timeline-item:last-child { padding-bottom: 0; }

.melanie__timeline-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.melanie__timeline-dot { width: 12px; height: 12px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.melanie__timeline-connector { width: 2px; background: var(--border); flex: 1; margin-top: 6px; }
.melanie__timeline-item:last-child .melanie__timeline-connector { display: none; }

.melanie__timeline-role { font-size: var(--size-sm); font-weight: var(--weight-bold); color: var(--white); margin-bottom: 4px; }
.melanie__timeline-desc { font-size: var(--size-sm); color: var(--text-secondary); line-height: 1.5; }

.melanie__insight {
  background: rgba(235,94,52,0.06);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin-top: 40px;
}
.melanie__insight-title { font-size: var(--size-xs); font-weight: var(--weight-bold); color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.melanie__insight-text { font-size: var(--size-md); font-weight: var(--weight-semi); color: var(--white); line-height: 1.55; }

/* ── Services Section ───────────────────────────────────────── */
.services-section { padding: var(--section-padding) 0; background: var(--bg-2); }

.service-card {
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__phase {
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__phase::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
}
.service-card__title { font-size: var(--size-lg); font-weight: var(--weight-bold); color: var(--white); line-height: 1.3; margin-bottom: 16px; letter-spacing: -0.01em; }
.service-card__text { font-size: var(--size-sm); color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.service-card__link {
  font-size: var(--size-sm);
  font-weight: var(--weight-bold);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 12px; }

.services__conclusion {
  margin-top: 72px;
  padding: 56px 64px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.services__conclusion-text { font-size: clamp(1.25rem, 1.8vw, 1.75rem); font-weight: var(--weight-bold); color: var(--white); line-height: 1.35; }
.services__conclusion-text em { font-style: normal; color: var(--accent); }

/* ── Journey / Timeline ─────────────────────────────────────── */
.journey-section { padding: var(--section-padding) 0; background: var(--bg); overflow: hidden; }

.journey__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}
.journey__timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.journey-step { position: relative; z-index: 1; padding: 0 24px; text-align: center; }

.journey-step__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  font-weight: var(--weight-black);
  color: var(--text-muted);
  transition: var(--transition);
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

.journey-step.active .journey-step__circle {
  background: var(--accent);
  border-color: var(--accent);
  /* Pulsierender Ring via ::before / ::after */
  position: relative;
}
.journey-step.active .journey-step__circle::before,
.journey-step.active .journey-step__circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: pulse-ring 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.journey-step.active .journey-step__circle::after {
  animation-delay: 0.8s;
}
.journey-step.active .journey-step__circle {
  color: var(--white);
}
/* Schritt 1 als klickbarer Link */
a.journey-step__circle--link {
  display: flex;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.journey-step__circle--link:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(235,94,52,0.18), 0 8px 24px rgba(235,94,52,0.25);
}

.journey-step__number { display: block; font-size: var(--size-xs); font-weight: var(--weight-bold); color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.journey-step__title { font-size: var(--size-md); font-weight: var(--weight-bold); color: var(--white); margin-bottom: 12px; }
.journey-step__text { font-size: var(--size-sm); color: var(--text-secondary); line-height: 1.65; }

/* ── Numbers / Results (animated) ──────────────────────────── */
.numbers-section { padding: var(--section-padding) 0; background: var(--bg-2); color: var(--white); }

/* Main stat card */
.numbers__main-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}

.numbers__main-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(235,94,52,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.number-stat {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.number-stat:last-child { border-right: none; }

/* Kontextzeile (statisch, z.B. "bis zu" oder "Ø") */
.number-stat__context {
  font-size: var(--size-xs);
  font-weight: var(--weight-medium);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  min-height: 1.4em;
}

/* Großer animierter Zahlenwert */
.number-stat__big {
  font-size: clamp(2.4rem, 3.8vw, 3.75rem);
  font-weight: var(--weight-black);
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.number-stat__counter {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}

/* Beschriftung – statisch, animiert nicht */
.number-stat__label {
  font-size: var(--size-xs);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* Legacy – nicht mehr verwendet */
.number-stat__value { display: none; }
.number-stat__bis-zu { display: none; }
.number-stat__suffix { display: none; }

/* Feature cards below stats */
.numbers__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.numbers__feature-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.numbers__feature-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card);
  transform: translateY(-3px);
}

.numbers__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(235,94,52,0.1);
  border: 1px solid rgba(235,94,52,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.numbers__feature-title {
  font-size: var(--size-base);
  font-weight: var(--weight-bold);
  color: var(--white);
  margin-bottom: 8px;
}

.numbers__feature-text {
  font-size: var(--size-sm);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Gassner Effect icon animations ── */
/* 1. Pulse — draws left to right */
.numbers__feature-card:hover .anim-pulse {
  animation: icon-draw-pulse 0.65s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes icon-draw-pulse {
  from { stroke-dasharray: 47; stroke-dashoffset: 47; }
  to   { stroke-dasharray: 47; stroke-dashoffset: 0; }
}
/* 2. Dollar — S first, then vertical line top-to-bottom */
.numbers__feature-card:hover .anim-dollar-s {
  animation: icon-draw-s 0.45s cubic-bezier(0.4,0,0.2,1) both;
}
.numbers__feature-card:hover .anim-dollar-line {
  animation: icon-draw-line 0.3s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}
@keyframes icon-draw-s {
  from { stroke-dasharray: 45; stroke-dashoffset: 45; }
  to   { stroke-dasharray: 45; stroke-dashoffset: 0; }
}
@keyframes icon-draw-line {
  from { stroke-dasharray: 22; stroke-dashoffset: 22; }
  to   { stroke-dasharray: 22; stroke-dashoffset: 0; }
}
/* 3. Process — inner circle draws, then outer arcs flash twice */
.numbers__feature-card:hover .anim-proc-inner {
  animation: icon-draw-circle 0.35s cubic-bezier(0.4,0,0.2,1) both;
}
.numbers__feature-card:hover .anim-proc-outer {
  animation: icon-flash-outer 0.65s ease-out 0.28s both;
}
@keyframes icon-draw-circle {
  from { stroke-dasharray: 19; stroke-dashoffset: 19; }
  to   { stroke-dasharray: 19; stroke-dashoffset: 0; }
}
@keyframes icon-flash-outer {
  0%   { opacity: 0; }
  25%  { opacity: 1; }
  50%  { opacity: 0.05; }
  75%  { opacity: 1; }
  100% { opacity: 1; }
}

/* Legacy numbers grid (kept for compatibility) */
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.number-item { background: var(--bg-3); padding: 56px 40px; text-align: center; transition: var(--transition); }
.number-item:hover { background: var(--bg-card); }
.number-item__prefix { font-size: var(--size-xs); font-weight: 600; color: var(--text-secondary); letter-spacing: 0.06em; text-transform: lowercase; margin-bottom: 4px; min-height: 1.4em; }
.number-item__value { font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: var(--weight-black); color: var(--accent); line-height: 1; letter-spacing: -0.04em; margin-bottom: 12px; }
.number-item__label { font-size: var(--size-sm); font-weight: var(--weight-medium); color: var(--text-secondary); line-height: 1.5; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section { padding: var(--section-padding) 0; background: var(--bg); }

/* Grid: now wraps testimonial-with-video combos */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }

/* Kombikarte: Testimonial + dazugehöriges Video */
.testimonial-with-video {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.testimonial-with-video .testimonial-card {
  border-radius: var(--radius-lg);
  flex: 1;
}
.testimonial-card__studio-name {
  font-size: var(--size-lg);
  font-weight: var(--weight-black);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.testimonial-video {
  background: rgba(235,94,52,0.06);
  border: 1px solid rgba(235,94,52,0.18);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.testimonial-video:hover {
  background: rgba(235,94,52,0.12);
  border-color: rgba(235,94,52,0.35);
}
.testimonial-video__play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-video__label {
  font-size: var(--size-xs);
  font-weight: var(--weight-semi);
  color: var(--accent);
  letter-spacing: 0.04em;
}

.testimonial-card {
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote-icon { font-size: 2.5rem; line-height: 1; color: var(--accent); opacity: 0.25; margin-bottom: 20px; font-family: Georgia, serif; }

.testimonial-card__result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(235,94,52,0.1);
  border: 1px solid rgba(235,94,52,0.2);
  border-radius: 100px;
  margin-bottom: 20px;
}
.testimonial-card__result-text { font-size: var(--size-xs); font-weight: var(--weight-bold); color: var(--accent); letter-spacing: 0.06em; }

.testimonial-card__text { font-size: var(--size-sm); color: var(--text-secondary); line-height: 1.75; flex: 1; margin-bottom: 28px; }

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  color: var(--text-muted);
}
.testimonial-card__name { font-size: var(--size-sm); font-weight: var(--weight-bold); color: var(--white); margin-bottom: 2px; }
.testimonial-card__company { font-size: var(--size-xs); color: var(--text-muted); }

/* Video Placeholders */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.video-placeholder:hover { border-color: var(--border-accent); transform: scale(1.02); }

.video-placeholder__play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(235,94,52,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.video-placeholder:hover .video-placeholder__play {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(235,94,52,0.15);
}

.play-icon { width: 0; height: 0; border-style: solid; border-width: 9px 0 9px 18px; border-color: transparent transparent transparent white; margin-left: 4px; }
.video-placeholder__label { font-size: var(--size-xs); font-weight: var(--weight-semi); color: var(--text-muted); letter-spacing: 0.06em; }

/* ── Why Us ─────────────────────────────────────────────────── */
.why-section { padding: var(--section-padding) 0; background: var(--bg-2); }

.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why__features { display: flex; flex-direction: column; gap: 28px; }

.why-feature { display: flex; gap: 20px; align-items: flex-start; }

.why-feature__icon {
  width: 44px; height: 44px;
  background: rgba(235,94,52,0.08);
  border: 1px solid rgba(235,94,52,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-feature:hover .why-feature__icon { background: var(--accent); border-color: var(--accent); }

.why-feature__icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--transition); }
.why-feature:hover .why-feature__icon svg { stroke: white; }

.why-feature__title { font-size: var(--size-base); font-weight: var(--weight-bold); color: var(--white); margin-bottom: 6px; }
.why-feature__text { font-size: var(--size-sm); color: var(--text-secondary); line-height: 1.65; }

.why__visual {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
}
.why__visual-quote {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: var(--weight-bold);
  line-height: 1.5;
  margin-bottom: 36px;
  color: var(--white);
}
.why__visual-quote em { font-style: normal; color: var(--accent); }

.why__visual-author { display: flex; align-items: center; gap: 16px; }

.why__visual-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--size-xs);
  color: var(--text-muted);
  font-weight: var(--weight-semi);
}
.why__visual-name { font-size: var(--size-sm); font-weight: var(--weight-bold); color: var(--white); }
.why__visual-title { font-size: var(--size-xs); color: var(--text-muted); margin-top: 2px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: var(--section-padding) 0; background: var(--bg); }

.faq__list { max-width: 840px; margin: 0 auto; }

/* Zweispaltig ab 1100px */
@media (min-width: 1100px) {
  .faq__list {
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    align-items: start;
  }
}

.faq-item {
  background: var(--bg-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.open { border-color: var(--border-accent); box-shadow: var(--shadow-md); }

.faq-item__trigger {
  width: 100%;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  text-align: left;
  transition: background var(--transition);
}
.faq-item__trigger:hover { background: rgba(255,255,255,0.02); }

.faq-item__question { font-size: var(--size-base); font-weight: var(--weight-semi); color: var(--white); line-height: 1.4; }

.faq-item__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 300;
}
.faq-item.open .faq-item__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-item__answer { max-height: 400px; }

.faq-item__answer-inner {
  padding: 0 28px 24px;
  font-size: var(--size-sm);
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ── Final CTA ──────────────────────────────────────────────── */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--bg-2);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(235,94,52,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(235,94,52,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 48px; }
.cta__headline { font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: var(--weight-black); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 24px; color: var(--white); }
.cta__sub { font-size: var(--size-md); color: var(--text-secondary); line-height: 1.7; margin-bottom: 48px; }
.cta__note { margin-top: 20px; font-size: var(--size-xs); color: var(--text-muted); letter-spacing: 0.04em; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  color: var(--white);
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.footer__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.footer__brand-logo { height: 38px; width: auto; opacity: 0.85; display: block; }

.footer__links-row { display: flex; align-items: center; gap: 28px; }
.footer__link { font-size: var(--size-sm); color: var(--text-secondary); transition: color var(--transition); }
.footer__link:hover { color: var(--accent); }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer__copyright { font-size: var(--size-xs); color: var(--text-subtle); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal-link { font-size: var(--size-xs); color: var(--text-subtle); transition: color var(--transition); }
.footer__legal-link:hover { color: var(--text-secondary); }

.footer__credit-row { display: flex; justify-content: center; padding-top: 16px; margin-top: 14px; border-top: 1px solid var(--border); }
.footer__mobile-cta { display: none; }
.footer__design-credit { display: flex; align-items: center; gap: 8px; opacity: 0.55; transition: opacity 0.25s ease; text-decoration: none; }
.footer__design-credit:hover { opacity: 0.9; }
.footer__design-credit span { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.1em; }
.footer__design-credit img { height: 13px; width: auto; display: block; filter: invert(1); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding: calc(160px + env(safe-area-inset-top)) 0 100px;
  background: var(--bg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(235,94,52,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__label { font-size: var(--size-xs); font-weight: var(--weight-bold); color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.page-hero__headline { font-size: clamp(2.25rem, 4vw, 4rem); font-weight: var(--weight-black); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
.page-hero__sub { font-size: var(--size-md); color: var(--text-secondary); line-height: 1.7; max-width: 560px; }

/* ── Leistungen Page ────────────────────────────────────────── */
.leistung-block__header { margin-bottom: 56px; }

.leistung-block__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.leistung-pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}
.leistung-pillar:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); transform: translateY(-4px); background: var(--bg-3); }

.leistung-pillar__label { font-size: var(--size-xs); font-weight: var(--weight-bold); color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.leistung-pillar__title { font-size: var(--size-base); font-weight: var(--weight-bold); color: var(--white); margin-bottom: 10px; }
.leistung-pillar__text { font-size: var(--size-sm); color: var(--text-secondary); line-height: 1.65; }

/* ── Kontakt Page ───────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 20px; }

.form-label { display: block; font-size: var(--size-xs); font-weight: var(--weight-bold); color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: var(--size-sm);
  color: var(--white);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: var(--bg-card);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(235,94,52,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-subtle); }
.form-select option { background: var(--bg-card); color: var(--white); }

.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; justify-content: center; }

.contact-info { padding-top: 20px; }
.contact-info__title { font-size: var(--size-2xl); font-weight: var(--weight-bold); color: var(--white); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; }
.contact-info__sub { font-size: var(--size-md); color: var(--text-secondary); line-height: 1.7; margin-bottom: 48px; }

.contact-steps { display: flex; flex-direction: column; gap: 24px; }
.contact-step { display: flex; gap: 18px; align-items: flex-start; }

.contact-step__number {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(235,94,52,0.12);
  border: 1px solid rgba(235,94,52,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--size-xs); font-weight: var(--weight-black);
  color: var(--accent); flex-shrink: 0;
}

.contact-step__title { font-size: var(--size-base); font-weight: var(--weight-bold); color: var(--white); margin-bottom: 4px; }
.contact-step__text { font-size: var(--size-sm); color: var(--text-secondary); line-height: 1.6; }

.calendly-container {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 580px;
  display: flex; align-items: center; justify-content: center;
}
.calendly-placeholder { text-align: center; padding: 48px; }
.calendly-placeholder__icon { width: 60px; height: 60px; background: rgba(235,94,52,0.08); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.calendly-placeholder__title { font-size: var(--size-lg); font-weight: var(--weight-bold); color: var(--white); margin-bottom: 8px; }
.calendly-placeholder__text { font-size: var(--size-sm); color: var(--text-secondary); margin-bottom: 24px; }

/* ── Danke Page ─────────────────────────────────────────────── */
.danke-section { min-height: 100vh; display: flex; align-items: center; padding: 120px 0; background: var(--bg); }

.danke__steps { display: flex; flex-direction: column; gap: 24px; margin: 40px 0; }

.danke-step { display: flex; gap: 18px; align-items: flex-start; }
.danke-step__number { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: var(--size-sm); font-weight: var(--weight-black); color: var(--white); flex-shrink: 0; }
.danke-step__title { font-size: var(--size-base); font-weight: var(--weight-bold); color: var(--white); margin-bottom: 4px; }
.danke-step__text { font-size: var(--size-sm); color: var(--text-secondary); line-height: 1.6; }

.danke__video { aspect-ratio: 9/16; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Floating CTA (Störelement) ─────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 8px 24px 8px 8px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.floating-cta:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.floating-cta__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(235,94,52,0.15);
  border: 1.5px solid rgba(235,94,52,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.floating-cta:hover .floating-cta__icon {
  transform: rotate(90deg);
}
.floating-cta__icon svg {
  width: 20px;
  height: 20px;
}

.floating-cta__label {
  font-size: var(--size-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A1A1A;
  white-space: nowrap;
}

/* Nur auf Desktop/Tablet sichtbar */
@media (max-width: 768px) {
  .floating-cta { display: none; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* ── 1200px: leichte Anpassungen ─────────────── */
@media (max-width: 1200px) {
  :root { --section-padding: 96px; }
  .container, .nav__inner { padding: 0 36px; }
  .problem__grid { grid-template-columns: repeat(3, 1fr); }
  .numbers__main-card { grid-template-columns: repeat(2, 1fr); }
  /* footer: no overrides needed at 1200px — compact single-row layout */
}

/* ── 1024px: Tablet ───────────────────────────── */
@media (max-width: 1024px) {
  /* Hero → stacked layout: Video oben, Text darunter */
  .hero {
    display: flex; flex-direction: column;
    height: auto; min-height: auto;
    padding-top: 80px; /* Desktop-Nav-Höhe */
  }
  .hero__video-bg {
    position: relative !important; inset: auto !important;
    width: 100%; height: calc(100vw * 2 / 3); /* 3:2 */
    flex-shrink: 0; overflow: hidden;
  }
  .hero__video-bg video {
    position: absolute !important; top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    min-width: 0 !important; min-height: 0 !important;
    transform: none !important; object-fit: cover !important;
    display: block !important; pointer-events: none !important;
  }
  .hero__video-bg::after {
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%),
                linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%);
  }
  .hero__melanie-card { display: none !important; }
  .hero__controls { display: none !important; }
  .hero__video-bg .hero__audio-toggle,
  .hero__video-bg .hero__audio-toggle:hover {
    position: absolute; bottom: 16px; left: 12px; right: auto;
    transform: none; z-index: 5;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    padding: 9px 14px;
    gap: 6px;
    width: auto;
  }
  .hero__audio-label { display: inline !important; }
  .hero__content {
    position: relative !important;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    background: #0D0D0D; padding: 32px 40px 44px;
    pointer-events: all !important;
    justify-content: flex-start; align-items: flex-start;
  }
  .hero__panel {
    width: 100% !important; margin: 0 !important; padding: 0 !important;
    background: transparent !important; backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important; border-radius: 0 !important;
  }
  .hero__eyebrow { margin-bottom: 14px; }
  .hero__headline { font-size: clamp(1.5rem, 3.5vw, 2.4rem); line-height: 1.15; margin-bottom: 16px; }
  .hero__sub { display: block !important; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
  .hero__panel .btn-group { flex-direction: column; gap: 12px; }
  .hero__panel .btn { width: 100%; justify-content: center; border-radius: 10px; }
  .hero__audio-label { display: none; }

  .nav__links { gap: 28px; }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .section-header-grid { grid-template-columns: 1fr; gap: 16px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .problem__conclusion { grid-template-columns: 1fr; gap: 32px; }
  .leistung-block__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .why-section .section-eyebrow { justify-content: center; }
  .numbers__features { grid-template-columns: 1fr; gap: 12px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ── ≤1100px: Mobile Nav ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav__links, .nav__right .nav__cta-btn { display: none; }
  .nav__hamburger { display: flex; }
  .hero__play-btn { display: none !important; }

  /* Status-Bar-Bereich: dark, nur die echte Safe Area */
  #safe-area-cover {
    background: #0D0D0D;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: env(safe-area-inset-top, 0px);
    z-index: 998;
  }

  /* Hero-Hintergrund dark, kein orangener Streifen hinter der Nav */
  section.hero { background: #0D0D0D !important; }

  /* Nav: transparenter Wrapper, schwebend — z-index über dem Panel */
  .nav {
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    left: 12px; right: 12px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    z-index: 1003;
  }
  .nav.scrolled { background: transparent; box-shadow: none; }
  .nav__inner {
    position: relative; z-index: 1002;
    display: flex; align-items: center; justify-content: space-between;
    height: 52px; padding: 0;
  }
  .nav__right { position: static; top: auto; transform: none; }

  /* Logo-Pille: orange + weiße Haarlinie, kein Schatten, gleiche Höhe wie Hamburger */
  .nav__logo-wrap {
    background: var(--accent);
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 100px;
    height: 52px;
    padding: 0 18px;
    display: inline-flex; align-items: center;
    box-shadow: none;
    transition: border-color 0.15s ease;
  }
  #nav-logo {
    content: url('Asset/Logo_WB_lang_Beige.svg');
    height: 22px; width: auto; display: block;
  }

  /* Hamburger-Kreis: orange + weiße Haarlinie, kein Schatten */
  .nav__hamburger {
    width: 52px; height: 52px; min-width: 52px;
    padding: 0; border-radius: 50%;
    background: var(--accent);
    border: 1.5px solid rgba(255,255,255,0.55);
    box-shadow: none;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 5px;
    transition: border-color 0.15s ease;
  }
  .nav__hamburger span,
  .nav.scrolled .nav__hamburger span { background: #FFFFFF; width: 20px; }

  /* ── Dropdown-Panel: exakt so breit wie die Nav (position: absolute Kind der Nav) */
  .nav__mobile-menu {
    display: block;
    position: absolute;
    top: calc(52px + 8px); /* nav height + gap */
    left: 0; right: 0;
    z-index: 1001;
    background: var(--accent);
    border: 1.5px solid rgba(255,255,255,0.45);
    border-radius: 24px;
    padding: 8px 0 24px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease,
                transform 0.22s cubic-bezier(0.2, 0, 0, 1);
    pointer-events: none;
  }
  .nav__mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .nav__mobile-links {
    display: flex; flex-direction: column;
    gap: 0; margin-bottom: 8px;
  }
  .nav__mobile-link {
    color: #FFFFFF;
    font-size: 1.1rem; font-weight: 600;
    display: block; padding: 15px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .nav__mobile-link:hover,
  .nav__mobile-link:active { color: rgba(255,255,255,0.65); }
  /* CTA im Panel: weiß mit orangem Text, zentriert mit Seitenabstand */
  .nav__mobile-menu .nav__cta-btn {
    display: flex !important;
    box-sizing: border-box !important;
    margin: 16px 20px 0 !important;
    width: calc(100% - 40px) !important;
    justify-content: center !important;
    background: #FFFFFF !important;
    color: var(--accent) !important;
    border-color: #FFFFFF !important;
  }
}

/* ── 768px: Mobile ────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-padding: 64px; }
  .container { padding: 0 20px; }

  /* ── Globale Typografie-Skalierung Mobile ─── */
  .h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); margin-bottom: 12px; }
  .h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); margin-bottom: 12px; }
  .h4 { font-size: var(--size-base); margin-bottom: 10px; }
  .lead { font-size: var(--size-sm); line-height: 1.7; }
  .section-eyebrow { margin-bottom: 14px; }
  .section-header { margin-bottom: 40px; }
  .section-header--left { margin-bottom: 32px; }

  /* ── Nav: Pill-Stil aus ≤1100px gilt; kein Override nötig ── */

  /* Hero – Mobile: Video 3:2 direkt unter Nav, Text darunter ohne Rahmen */
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    background: #0D0D0D;
    padding-top: 0; /* Video startet ganz oben, Nav-Bubbles schweben drüber */
  }
  .hero__video-bg {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    height: 100vw; /* 1:1 Format */
    flex-shrink: 0;
    overflow: hidden;
  }
  .hero__video-bg::after {
    display: block;
    background: linear-gradient(to bottom, #e2e2e2 0%, rgba(226,226,226,0) 38%);
  }
  /* Melanie-Karte ausblenden auf Mobile */
  .hero__melanie-card { display: none !important; }
  /* Controls: unten rechts am Video positionieren (nur Ton-Button sichtbar) */
  .hero__controls {
    position: absolute;
    top: calc(100vw - 60px); /* 1:1 Video-Höhe minus Offset */
    bottom: auto;
    right: 14px;
    z-index: 10;
  }
  /* Play-Button: zentriert im Video */
  .hero__play-btn {
    left: 50%;
    font-size: 14px;
    padding: 14px 24px;
    gap: 10px;
  }
  /* Text direkt unter Video, kein Rahmen */
  .hero__content {
    position: relative !important;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    background: #0D0D0D;
    padding: 24px 20px 32px;
    pointer-events: all !important;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .hero__panel {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
  }
  .hero__eyebrow { margin-bottom: 10px; }
  .hero__headline { font-size: clamp(1.3rem, 5.5vw, 1.85rem); margin-bottom: 10px; }
  .hero__sub { display: block !important; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
  .hero__panel .btn-group { flex-direction: column; gap: 10px; }
  .hero__audio-label { display: none; }

  /* Trust bar: alle 4 nebeneinander */
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); padding: 0; gap: 0; }
  .trust-item { padding: 14px 6px; }
  .trust-item + .trust-item { border-left: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: none; }
  .trust-number { font-size: clamp(0.95rem, 3.5vw, 1.25rem); }
  .trust-label { font-size: 8.5px; letter-spacing: 0; }
  .trust-number-prefix { display: none; }

  /* Problem-Sektion: Akkordeon, kein Icon, harmonische Abstände */
  .problem__grid { grid-template-columns: 1fr; gap: 0; border-radius: 16px; overflow: hidden; }
  .problem-card {
    padding: 20px 22px;
    cursor: pointer;
    user-select: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(26,26,26,0.08);
  }
  .problem-card:last-child { border-bottom: none; }
  .problem-card__title {
    display: block;
    margin-bottom: 0;
    font-size: 15px;
  }
  .problem-card__title::after { display: none; }
  .problem-card__text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, margin-top 0.2s ease;
    margin-top: 0 !important;
    font-size: 14px;
    line-height: 1.6;
  }
  .problem-card.open .problem-card__text {
    max-height: 260px;
    margin-top: 10px !important;
  }

  /* Numbers (home) */
  .numbers__main-card { grid-template-columns: 1fr 1fr; padding: 32px 16px; }
  .number-stat { padding: 24px 16px; }
  .number-stat__big { font-size: clamp(2rem, 7vw, 2.8rem); }
  .number-stat__label { font-size: 11px; }
  .numbers__features { grid-template-columns: 1fr; }

  /* Numbers (Referenzen): zentriert */
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  .number-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 20px 10px; }
  .number-item__prefix { font-size: 10px; margin-bottom: 0; }
  .number-item__value { font-size: clamp(2rem, 8vw, 2.6rem); margin-bottom: 0; }
  .number-item__label { font-size: 11px; line-height: 1.4; text-align: center; }

  /* Testimonials + Videos */
  .testimonials__grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; }

  /* Leistungsbereiche: kompakte Kästchen untereinander */
  .services-section .grid-3 {
    grid-template-columns: 1fr !important;
    gap: 6px;
  }
  .service-card { padding: 16px 18px; }
  .service-card__phase { font-size: 10px; margin-bottom: 5px; letter-spacing: 0.08em; }
  .service-card__title { font-size: 14px; margin-bottom: 6px; }
  .service-card__text { font-size: 13px; line-height: 1.5; }
  .service-card__link { font-size: 12px; margin-top: 8px; }

  /* Journey: kompakter */
  .journey__timeline { grid-template-columns: 1fr 1fr; gap: 20px; }
  .journey__timeline::before { display: none; }
  .journey-step { padding: 0 6px; }
  .journey-step__circle { width: 44px; height: 44px; font-size: 15px; margin: 0 auto 10px; }
  .journey-step__number { font-size: 8px; letter-spacing: 0.06em; margin-bottom: 4px; }
  .journey-step__title { font-size: 13px; margin-bottom: 6px; }
  .journey-step__text { font-size: 12px; line-height: 1.5; }

  /* Services / Why / FAQ */
  .services__conclusion { flex-direction: column; padding: 32px 24px; text-align: center; }
  .why__visual { padding: 28px; }

  /* Kontakt */
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Leistungen */
  .leistung-block__grid { grid-template-columns: 1fr; }

  /* CTA – vollständig zentriert + sichtbar auf Mobile */
  .cta-section { padding: 52px 0; overflow: hidden; }
  .cta__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta__headline { max-width: 100%; }
  .cta__sub { max-width: 100%; }
  .cta__actions { justify-content: center; flex-wrap: wrap; }
  .cta-section .section-eyebrow { justify-content: center; margin-bottom: 16px; }
  .cta-section .section-eyebrow--dark { justify-content: center; }

  /* Footer – mobile: Logo + Nav + CTA */
  .footer { padding: 24px 0 20px; }
  .footer__inner { padding: 0 20px; }
  .footer__row { flex-direction: column; align-items: flex-start; gap: 14px; padding-bottom: 0; margin-bottom: 0; text-align: left; }
  .footer__links-row { display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px 16px; }
  .footer__link { font-size: 13px; }
  .footer__brand-logo { width: 156px; }
  .footer__mobile-cta { display: block; margin-top: 6px; }
  .footer__mobile-cta .btn { display: flex; width: 100%; justify-content: center; padding: 14px 20px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; padding-top: 16px; margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
  .footer__legal { justify-content: flex-start; flex-wrap: wrap; gap: 10px 16px; }
  .footer__legal-link { font-size: 11px; }
  .footer__copyright { font-size: 11px; }
  .footer__credit-row { display: flex; justify-content: flex-start; }

  /* Leistungen page block-grid */
  .page-hero .container { padding: 0 20px; }

  /* Über Melanie: Text zuerst, Bild darunter, Bio ausklappbar */
  .melanie-section .grid-2 { display: flex; flex-direction: column; gap: 28px; }
  .melanie__portrait { order: 2; max-height: 230px; overflow: hidden; border-radius: 16px; }
  .melanie__content { order: 1; }
  .melanie__story-extra { display: none; }
  .melanie__story.expanded .melanie__story-extra { display: block; }
  .melanie__read-more {
    display: inline-block;
    background: transparent;
    border: 1.5px solid rgba(26,26,26,0.2);
    border-radius: 100px;
    padding: 8px 22px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(26,26,26,0.55);
    cursor: pointer;
    font-family: var(--font);
    margin-top: 14px;
    transition: border-color 0.2s, color 0.2s;
  }
  .melanie__read-more:hover { border-color: rgba(26,26,26,0.5); color: #1A1A1A; }
  .melanie__timeline-item { gap: 8px; }
  .melanie__timeline-role { font-size: 12px; }
  .melanie__timeline-desc { font-size: 11px; }
  .melanie__insight { padding: 16px 20px; }
  .melanie__insight-title { font-size: 12px; }
  .melanie__insight-text { font-size: 13px; }

  /* FAQ: kompakter */
  .faq-section.section { padding-top: 48px; padding-bottom: 48px; }
  .faq-item { border-radius: 10px; margin-bottom: 6px; }
  .faq-item__trigger { padding: 16px 18px; }
  .faq-item__question { font-size: 13.5px; line-height: 1.4; }
  .faq-item__answer-inner { padding: 0 18px 16px; font-size: 13.5px; }

  /* Leistungen Phasen: kompakter auf Mobile */
  .phase-tabs { gap: 6px; padding-bottom: 16px; margin-bottom: 20px; }
  .phase-tab { padding: 9px 16px; font-size: 12px; }
  .phase-nav { margin-top: 28px; padding-top: 20px; }

  /* ── index.html: Testimonials mit Video ────────────────────── */
  /* testimonial-with-video: volle Breite, kompakter */
  .testimonial-with-video { gap: 0; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card__quote-icon { font-size: 1.8rem; margin-bottom: 12px; }
  .testimonial-card__result { margin-bottom: 12px; }
  .testimonial-card__text { font-size: 13px; line-height: 1.65; margin-bottom: 18px; }
  .testimonial-card__footer { padding-top: 14px; gap: 10px; }
  .testimonial-card__name { font-size: 13px; }
  .testimonial-card__company { font-size: 11px; }
  .testimonial-video { padding: 14px 18px; gap: 10px; }
  .testimonial-video__label { font-size: 11px; }

  /* ── index.html: Why-Section ───────────────────────────────── */
  /* why__visual: inneres Layout kompakter */
  .why__visual-quote { font-size: 1rem; line-height: 1.5; margin-bottom: 24px; }
  .why__visual-author { gap: 12px; }
  .why__visual-name { font-size: 13px; }
  .why__visual-title { font-size: 11px; }
  /* why-features kompakter */
  .why__features { gap: 20px; }
  .why-feature { gap: 14px; }
  .why-feature__icon { width: 38px; height: 38px; flex-shrink: 0; }
  .why-feature__title { font-size: 14px; margin-bottom: 4px; }
  .why-feature__text { font-size: 13px; line-height: 1.55; }

  /* ── CTA-Section: kompakt + zentriert ──────────────────────── */
  .cta__headline { font-size: clamp(1.3rem, 5.5vw, 1.8rem); margin-bottom: 14px; }
  .cta__sub { font-size: 13.5px; line-height: 1.65; margin-bottom: 28px; max-width: 100%; }
  .cta__inner .btn-lg { display: flex; width: 100%; justify-content: center; text-align: center; margin: 0 auto; padding: 16px 20px; }
  .cta__note { font-size: 11px; margin-top: 12px; }

  /* ── index.html: page-hero (Unterseiten) ──────────────────── */
  .page-hero { padding: calc(env(safe-area-inset-top, 0px) + 92px) 0 56px; }
  .page-hero__headline { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 16px; }
  .page-hero__sub { font-size: 14px; line-height: 1.65; }

  /* ── referenzen.html: Case Studies ─────────────────────────── */
  /* Inline-Grid-Style mit force-override via class auf dem Artikel */
  /* Die Case-Study-Artikel haben display:grid mit grid-template-columns:1fr 1fr inline
     → überschreiben via Attribut-Selektor nicht möglich → Target über section-context */
  .section--gray article > div[style*="grid-template-columns:1fr 1fr"],
  .section--gray article > div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }
  /* Platzhalter-Bild (erster oder zweiter Block je Case) */
  .section--gray article > div > div[style*="background:var(--gray-light)"],
  .section--gray article > div > div[style*="background: var(--gray-light)"] {
    min-height: 160px !important;
    padding: 32px !important;
  }
  /* Content-Block: kompaktere Paddings */
  .section--gray article > div > div[style*="padding:56px"] {
    padding: 28px 20px !important;
  }
  /* Ergebnis-Karte in Case Studies: kompakter */
  .section--gray article div[style*="background:rgba(235,94,52,0.07)"] {
    padding: 14px 16px !important;
    margin-top: 4px !important;
  }
  /* Headline H3 in Case Studies */
  .section--gray article .h3 { font-size: 1.1rem; margin-bottom: 12px; }

  /* ── referenzen.html: DIIS – Bild über Text ───────────────── */
  .section--gray article:nth-of-type(2) > div > div:first-child { order: 2; }

  /* ── referenzen.html: Video-Grid ──────────────────────────── */
  .video-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .video-placeholder { aspect-ratio: 16/9; }

  /* ── referenzen.html: numbers-section ─────────────────────── */
  /* numbers__grid ist bei 768px schon 2-Spalten */
  .numbers__grid { grid-template-columns: 1fr 1fr; }

  /* ── kontakt.html: 2-Spalten-Grid (Calendly + Info) ────────── */
  /* Inline-Styles überschreiben via Attribut-Selektor */
  .contact-page__inner > div[style*="grid-template-columns:1fr 1fr"],
  .contact-page__inner > div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  /* Kontaktformular: 3-Spalten inline-Grid → 1-Spalte */
  form > div[style*="grid-template-columns:repeat(3,1fr)"],
  form > div[style*="grid-template-columns: repeat(3, 1fr)"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }
  /* Kontaktformular: 2-Spalten inline-Grid (Studio + Phase) → 1-Spalte */
  form > div[style*="grid-template-columns:1fr 1fr"],
  form > div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }
  /* Formular: Datenschutz + Submit untereinander */
  form > div[style*="display:flex;align-items:center;justify-content:space-between"] {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }
  form > div[style*="display:flex;align-items:center;justify-content:space-between"] > div {
    align-items: stretch !important;
  }
  .form-submit { width: 100%; justify-content: center; }
  /* Kontaktformular-Padding */
  #contact-form { padding: 24px 16px !important; }
  /* Contact-page header */
  .contact-page { padding: calc(env(safe-area-inset-top, 0px) + 92px) 0 48px; }
  .contact-page__inner { padding: 0 16px; }
  .contact-page__header { margin-bottom: 32px; }
  .contact-page__headline { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .contact-page__sub { font-size: 14px; }
  /* Calendly container: Platzhalter kleiner */
  #calendly-container > div[style*="min-height:280px"] { min-height: 180px !important; padding: 28px !important; }
  /* Info-Box kompakter */
  .contact-page__inner > div > div[style*="padding:36px"] { padding: 22px 18px !important; }
  /* Kontakt: Border-Radien reduzieren */
  #calendly-container { border-radius: 16px !important; }
  #contact-form { border-radius: 16px !important; }
  .contact-page__inner div[style*="border-radius:var(--radius-xl)"] { border-radius: 16px !important; }

  /* ── danke.html: Layout ─────────────────────────────────────── */
  /* danke-section ist min-height:100vh flex align-items:center,
     danke__inner hat display:grid mit 2 Cols implizit (2 Kinder) →
     braucht 1-Spalte-Override */
  .danke-section { padding: 88px 0 48px; align-items: flex-start; }
  .danke__inner { display: flex !important; flex-direction: column !important; gap: 32px; padding: 0 16px !important; }
  /* Video-Placeholder: von 9:16 auf 16:9 auf Mobile umschalten */
  .danke__video { aspect-ratio: 16/9 !important; }
  /* Trust-Reminder darunter */
  .danke__steps { gap: 16px; margin: 28px 0; }
  .danke-step { gap: 14px; }
  .danke-step__number { width: 32px; height: 32px; font-size: 12px; flex-shrink: 0; }
  .danke-step__title { font-size: 14px; }
  .danke-step__text { font-size: 13px; line-height: 1.55; }

  /* ── leistungen.html: Gesamtsystem ─────────────────────────── */
  /* Section-Header zentriert */
  #gesamtsystem .section-header { text-align: center; }
  #gesamtsystem .section-header .lead { margin-left: auto; margin-right: auto; max-width: 100%; }
  #gesamtsystem.section { padding-top: 40px; padding-bottom: 40px; }
  /* 7er-Grid → 4-Spalten */
  #gesamtsystem div[style*="grid-template-columns:repeat(7,1fr)"],
  #gesamtsystem div[style*="grid-template-columns: repeat(7, 1fr)"] {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
  }
  /* Einzelne Systemkarten kompakter */
  #gesamtsystem div[style*="padding:24px 16px"] { padding: 12px 8px !important; }
  #gesamtsystem div[style*="padding:24px 16px"] div:last-child { font-size: 12px !important; }
  /* CTA-Box zentriert */
  #gesamtsystem div[style*="padding:56px"] {
    padding: 24px 20px !important;
    text-align: center !important;
  }
  #gesamtsystem div[style*="padding:56px"] p {
    font-size: clamp(0.95rem, 4vw, 1.1rem) !important;
    margin-bottom: 20px !important;
  }
  #gesamtsystem div[style*="padding:56px"] .btn-lg {
    justify-content: center;
    width: 100%;
    white-space: normal;
    word-break: normal;
    text-align: center;
    line-height: 1.35;
    padding: 14px 20px;
    gap: 6px;
  }

  /* ── Alle CTA-Buttons: kompakt zentriert ────────────────────── */
  .cta__inner .btn-lg { display: flex; justify-content: center; margin: 0 auto; }

  /* ── leistungen.html: Herausforderung-Karten in Phasen ─────── */
  /* grid-2 wird bei 1024px bereits zu 1-Spalte → OK */
  /* Aber Innenpadding der dunklen Karten kompakter */
  .phase-slide .grid-2 > div > div[style*="padding:26px"] {
    padding: 18px !important;
  }

  /* ── Leistung-Pillar Kompakt ─────────────────────────────────── */
  .leistung-pillar { padding: 18px 16px; }
  .leistung-pillar__title { font-size: 14px; }
  .leistung-pillar__text { font-size: 13px; }

  /* ── Services-Conclusion Kompakt ────────────────────────────── */
  .services__conclusion { gap: 20px; padding: 24px 18px; }
  .services__conclusion-text { font-size: 1rem; }
  .services__conclusion .btn-primary { width: 100%; justify-content: center; }

  /* ── Section-Header-Grid → 1-Spalte ─────────────────────────── */
  .section-header-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }

  /* ── Section-Header kompakter ────────────────────────────────── */
  .section-header { margin-bottom: 40px; }
  .section-header--left { margin-bottom: 40px; }

  /* ── Buttons: volle Breite in CTA ───────────────────────────── */
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }

  /* ── Dienste/Phasen: kompakte Akkordeon-Karte ───────────────── */
  .mob-svc-wrap {
    background: #F4F4F4;
    border: 1px solid rgba(26,26,26,0.1);
    border-radius: 16px;
    overflow: hidden;
  }
  .mob-svc-item {
    border-bottom: 1px solid rgba(26,26,26,0.08);
  }
  .mob-svc-item:last-of-type { border-bottom: none; }
  .mob-svc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 18px;
    background: transparent;
    border: none;
    font-family: var(--font);
    text-align: left;
    cursor: pointer;
    gap: 10px;
  }
  .mob-svc-btn-inner { display: flex; flex-direction: column; gap: 2px; }
  .mob-svc-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
  }
  .mob-svc-title {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
  }
  .mob-svc-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.22s;
    line-height: 1;
  }
  .mob-svc-item.open .mob-svc-icon { transform: rotate(45deg); }
  .mob-svc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .mob-svc-item.open .mob-svc-body { max-height: 300px; }
  .mob-svc-body-inner {
    padding: 0 18px 16px;
    font-size: 13.5px;
    color: rgba(26,26,26,0.65);
    line-height: 1.65;
  }
  .mob-svc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    gap: 8px;
  }

  /* ── Video-Toggle in Testimonials ──────────────────────────── */
  .testimonial-video--collapsed { display: none !important; }
  .mob-vid-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    margin-top: 12px;
    background: rgba(26,26,26,0.06);
    border: 1px solid rgba(26,26,26,0.1);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
    cursor: pointer;
    justify-content: center;
  }
  .mob-vid-btn svg { transition: transform 0.22s; }
  .mob-vid-btn.open svg { transform: rotate(180deg); }

  /* ── Buttons: kein Text-Overflow auf Mobile ─────────────────── */
  .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
    line-height: 1.3;
  }

  /* Hero-Buttons: volle Breite (bereits via .btn-group, aber Absicherung) */
  .hero__panel .btn { display: flex; width: 100%; box-sizing: border-box; }

  /* Problem-Conclusion, Denkfehler, GS-Outro, Journey, FAQ: zentriert + voll */
  .problem__conclusion .btn,
  .denkfehler__body .btn,
  .gs-outro-block .btn,
  .btn-primary.btn-lg.btn-arrow { display: inline-flex; max-width: calc(100vw - 48px); }

  /* FAQ-Box: vertikal stapeln */
  .reveal[style*="display:flex"][style*="flex-wrap:wrap"],
  div[style*="display:flex"][style*="justify-content:space-between"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  div[style*="display:flex"][style*="justify-content:space-between"] .btn {
    width: 100%;
    justify-content: center;
    flex-shrink: initial;
  }
}

/* ── 480px: Kleines Mobile ────────────────────── */
@media (max-width: 480px) {
  :root { --section-padding: 52px; }

  /* ── Globale Typografie-Skalierung (kleines Mobile) ─── */
  .h2 { font-size: clamp(1.25rem, 5vw, 1.6rem); }
  .h3 { font-size: clamp(1.05rem, 4vw, 1.25rem); }

  /* Hero */
  /* Headline: Schriftgröße garantiert, dass "Unternehmensproblem." nie umbricht.
     Formel: (100vw - 40px Padding) / 18 ≈ maximale Breite pro Zeicheneinheit */
  .hero__headline { font-size: clamp(14px, calc((100vw - 40px) / 18), 1.6rem); }

  /* Problem: eine Spalte */
  .problem__grid { grid-template-columns: 1fr; }

  /* Numbers: 2-Spalten mit vertikaler Trennung */
  .numbers__main-card { grid-template-columns: 1fr 1fr; }
  .number-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 12px; }
  .number-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .number-stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Grid */
  .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .journey__timeline { grid-template-columns: 1fr; }

  /* Trust bar: 4 in einer Reihe auch auf kleinen Screens */
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .trust-item { padding: 12px 4px; }
  .trust-item + .trust-item { border-left: 1px solid var(--border); border-top: none; }
  .trust-item:nth-child(odd) { border-right: none; }
  .trust-number { font-size: clamp(0.85rem, 3vw, 1.1rem); }

  /* Section-Padding anpassen */
  .nav__inner { padding: 0 16px; }
  .nav .nav__inner { padding: 0; } /* Mobile Nav-Bubbles bleiben an den Kanten */
  .container { padding: 0 16px; }

  /* Referenzen: Case Studies → 1 Spalte */
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  /* number-item kompakter auf 480 */
  .number-item { padding: 18px 14px; }
  .number-item__value { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Danke: Video wieder normal seitlich */
  .danke__video { aspect-ratio: 9/16 !important; max-height: 340px; }

  /* Gesamtsystem: 2 Spalten auf sehr kleinen Screens */
  #gesamtsystem div[style*="grid-template-columns:repeat(7,1fr)"],
  #gesamtsystem div[style*="grid-template-columns: repeat(7, 1fr)"] {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  #gesamtsystem .section-header { text-align: center; }

  /* Kontakt: noch kompakter */
  .contact-page { padding: calc(env(safe-area-inset-top, 0px) + 64px) 0 40px; }
  .contact-page__inner { padding: 0 12px; }
  #contact-form { padding: 18px 12px !important; }

  /* Leistungen: result-card kompakter */
  .leistung-result-card { padding: 14px 16px !important; flex-direction: column !important; gap: 8px !important; align-items: flex-start !important; }
  .leistung-result-card__label { font-size: 10px; }
  .leistung-result-card__title { font-size: 14px; }
  .leistung-result-card__text { font-size: 13px; }

  /* CTA-Button volle Breite */
  .cta__inner .btn { width: auto; min-width: min(100%, 320px); }

}

/* =============================================================
   ACCESSIBILITY
   ============================================================= */

/* Skip-to-Content Link */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 99999;
  padding: 10px 20px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: var(--size-sm);
  font-weight: 700;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.15s ease;
  white-space: nowrap;
}
.skip-to-content:focus {
  top: 0;
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

/* Globale Focus-Visible-Stile für Tastaturbedienung */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* Medienabfrage: reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   Hero: Kurze Desktop-Viewports (≤ 1050px Höhe)
   ──────────────────────────────────────────────────────────────────
   Strategie: Bei wenig Viewport-Höhe wächst der Hero über 100vh
   hinaus statt Inhalte zu überlappen oder zu clippen.

   Mechanismus:
   • .hero → height:auto / min-height:100vh / overflow:visible
   • .hero__video-bg → position:fixed (klebt am Viewport)
   • .hero__content → position:relative (im normalen Flow,
     trägt zur Hero-Höhe bei)
   • .hero__controls → position:relative (fließt nach dem Panel,
     nie dahinter)

   Nav-Sicherheitsabstand: padding-top: 104px
   (80px Nav-Höhe + 24px Puffer, fest kodiert — kein calc/clamp)
   ══════════════════════════════════════════════════════════════════ */

@media (min-width: 1101px) and (max-height: 1050px) {

  /* Hero: feste Höhe aufheben → darf über 100vh wachsen und scrollen.
     min-height:100vh = füllt immer den Viewport, auch wenn Inhalt kürzer ist.
     Das Video (position:absolute; inset:0) füllt die Hero-Section automatisch
     aus — kein Umstellen auf position:fixed nötig. */
  .hero {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  /* Panel-Wrapper in normalen Flow — trägt zur Hero-Höhe bei */
  .hero__content {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 104px 0 20px; /* 80px Nav-Höhe + 24px Sicherheitsabstand */
    pointer-events: none;
    z-index: 2;
  }

  /* Melanie-Karte: fließt nach Panel, nie dahinter */
  .hero__controls {
    position: relative;
    bottom: auto; right: auto;
    display: flex;
    justify-content: flex-end;
    padding: 10px 30px 28px 0; /* rechts bündig mit Panel (margin-right:30px) */
    z-index: 4;
  }
}

/* ── Stufe 1: ≤ 820px — moderate Komprimierung ──────────────────── */
@media (min-width: 1101px) and (max-height: 820px) {
  .hero__content     { padding: 104px 0 14px; }
  .hero__panel       { padding: 28px 48px 28px 40px; }
  .hero__eyebrow     { line-height: 1.4; margin-bottom: 12px; }
  .hero__headline    { font-size: clamp(1.3rem, 1.9vw, 2.1rem); margin-bottom: 12px; }
  .hero__headline .line + .line { margin-top: 0.4em; }
  .hero__sub         { font-size: 12.5px; line-height: 1.55; margin-bottom: 18px; }
  .hero__panel .btn-group .btn {
    padding: clamp(12px, 1.3vw, 16px) clamp(18px, 2.2vw, 36px);
  }
  .hero__controls    { padding: 8px 30px 22px 0; }
  .hero__video-bg .hero__audio-toggle { bottom: 20px; }
}

/* ── Stufe 2: ≤ 700px — stärkere Komprimierung ──────────────────── */
@media (min-width: 1101px) and (max-height: 700px) {
  .hero__content     { padding: 104px 0 10px; }
  .hero__panel       { padding: 20px 48px 20px 40px; }
  .hero__eyebrow     { font-size: 11px; line-height: 1.35; margin-bottom: 8px; }
  .hero__headline    { font-size: clamp(1.1rem, 1.55vw, 1.65rem); margin-bottom: 10px; }
  .hero__headline .line + .line { margin-top: 0.35em; }
  .hero__sub         { font-size: 11.5px; line-height: 1.5; margin-bottom: 14px; }
  .hero__panel .btn-group .btn { padding: 11px 22px; font-size: 13px; }
  .hero__controls    { padding: 6px 30px 20px 0; }
  .hero__video-bg .hero__audio-toggle { bottom: 14px; }
}

/* ── Stufe 3: ≤ 640px — Sub ausblenden (zu wenig Platz) ──────────── */
@media (min-width: 1101px) and (max-height: 640px) {
  .hero__sub   { display: none; }
  .hero__panel { padding: 16px 48px 16px 40px; }
}

/* ── Stufe 4: ≤ 540px — Melanie-Karte ebenfalls ausblenden ────────── */
@media (min-width: 1101px) and (max-height: 540px) {
  .hero__controls { display: none !important; }
}

/* Sehr breite Screens (≥ 1600px) — Panel nicht am absoluten Rand kleben */
@media (min-width: 1600px) {
  .hero__panel {
    width: clamp(480px, 36%, 640px);
    margin-right: max(48px, 3vw);
  }
  .hero__controls {
    right: max(48px, 3vw);
  }
}
