/* ============================================================
   OfficePort® Compliance-Check – Light Apple Glass Design System
   Clean Glassmorphism · Premium UI · 2026
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Background – light gradient */
  --bg-gradient: linear-gradient(135deg, #f0f4f8 0%, #e4eaf2 40%, #d9e2ec 100%);

  /* OfficePort Accent Colors */
  --accent-primary:   #0066cc;
  --accent-secondary: #6c4de6;
  --accent-success:   #00a854;
  --accent-warning:   #f59e0b;
  --accent-danger:    #dc3545;

  /* Text (dark on light background) */
  --text-primary:   #1a1a1a;
  --text-secondary: #5c5c5c;
  --text-muted:     #9ba3af;

  /* Glass Surfaces (white frosted) */
  --glass-bg:        rgba(255,255,255,0.78);
  --glass-bg-strong: rgba(255,255,255,0.92);
  --glass-border:    rgba(255,255,255,0.65);
  --glass-hover:     rgba(255,255,255,0.88);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.10);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.12);

  /* Glows */
  --glow-primary:  rgba(0,102,204,0.20);
  --glow-success:  rgba(0,168,84,0.25);
  --glow-warning:  rgba(245,158,11,0.25);
  --glow-danger:   rgba(220,53,69,0.20);

  /* Radii & Spacing */
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Transitions */
  --ease:       cubic-bezier(0.25,0.46,0.45,0.94);
  --transition: 0.25s var(--ease);
  --transition-slow: 0.45s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  background: var(--bg-gradient);
  min-height: 100vh;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Animated Background Orbs ── */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  animation: orbFloat 30s ease-in-out infinite;
}
.orb-1 {
  width: 800px; height: 800px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  top: -300px; right: -200px;
}
.orb-2 {
  width: 600px; height: 600px;
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
  bottom: -200px; left: -200px;
  animation-delay: -10s;
}
.orb-3 {
  width: 500px; height: 500px;
  background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
  top: 40%; left: 10%;
  animation-delay: -20s;
  opacity: 0.30;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(50px,-50px) scale(1.05); }
  50%      { transform: translate(0,30px) scale(0.98); }
  75%      { transform: translate(-40px,-20px) scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
  .vsl-hint-arrow { animation: none; }
  .reveal-up { transition: none !important; }
  .score-ring-fill { transition: none; }
}

/* ── Layout ── */
.page-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Landing-Page spezifische Breite */
.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Glass Card ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.glass--strong {
  background: var(--glass-bg-strong);
  box-shadow: var(--shadow-lg);
}
.glass:hover {
  background: var(--glass-hover);
  box-shadow: var(--shadow-lg);
}

/* ── Header ── */
.site-header {
  padding: 18px 0;
  position: relative;
  z-index: 10;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.7);
}
.site-header .container,
.site-header .container--narrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  height: 28px;
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.logo-text span { color: var(--accent-primary); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-primary), #0088ff);
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-primary);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,102,204,0.35);
}

.btn--ghost {
  background: rgba(255,255,255,0.7);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.90);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--success {
  background: linear-gradient(135deg, var(--accent-success), #00c853);
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-success);
}
.btn--success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,168,84,0.40);
}

.btn--large {
  padding: 18px 40px;
  font-size: 17px;
}
.btn--sm {
  padding: 11px 22px;
  font-size: 14px;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  padding: 56px 0 72px;
}

/* 2-Spalten-Grid: Text links · VSL rechts
   – align-items: start → beide Spalten starten oben auf gleicher Linie */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) 1.12fr;
  gap: 52px;
  align-items: center;
}

/* ── Linke Spalte ── */
.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,53,69,0.10);
  border: 1px solid rgba(220,53,69,0.22);
  color: var(--accent-danger);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  width: fit-content;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--accent-danger);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0px;
  width: 100%; height: 10px;
  background: rgba(220,53,69,0.10);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 34px;
}
.hero-sub strong { color: var(--text-primary); font-weight: 600; }

/* Hero CTA Button */
.hero-cta {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
}

/* Hero Meta-Zeile (✓ 30 Prüfpunkte · ✓ …) */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 8px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0 14px 0 0;
}
.meta-item:first-child { padding-left: 0; }
.meta-item svg { width: 15px; height: 15px; color: var(--accent-success); flex-shrink: 0; }
.meta-sep {
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,0.15);
  margin-right: 14px;
  flex-shrink: 0;
}

/* ── Rechte Spalte: VSL ── */
.hero-vsl-wrap {
  position: relative;
}

/* VSL Card – prominent, full glass */
.vsl-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.13), 0 0 0 1px rgba(255,255,255,0.6), 0 0 40px rgba(0,102,204,0.06);
  padding: 22px 22px 22px;
  position: relative;
}

.vsl-chip {
  position: absolute;
  top: -14px; left: 24px;
  background: linear-gradient(135deg, var(--accent-primary), #0088ff);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0,102,204,0.30);
}
.vsl-chip svg { width: 12px; height: 12px; }

/* Video-Box: 16:9, ganzer Bereich */
.video-box {
  position: relative;
  background: #0d1526;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.video-box video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(160deg, rgba(10,18,40,0.86) 0%, rgba(20,32,60,0.90) 100%);
  transition: var(--transition);
  border: none;
  padding: 0;
  width: 100%;
  touch-action: manipulation;
}
.video-overlay:focus-visible {
  outline: 3px solid rgba(255,255,255,0.8);
  outline-offset: -4px;
  border-radius: var(--radius-lg);
}
.video-overlay:hover { background: linear-gradient(160deg, rgba(10,18,40,0.78) 0%, rgba(20,32,60,0.82) 100%); }
.video-overlay:hover .play-ring { transform: scale(1.10); background: rgba(255,255,255,0.22); }
.play-ring {
  width: 76px; height: 76px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}
.play-ring svg { width: 32px; height: 32px; fill: white; margin-left: 4px; }
.video-overlay-urgent {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245,166,35,0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.video-overlay-title {
  font-size: 17px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.video-overlay-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  font-style: italic;
  max-width: 260px;
  line-height: 1.45;
}

/* VSL Footer: CTA full-width + Byline */
.vsl-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 2px 2px;
}
.vsl-watch-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-style: italic;
  color: var(--text-secondary);
  padding: 2px 2px;
}
.vsl-hint-arrow {
  display: inline-block;
  color: var(--accent-primary);
  font-style: normal;
  opacity: 0.70;
  flex-shrink: 0;
  animation: hint-bounce 1.5s ease-in-out infinite;
}
.vsl-hint-arrow::before { content: '▲'; font-size: 10px; }
@keyframes hint-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
.vsl-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}
.vsl-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent-primary), #0088ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,102,204,0.22);
}
.vsl-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.vsl-role {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}


/* ══════════════════════════════════════
   RISIKO-SEKTION (Pain Points)
══════════════════════════════════════ */
.risk-section {
  padding: 64px 0;
  background: rgba(255,255,255,0.32);
  border-top: 1px solid rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.risk-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-lg);
  border-left-width: 4px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.risk-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.risk-card--danger { border-left-color: var(--accent-danger); }
.risk-card--warning { border-left-color: var(--accent-warning); }

.risk-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.risk-body {
  flex: 1;
  min-width: 0;
}
.risk-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}
.risk-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.risk-tag {
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
}
.risk-tag--danger {
  color: var(--accent-danger);
  background: rgba(220,53,69,0.10);
  border: 1px solid rgba(220,53,69,0.18);
}
.risk-tag--warning {
  color: #b45309;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.22);
}

/* ── Proof Bar ── */
.proof-bar {
  padding: 36px 0;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.7);
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-num--text {
  font-size: 15px;
  font-weight: 700;
}
.proof-lbl {
  font-size: 13px;
  color: var(--text-secondary);
}
.proof-sep {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.1);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-primary);
  margin-bottom: 14px;
}
.section-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-primary);
  text-wrap: balance;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Benefits Grid ── */
.benefits-section { padding: 80px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.benefit-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-lg);
  padding: 30px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:nth-child(1)::before { background: linear-gradient(90deg, var(--accent-primary), #0088ff); }
.benefit-card:nth-child(2)::before { background: linear-gradient(90deg, var(--accent-danger), #ff6b6b); }
.benefit-card:nth-child(3)::before { background: linear-gradient(90deg, var(--accent-warning), #ffd25a); }
.benefit-card:nth-child(4)::before { background: linear-gradient(90deg, var(--accent-success), #00e676); }

.benefit-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.benefit-icon-wrap svg { width: 26px; height: 26px; }
.benefit-icon--blue  { background: rgba(0,102,204,0.10); color: var(--accent-primary); }
.benefit-icon--red   { background: rgba(220,53,69,0.10);  color: var(--accent-danger); }
.benefit-icon--orange{ background: rgba(245,158,11,0.12); color: #b45309; }
.benefit-icon--green { background: rgba(0,168,84,0.10);   color: var(--accent-success); }

.benefit-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.benefit-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Testimonial ── */
.testimonial-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.28);
  border-top: 1px solid rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.55);
}
.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.quote-deco {
  font-size: 96px;
  font-weight: 800;
  color: var(--accent-primary);
  opacity: 0.10;
  line-height: 0.75;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  user-select: none;
}
.testimonial-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.85;
  margin: 0 0 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent-primary), #0088ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.t-info { flex: 1; }
.t-name {
  font-size: 15px; font-weight: 700; color: var(--text-primary);
}
.t-role {
  font-size: 13px; color: var(--text-secondary); margin-top: 2px;
}
.t-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.t-press-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,102,204,0.07);
  border: 1px solid rgba(0,102,204,0.15);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.t-press-pill:hover {
  background: rgba(0,102,204,0.13);
  border-color: rgba(0,102,204,0.28);
}

/* ── Final CTA ── */
.final-cta-section { padding: 80px 0 100px; }
.final-cta-box {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(140deg, #003d8f 0%, var(--accent-primary) 40%, #0088ff 100%);
  border-radius: var(--radius-xl);
  padding: 64px 52px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,102,204,0.32), 0 0 0 1px rgba(255,255,255,0.15);
}
.final-cta-box::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.9);
  padding: 6px 18px;
  margin-bottom: 20px;
  position: relative;
}
.final-cta-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.final-cta-sub {
  font-size: 18px;
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.final-cta-btn {
  background: white !important;
  color: var(--accent-primary) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
  font-size: 17px;
  padding: 18px 44px;
  position: relative;
}
.final-cta-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25) !important;
}
.final-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  font-size: 13px;
  opacity: 0.88;
  position: relative;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
}
.trust-item svg { width: 15px; height: 15px; }

/* ── Progress Bar (Check page) ── */
.progress-wrap { margin-bottom: 32px; }
.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.progress-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.progress-counter {
  font-size: 13px;
  color: var(--text-secondary);
}
.progress-counter strong { color: var(--text-primary); font-weight: 700; }
.progress-track {
  height: 7px;
  background: rgba(0,0,0,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent-primary), #0088ff);
  transition: width 0.5s var(--ease);
  box-shadow: 0 0 10px var(--glow-primary);
}

/* ── Category Badge (Check page) ── */
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(0,102,204,0.1);
  border: 1px solid rgba(0,102,204,0.22);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* ── Question Card ── */
.question-wrap { animation: fadeIn 0.35s var(--ease) both; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}
/* Klassen für JS-gesteuerte Übergangsanimationen zwischen Fragen */
.question-wrap.fade-in  { animation: fadeIn  0.35s var(--ease) both; }
.question-wrap.fade-out { animation: fadeOut 0.28s var(--ease) both; pointer-events: none; }
.question-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-lg);
}
.question-number {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.question-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-primary);
  text-wrap: balance;
}

/* ── Answer Buttons ── */
.answers-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.answer-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.82);
  border: 2px solid rgba(255,255,255,0.70);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-primary);
  width: 100%;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  touch-action: manipulation;
}
.answer-btn:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: 2px;
}
.answer-btn:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(0,102,204,0.35);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.answer-letter {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  background: rgba(0,0,0,0.07);
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: var(--transition);
}
.answer-content {
  flex: 1;
}
.answer-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
}
.answer-points {
  display: none;
}

/* Qualitäts-Hover entfernt – würde korrekte Antwort verraten */

/* Answer selected states */
.answer-btn.selected--compliant {
  background: rgba(0,168,84,0.10);
  border-color: var(--accent-success);
  box-shadow: 0 0 0 4px rgba(0,168,84,0.10);
}
.answer-btn.selected--compliant .answer-letter {
  background: var(--accent-success);
  color: white;
}
.answer-btn.selected--teilweise {
  background: rgba(245,158,11,0.10);
  border-color: var(--accent-warning);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.10);
}
.answer-btn.selected--teilweise .answer-letter {
  background: var(--accent-warning);
  color: white;
}
.answer-btn.selected--handlungsbedarf {
  background: rgba(220,53,69,0.10);
  border-color: var(--accent-danger);
  box-shadow: 0 0 0 4px rgba(220,53,69,0.10);
}
.answer-btn.selected--handlungsbedarf .answer-letter {
  background: var(--accent-danger);
  color: white;
}

/* ── Info Box (Rechtsgrundlage) ── */
.info-box {
  padding: 16px 20px;
  background: rgba(0,102,204,0.07);
  border: 1px solid rgba(0,102,204,0.18);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#infoSource {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* Einfacher Text-Link (1 URL pro Behörde) */
#infoSource .source-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
#infoSource .source-link:hover {
  color: var(--accent-secondary);
  text-decoration: underline;
}

/* Behördenname bei mehreren Links */
#infoSource .source-name {
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.01em;
}

/* Nummerierte Artikel-Badges */
#infoSource .source-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 102, 204, 0.12);
  border: 1px solid rgba(0, 102, 204, 0.22);
  color: var(--accent-primary);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  vertical-align: middle;
  line-height: 1;
}
#infoSource .source-badge:hover {
  background: rgba(0, 102, 204, 0.24);
  border-color: rgba(0, 102, 204, 0.45);
  transform: scale(1.15);
}

/* Trennpunkt zwischen Behörden */
#infoSource > .source-separator {
  color: var(--text-muted);
  margin: 0 6px;
}

/* ── Score Ring (Ergebnis) ── */
.score-ring-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.score-ring {
  position: relative;
  width: 180px; height: 180px;
}
.score-ring svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.score-ring-bg {
  fill: none;
  stroke: rgba(0,0,0,0.08);
  stroke-width: 12;
}
.score-ring-fill {
  fill: none;
  stroke: var(--accent-primary);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 503;
  stroke-dashoffset: 503;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1);
}
.score-ring-inner {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.score-value {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.score-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 12px;
}

/* ── Category List (Ergebnis) ── */
.category-list { display: flex; flex-direction: column; gap: 18px; }
.category-item {}
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.category-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.category-pct {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.category-track {
  height: 8px;
  background: rgba(0,0,0,0.07);
  border-radius: 100px;
  overflow: hidden;
}
.category-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.8s var(--ease);
}
.category-fill--high    { background: linear-gradient(90deg, #00a854, #00c853); }
.category-fill--medium  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.category-fill--low     { background: linear-gradient(90deg, #dc3545, #ef4444); }

/* ── Dual CTA (Ergebnis) ── */
.cta-dual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 24px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: var(--radius-xl);
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.cta-card > .btn { margin-top: auto; }
.cta-card--primary {
  background: linear-gradient(135deg, rgba(0,102,204,0.07), rgba(0,136,255,0.05));
  border-color: rgba(0,102,204,0.20);
}
.cta-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.cta-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0,102,204,0.10);
  color: var(--accent-primary);
  flex-shrink: 0;
}
.cta-icon svg { width: 22px; height: 22px; }
.cta-card--primary .cta-icon { background: rgba(0,102,204,0.14); }
.cta-title { font-size: 17px; font-weight: 700; color: var(--text-primary); }
.cta-subtitle { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Opt-in Form ── */
.optin-form { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--name-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: end;
}
.form-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-input {
  padding: 13px 16px;
  background: rgba(255,255,255,0.90);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(0,102,204,0.10);
}
.form-input::placeholder { color: var(--text-muted); }
.form-consent {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; }
.form-consent a { color: var(--accent-primary); }

/* ── Danke Card ── */
.danke-wrap { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 40px 24px; }
.danke-card {
  max-width: 640px;
  width: 100%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 48px 40px;
  text-align: center;
}
.check-circle {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--accent-success), #00c853);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: white;
  margin: 0 auto 28px;
  box-shadow: 0 8px 24px rgba(0,168,84,0.30);
}
.danke-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.danke-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}
.steps-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), #0088ff);
  color: white;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-text strong { color: var(--text-primary); }

/* ── Inactivity Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  max-width: 420px;
  width: 90%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.80);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 40px 36px;
  text-align: center;
}
.modal-icon { font-size: 44px; margin-bottom: 16px; }
.modal-title { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.modal-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }

/* ══════════════════════════════════════
   HEADER NAVIGATION (LP)
══════════════════════════════════════ */
.site-header--lp .container,
.site-header--lp .lp-container {
  justify-content: space-between;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav-link:hover { color: var(--accent-primary); }

/* ══════════════════════════════════════
   HERO EXTRAS
══════════════════════════════════════ */
/* Kategorie-Chips unter der Meta-Zeile */
.hero-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 100px;
  padding: 5px 13px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* Floating Trust Badge unter der VSL-Card */
.vsl-trust-float {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.vsl-trust-float svg { width: 14px; height: 14px; color: var(--accent-success); flex-shrink: 0; }

/* ══════════════════════════════════════
   SECTION LABEL VARIANTEN
══════════════════════════════════════ */
.section-label--danger {
  color: var(--accent-danger);
}
.section-label--gold {
  color: #b45309;
}

/* ══════════════════════════════════════
   RISK CARDS – SVG Icons (ersetzt Emojis)
══════════════════════════════════════ */
.risk-icon-svg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.risk-icon-svg svg { width: 22px; height: 22px; }
.risk-icon-svg--red {
  background: rgba(220,53,69,0.10);
  color: var(--accent-danger);
}
.risk-icon-svg--orange {
  background: rgba(245,158,11,0.12);
  color: #b45309;
}

/* ══════════════════════════════════════
   PROOF BAR – verfeinert
══════════════════════════════════════ */
.proof-num span {
  font-size: 0.65em;
  font-weight: 700;
  opacity: 0.75;
  vertical-align: super;
}

/* ══════════════════════════════════════
   SO FUNKTIONIERT ES – 3 Schritte
══════════════════════════════════════ */
.steps-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.32);
  border-top: 1px solid rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.step-card {
  position: relative;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-primary);
  opacity: 0.6;
  margin-bottom: 18px;
}
.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,102,204,0.10), rgba(0,136,255,0.08));
  border: 1px solid rgba(0,102,204,0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--accent-primary);
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
/* Verbindungspfeil zwischen Schritten */
.step-connector {
  display: none; /* wird per Grid-Position gesetzt */
}
.steps-grid .step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--text-muted);
  opacity: 0.45;
  font-weight: 300;
  pointer-events: none;
  z-index: 1;
}
.steps-cta {
  text-align: center;
}

/* ══════════════════════════════════════
   6 RECHTSBEREICHE
══════════════════════════════════════ */
.bereiche-section {
  padding: 80px 0;
}
.bereiche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bereich-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.bereich-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  border-color: rgba(255,255,255,0.95);
}
.bereich-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bereich-icon-wrap svg { width: 22px; height: 22px; }
.bereich-icon--orange  { background: rgba(245,158,11,0.12);  color: #b45309; }
.bereich-icon--blue    { background: rgba(0,102,204,0.10);   color: var(--accent-primary); }
.bereich-icon--violet  { background: rgba(118,75,162,0.10);  color: var(--accent-secondary); }
.bereich-icon--cyan    { background: rgba(79,172,254,0.12);  color: #0277bd; }
.bereich-icon--red     { background: rgba(220,53,69,0.10);   color: var(--accent-danger); }
.bereich-icon--green   { background: rgba(0,168,84,0.10);    color: var(--accent-success); }
.bereich-content { min-width: 0; }
.bereich-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.35;
}
.bereich-stats {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ══════════════════════════════════════
   TESTIMONIAL – Sterne
══════════════════════════════════════ */
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 28px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════ */
.reveal-up {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-ready .reveal-up {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-up--delay {
  transition-delay: 0.15s;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   ARTICLE ICON BOX (SVG statt Emoji)
══════════════════════════════════════ */
.article-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(0,102,204,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-primary);
}
.article-icon-box svg { width: 22px; height: 22px; }

/* ══════════════════════════════════════
   RESPONSIVE – neue Sektionen
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .bereiche-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .header-nav-link { display: none; }
  .hero-category-chips { display: none; }
  .bereiche-grid { grid-template-columns: 1fr; gap: 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid .step-card::after { display: none; }
  .steps-section { padding: 52px 0; }
  .bereiche-section { padding: 52px 0; }
}

/* ══════════════════════════════════════
   INTRO SCREEN – Commitment Step
══════════════════════════════════════ */
.intro-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 0 40px;
  gap: 0;
}
.intro-header { margin-bottom: 36px; }
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,102,204,0.1);
  color: var(--accent-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.intro-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.intro-sub {
  font-size: 15px;
  color: var(--text-muted);
}
.intro-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  margin-bottom: 36px;
}
.intro-cat-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  opacity: 0;
  animation: introCardIn 0.45s ease both;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.intro-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
@keyframes introCardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.intro-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-cat-icon svg { width: 22px; height: 22px; }
.intro-cat-icon--orange { background: rgba(245,150,50,0.12); color: #e67e22; }
.intro-cat-icon--blue   { background: rgba(0,102,204,0.10);  color: #0066cc; }
.intro-cat-icon--violet { background: rgba(118,75,162,0.10); color: #764ba2; }
.intro-cat-icon--cyan   { background: rgba(79,172,254,0.12); color: #2980b9; }
.intro-cat-icon--red    { background: rgba(220,53,69,0.10);  color: #c0392b; }
.intro-cat-icon--green  { background: rgba(0,168,84,0.10);   color: #00843d; }
.intro-cat-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  text-align: center;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.intro-cat-count {
  font-size: 11.5px;
  color: var(--text-muted);
  background: rgba(0,0,0,0.05);
  padding: 2px 8px;
  border-radius: 10px;
}
.intro-start-btn {
  min-width: 260px;
  margin-bottom: 14px;
}
.intro-trust {
  font-size: 12px;
  color: var(--text-muted);
}

/* Slide-out animation for intro */
.intro-screen.fade-out {
  animation: introOut 0.35s ease forwards;
}
@keyframes introOut {
  to { opacity: 0; transform: translateY(-12px); }
}

/* ── Footer ── */
.site-footer {
  padding: 32px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(8px);
}
.site-footer .lp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer p {
  margin: 0;
}
.footer-logo {
  font-size: 18px !important;
}
.site-footer a { color: var(--accent-primary); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ── Legal Pages (Impressum / Datenschutz) ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.legal-content h1 { font-size: 32px; font-weight: 800; margin-bottom: 32px; color: var(--text-primary); }
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; color: var(--text-primary); }
.legal-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.legal-content a { color: var(--accent-primary); }

/* ══════════════════════════════════════
   INNER PAGES – Komponenten
   (Check · Ergebnis · Danke · Legal)
══════════════════════════════════════ */

/* ── Seiten-Hauptbereich Padding ── */
.page-main { padding: 40px 0 80px; }

/* ── Utility: Full-Width Button ── */
.btn--block {
  width: 100%;
  justify-content: center;
}
/* Beide Cards: Button und Formular als letztes flex-Kind (space-between drückt sie ans Ende) */
.cta-card > .btn,
.cta-card > form { width: 100%; }

/* ── Section Card (Glass-Content-Karte) ── */
.section-card {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px 44px;
  margin-bottom: 24px;
}
.card-heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-heading svg { width: 18px; height: 18px; color: var(--accent-primary); flex-shrink: 0; }

/* ── Score-Hero (Ergebnisseite) ── */
.score-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.80);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 52px 44px 44px;
  margin-bottom: 24px;
}

/* ── Score-Hero: Ring-Spotlight & Hero-Text ── */
.score-ring-spotlight {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.score-ring-spotlight::before {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  transition: background 0.5s ease;
}
.ring--high   .score-ring-spotlight::before { background: radial-gradient(circle, #00c853, #00a854); }
.ring--medium .score-ring-spotlight::before { background: radial-gradient(circle, #fbbf24, #f59e0b); }
.ring--low    .score-ring-spotlight::before { background: radial-gradient(circle, #ef4444, #dc3545); }
.score-ring-spotlight .score-ring { position: relative; z-index: 1; width: 220px; height: 220px; }

.score-hero-headline {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 12px;
}
.score-hero-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 28px;
}
.score-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Action-Buttons (Score-Hero CTAs) */
.result-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  touch-action: manipulation;
  white-space: nowrap;
}
.result-action svg { width: 14px; height: 14px; flex-shrink: 0; }
.result-action--primary {
  background: linear-gradient(135deg, var(--accent-primary), #0088ff);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,102,204,0.28);
}
.result-action--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,102,204,0.40); }
.result-action--ghost {
  background: rgba(0,0,0,0.04);
  color: var(--text-secondary);
  border: 1.5px solid rgba(0,0,0,0.16);
}
.result-action--ghost:hover {
  background: rgba(0,0,0,0.09);
  border-color: rgba(0,0,0,0.24);
  color: var(--text-primary);
}
.result-action:focus-visible { outline: 3px solid var(--accent-primary); outline-offset: 3px; }

/* ── Score-Hero: Tier-Akzente (subtile Rand-Akzente) ── */
.score-hero.ring--low    { box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(220,53,69,0.18); }
.score-hero.ring--medium { box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(245,158,11,0.18); }
.score-hero.ring--high   { box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(0,168,84,0.18); }

/* ── Kategorie-Kacheln (Ergebnisseite – alle Bereiche mit Icon) ── */
.teaser-section { padding: 32px 44px; }
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-width: 0;
}
.cat-card:hover {
  background: rgba(255,255,255,0.96);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cat-icon svg { width: 18px; height: 18px; }
.cat-icon--high   { background: rgba(0,168,84,0.14);  color: var(--accent-success); }
.cat-icon--medium { background: rgba(245,158,11,0.14); color: var(--accent-warning); }
.cat-icon--low    { background: rgba(220,53,69,0.14);  color: var(--accent-danger);  }
.cat-body { flex: 1; min-width: 0; }
.cat-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cat-track {
  height: 4px;
  background: rgba(0,0,0,0.07);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 5px;
}
.cat-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cat-fill--high   { background: linear-gradient(90deg, #00a854, #00c853); }
.cat-fill--medium { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.cat-fill--low    { background: linear-gradient(90deg, #dc3545, #ef4444); }
.cat-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.cat-status--high   { color: var(--accent-success); }
.cat-status--medium { color: var(--accent-warning); }
.cat-status--low    { color: var(--accent-danger);  }
.cat-pct {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.cat-pct--high   { color: var(--accent-success); }
.cat-pct--medium { color: var(--accent-warning); }
.cat-pct--low    { color: var(--accent-danger);  }

/* ── Result Badge (Ergebnisseite) ── */
.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.result-badge--high   { background: rgba(0,168,84,0.12);  color: var(--accent-success); border: 1px solid rgba(0,168,84,0.25); }
.result-badge--medium { background: rgba(245,158,11,0.12); color: var(--accent-warning); border: 1px solid rgba(245,158,11,0.25); }
.result-badge--low    { background: rgba(220,53,69,0.12);  color: var(--accent-danger);  border: 1px solid rgba(220,53,69,0.25); }

/* ── Score-Ring Farbklassen ── */
.ring--high   .score-ring-fill { stroke: var(--accent-success); }
.ring--medium .score-ring-fill { stroke: var(--accent-warning); }
.ring--low    .score-ring-fill { stroke: var(--accent-danger);  }
.ring--high   .score-value     { color: var(--accent-success); }
.ring--medium .score-value     { color: var(--accent-warning); }
.ring--low    .score-value     { color: var(--accent-danger);  }

/* ── Bonus-CTA-Box (Danke-Seite) ── */
.bonus-cta-box {
  background: linear-gradient(135deg, rgba(0,102,204,0.07), rgba(0,136,255,0.05));
  border: 1px solid rgba(0,102,204,0.18);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  width: 100%;
  margin-bottom: 28px;
}
.bonus-cta-box .bonus-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.bonus-cta-box .bonus-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ── Trust-Leiste (Danke · allgemein) ── */
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-items .trust-item { display: flex; align-items: center; gap: 6px; }
.trust-items .trust-item svg { width: 14px; height: 14px; color: var(--accent-success); flex-shrink: 0; }

/* ── Footer mit schmalen Containern (Check/Ergebnis/Danke/Legal) ── */
.site-footer .container--narrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .lp-container { padding: 0 24px; }

  /* Hero: VSL erscheint zuerst (Conversion-Best-Practice für Touch-Geräte) */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-vsl-wrap { order: -1; }
  .hero-copy    { order:  1; }
  .hero-title { font-size: 36px; }

  /* Trust-Float auf Tablet ausblenden (zu viel Unruhe) */
  .vsl-trust-float { display: none; }

  /* Risk */
  .risk-section { padding: 52px 0; }

  /* Benefits: 2x2 */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  /* Bereiche: 2-spaltig */
  .bereiche-grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps: einspaltig */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }

  /* Testimonial */
  .testimonial-card { padding: 44px 40px; }

  /* Check-Seite */

  .final-cta-box { padding: 52px 36px; }
  .final-cta-title { font-size: 32px; }
}

/* Mobil (≤ 768px) */
@media (max-width: 768px) {
  .hero { padding: 32px 0 48px; }
  .hero-title { font-size: 28px; letter-spacing: -0.02em; }
  .hero-sub { font-size: 15px; line-height: 1.7; }
  .hero-badge { font-size: 11px; padding: 7px 12px; }
  .hero-cta { width: 100%; justify-content: center; font-size: 15px; padding: 16px 24px; }
  .hero-meta { gap: 0; row-gap: 10px; flex-wrap: wrap; }
  .meta-sep { display: none; }
  .meta-item { font-size: 13px; padding-right: 14px; }


  /* Risk: einspaltig */
  .risk-grid { grid-template-columns: 1fr; }
  .risk-tag { display: inline-flex; }
  .risk-card { padding: 16px; }

  /* Proof */
  .proof-bar { padding: 28px 0; }
  .proof-inner { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .proof-sep { display: none; }
  .proof-num { font-size: 28px; }
  .proof-stat { text-align: center; min-width: 100px; }

  /* Section Titles */
  .section-title { font-size: 24px; }
  .section-sub { font-size: 14px; }
  .section-header { margin-bottom: 32px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .benefit-card { padding: 20px 14px; }
  .benefit-title { font-size: 14px; }

  /* Bereiche: einspaltig auf Mobile */
  .bereiche-grid { grid-template-columns: 1fr; gap: 10px; }
  .bereich-card { padding: 16px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card { padding: 24px 20px; }
  .step-connector { display: none; }

  /* Testimonial */
  .testimonial-card { padding: 32px 24px; }
  .testimonial-quote { font-size: 16px; }
  .t-footer { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Final CTA */
  .final-cta-box { padding: 40px 24px; border-radius: 20px; }
  .final-cta-title { font-size: 26px; }
  .final-cta-sub { font-size: 15px; }
  .final-cta-trust { flex-direction: column; gap: 10px; align-items: center; }
  .final-cta-btn { width: 100%; justify-content: center; }

  /* Check-Seite */
  .question-card { padding: 24px 20px; }
  .question-text { font-size: 16px; }
  .danke-card { padding: 32px 20px; }
  .danke-title { font-size: 24px; }

  /* Inner Pages */
  .section-card { padding: 24px 18px; }
  .score-hero { padding: 24px 20px; }

  /* Header Nav */
  .header-nav { display: none; }

  /* Footer */
  .site-footer .lp-container { flex-direction: column; text-align: center; gap: 12px; }

  /* Check – Intro Kategorien 2-spaltig ab 768px */
  .intro-cat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Check – Start-Button full-width auf Mobile */
  .intro-start-btn { width: 100%; justify-content: center; }

  /* Kleine Labels besser lesbar auf Mobile */
  .progress-label { font-size: 13px; }
  .category-badge { font-size: 13px; padding: 6px 14px; }
  .intro-badge    { font-size: 11px; }
  .section-label  { font-size: 12px; }

  /* Narrow Container auf Mobile */
  .container--narrow { padding: 0 18px; }
}

/* Score-Hero + Kategorien: Mobile (≤ 640px) */
@media (max-width: 640px) {
  .score-hero { padding: 36px 22px 32px; }
  .score-ring-spotlight .score-ring { width: 190px; height: 190px; }
  .score-hero-headline { font-size: 19px; }
  .score-hero-text { font-size: 14px; }
  .score-hero-actions { flex-direction: column; align-items: stretch; }
  .result-action { font-size: 13px; justify-content: center; }
  .teaser-section { padding: 24px 18px; }
  .teaser-grid { grid-template-columns: 1fr; }
  .cat-name { font-size: 13px; }
}

/* ══════════════════════════════════════
   MILESTONE OVERLAY (Kategorie-Wechsel)
══════════════════════════════════════ */
.milestone-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,50,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.milestone-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.milestone-card {
  max-width: 420px;
  width: 90%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.5);
  padding: 40px 36px;
  text-align: center;
  animation: milestoneSlideIn 0.4s var(--ease) both;
}
@keyframes milestoneSlideIn {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}
.milestone-check-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--accent-success), #00c853);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: white;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(0,168,84,0.28);
}
.milestone-done-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-success);
  margin-bottom: 6px;
}
.milestone-category-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.milestone-cat-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.milestone-cat-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  transition: var(--transition);
  flex-shrink: 0;
}
.milestone-cat-dot--done {
  background: var(--accent-success);
  box-shadow: 0 0 6px rgba(0,168,84,0.50);
  transform: scale(1.15);
}
.milestone-cat-dot--active {
  background: var(--accent-primary);
  box-shadow: 0 0 6px rgba(0,102,204,0.45);
  transform: scale(1.15);
}
.milestone-next-box {
  background: rgba(0,102,204,0.06);
  border: 1px solid rgba(0,102,204,0.14);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
  text-align: left;
}
.milestone-next-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--accent-primary);
  margin-bottom: 6px;
}
.milestone-next-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.milestone-next-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   RADAR CHART (Ergebnisseite)
══════════════════════════════════════ */
.radar-section { margin-bottom: 24px; }
.radar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 4px;
}
.radar-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  overflow: visible;
}

/* Milestone-Card responsive (muss NACH der Basis-Definition stehen) */
@media (max-width: 768px) {
  .milestone-card { padding: 32px 24px; width: calc(100% - 32px); }
}

/* ══════════════════════════════════════
   PREFERS-REDUCED-MOTION
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .orb { animation: none; }
  .score-ring-fill { transition: none; }
  .category-fill  { transition: none; }
  .progress-fill  { transition: none; }
}

/* Klein-Mobil (≤ 480px) */
@media (max-width: 480px) {
  .lp-container { padding: 0 16px; }
  .hero { padding: 24px 0 40px; }
  .hero-title { font-size: 24px; }
  .hero-badge { font-size: 11px; }
  .btn--large { padding: 16px 28px; font-size: 15px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; align-items: center; gap: 16px; }
  .vsl-byline { display: none; }
  .risk-card { flex-wrap: wrap; gap: 12px; }
  .intro-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-title { font-size: 22px; }
  .form-group--name-row { grid-template-columns: 1fr; }
}
