/* ─────────────────────────────────────────────────────────────
   RichtKI – Stylesheet
   Design: Clean B2B-SaaS, Linear/Vercel-inspired
   Fonts: System-Font-Stack (kein externer CDN)
───────────────────────────────────────────────────────────── */

/* ── DEV NOTICE (vor Launch entfernen) ───────────────────── */
.dev-notice {
  background: #FEF3C7;
  border-bottom: 2px solid #F59E0B;
  color: #92400E;
  text-align: center;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.5;
}

/* ── SITE LOGO (nav – SVG/PNG) ────────────────────────────── */
.site-logo {
  height: 36px;   /* desktop */
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast; /* crisp on retina */
}

/* ── FOOTER BRAND LOGO ────────────────────────────────────── */
.footer-icon {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #F1F5F9;   /* white on dark footer */
}

.footer-logo-ki {
  color: #00c4cc;   /* brand teal – matches logo */
}

/* ── FOOTER LOGO (Startseite – neues helles Logo-Bild) ────── */
.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: -10px;
}

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --surface:      #F0F4FF;  /* very subtle blue-tinted off-white */
  --border:       #E2E8F0;
  --text:         #0F172A;  /* Slate 900 - near-black with blue undertone */
  --text-body:    #334155;  /* Slate 700 */
  --text-muted:   #64748B;  /* Slate 500 */
  --blue:         #1B4FD8;  /* primary - confident institutional blue */
  --blue-dark:    #1E3A8A;
  --blue-light:   #EFF6FF;
  --green:        #059669;
  --green-light:  #ECFDF5;
  --yellow:       #D97706;
  --yellow-light: #FFFBEB;
  --red:          #DC2626;
  --red-light:    #FEF2F2;
  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    16px;
  --shadow-sm:    0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:       0 1px 3px 0 rgb(0 0 0 / 0.08), 0 1px 2px -1px rgb(0 0 0 / 0.05);
  --shadow-md:    0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.04);
  --shadow-lg:    0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-xl:    0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.04);
  --transition:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --container:    1200px;
  /* System font stack – kein externer CDN erforderlich */
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* ── PHASE 1: Dark/Glass-Tokens – nur für Nav, Hero, Hero-Dokumentkarte ── */
  --night-900:        #0B1220;
  --night-800:        #111B2E;
  --night-cyan:       #22D3EE;
  --night-cyan-dark:  #0EA5E9;
  --night-on-cyan:    #04202A;
  --night-text:       #E7ECF3;
  --night-text-body:  #B7C2D6;
  --night-text-muted: #8592AC;
  --glass-bg:         rgba(255, 255, 255, 0.045);
  --glass-bg-strong:  rgba(255, 255, 255, 0.08);
  --glass-border:     rgba(255, 255, 255, 0.12);
  --night-green:      #34D399;
  --night-yellow:     #FBBF24;
  --night-red:        #FB7185;
  --night-green-bg:   rgba(52, 211, 153, 0.15);
  --night-yellow-bg:  rgba(251, 191, 36, 0.15);
  --night-red-bg:     rgba(244, 63, 94, 0.15);
}

/* ── KEYFRAME ANIMATIONS ─────────────────────────────────── */
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
  50%       { box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.14); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Verhindert, dass CSS display-Regeln das HTML hidden-Attribut überschreiben */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* compensate for sticky 64px nav + comfortable margin */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 600; }

.body-text {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--night-text-body);
  line-height: 1.7;
}
.body-text + .body-text { margin-top: 1rem; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 80px);
}

.section {
  padding-block: clamp(60px, 8vw, 100px);
}

.section--muted {
  background-color: var(--surface);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section__title {
  margin-bottom: 16px;
}

.section__title--left {
  text-align: left;
}

.section__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-muted);
  line-height: 1.65;
}

.section__eyebrow--light {
  color: var(--night-cyan);
}

.section__title--light {
  color: var(--night-text);
}

.section__sub--light {
  color: var(--night-text-body);
}

.body-text--disclaimer {
  font-size: 13px;
  color: var(--night-text-muted);
  font-style: italic;
  margin-top: 4px;
}

.highlight-box__unit {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: middle;
}

/* ── SECTION CTA ROW ──────────────────────────────────────── */
.section__cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ── GRID ─────────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  padding: 11px 22px;
  font-size: 15px;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 2px 0 rgb(27 79 216 / 0.3), inset 0 1px 0 0 rgb(255 255 255 / 0.1);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px 0 rgb(27 79 216 / 0.35);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--white);
}
.btn--outline:hover {
  border-color: var(--text);
  background: var(--surface);
}

.btn--lg { padding: 13px 28px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--full { width: 100%; }

/* ── PHASE 1: Dark-Buttons – nur innerhalb Nav & Hero ─────── */
.nav .btn--primary,
.hero .btn--primary {
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  color: var(--night-on-cyan);
  box-shadow: 0 4px 20px -4px rgba(34, 211, 238, 0.45), inset 0 1px 0 0 rgb(255 255 255 / 0.2);
}
.nav .btn--primary:hover,
.hero .btn--primary:hover {
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -4px rgba(34, 211, 238, 0.55);
}

.hero .btn--outline {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--night-text);
}
.hero .btn--outline:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.24);
}

/* ── BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
}

.badge--green {
  background: rgba(34, 211, 238, 0.1);
  color: var(--night-cyan);
  border: 1px solid rgba(34, 211, 238, 0.3);
  animation: badge-pulse 3s ease-in-out 2s infinite;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav.is-scrolled {
  background: rgba(11, 18, 32, 0.9);
  box-shadow: 0 8px 30px -14px rgba(0, 0, 0, 0.6);
}

.nav :focus-visible {
  outline-color: var(--night-cyan);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 30px;
  height: 30px;
  background: var(--blue);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline-start: auto;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--night-text-muted);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--night-text); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  margin-inline-start: auto;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--night-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(11, 18, 32, 0.97);
}

.nav__mobile-link {
  display: block;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--night-text-body);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav__mobile-link:hover { background: rgba(255, 255, 255, 0.06); }

.nav__mobile .btn {
  margin-top: 8px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 8vw, 100px);
  /* Premium Dark-Mode-Glow – Wow-Effekt */
  background:
    radial-gradient(ellipse 120% 60% at 70% -10%, rgba(34, 211, 238, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 100%,   rgba(37, 99, 235, 0.14) 0%, transparent 55%),
    var(--night-900);
  position: relative;
  overflow: hidden;
}

.hero :focus-visible {
  outline-color: var(--night-cyan);
}

/* Dekorativer Glow-Blob oben rechts */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.14) 0%, transparent 70%);
  top: -280px;
  right: -140px;
  pointer-events: none;
  border-radius: 50%;
  animation: glow-drift 14s ease-in-out infinite;
}

/* Zweiter subtiler Glow unten links */
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -80px;
  pointer-events: none;
  border-radius: 50%;
  animation: glow-drift 18s ease-in-out infinite reverse;
}

@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-24px, 20px) scale(1.06); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fade-up 0.6s ease-out both;
}

.hero__headline {
  margin-top: 4px;
  color: var(--night-text);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--night-text-body);
  line-height: 1.65;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Trust pills */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--night-text-muted);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 4px 12px;
}

.trust-pill__icon {
  color: var(--night-green);
  font-weight: 700;
}

/* ── HERO BULLETS & MICROCOPY ─────────────────────────────── */
.hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--night-text-body);
  font-weight: 500;
}

.hero__bullet-icon {
  color: var(--night-green);
  font-weight: 800;
  margin-right: 8px;
}

.hero__microcopy {
  font-size: 13px;
  color: var(--night-text-muted);
  font-weight: 500;
  margin-top: -8px;
}

/* ── HERO DOC CARD: MODULE CHIPS ──────────────────────────── */
.doc-num-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  color: var(--night-on-cyan);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.doc-modules-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.doc-module {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: var(--night-text-muted);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.doc-module--ampel {
  background: rgba(34, 211, 238, 0.12);
  color: var(--night-cyan);
  border-color: rgba(34, 211, 238, 0.28);
}

/* Document card in hero */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 28px;
}

.doc-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.6), 0 0 90px -30px rgba(34, 211, 238, 0.35);
  padding: 24px;
  width: 100%;
  max-width: 420px;
  font-family: var(--font-body);
  font-size: 13px;
  position: relative;
}

.doc-card__header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 16px;
}

.doc-card__header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-card__header-text {
  flex: 1;
  min-width: 0;
}

.doc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  font-size: 16px;
}

.doc-card__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.doc-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.doc-card__dot--green  { background: var(--night-green); }
.doc-card__dot--yellow { background: var(--night-yellow); }
.doc-card__dot--red    { background: var(--night-red); }

.doc-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--night-text);
}

.doc-card__meta {
  font-size: 12px;
  color: var(--night-text-muted);
  margin-top: 3px;
}

.doc-card__section {
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
}
.doc-card__section:last-child { border-bottom: none; }

.doc-card__section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--night-text);
  font-size: 13px;
  margin-bottom: 10px;
}

.doc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  color: var(--night-on-cyan);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Ampel-Dots – aktuell nur noch in der mobilen Preview-Strip verwendet */
.ampel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}
.ampel-dot--green  { background: var(--night-green); }
.ampel-dot--yellow { background: var(--night-yellow); }
.ampel-dot--red    { background: var(--night-red); }

/* Datenampel-Mini-Cards in der Hero-Dokumentkarte */
.doc-ampel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.doc-ampel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-top: 2px solid;
  border-radius: 8px;
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.doc-ampel-card strong {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--night-text);
}
.doc-ampel-card span {
  font-size: 10.5px;
  color: var(--night-text-muted);
  line-height: 1.35;
}
.doc-ampel-card--green  { border-top-color: var(--night-green); }
.doc-ampel-card--yellow { border-top-color: var(--night-yellow); }
.doc-ampel-card--red    { border-top-color: var(--night-red); }

/* Freischwebender Disclaimer-Pill, überlappt die Kartenunterkante */
.doc-card__floating-tag {
  position: absolute;
  left: 24px;
  bottom: -20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.55);
}

.doc-card__floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--night-cyan-dark), var(--night-cyan));
  font-size: 11px;
}

.doc-card__floating-text {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  line-height: 1.3;
  color: var(--night-text-muted);
}
.doc-card__floating-text strong {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--night-text);
}

/* Tool rows in doc-card */
.tool-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
}
.tool-row__name { color: var(--text-body); font-size: 12px; }

/* ── PROBLEM CARDS ────────────────────────────────────────── */
.card--problem {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card--problem:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WARUM SECTION ────────────────────────────────────────── */
#warum {
  background: var(--night-900);
}

#warum :focus-visible {
  outline-color: var(--night-cyan);
}

.warum__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.warum__text .section__eyebrow { display: block; margin-bottom: 14px; }
.warum__text .section__title { margin-bottom: 24px; }

.highlight-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.highlight-box__stat {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--night-cyan);
  line-height: 1;
}

.highlight-box__label {
  font-size: 14px;
  color: var(--night-text-muted);
  font-weight: 500;
  margin-top: 6px;
}

.highlight-box__divider {
  height: 1px;
  background: var(--glass-border);
  margin: 24px auto;
  width: 60%;
}

/* ── PREVIEW CARDS (Datenampel + Tool-Liste) ──────────────── */
#vorschau {
  background: var(--night-800);
}

#vorschau :focus-visible {
  outline-color: var(--night-cyan);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.preview-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55);
}

.preview-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.preview-card__num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  color: var(--night-on-cyan);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.preview-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--night-text);
}

.preview-card__desc {
  font-size: 14px;
  color: var(--night-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Ampel table in preview */
.ampel-table { display: flex; flex-direction: column; gap: 10px; }

.ampel-table__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--night-text-body);
  line-height: 1.5;
}

.ampel-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-family: var(--font-body);
  flex-shrink: 0;
  margin-top: 1px;
}
.ampel-badge--green  { background: var(--night-green-bg);  color: var(--night-green); }
.ampel-badge--yellow { background: var(--night-yellow-bg); color: var(--night-yellow); }
.ampel-badge--red    { background: var(--night-red-bg);    color: var(--night-red); }

/* Tool table in preview */
.tool-table { display: flex; flex-direction: column; gap: 8px; }

.tool-table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 14px;
}
.tool-table__row:last-child { border-bottom: none; }
.tool-table__name { color: var(--night-text-body); font-weight: 500; }

.tool-table__note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--night-text-muted);
  font-style: italic;
}

/* Tool badges (shared across hero card and tool table) */
.tool-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-family: var(--font-body);
}
.tool-badge--green  { background: var(--night-green-bg);  color: var(--night-green); }
.tool-badge--yellow { background: var(--night-yellow-bg); color: var(--night-yellow); }
.tool-badge--red    { background: var(--night-red-bg);    color: var(--night-red); }

/* ── MODULE GRID ──────────────────────────────────────────── */
#module {
  background: var(--night-900);
}

#module :focus-visible {
  outline-color: var(--night-cyan);
}

/* Modul-Sektion nutzt Nav/Hero-Button-Look, da die Sektion jetzt dunkel ist */
#module .btn--primary {
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  color: var(--night-on-cyan);
  box-shadow: 0 4px 20px -4px rgba(34, 211, 238, 0.45), inset 0 1px 0 0 rgb(255 255 255 / 0.2);
}
#module .btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -4px rgba(34, 211, 238, 0.55);
}
#module .btn--outline {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--night-text);
}
#module .btn--outline:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.24);
}

.module-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.module-card:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px -22px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.module-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  color: var(--night-on-cyan);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 14px;
}

.module-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--night-text);
  margin-bottom: 8px;
}

.module-card__text {
  font-size: 14px;
  color: var(--night-text-muted);
  line-height: 1.55;
}

/* ── COMPARISON TABLE ─────────────────────────────────────── */
#vergleich {
  background: var(--night-800);
}
#vergleich :focus-visible {
  outline-color: var(--night-cyan);
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.5);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: transparent;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
  vertical-align: middle;
  color: var(--night-text-body);
}

.compare-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--night-text);
  background: rgba(255, 255, 255, 0.03);
}

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(255, 255, 255, 0.04); }

.compare-table__feature-col { width: 30%; }
.compare-table__col { width: 35%; }
.compare-table__col--neutral { color: var(--night-text-muted); }

.compare-table__col--highlight {
  background: rgba(34, 211, 238, 0.14) !important;
  color: var(--night-cyan) !important;
  font-weight: 600;
}

/* ── HERO MOBILE PREVIEW STRIP ───────────────────────────── */
/* Visible only on mobile (≤900px), hidden on desktop */
.hero__preview-strip {
  display: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.55);
}

.hero__preview-strip__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--night-text-muted);
  margin-bottom: 10px;
}

.hero__preview-strip__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 13px;
  color: var(--night-text-body);
}
.hero__preview-strip__row:last-child { border-bottom: none; }

.hero__preview-strip__text { flex: 1; line-height: 1.4; }

.hero__preview-strip__tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__preview-strip__tag--green  { background: var(--night-green-bg);  color: var(--night-green); }
.hero__preview-strip__tag--yellow { background: var(--night-yellow-bg); color: var(--night-yellow); }
.hero__preview-strip__tag--red    { background: var(--night-red-bg);    color: var(--night-red); }

/* ── MOBILE COMPARE CARDS (default hidden, shown on mobile) ── */
.compare-mobile {
  display: none; /* shown at ≤640px via media query */
}

.compare-mobile__item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Criterion label — full-width header of each card */
.compare-mobile__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--night-text);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--glass-border);
  letter-spacing: 0;
  text-transform: none;
}

/* Each option row — stacked (tag above value), left border signals which side */
.compare-mobile__option {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px 10px 16px;
  border-bottom: 1px solid var(--glass-border);
  border-left: 3px solid transparent;
}
.compare-mobile__option:last-child { border-bottom: none; }

.compare-mobile__option--neutral {
  background: rgba(255, 255, 255, 0.02);
  border-left-color: rgba(255, 255, 255, 0.2);
}
.compare-mobile__option--richtki {
  background: rgba(34, 211, 238, 0.1);
  border-left-color: var(--night-cyan);
}

/* Source label above the value */
.compare-mobile__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--night-text-muted);
}
.compare-mobile__tag--richtki { color: var(--night-cyan); }

/* The actual compared value */
.compare-mobile__value {
  font-size: 14px;
  color: var(--night-text-body);
  line-height: 1.45;
}
.compare-mobile__value--highlight {
  color: var(--night-cyan);
  font-weight: 600;
}

/* ── PROCESS STEPS ────────────────────────────────────────── */
#prozess {
  background: var(--night-800);
}
#prozess :focus-visible {
  outline-color: var(--night-cyan);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -22px rgba(0, 0, 0, 0.5);
}

.step__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--night-on-cyan);
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14), 0 10px 24px -8px rgba(34, 211, 238, 0.45);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step__title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--night-text);
}

.step__text {
  font-size: 15px;
  color: var(--night-text-muted);
  line-height: 1.65;
}

.step__connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--night-cyan), rgba(34, 211, 238, 0.1));
  margin-top: 44px;
  flex-shrink: 0;
}

/* ── PRICE CARD ───────────────────────────────────────────── */
#preis {
  background: var(--night-900);
}
#preis :focus-visible {
  outline-color: var(--night-cyan);
}
#preis .btn--primary {
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  color: var(--night-on-cyan);
  box-shadow: 0 4px 20px -4px rgba(34, 211, 238, 0.45), inset 0 1px 0 0 rgb(255 255 255 / 0.2);
}
#preis .btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -4px rgba(34, 211, 238, 0.55);
}

.price-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  max-width: 520px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(34, 211, 238, 0.08), 0 0 100px -25px rgba(34, 211, 238, 0.3);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--night-cyan-dark), var(--night-cyan), var(--night-cyan-dark));
}

.price-card__badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--night-cyan);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 100px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.price-card__old {
  font-size: 22px;
  color: var(--night-text-muted);
  text-decoration: line-through;
  font-family: var(--font-heading);
  font-weight: 600;
}

.price-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(52px, 8vw, 72px);
  color: var(--night-text);
  line-height: 1;
}

.price-card__currency {
  font-size: 0.45em;
  vertical-align: super;
}

.price-card__period {
  font-size: 16px;
  color: var(--night-text-muted);
  font-weight: 500;
}

.price-card__features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--night-text-body);
}

.price-card__features li span {
  color: var(--night-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card__trust {
  text-align: center;
  font-size: 13px;
  color: var(--night-text-muted);
  margin-top: 14px;
  margin-bottom: 28px;
}

.compare-context {
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-context__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--night-text-muted);
  margin-bottom: 4px;
}

.compare-context__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--night-text-muted);
}

.compare-context__val {
  color: var(--night-text-body);
  font-weight: 500;
  text-align: right;
}

.price-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--night-text-muted);
  margin-top: 20px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq {
  background: var(--night-800);
}
#faq :focus-visible {
  outline-color: var(--night-cyan);
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 0 20px;
  transition: background var(--transition), border-color var(--transition);
}
.faq-item:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--night-text);
  text-align: left;
  font-family: var(--font-heading);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--night-cyan); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--night-text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
  width: 24px;
  text-align: center;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--night-cyan);
}

.faq-answer {
  padding-bottom: 18px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--night-text-body);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--night-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── CLOSING CTA ──────────────────────────────────────────── */
.closing-cta {
  background: var(--night-900);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.closing-cta::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.closing-cta :focus-visible {
  outline-color: var(--night-cyan);
}

.closing-cta .btn--primary {
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  color: var(--night-on-cyan);
  box-shadow: 0 4px 20px -4px rgba(34, 211, 238, 0.45), inset 0 1px 0 0 rgb(255 255 255 / 0.2);
}
.closing-cta .btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -4px rgba(34, 211, 238, 0.55);
}
.closing-cta .btn--outline {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--night-text);
}
.closing-cta .btn--outline:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.24);
}

.closing-cta__inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}

.closing-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.closing-cta__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--night-text);
}

.closing-cta__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--night-text-body);
  line-height: 1.65;
}

.closing-cta__trust {
  font-size: 13px;
  color: var(--night-text-muted);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--night-800);
  color: var(--night-text-muted);
  padding: 48px 0 32px;
}

.footer :focus-visible {
  outline-color: var(--night-cyan);
}

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

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer .nav__logo-mark {
  background: #1e293b;
  border: 1px solid #334155;
}

.footer .nav__logo-text {
  color: #f8fafc;
}

.footer__tagline {
  font-size: 13px;
  color: var(--night-text-muted);
  width: 100%;
  padding-top: 4px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer__links a {
  font-size: 13px;
  color: var(--night-text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--night-text); }

.footer__disclaimer {
  font-size: 12px;
  color: var(--night-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOCUS STYLES ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── RESPONSIVE: TABLET ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; } /* hide doc card on mobile for cleaner hero */
  .warum__inner { grid-template-columns: 1fr; }
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step__connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--night-cyan), rgba(34, 211, 238, 0.1));
  }
  .nav__links { display: none; }
  .nav__inner > .btn--primary { display: none; } /* hide CTA in nav on mobile */
  .nav__burger { display: flex; }
  .compare-table__feature-col { width: 40%; }
  .compare-table__col { width: 30%; }
}

/* ── RESPONSIVE: MOBILE ───────────────────────────────────── */
@media (max-width: 640px) {
  /* Logo: etwas kleiner auf Mobile */
  .site-logo { height: 30px; }
  .footer-icon { height: 24px; }
  /* Hero gradient bleibt – kein Override nötig */
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__sub { max-width: 100%; }
  .grid--3 { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  /* Comparison: hide desktop table, show stacked cards */
  .compare-table-wrap { display: none; }
  .compare-mobile { display: flex; flex-direction: column; gap: 10px; }
  /* Price & footer */
  .price-card { padding: 24px 20px; }
  .compare-context__row { flex-direction: column; gap: 2px; }
  .compare-context__val { text-align: left; }
  .footer__links { gap: 6px 16px; }
  /* Closing CTA: stack buttons on mobile */
  .closing-cta__actions { flex-direction: column; width: 100%; }
  .closing-cta__actions .btn { width: 100%; justify-content: center; }
}

/* ── RESPONSIVE: SHOW PREVIEW STRIP ON MOBILE ─────────────── */
@media (max-width: 900px) {
  .hero__preview-strip { display: block; }
}

/* ── RISK SECTION ─────────────────────────────────────────── */
.risk-section {
  background: var(--night-800);
}

.risk-section .section__header {
  max-width: 760px;
}

.risk-section :focus-visible {
  outline-color: var(--night-cyan);
}

.risk-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 3px solid;
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.risk-card:hover {
  background: var(--glass-bg-strong);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.risk-card--red   { border-top-color: var(--night-red); }
.risk-card--amber { border-top-color: var(--night-yellow); }
.risk-card--blue  { border-top-color: var(--night-cyan); }

.risk-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1;
}
.risk-card--red .risk-card__icon   { background: var(--night-red-bg); }
.risk-card--amber .risk-card__icon { background: var(--night-yellow-bg); }
.risk-card--blue .risk-card__icon  { background: rgba(34, 211, 238, 0.15); }

.risk-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--night-text);
  margin-bottom: 10px;
}

.risk-card__text {
  font-size: 14px;
  color: var(--night-text-body);
  line-height: 1.65;
}

.risk-section__cta {
  text-align: center;
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.risk-section__cta-note {
  font-size: 13px;
  color: var(--night-text-muted);
}

/* ── BUTTON: WHITE VARIANT (for dark backgrounds) ─────────── */
.btn--white {
  background: linear-gradient(135deg, var(--night-cyan), var(--night-cyan-dark));
  color: var(--night-on-cyan);
  font-weight: 700;
  box-shadow: 0 4px 20px -4px rgba(34, 211, 238, 0.45), inset 0 1px 0 0 rgb(255 255 255 / 0.2);
}
.btn--white:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -4px rgba(34, 211, 238, 0.55);
}

/* ── LIGHT TEXT VARIANTS (for dark sections) ──────────────── */
.section__eyebrow--light { color: var(--night-cyan); }
.section__title--light   { color: var(--night-text); }
.section__sub--light     { color: var(--night-text-body); }

/* ── BODY TEXT DISCLAIMER VARIANT ────────────────────────── */
.body-text--disclaimer {
  font-size: 13px;
  color: var(--night-text-muted);
  font-style: italic;
}

/* ── HIGHLIGHT BOX UNIT ───────────────────────────────────── */
.highlight-box__unit {
  font-size: 0.5em;
  font-weight: 600;
  vertical-align: middle;
  letter-spacing: 0;
}

/* ── OBJECTION SECTION ────────────────────────────────────── */
#einwand {
  background: var(--night-900);
}
#einwand :focus-visible {
  outline-color: var(--night-cyan);
}

.objection-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.objection-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--night-cyan);
  border-radius: var(--radius-lg);
  padding: 22px 26px 22px 24px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.objection-item:hover {
  background: var(--glass-bg-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -18px rgba(0, 0, 0, 0.5);
}

.objection-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--night-text);
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.4;
}

.objection-a {
  font-size: 15px;
  color: var(--night-text-body);
  line-height: 1.65;
}

/* ── CLOSING CTA ADDITIONS ────────────────────────────────── */
.closing-cta__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--night-cyan);
}

.closing-cta__disclaimer {
  font-size: 12px;
  color: var(--night-text-muted);
  margin-top: -8px;
}

/* ── MOBILE: RISK SECTION ─────────────────────────────────── */
@media (max-width: 900px) {
  .risk-section__cta .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 640px) {
  .objection-q { font-size: 15px; }
  .section__cta-row { flex-direction: column; align-items: center; }
  .section__cta-row .btn { width: 100%; max-width: 340px; justify-content: center; }
}
