/* ============================================================
   Dachflächen OS — Verkaufsseite
   Statische, eigenständige Umsetzung nach Design-Handover.
   Schriften lokal gehostet (DSGVO), Tokens 1:1 aus _ds portiert.
   ============================================================ */

/* ---------------- Fonts (self-hosted) ---------------- */
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 300 600; font-display: swap;
  src: url("../fonts/dmsans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 300 600; font-display: swap;
  src: url("../fonts/dmsans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/playfair-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/playfair-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display"; font-style: italic; font-weight: 500; font-display: swap;
  src: url("../fonts/playfair-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display"; font-style: italic; font-weight: 500; font-display: swap;
  src: url("../fonts/playfair-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------------- Tokens ---------------- */
:root {
  /* Farben */
  --base: #e3e9f2;
  --surface: #ffffff;
  --surface-2: #eef3f9;
  --line: rgba(26, 48, 80, .13);
  --ink: #1a3050;
  --ink-dim: rgba(26, 48, 80, .56);
  --off: #e8edf5;
  --blue: #57a4cc;
  --blue-l: #79bcd9;
  --blue-strong: #3f8fbf;
  --gold: #c8a84b;
  --gold-d: #9a7f2e;
  --navy: #0b1628;
  --navy-1: #0f1e36;
  --navy-2: #162844;
  --score-lo: #8fb0c4;
  --score-mid: #57a4cc;
  --score-hi: #c8a84b;

  /* Schrift */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", -apple-system, system-ui, sans-serif;
  --fw-light: 300; --fw-regular: 400; --fw-medium: 500; --fw-semibold: 600;

  /* Radien */
  --r-chip: 7px; --r-control: 9px; --r-metric: 11px; --r-card: 13px;
  --r-setcard: 14px; --r-modal: 18px; --r-pill: 999px;

  /* Schatten */
  --shadow: 0 10px 32px rgba(11, 22, 40, .13);
  --shadow-sm: 0 2px 10px rgba(11, 22, 40, .08);

  --maxw: 1160px;
}

/* ---------------- Reset / Base ---------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  background: var(--base);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------------- Primitives ---------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); display: block; flex: none; }
.eyebrow--light { color: var(--blue-l); }

.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.bg-base { background: var(--base); }
.bg-surface { background: var(--surface); }
.bg-sunken { background: var(--surface-2); }
.bg-navy { background: var(--navy); }

.sec-head { margin-bottom: 52px; }
.sec-head--center { text-align: center; }
.sec-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; letter-spacing: -.015em;
  color: var(--ink); margin-top: 18px; max-width: 760px; text-wrap: balance;
}
.sec-head--center .sec-title { margin-left: auto; margin-right: auto; }
.sec-title--dark { color: var(--off); }
.sec-intro {
  font-size: 16px; line-height: 1.6; font-weight: 300; color: var(--ink-dim);
  margin-top: 20px; max-width: 620px;
}
.sec-head--center .sec-intro { margin-left: auto; margin-right: auto; }
.sec-intro--dark { color: rgba(232, 237, 245, .72); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; border-radius: var(--r-control);
  cursor: pointer; transition: background .15s, color .15s, border-color .15s, filter .15s;
  white-space: nowrap; line-height: 1; text-decoration: none; border: 1px solid transparent;
}
.btn--primary { background: var(--navy-1); color: var(--off); border-color: var(--navy-2); }
.btn--primary:hover { background: var(--navy-2); }
.btn--ghost { background: var(--surface); color: var(--ink-dim); border-color: var(--line); }
.btn--ghost:hover { background: var(--surface-2); color: var(--ink); }
.btn--gold { background: var(--gold); color: #0b1628; border-color: var(--gold-d); }
.btn--gold:hover { filter: brightness(.96); }
.btn--outline-light { background: transparent; color: var(--off); border-color: rgba(232, 237, 245, .28); }
.btn--outline-light:hover { background: rgba(232, 237, 245, .08); }
.btn--sm { padding: 7px 12px; font-size: 12px; }
.btn--md { padding: 10px 16px; font-size: 12.5px; }
.btn--lg { padding: 12px 20px; font-size: 14px; }

/* ---------------- ScoreChip / Pills ---------------- */
.score-chip {
  display: inline-block; min-width: 44px; text-align: center; padding: 3px 8px;
  border-radius: var(--r-chip); font-family: var(--font-body); font-weight: 600;
  font-size: 12px; font-variant-numeric: tabular-nums; color: #0b1628;
}
.compliance {
  display: flex; gap: 10px;
  background: color-mix(in srgb, var(--blue) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--blue) 28%, var(--line));
  border-radius: var(--r-metric); padding: 12px 15px;
  font-family: var(--font-body); font-weight: 300; font-size: 12px;
  color: var(--ink-dim); line-height: 1.55;
}
.compliance__icon { flex: none; color: var(--blue); }

/* ---------------- Logo ---------------- */
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo__tile {
  display: inline-grid; place-items: center; flex: none; width: 36px; height: 36px;
  border-radius: 10px; background: linear-gradient(150deg, var(--gold), var(--blue-strong));
  padding: 1.6px;
}
.logo__tile-inner {
  display: grid; place-items: center; width: 100%; height: 100%;
  border-radius: 9px; background: var(--navy); color: var(--blue-l);
}
.logo__lockup { display: inline-flex; flex-direction: column; gap: 3px; justify-content: center; }
.logo__row { display: inline-flex; align-items: center; gap: 7px; }
.logo__word {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; line-height: 1;
}
.logo__os {
  font-family: var(--font-body); font-size: 8.4px; font-weight: 600; letter-spacing: .12em;
  border-radius: 999px; padding: 2px 6px; line-height: 1;
}
.logo__sub { display: inline-flex; align-items: center; gap: 5px; }
.logo__dot { width: 4.5px; height: 4.5px; border-radius: 999px; background: var(--gold); flex: none; }
.logo__subtext {
  font-family: var(--font-body); font-size: 8px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; line-height: 1;
}
/* dark tone (navy backgrounds) */
.logo--dark .logo__word { color: var(--off); }
.logo--dark .logo__os { color: #d8bd6a; border: 1px solid rgba(200, 168, 75, .55); }
.logo--dark .logo__subtext { color: rgba(232, 237, 245, .60); }
/* light tone */
.logo--light .logo__word { color: var(--ink); }
.logo--light .logo__os { color: var(--gold-d); border: 1px solid rgba(154, 127, 46, .55); }
.logo--light .logo__subtext { color: var(--ink-dim); }

/* ---------------- Top bar ---------------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--navy) 90%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(121, 188, 217, .14);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__nav { display: flex; gap: 26px; }
.topbar__nav a { font-size: 13px; font-weight: 400; color: rgba(232, 237, 245, .72); text-decoration: none; transition: color .15s; }
.topbar__nav a:hover { color: var(--off); }
.topbar__nav-cta { display: none; }
.topbar__burger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--off);
}
.topbar__burger svg { display: block; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(158deg, #16304f 0%, #10233d 48%, #0d1c33 100%);
  padding: 96px 0 108px; border-bottom: 1px solid rgba(121, 188, 217, .14);
}
.hero__glow-a {
  position: absolute; top: -24%; right: -6%; width: 720px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 164, 204, .34), transparent 62%);
  filter: blur(6px); pointer-events: none; animation: glowPulse 6s ease-in-out infinite;
}
.hero__glow-b {
  position: absolute; bottom: -34%; left: -10%; width: 640px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, .20), transparent 64%); pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(121, 188, 217, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(121, 188, 217, .05) 1px, transparent 1px);
  background-size: 34px 34px; animation: gridDrift 9s linear infinite;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 78%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 78%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 4.8vw, 60px); line-height: 1.04; letter-spacing: -.02em;
  color: var(--off); margin-top: 22px; text-wrap: balance;
}
.hero__title .gold { color: var(--gold); }
.hero__lead { font-size: 17px; line-height: 1.6; font-weight: 300; color: rgba(232, 237, 245, .8); margin-top: 24px; max-width: 500px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }
.hero__rating { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__stars { display: flex; gap: 3px; }
.hero__rating-num { font-size: 13.5px; color: rgba(232, 237, 245, .85); font-weight: 600; font-variant-numeric: tabular-nums; }
.hero__rating-note { font-size: 12px; color: rgba(232,237,245,.5); }

/* Hero scan card */
.scan { position: relative; }
.scan__group { position: relative; will-change: transform, opacity; transition: transform 1.1s cubic-bezier(.4,0,.2,1), opacity 1.1s ease; }
.scan__pin {
  position: absolute; top: -20px; right: -14px; z-index: 5;
  background: var(--surface); border-radius: var(--r-metric); padding: 12px 15px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(8px) scale(.85);
  transition: opacity .9s ease, transform .9s cubic-bezier(.34,1.4,.5,1);
}
.scan__pin-kind { font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); font-weight: 600; }
.scan__pin-label { font-family: var(--font-display); font-size: 15px; color: var(--ink); line-height: 1.1; }
.scan__counter {
  position: absolute; left: -22px; top: 152px; z-index: 5;
  background: var(--surface); border-radius: var(--r-metric); padding: 11px 14px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  opacity: 0; transform: translateY(8px);
  transition: opacity .9s ease, transform .9s ease;
}
.scan__counter-label { font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); font-weight: 600; }
.scan__counter-val { font-family: var(--font-display); font-size: 22px; color: var(--ink); line-height: 1.05; font-variant-numeric: tabular-nums; }
.scan--revealed .scan__pin, .scan--revealed .scan__counter { opacity: 1; transform: translateY(0) scale(1); }
.scan--revealed .scan__pin { transition-delay: 4.7s; }
.scan--revealed .scan__counter { transition-delay: 2.6s; }

.scan__card { background: var(--surface); border-radius: var(--r-setcard); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.scan__map { position: relative; height: 262px; overflow: hidden; background-size: cover; background-position: center; }
.scan__map-overlay { position: absolute; inset: 0; pointer-events: none; }
.scan__beam {
  position: absolute; top: 0; bottom: 0; left: -12%; width: 54px; z-index: 3;
  background: linear-gradient(90deg, rgba(87,164,204,0) 0%, rgba(87,164,204,.20) 55%, rgba(200,168,75,.42) 82%, rgba(255,255,255,.72) 100%);
  border-right: 2px solid rgba(200,168,75,.9); box-shadow: 0 0 24px 4px rgba(87,164,204,.4);
}
.scan__dot {
  position: absolute; border-radius: 999px;
  opacity: 0; transform: scale(.4);
  transition: opacity .8s ease, transform .8s cubic-bezier(.34,1.4,.5,1);
}
.scan--revealed .scan__dot { opacity: 1; transform: scale(1); }
.scan__status {
  position: absolute; left: 14px; bottom: 12px; z-index: 4;
  display: inline-flex; align-items: center; gap: 7px;
  background: color-mix(in srgb, var(--navy) 80%, transparent); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(121,188,217,.28); border-radius: 999px; padding: 6px 11px;
}
.scan__status-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--gold); animation: glowPulse 6s ease-in-out infinite; }
.scan__status-text { font-size: 11px; color: var(--off); font-weight: 500; letter-spacing: .02em; }
.scan__body { padding: 18px 20px 20px; }
.scan__body-eyebrow { font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.scan__body-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.scan__value { font-family: var(--font-display); font-size: 34px; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; white-space: nowrap; }
.scan__value .star { color: var(--gold-d); font-size: 20px; }
.scan__note { font-size: 12px; color: var(--ink-dim); text-align: right; line-height: 1.35; }

/* ---------------- Problem ---------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-grid { grid-auto-rows: auto; }
.pcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-setcard);
  box-shadow: var(--shadow-sm); padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.pcard--tall { grid-row: span 2; }
.pcard__body { display: flex; flex-direction: column; }
.pcard--tall .pcard__body { flex: 1; justify-content: center; }
.pcard__text { margin-top: auto; }
.pcard__title { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.pcard--tall .pcard__title { font-size: 22px; }
.pcard__sub { font-size: 13.5px; line-height: 1.55; color: var(--ink-dim); }
.numbadge {
  align-self: flex-start; min-width: 34px; height: 26px; padding: 0 12px; border-radius: 999px;
  display: inline-grid; place-items: center; font-family: var(--font-body); font-weight: 600;
  font-size: 12.5px; letter-spacing: .04em; white-space: nowrap;
  background: var(--navy); color: var(--off); border: 1px solid var(--navy-2);
}
.numbadge--gold {
  background: color-mix(in srgb, var(--gold) 18%, var(--surface)); color: var(--gold-d);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--line));
}

/* Solution teaser card */
.solution-teaser {
  grid-column: 2 / span 2; text-decoration: none;
  background: radial-gradient(600px 300px at 82% 0%, rgba(200,168,75,.16), transparent 60%), linear-gradient(150deg, #16304f, #0f1e36);
  border: 1px solid rgba(200,168,75,.35); border-radius: var(--r-setcard);
  box-shadow: var(--shadow); padding: 26px 28px; position: relative; overflow: hidden; display: block;
}
.solution-teaser__title { font-family: var(--font-display); font-weight: 500; font-size: 26px; color: var(--off); margin: 16px 0 8px; line-height: 1.15; }
.solution-teaser__text { font-size: 14px; line-height: 1.55; color: rgba(232,237,245,.78); margin: 0 0 14px; max-width: 520px; }
.solution-teaser__cta { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gold); }

/* ---------------- Loesung ---------------- */
.split { display: grid; grid-template-columns: 1.12fr .88fr; gap: 44px; align-items: center; }
.loesung__points { display: flex; flex-direction: column; gap: 18px; }
.point { display: flex; gap: 14px; }
.point__num {
  flex: none; width: 30px; height: 30px; border-radius: 999px; background: var(--surface-2);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--line)); display: grid; place-items: center;
  color: var(--gold-d); font-family: var(--font-display); font-size: 14px;
}
.point__title { font-family: var(--font-display); font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.point__desc { font-size: 13.5px; line-height: 1.55; color: var(--ink-dim); }

/* Video placeholder */
.video-ph {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-card); overflow: hidden;
  background: radial-gradient(500px 300px at 42% 32%, rgba(87,164,204,.24), transparent 70%), var(--navy-1);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.video-ph__play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.video-ph__btn {
  width: 74px; height: 74px; border-radius: 999px; background: color-mix(in srgb, var(--gold) 92%, transparent);
  display: grid; place-items: center; box-shadow: 0 12px 34px rgba(200,168,75,.4);
}
.video-ph__tag { position: absolute; left: 16px; top: 14px; }
.video-ph__cap {
  position: absolute; left: 16px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px;
  background: color-mix(in srgb, var(--navy) 78%, transparent); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(121,188,217,.25); border-radius: 999px; padding: 6px 12px;
}
.video-ph__cap span:last-child { font-size: 11.5px; color: var(--off); font-weight: 500; }

.ph-tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 9.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-d);
  border: 1px dashed color-mix(in srgb, var(--gold-d) 50%, transparent);
  background: color-mix(in srgb, var(--gold-d) 8%, transparent);
  border-radius: 999px; padding: 4px 10px; line-height: 1;
}
.ph-tag::before { content: ""; width: 5px; height: 5px; border-radius: 999px; background: currentColor; }
.ph-tag--blue { color: var(--blue); border-color: color-mix(in srgb, var(--blue) 50%, transparent); background: color-mix(in srgb, var(--blue) 8%, transparent); }

/* ---------------- Social proof ---------------- */
.sp-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.testimonial { display: flex; flex-direction: column; gap: 16px; }
.testimonial__media { position: relative; }
.testimonial__video {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-card); overflow: hidden;
  background: radial-gradient(400px 240px at 40% 30%, rgba(87,164,204,.22), transparent 70%), var(--navy-1);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.testimonial__play { position: absolute; inset: 0; display: grid; place-items: center; }
.testimonial__play-btn {
  width: 60px; height: 60px; border-radius: 999px; background: color-mix(in srgb, var(--gold) 92%, transparent);
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(200,168,75,.35);
}
.testimonial__tag { position: absolute; left: 14px; top: 12px; }
.numbox-wrap { position: absolute; right: -14px; bottom: -22px; z-index: 4; transform: perspective(700px) rotateY(-14deg) rotateX(4deg); transform-style: preserve-3d; }
.numbox-row { display: flex; gap: 2px; border-radius: 14px; overflow: hidden; box-shadow: 0 22px 44px rgba(11,22,40,.30), 0 2px 0 rgba(255,255,255,.4) inset; border: 1px solid var(--line); }
.numbox { padding: 14px 18px; min-width: 128px; }
.numbox--navy { background: var(--navy); color: var(--off); }
.numbox--gold { background: var(--gold); color: var(--navy); }
.numbox__label { font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; opacity: .8; }
.numbox--navy .numbox__label { opacity: .7; }
.numbox__value { font-family: var(--font-display); font-size: 24px; line-height: 1.05; font-variant-numeric: tabular-nums; margin-top: 4px; }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-sm); padding: 20px 22px; margin-top: 8px;
}
.quote__mark { font-family: var(--font-display); font-size: 34px; line-height: 0; color: var(--gold); height: 18px; }
.quote__text { font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.45; color: var(--ink); margin: 6px 0 16px; }
.quote__by { display: flex; align-items: center; gap: 12px; }
.quote__foto { width: 38px; height: 38px; border-radius: 999px; background: var(--surface-2); border: 1px dashed var(--line); display: grid; place-items: center; font-size: 9px; color: var(--ink-dim); }
.quote__name { font-size: 13px; color: var(--ink-dim); }
.quote__name b { color: var(--ink); font-weight: 600; }

/* ---------------- Referenzen · 3D-Logo-Karten ---------------- */
.refgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.refcard { display: flex; flex-direction: column; }

/* Stage + flache Platte — Logo ohne 3D-Kippung */
.refcard__stage { position: relative; }
.refcard__plate { position: relative; width: 100%; height: 268px; }

/* Mitte: Logo auf ruhig liegender Surface-Karte (flach, kein 3D) */
.refcard__logo {
  position: absolute; top: 50%; left: 50%;
  width: 62%; height: 120px; padding: 20px 24px;
  transform: translate(-50%, -50%);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: 0 16px 36px -20px rgba(11, 22, 40, .34), 0 2px 0 rgba(255, 255, 255, .6) inset;
  display: grid; place-items: center; overflow: hidden;
}
.refcard__logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

/* Drumherum: Kennzahlen als leicht schwebende Badges — dezente Tiefe über weiche Schatten,
   die beim Scrollen minimal mitwandern (Parallax via JS, siehe main.js). */
.refbadge {
  position: absolute; white-space: nowrap;
  font-family: var(--font-body); font-size: 12px; font-weight: 600; line-height: 1; letter-spacing: .01em;
  padding: 9px 13px; border-radius: var(--r-pill);
  box-shadow: 0 8px 18px -8px rgba(11, 22, 40, .36);
  will-change: transform;
}
.refbadge--gold    { background: var(--gold); color: var(--navy); border: 1px solid var(--gold-d); }
.refbadge--navy    { background: var(--navy); color: var(--off);  border: 1px solid var(--navy-2); }
.refbadge--surface { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.refbadge--a { top: 2%;    right: 3%; }
.refbadge--b { bottom: 4%; left: 3%; }
.refbadge--c { bottom: 6%; right: 7%; }

/* Zitat + Betrieb unter der Karte */
.refcard__quote { margin-top: 26px; flex: 1; display: flex; flex-direction: column; }
.refcard__quote .quote__text { font-size: 15.5px; }
.refcard__by { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-size: 13px; font-weight: 600; color: var(--ink); }
.refcard__by-dot { flex: none; width: 6px; height: 6px; border-radius: 999px; background: var(--gold); }

/* ---------------- Demo-Video ---------------- */
.video-demo {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--navy);
}
.video-demo__el { display: block; width: 100%; height: 100%; object-fit: contain; background: var(--navy); }
.video-demo__cap {
  position: absolute; left: 14px; top: 14px; z-index: 2; pointer-events: none;
  display: inline-flex; align-items: center; gap: 7px;
  background: color-mix(in srgb, var(--navy) 78%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(121, 188, 217, .25); border-radius: 999px; padding: 6px 12px;
}
.video-demo__cap span:last-child { font-size: 11.5px; color: var(--off); font-weight: 500; }

/* ---------------- Module ---------------- */
.modcard {
  background: var(--surface); border-radius: var(--r-setcard);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.modcard--gold { border: 1px solid color-mix(in srgb, var(--gold) 55%, var(--line)); border-top: 2px solid var(--gold); }
.modcard__tag {
  align-self: flex-start; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: color-mix(in srgb, var(--blue) 12%, transparent);
  border-radius: 999px; padding: 5px 11px; margin-bottom: 16px;
}
.modcard--gold .modcard__tag { color: var(--gold-d); background: color-mix(in srgb, var(--gold) 14%, transparent); }
.modcard__title { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--ink); margin: 0 0 14px; line-height: 1.2; }
.modcard__list { display: flex; flex-direction: column; gap: 10px; flex: 1; margin: 0 0 22px; }
.modcard__list li { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.45; color: var(--ink-dim); }
.modcard__list li::before { content: ""; flex: none; margin-top: 6px; width: 5px; height: 5px; border-radius: 999px; background: var(--blue); }
.modcard--gold .modcard__list li::before { background: var(--gold); }

/* ---------------- Beweis ---------------- */
.beweis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.beweis-card {
  background: var(--navy-1); border: 1px solid rgba(121,188,217,.16);
  border-top: 2px solid var(--gold); border-radius: var(--r-card); padding: 24px;
}
.beweis-card__label { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(232,237,245,.6); font-weight: 600; margin-bottom: 12px; }
.beweis-card__value { font-family: var(--font-display); font-size: 40px; color: var(--off); line-height: 1; font-variant-numeric: tabular-nums; }
.beweis-card__value--gold { color: var(--gold); }
.beweis-card__sub { font-size: 12.5px; color: rgba(232,237,245,.6); margin-top: 12px; }
.beweis__note { font-size: 13.5px; line-height: 1.6; color: rgba(232,237,245,.62); margin-top: 28px; max-width: 720px; }

/* ---------------- DSGVO ---------------- */
.dsgvo-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: start; }
.dsgvo__lead { font-size: 15px; line-height: 1.68; color: var(--ink-dim); max-width: 460px; }
.dsgvo__list { display: flex; flex-direction: column; gap: 14px; }
.dsgvo-item { display: flex; gap: 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-card); padding: 20px 22px; }
.dsgvo-item__check {
  flex: none; width: 34px; height: 34px; border-radius: 999px; background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--line)); display: grid; place-items: center;
  color: var(--gold-d); font-size: 15px;
}
.dsgvo-item__title { font-family: var(--font-display); font-size: 17px; color: var(--ink); margin-bottom: 5px; }
.dsgvo-item__desc { font-size: 13.5px; line-height: 1.55; color: var(--ink-dim); }

/* ---------------- Kontakt-Formular ---------------- */
.contact { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: start; }
.contact__aside .sec-title { margin-top: 16px; }
.contact__aside .sec-intro { margin-top: 18px; }
.contact__meta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact__meta li { display: flex; align-items: center; gap: 12px; }
.contact__meta-ic {
  flex: none; width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--line)); color: var(--gold-d);
}
.contact__meta a { font-size: 14px; color: var(--ink); text-decoration: none; transition: color .15s; }
.contact__meta a:hover { color: var(--blue-strong); }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-setcard);
  box-shadow: var(--shadow); padding: 30px;
}
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > label { font-size: 12.5px; font-weight: 500; color: var(--ink); letter-spacing: .01em; }
.req { color: var(--gold-d); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--ink); width: 100%;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-control);
  padding: 11px 13px; transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); opacity: .7; }
.field textarea { resize: vertical; min-height: 122px; line-height: 1.5; }
.field input:focus, .field textarea:focus {
  outline: none; background: var(--surface); border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 22%, transparent);
}
.field input:user-invalid, .field textarea:user-invalid {
  border-color: color-mix(in srgb, #c0492f 62%, var(--line));
}
.checkfield { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.checkfield input[type="checkbox"] {
  flex: none; width: 20px; height: 20px; margin-top: 1px; accent-color: var(--gold-d); cursor: pointer;
}
.checkfield__text { font-size: 13px; line-height: 1.5; color: var(--ink-dim); }
.checkfield__text a { color: var(--blue-strong); text-decoration: underline; }
.contact-form__actions { flex-direction: row; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.contact-form__note { font-size: 12px; color: var(--ink-dim); }

/* ---------------- Danke-Seite ---------------- */
.thanks {
  min-height: 64vh; display: grid; place-items: center; padding: 96px 0;
  background: radial-gradient(900px 460px at 50% -8%, color-mix(in srgb, var(--blue) 12%, transparent), transparent 62%), var(--base);
}
.thanks__inner { text-align: center; max-width: 640px; }
.thanks__badge {
  width: 76px; height: 76px; margin: 0 auto 26px; border-radius: 999px; display: grid; place-items: center;
  color: var(--navy); background: var(--gold); border: 1px solid var(--gold-d);
  box-shadow: 0 14px 34px rgba(200, 168, 75, .4);
}
.thanks .eyebrow { margin-bottom: 18px; }
.thanks__title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12; letter-spacing: -.015em; color: var(--ink); text-wrap: balance;
}
.thanks__text { font-size: 16px; line-height: 1.6; color: var(--ink-dim); margin: 18px auto 30px; max-width: 480px; }

/* ---------------- FAQ ---------------- */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); overflow: hidden; transition: background .15s; }
.faq-item.open { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); margin-bottom: 8px; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  padding: 20px 4px; font-family: var(--font-body);
}
.faq-item.open .faq-q { padding: 20px 22px; }
.faq-q__text { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.faq-q__icon {
  flex: none; width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--ink-dim); font-size: 16px; transition: transform .15s, background .15s, color .15s;
}
.faq-item.open .faq-q__icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14px; line-height: 1.65; color: var(--ink-dim); max-width: 680px; }

/* ---------------- Final CTA ---------------- */
.cta {
  background: radial-gradient(1000px 500px at 80% 0%, rgba(200,168,75,.14), transparent 60%), var(--navy);
  padding: 104px 0;
}
.cta__inner { text-align: center; }
.cta__title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12; letter-spacing: -.015em; color: var(--off); margin: 18px auto 0; max-width: 780px; text-wrap: balance;
}
.cta__text { font-size: 16px; line-height: 1.6; color: rgba(232,237,245,.72); margin: 20px auto 0; max-width: 580px; }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ---------------- Footer ---------------- */
.footer { background: var(--navy-1); padding: 56px 0 40px; border-top: 1px solid rgba(121,188,217,.14); }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer__about { font-size: 13.5px; line-height: 1.6; color: rgba(232,237,245,.6); margin-top: 18px; max-width: 320px; }
.footer__head { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(232,237,245,.5); font-weight: 600; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 13.5px; color: rgba(232,237,245,.62); text-decoration: none; transition: color .15s; }
.footer__links a:hover { color: var(--off); }
.footer__disclaimer { margin-top: 34px; font-size: 11.5px; line-height: 1.55; color: rgba(232,237,245,.4); max-width: 760px; }
.footer__bar { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(121,188,217,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12px; color: rgba(232,237,245,.45); }

/* ---------------- Consent banner ---------------- */
.consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-modal);
  box-shadow: var(--shadow); padding: 22px 24px;
  transform: translateY(140%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.consent.show { transform: translateY(0); }
.consent__title { font-family: var(--font-display); font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.consent__text { font-size: 12.5px; line-height: 1.6; color: var(--ink-dim); margin-bottom: 16px; }
.consent__text a { color: var(--blue); text-decoration: underline; }
.consent__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------------- Legal pages ---------------- */
.legal { padding: 64px 0 96px; }
.legal__back { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-dim); text-decoration: none; margin-bottom: 28px; }
.legal__back:hover { color: var(--ink); }
.legal__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 4vw, 44px); line-height: 1.1; letter-spacing: -.015em; color: var(--ink); margin-bottom: 10px; }
.legal__intro { font-size: 14px; color: var(--ink-dim); margin-bottom: 40px; }
.legal__body { max-width: 760px; }
.legal__body h2 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--ink); margin: 40px 0 12px; letter-spacing: -.01em; }
.legal__body h3 { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink); margin: 26px 0 10px; }
.legal__body p { font-size: 14px; line-height: 1.7; color: var(--ink-dim); margin: 0 0 14px; }
.legal__body ul { margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.legal__body li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.6; color: var(--ink-dim); }
.legal__body li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 5px; height: 5px; border-radius: 999px; background: var(--gold); }
.legal__body a { color: var(--blue); text-decoration: underline; overflow-wrap: anywhere; }
.legal__body strong { color: var(--ink); font-weight: 600; }
.legal__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-sm); padding: 22px 24px; margin: 0 0 20px;
}
.legal__card p { margin: 0; line-height: 1.7; }
.legal__stand { font-size: 12.5px; color: var(--ink-dim); margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }

/* ---------------- Utility ---------------- */
.mt-26 { margin-top: 26px; }
.mt-34 { margin-top: 34px; }
.mt-6 { margin-top: 6px; }
.grid-2-note { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes heroScanOnce { 0% { left: -12%; opacity: 0; } 7% { opacity: 1; } 93% { opacity: 1; } 100% { left: 104%; opacity: 0; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes glowPulse { 0%, 100% { opacity: .55; } 50% { opacity: .95; } }
@keyframes gridDrift { 0% { background-position: 0 0; } 100% { background-position: 34px 34px; } }

/* Problem card 1 — lead sell-off */
@keyframes leadArrow { 0% { opacity: 0; transform: scale(.2); } 6% { opacity: 1; transform: scale(1); } 88% { opacity: 1; transform: scale(1); } 96%, 100% { opacity: 0; transform: scale(.2); } }
@keyframes leadBubble { 0%, 9% { opacity: 0; transform: scale(.2); } 15% { opacity: 1; transform: scale(1.14); } 19% { transform: scale(1); } 88% { opacity: 1; transform: scale(1); } 96%, 100% { opacity: 0; transform: scale(.2); } }
.lead-arrow, .lead-bubble { transform-box: fill-box; transform-origin: center; opacity: 0; }
.pcard:hover .lead-arrow { animation: leadArrow 9s ease-in-out infinite; }
.pcard:hover .lead-bubble { animation: leadBubble 9s ease-in-out infinite; }

/* Problem card 2 — banknote burn */
@keyframes pbBillWhole { 0% { transform: translateX(-190%); opacity: 0; } 16% { transform: translateX(0); opacity: 1; } 42% { transform: translateX(0); opacity: 1; } 47% { opacity: 0; } 100% { transform: translateX(0); opacity: 0; } }
@keyframes pbBillP1 { 0%, 44% { opacity: 0; transform: translate(0,0) rotate(0); } 47% { opacity: 1; transform: translate(0,0) rotate(-6deg); } 82%, 100% { opacity: 0; transform: translate(-16px,66px) rotate(-40deg); } }
@keyframes pbBillP2 { 0%, 44% { opacity: 0; transform: translate(0,0) rotate(0); } 47% { opacity: 1; transform: translate(0,0) rotate(6deg); } 82%, 100% { opacity: 0; transform: translate(18px,74px) rotate(36deg); } }
.burn-vis { position: relative; height: 100px; overflow: hidden; }
.burn-c { position: absolute; transform: translate(-50%,-50%); }
.burn-note { width: 62px; height: 32px; border-radius: 5px; background: var(--surface-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: var(--gold-d); font-size: 16px; }
.burn-piece { width: 31px; height: 34px; border-radius: 4px; background: var(--surface-2); border: 1px solid var(--line); overflow: hidden; position: relative; opacity: 0; }
.burn-half { position: absolute; top: 0; width: 60px; height: 32px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: var(--gold-d); font-size: 16px; }
.burn-p1 .burn-half { left: 0; }
.burn-p2 .burn-half { left: -29px; }
.pcard:hover .burn-whole { animation: pbBillWhole 6s ease-in-out infinite; }
.pcard:hover .burn-p1 { animation: pbBillP1 6s ease-in-out infinite; }
.pcard:hover .burn-p2 { animation: pbBillP2 6s ease-in-out infinite; }

/* Problem card 3 — leaky funnel */
@keyframes pbBypass { 0% { transform: translateY(-8px); opacity: 0; } 14% { opacity: 1; } 86% { opacity: 1; } 100% { transform: translateY(118px); opacity: 0; } }
.pipeline-vis { position: relative; min-height: 96px; padding: 2px; }
.pipeline-bars { max-width: 150px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.pipeline-bar { height: 9px; border-radius: 999px; background: linear-gradient(90deg, color-mix(in srgb, var(--navy) 32%, var(--surface-2)), color-mix(in srgb, var(--navy) 58%, var(--surface-2))); border: 1px solid var(--line); }
.pb-bypass { position: absolute; top: 0; width: 9px; height: 9px; border-radius: 999px; background: var(--blue); opacity: 0; }
.pcard:hover .pb-bypass { animation: pbBypass 2.3s ease-in infinite; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__glow-a, .hero__grid, .scan__status-dot,
  .pcard:hover .lead-arrow, .pcard:hover .lead-bubble,
  .pcard:hover .burn-whole, .pcard:hover .burn-p1, .pcard:hover .burn-p2,
  .pcard:hover .pb-bypass { animation: none; }
  .lead-arrow, .lead-bubble, .burn-piece { opacity: 1; }
  .scan__beam { display: none; }
  .scan__dot, .scan__pin, .scan__counter { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .hero { padding: 72px 0 84px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .split, .dsgvo-split { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .beweis-grid { grid-template-columns: 1fr 1fr; }
  .solution-teaser { grid-column: 1 / -1; }
  .pcard--tall { grid-row: auto; }
  .refgrid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contact { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .topbar__nav, .hero__actions .btn--lg + .btn--lg { }
  .topbar__nav { display: none; }
  .topbar__nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--navy-1); border-bottom: 1px solid rgba(121,188,217,.14); padding: 8px 20px 16px;
  }
  .topbar__nav.open a { padding: 12px 0; border-bottom: 1px solid rgba(121,188,217,.10); font-size: 15px; }
  .topbar__burger { display: block; }
  .topbar__right { gap: 12px; }
  .topbar__cta { display: none; }
  .topbar__nav.open .topbar__nav-cta { display: inline-flex; width: 100%; justify-content: center; margin-top: 14px; }
  .grid-3, .grid-2, .beweis-grid, .grid-2-note { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .sec-head { margin-bottom: 36px; }
  .numbox-wrap { position: static; transform: none; margin-top: 14px; }
  .numbox-row { box-shadow: var(--shadow-sm); }
  /* 3D-Referenzkarte auf Mobile flach & statisch (kein Layout-Shift, kein Overlap) */
  .refcard__stage { perspective: none; }
  .refcard__plate {
    height: auto; transform: none !important;
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 9px; padding: 4px 0;
  }
  .refcard__logo {
    position: static; transform: none; flex: 0 0 100%;
    width: min(78%, 300px); height: 104px; margin: 0 auto 6px;
  }
  .refbadge { position: static; inset: auto; transform: none !important; animation: none !important; box-shadow: var(--shadow-sm); }
  .refgrid { max-width: none; gap: 34px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .scan__counter { left: -8px; }
  .scan__pin { right: -6px; }
  .hero__actions .btn { width: 100%; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .cta { padding: 72px 0; }
}
