/* =========================================================
   Cesarz Consulting – Landingpage
   Design: Deep Navy + Champagne Gold · premium, conversion-first
   ========================================================= */

:root {
  --bg: #07090f;
  --bg-2: #0a0d16;
  --bg-3: #0d1119;
  --surface: #121726;
  --surface-2: #161d2f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #eef1f7;
  --muted: #99a2b6;
  --muted-2: #828ca3;

  --gold: #c8a35a;
  --gold-2: #e7c986;
  --gold-deep: #a37e3c;
  --gold-grad: linear-gradient(135deg, #f0d49a 0%, #cda35d 50%, #b08840 100%);
  --gold-soft: rgba(200, 163, 90, 0.14);

  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --container: 1180px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 18px 50px -18px rgba(200, 163, 90, 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Sora", "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  /* clip (not hidden) prevents a horizontal scrollbar from off-canvas glows
     without turning <body> into a scroll container, which would break
     window scrolling and sticky/fixed behaviour. */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle global grain/vignette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(200, 163, 90, 0.06), transparent 60%),
    radial-gradient(50% 40% at 0% 30%, rgba(80, 110, 200, 0.05), transparent 60%);
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4.2vw, 3rem); }
h3 { font-size: 1.25rem; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-2);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: #1a1304; padding: 10px 18px; border-radius: 0 0 10px 0;
  font-weight: 600; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem; font-weight: 600;
  color: var(--gold-2); margin-bottom: 18px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--gold-grad); color: #1d1402;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 60px -16px rgba(200, 163, 90, 0.7); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04); color: var(--text); border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-3px); }
.btn-sm { padding: 11px 20px; font-size: 0.92rem; }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold-2); font-weight: 600;
  border-bottom: 1px solid rgba(231, 201, 134, 0.35); padding-bottom: 3px;
  transition: gap 0.3s var(--ease), border-color 0.3s;
}
.text-link:hover { gap: 13px; border-color: var(--gold-2); }

/* ============================ HEADER ============================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: padding 0.4s var(--ease);
  padding: 16px 0;
}
/* Blur background lives on a pseudo-element so the header itself is NOT a
   containing block for the position:fixed mobile menu (backdrop-filter would
   otherwise clip the full-screen drawer to the header height). */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.9);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled { padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { height: 52px; width: auto; display: block; transition: height 0.4s var(--ease); }
.site-header.scrolled .brand-logo { height: 44px; }
.brand-mono {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #1d1402;
  background: var(--gold-grad); box-shadow: 0 8px 22px -8px rgba(200, 163, 90, 0.6);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; letter-spacing: 0.14em; }
.brand-text em { font-style: normal; font-size: 0.62rem; letter-spacing: 0.34em; color: var(--muted); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.95rem; color: var(--muted); font-weight: 500; transition: color 0.25s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero {
  position: relative;
  padding: clamp(120px, 17vh, 190px) 0 clamp(70px, 9vh, 110px);
  overflow: hidden;
}

/* Statischer Cinematic-Hintergrund im Hero (ein Standbild, kein Autoplay/Pin) */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #06080f url("assets/frames/frame_001.jpg") center / cover no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 6%, rgba(7, 9, 15, 0.74) 42%, rgba(7, 9, 15, 0.42)),
    linear-gradient(0deg, var(--bg), transparent 52%);
}
.hero .container { z-index: 2; }

/* Reassurance-Zeile direkt unter den Hero-Buttons */
.hero-reassure {
  margin: 16px 0 8px; font-size: 0.86rem; color: var(--muted); letter-spacing: 0.01em;
}
/* Authority-Zeile im Hero (Dirk Kreuter) */
.hero-authority {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 34px; font-size: 0.95rem; color: var(--muted);
}
.hero-authority span { color: var(--gold-2); font-size: 1rem; }
.hero-authority strong { color: var(--text); font-weight: 600; }

/* Kunden-Logo-Band: echte Logos (weiß gefiltert) + Wortmarken einheitlich in einer Linie */
.marquee-track .client { color: #c9d0de; font-weight: 700; font-size: 1.3rem; letter-spacing: 0.005em; opacity: 0.85; }
.marquee-track .client-logo {
  height: 36px; width: auto; max-width: 240px; object-fit: contain;
  display: inline-block; vertical-align: middle;
  filter: brightness(0) invert(1); opacity: 0.8;
}

/* Risk-Reversal an der Urgency-CTA */
.urgency-trust { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 0.9rem; color: var(--muted); }
.urgency-trust span { color: #4ade80; font-weight: 700; }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; z-index: 0; pointer-events: none; }
.hero-glow--1 { width: 620px; height: 620px; top: -180px; right: -120px; background: radial-gradient(circle, rgba(200, 163, 90, 0.5), transparent 70%); animation: floatGlow 14s ease-in-out infinite; }
.hero-glow--2 { width: 520px; height: 520px; bottom: -200px; left: -160px; background: radial-gradient(circle, rgba(70, 100, 200, 0.32), transparent 70%); animation: floatGlow 18s ease-in-out infinite reverse; }

.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 50px; align-items: center; }
.hero-content { max-width: 620px; }
.hero h1 { margin-bottom: 22px; }
.hero-text { color: var(--muted); font-size: 1.16rem; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.trust-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.trust-row > div:not(.trust-divider) { display: flex; flex-direction: column; }
.trust-row strong { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--gold-2); line-height: 1; }
.trust-row span { font-size: 0.82rem; color: var(--muted); margin-top: 7px; max-width: 130px; }
.trust-divider { width: 1px; height: 46px; background: var(--line-strong); }

/* hero visual */
.hero-visual { position: relative; }
.hero-portrait {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 4.4;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(200, 163, 90, 0.22), transparent 55%),
    linear-gradient(180deg, #1a2238, #0a0e1a 75%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 9, 15, 0.55));
}
.hero-portrait img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 6%;
}

.float-chip {
  position: absolute; display: flex; flex-direction: column; gap: 2px;
  background: rgba(18, 23, 38, 0.82); backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong); border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.85); z-index: 3;
}
.float-chip .chip-num { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; line-height: 1; }
.float-chip .chip-label { font-size: 0.72rem; color: var(--muted); }
.float-chip--tl { top: 26px; left: -26px; animation: floatY 6s ease-in-out infinite; }
.float-chip--bl { bottom: 96px; left: -34px; animation: floatY 7s ease-in-out infinite 0.6s; }
.float-chip--br { bottom: 30px; right: -20px; flex-direction: row; align-items: center; gap: 9px; animation: floatY 6.5s ease-in-out infinite 0.3s; }
.chip-dot { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18); }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid var(--line-strong); border-radius: 14px; z-index: 4;
  display: grid; place-items: start center; padding-top: 8px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--gold); animation: scrollDot 1.8s infinite; }

/* ============================ MARQUEE / BRANCHEN ============================ */
.logo-strip { padding: 30px 0 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip-label { text-align: center; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 26px; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--muted); white-space: nowrap; letter-spacing: 0.01em; }
.marquee-track .sep { color: var(--gold); font-size: 0.6rem; }

/* ============================ SECTION HEAD ============================ */
section { position: relative; }
.problem, .services, .cases, .process, .about, .testimonials, .faq, .urgency-cta, .contact { padding: clamp(70px, 10vh, 120px) 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-sub { color: var(--muted); font-size: 1.1rem; margin-top: 18px; }

/* ============================ PROBLEM ============================ */
.problem { background: var(--bg-2); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.problem-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.problem-card:hover { transform: translateY(-6px); border-color: rgba(200, 163, 90, 0.4); box-shadow: var(--shadow); }
.problem-icon { font-size: 1.7rem; margin-bottom: 16px; filter: grayscale(0.2); }
.problem-card h3 { margin-bottom: 10px; }
.problem-card p { color: var(--muted); font-size: 0.95rem; }

/* ============================ SERVICES ============================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--gold-grad);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(200, 163, 90, 0.45); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  border-color: rgba(200, 163, 90, 0.5);
  background: linear-gradient(180deg, #1a1c24, #0e1019);
  box-shadow: 0 30px 70px -34px rgba(200, 163, 90, 0.4);
}
.service-card--featured::before { opacity: 1; }
.service-badge {
  position: absolute; top: 20px; right: 20px; background: var(--gold-soft); color: var(--gold-2);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(200, 163, 90, 0.3);
}
.service-num { font-family: var(--font-head); font-weight: 800; font-size: 0.9rem; color: var(--muted-2); letter-spacing: 0.1em; }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid rgba(200, 163, 90, 0.25); margin: 16px 0 20px; color: var(--gold-2);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.service-card > p { color: var(--muted); margin-bottom: 22px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-list li { position: relative; padding-left: 28px; font-size: 0.94rem; color: #c3cad9; }
.service-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-2); font-weight: 700;
  width: 19px; height: 19px; border-radius: 50%; background: var(--gold-soft); display: grid; place-items: center; font-size: 0.7rem;
}

.services-banner {
  margin-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background:
    radial-gradient(120% 200% at 0% 0%, rgba(200, 163, 90, 0.16), transparent 50%),
    linear-gradient(180deg, var(--surface-2), var(--bg-3));
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 34px 36px;
}
.services-banner-text h3 { font-size: 1.5rem; margin-bottom: 8px; }
.services-banner-text p { color: var(--muted); max-width: 640px; }

/* ============================ CASES ============================ */
.cases { background: var(--bg-2); }
.cases-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.case-card {
  grid-column: span 3;
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.case-card--wide { grid-column: span 6; display: grid; grid-template-columns: auto 1fr; gap: 6px 36px; align-items: center; }
.case-card--wide .case-value { grid-row: span 3; align-self: center; }
@media (min-width: 781px) {
  .cases-grid .case-card:not(.case-card--wide) { grid-column: span 3; }
}
.case-card:hover { transform: translateY(-6px); border-color: rgba(200, 163, 90, 0.4); box-shadow: var(--shadow); }
.case-value { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--gold-2); background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.case-card--wide .case-value { font-size: clamp(3.4rem, 7vw, 5rem); margin-bottom: 0; }
.case-plus { -webkit-text-fill-color: var(--gold-2); }
.case-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.case-client { font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.01em; }
.case-desc { color: var(--muted); font-size: 0.95rem; margin-top: 8px; }
.cases-note { text-align: center; color: var(--muted); max-width: 720px; margin: 40px auto 0; font-size: 0.98rem; }

/* ============================ PROOF (Scroll-Scrub Ergebnisse) ============================ */
.proof { background: var(--bg); position: relative; }
.proof-track { height: 300vh; }                 /* Scroll-Distanz für 6 Beats */
.proof-pin {
  position: sticky; top: 0; height: 100vh; min-height: 620px;
  overflow: hidden; display: flex; align-items: center;
}
.proof-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; background: #06080f; }
.proof-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(110% 80% at 50% 50%, rgba(7, 9, 15, 0.45), rgba(7, 9, 15, 0.86) 78%),
    linear-gradient(0deg, var(--bg), transparent 30%, transparent 70%, var(--bg));
}
.proof-eyebrow { position: absolute; top: clamp(96px, 13vh, 150px); left: 0; right: 0; z-index: 3; justify-content: center; display: inline-flex; }
.proof-beats { position: relative; z-index: 3; min-height: 340px; }
.proof-beat {
  position: absolute; inset: 0; margin: 0 auto; max-width: 820px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center;
  opacity: 0; transform: translateY(38px) scale(0.97); pointer-events: none;
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
}
.proof-beat.is-active { opacity: 1; transform: none; pointer-events: auto; }
.proof-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(4.5rem, 15vw, 10rem); line-height: 0.86; letter-spacing: -0.03em; }
.proof-num span { font-size: 0.46em; vertical-align: 0.06em; }
.proof-beat h2 { font-size: clamp(2rem, 5.5vw, 3.6rem); }
.proof-beat h3 { font-size: clamp(1.15rem, 2.6vw, 1.7rem); font-weight: 600; color: var(--text); max-width: 16ch; }
.proof-lead { color: var(--muted); max-width: 48ch; font-size: 1.05rem; }
.proof-client { color: var(--gold); font-weight: 600; letter-spacing: 0.02em; font-size: 0.98rem; }
.proof-beat .btn { margin-top: 12px; }
.proof-dots { position: absolute; left: 0; right: 0; bottom: clamp(40px, 7vh, 80px); z-index: 3; display: flex; gap: 10px; justify-content: center; }
.proof-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,0.22); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.proof-dots button.active { background: var(--gold); transform: scale(1.35); }
.proof-hint {
  position: absolute; bottom: clamp(20px, 4vh, 40px); left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2);
}

/* ============================ KI & AUTOMATISIERUNG ============================ */
.ai { background: var(--bg-2); }
.ai-showcase { max-width: 1000px; margin: 0 auto 52px; }
.browser-frame {
  border: 1px solid var(--line-strong); border-radius: 16px; overflow: hidden;
  background: #0d1119; box-shadow: var(--shadow);
}
.browser-bar { display: flex; gap: 8px; align-items: center; padding: 13px 16px; background: #11151f; border-bottom: 1px solid var(--line); }
.browser-bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.browser-bar span:nth-child(1) { background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #febc2e; }
.browser-bar span:nth-child(3) { background: #28c840; }
.browser-frame img { width: 100%; display: block; }
.ai-showcase figcaption { text-align: center; color: var(--muted); margin: 18px auto 0; font-size: 0.98rem; max-width: 700px; }
.ai-showcase figcaption strong { color: var(--gold-2); }
.ai-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ai-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.ai-card:hover { transform: translateY(-6px); border-color: rgba(200, 163, 90, 0.42); box-shadow: var(--shadow); }
.ai-ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem;
  background: var(--gold-soft); border: 1px solid rgba(200, 163, 90, 0.25); margin-bottom: 18px;
}
.ai-card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.ai-card p { color: var(--muted); font-size: 0.94rem; }
.ai-card strong { color: var(--gold-2); }
.ai-cta { text-align: center; margin-top: 42px; }
.ai-grid .reveal.in:nth-child(2) { transition-delay: 0.08s; }
.ai-grid .reveal.in:nth-child(3) { transition-delay: 0.16s; }
.ai-grid .reveal.in:nth-child(4) { transition-delay: 0.24s; }

/* ============================ PROCESS ============================ */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.process-step { position: relative; padding: 36px 28px; background: linear-gradient(180deg, var(--surface), var(--bg-3)); border: 1px solid var(--line); border-radius: var(--radius); }
.process-line { position: absolute; top: 56px; right: -26px; width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); z-index: 2; }
.process-num {
  display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--gold-2);
  background: var(--gold-soft); border: 1px solid rgba(200, 163, 90, 0.3); margin-bottom: 20px;
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.96rem; }

/* ============================ ABOUT ============================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-visual { position: relative; }
.about-portrait {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 4.6;
  background: radial-gradient(120% 90% at 50% 0%, rgba(200, 163, 90, 0.2), transparent 55%), linear-gradient(180deg, #1a2238, #0a0e1a 75%);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.about-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.about-badge {
  position: absolute; bottom: -22px; right: -10px; display: flex; align-items: center; gap: 14px;
  background: rgba(18, 23, 38, 0.92); backdrop-filter: blur(14px); border: 1px solid var(--line-strong);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow); max-width: 250px;
}
.about-badge strong { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--gold-2); line-height: 1; }
.about-badge span { font-size: 0.78rem; color: var(--muted); }
.about-content > p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-content > p strong { color: var(--text); }
.about-content p.about-lead { color: var(--text); font-size: 1.12rem; font-weight: 500; }
.about-content p.about-results { font-size: 0.95rem; color: var(--muted); border-left: 2px solid var(--gold); padding-left: 16px; }
.about-content p.about-results strong { color: var(--gold-2); }
.about-content h2 { margin-bottom: 22px; }
.about-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 26px 0; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: #c8cfdd; }
.check {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-2);
  display: grid; place-items: center; font-size: 0.8rem; border: 1px solid rgba(200, 163, 90, 0.3); font-weight: 700;
}

/* ============================ GALLERY (Live im Einsatz) ============================ */
.gallery { background: var(--bg-2); }
.gallery-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr; grid-template-rows: 1fr 1fr;
  gap: 16px; height: clamp(440px, 48vw, 580px);
}
.gallery-item {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.gallery-item--tall { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02); will-change: transform;
  transition: filter 0.4s ease; filter: saturate(1.04);
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 9, 15, 0.78));
  pointer-events: none;
}
.gallery-item:hover img { filter: saturate(1.15) brightness(1.06); }
.gallery-cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: #fff;
  padding-left: 14px;
}
.gallery-cap::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 18px; border-radius: 2px; background: var(--gold-grad);
}

/* ============================ TESTIMONIALS ============================ */
.slider { max-width: 860px; margin: 0 auto; }
.slides { position: relative; }
.slide {
  display: none; text-align: center; padding: 46px 40px;
  background: linear-gradient(180deg, var(--surface), var(--bg-3)); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.slide.active { display: block; animation: fadeUp 0.6s var(--ease); }
.quote-mark { font-family: var(--font-head); font-size: 4rem; line-height: 0.5; color: var(--gold); height: 30px; }
.slide-text { font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-family: var(--font-head); font-weight: 600; line-height: 1.4; color: var(--text); margin-bottom: 30px; letter-spacing: -0.01em; }
.slide-author { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.slide-avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #1d1402; background: var(--gold-grad); }
.slide-author strong { display: block; }
.slide-author span { font-size: 0.86rem; color: var(--muted); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.slider-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03); color: var(--text); font-size: 1.1rem; cursor: pointer; transition: background 0.25s, border-color 0.25s, transform 0.25s; }
.slider-btn:hover { background: var(--gold-soft); border-color: var(--gold); transform: scale(1.06); }
.slider-dots { display: flex; gap: 9px; }
.slider-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line-strong); cursor: pointer; padding: 0; transition: background 0.25s, width 0.25s; }
.slider-dots button.active { background: var(--gold); width: 24px; border-radius: 5px; }

/* ============================ FAQ ============================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-list details {
  background: linear-gradient(180deg, var(--surface), var(--bg-3)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 4px 26px; transition: border-color 0.3s;
}
.faq-list details[open] { border-color: rgba(200, 163, 90, 0.4); }
.faq-list summary {
  list-style: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  padding: 20px 36px 20px 0; position: relative; outline: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--gold-2); transition: transform 0.3s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { color: var(--muted); padding: 0 0 22px; max-width: 680px; }

/* ============================ URGENCY ============================ */
.urgency-box {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
  background: linear-gradient(120deg, #14101f, #0c0e18 60%);
  border: 1px solid rgba(200, 163, 90, 0.35); border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px); box-shadow: var(--shadow);
}
.urgency-glow { position: absolute; width: 460px; height: 460px; right: -120px; top: -160px; background: radial-gradient(circle, rgba(200, 163, 90, 0.3), transparent 70%); filter: blur(70px); }
.urgency-text { max-width: 600px; position: relative; }
.urgency-text h2 { margin-bottom: 14px; }
.urgency-text p:last-child { color: var(--muted); }

/* ============================ CONTACT ============================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-lead { color: var(--muted); font-size: 1.08rem; margin: 18px 0 28px; }
.contact-meta { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-meta li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; }
.contact-meta a { font-weight: 600; transition: color 0.25s; }
.contact-meta a:hover { color: var(--gold-2); }
.contact-meta-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); font-size: 1.1rem; }
.contact-assurance { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.92rem; }
.contact-book { margin: 6px 0 16px; }
.contact-or { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.form-head { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 18px; }

.contact-form { background: linear-gradient(180deg, var(--surface), var(--bg-3)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-row label { font-size: 0.88rem; font-weight: 600; color: #c3cad9; }
.form-row input, .form-row textarea {
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 12px; padding: 14px 16px;
  color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color 0.25s, box-shadow 0.25s; resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--muted-2); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: 0.78rem; color: var(--muted-2); margin-top: 14px; text-align: center; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { width: 150px; height: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 280px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); color: var(--muted); font-weight: 700;
  text-transform: lowercase; transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.footer-social a:hover { color: var(--gold-2); border-color: var(--gold); background: var(--gold-soft); }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--muted); font-size: 0.94rem; margin-bottom: 12px; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-cta p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 24px; border-top: 1px solid var(--line); }
.footer-bottom p { font-size: 0.85rem; color: var(--muted-2); }
.to-top { font-size: 0.85rem; color: var(--muted); transition: color 0.25s; }
.to-top:hover { color: var(--gold-2); }

/* ============================ MOBILE STICKY CTA ============================ */
.mobile-sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 9px;
  background: var(--gold-grad); color: #1d1402; font-family: var(--font-head); font-weight: 700;
  padding: 16px; border-radius: 14px; box-shadow: 0 16px 40px -10px rgba(200, 163, 90, 0.6);
  transform: translateY(140%); transition: transform 0.4s var(--ease);
}
.mobile-sticky-cta.show { transform: translateY(0); }

/* ============================ LEGAL PAGES (Impressum/Datenschutz/AGB) ============================ */
.legal-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 9, 15, 0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); padding: 14px 0;
}
.legal-page { padding: 56px 0 90px; min-height: 60vh; }
.legal-container { max-width: 760px; }
.legal-container h1 { font-size: clamp(2rem, 5vw, 2.9rem); margin-bottom: 8px; }
.legal-container h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal-container h3 { font-size: 1.04rem; margin: 22px 0 6px; color: var(--text); }
.legal-container p, .legal-container li { color: var(--muted); margin-bottom: 12px; }
.legal-container ul { padding-left: 22px; margin-bottom: 14px; }
.legal-container li { margin-bottom: 7px; }
.legal-container a { color: var(--gold-2); border-bottom: 1px solid rgba(231, 201, 134, 0.3); }
.legal-container a:hover { border-color: var(--gold-2); }
.legal-container strong { color: var(--text); }
.legal-updated { color: var(--muted-2); font-size: 0.85rem; margin-bottom: 34px; }
.legal-block { margin-bottom: 8px; }
.legal-note {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 10px; padding: 14px 18px; margin: 16px 0 26px; font-size: 0.9rem; color: var(--muted);
}
.legal-note strong { color: var(--gold-2); }

/* ============================ UMSATZ-RECHNER ============================ */
.calc { background: var(--bg); }
.calc-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center;
  max-width: 1000px; margin: 0 auto;
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 50px); box-shadow: var(--shadow);
}
.calc-controls { display: flex; flex-direction: column; gap: 36px; }
.calc-label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.calc-label label { font-weight: 600; color: #c3cad9; font-size: 0.98rem; }
.calc-label output { font-family: var(--font-head); font-weight: 800; color: var(--gold-2); font-size: 1.2rem; white-space: nowrap; }
.calc input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; cursor: pointer;
  background: linear-gradient(90deg, var(--gold) var(--fill, 30%), rgba(255, 255, 255, 0.12) var(--fill, 30%));
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-grad); border: 4px solid #0d1119; box-shadow: 0 4px 16px rgba(200, 163, 90, 0.55); cursor: pointer;
}
.calc input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: #e7c986; border: 4px solid #0d1119; cursor: pointer;
}
.calc-result { text-align: center; border-left: 1px solid var(--line); padding-left: 44px; }
.calc-result-label { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; }
.calc-result-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; margin: 12px 0 6px; }
.calc-cur { color: var(--gold-2); }
.calc-result-sub { color: var(--muted); margin-bottom: 24px; }
.calc-result-sub strong { color: var(--text); }
.calc-result .btn { width: 100%; }
.calc-note { color: var(--muted-2); font-size: 0.8rem; margin-top: 16px; }

/* ============================ MICRO-FX: Karten-Tilt + Cursor-Lichtschein ============================ */
.fx-card { position: relative; transform-style: preserve-3d; transition: transform 0.18s var(--ease), box-shadow 0.4s, border-color 0.4s; }
.fx-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 1;
  opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(231, 201, 134, 0.16), transparent 60%);
}
.fx-card:hover::after { opacity: 1; }
.fx-card > * { position: relative; z-index: 2; }

/* ============================ SCROLL FX (Parallax / Zoom / Progress) ============================ */
/* Schmaler Gold-Fortschrittsbalken oben – Breite wird per JS über --p gesetzt */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  transform: scaleX(var(--p, 0)); transform-origin: 0 50%;
  background: var(--gold-grad); box-shadow: 0 0 16px rgba(231, 201, 134, 0.55);
  pointer-events: none;
}

/* Bilder/Videos, die per JS gescrollt-gezoomt werden: keine Transform-Transition (sonst Lag) */
[data-fx] { will-change: transform; }
.hero-portrait img { will-change: transform; }

/* Optionaler Cinematic-Hintergrund im Hero (assets/hero.mp4) */
.hero-media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  opacity: 0; transition: opacity 1.2s var(--ease); pointer-events: none;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 8%, rgba(7, 9, 15, 0.72) 45%, rgba(7, 9, 15, 0.45)),
    linear-gradient(0deg, var(--bg), transparent 55%);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero.has-video .hero-media { opacity: 1; }

/* ============================ REVEAL ANIMATIONS ============================ */
/* Hide only when JS is active (.js set inline in <head>), so users without
   JavaScript always see the content instead of a blank page. */
.js .reveal { opacity: 0; transform: translateY(46px) scale(0.965); transition: opacity 0.8s var(--ease), transform 0.9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
/* stagger children inside grids */
.problem-grid .reveal.in:nth-child(2) { transition-delay: 0.08s; }
.problem-grid .reveal.in:nth-child(3) { transition-delay: 0.16s; }
.problem-grid .reveal.in:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal.in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal.in:nth-child(3) { transition-delay: 0.2s; }
.process-grid .reveal.in:nth-child(2) { transition-delay: 0.1s; }
.process-grid .reveal.in:nth-child(3) { transition-delay: 0.2s; }
.js .float-chip { opacity: 0; }
.js .float-chip.in { opacity: 1; }

/* ============================ KEYFRAMES ============================ */
@keyframes floatGlow { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 30px) scale(1.08); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  /* Proof-Sektion: kein Pin/Scrub – Beats als gestapelte Liste über statischem Standbild */
  .proof-track { height: auto; }
  .proof-pin { position: static; height: auto; min-height: 0; display: block; padding: clamp(70px, 10vh, 120px) 0; }
  .proof-overlay { background: linear-gradient(0deg, var(--bg), rgba(7, 9, 15, 0.82)); }
  .proof-eyebrow { position: static; margin-bottom: 26px; }
  .proof-beats { min-height: 0; }
  .proof-beat { position: static; opacity: 1; transform: none; pointer-events: auto; max-width: 100%; padding: 32px 0; border-top: 1px solid var(--line); }
  .proof-beat[data-beat="0"] { border-top: 0; padding-top: 0; }
  .proof-num { font-size: clamp(3.4rem, 22vw, 6rem); }
  .proof-dots, .proof-hint { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .process-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Umsatz-Rechner: auf Mobile/Tablet untereinander statt nebeneinander */
  .calc-card { grid-template-columns: 1fr; gap: 30px; }
  .calc-result { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 30px; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: rgba(10, 13, 22, 0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    padding: 40px; transform: translateX(100%); transition: transform 0.4s var(--ease);
    border-left: 1px solid var(--line); z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; color: var(--text); }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-actions .btn-primary { display: none; }
  .mobile-sticky-cta { display: flex; }
  body.menu-open { overflow: hidden; }

  .cases-grid { grid-template-columns: 1fr; }
  .case-card, .case-card--wide { grid-column: auto; }
  .case-card--wide { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .case-card--wide .case-value { grid-row: auto; }

  .float-chip--tl { left: 6px; top: 14px; }
  .float-chip--bl { left: -6px; bottom: 84px; }
  .float-chip--br { right: 6px; }
  .trust-row { gap: 18px; }
  .trust-divider { display: none; }
  .services-banner { padding: 28px 24px; }
  .urgency-box { padding: 36px 26px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .gallery-item { aspect-ratio: 16 / 10; }
  .gallery-item--tall { grid-row: auto; aspect-ratio: 4 / 5; }
}

@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn { width: 100%; }
  .float-chip { padding: 9px 12px; }
  .float-chip .chip-num { font-size: 1.05rem; }
  /* Rechner-Label auf sehr schmalen Screens stapeln (Wert nicht abschneiden) */
  .calc-label { flex-direction: column; align-items: flex-start; gap: 2px; }
}

/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
