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

:root {
  /* Colors */
  --color-bg: #f5f2ed;
  --color-bg-alt: #eceae4;
  --color-primary: #1a2e2a;
  --color-primary-mid: #243c39;
  --color-accent: #1a2e2a;
  --color-accent-light: #e8f0ee;
  --color-accent-dark: #0f1e1b;
  --color-surface: #ffffff;
  --color-card-bg: #ffffff;
  --color-card-border: #e5e2dd;
  --color-muted: #8a857d;
  --color-text: #1a2e2a;
  --color-cta-text: #ffffff;
  /* Legacy aliases — keep for existing component refs */
  --bg: var(--color-bg);
  --bg-alt: var(--color-bg-alt);
  --fg: var(--color-text);
  --fg-muted: var(--color-muted);
  --accent: var(--color-accent);
  --accent-light: var(--color-accent-light);
  --accent-dark: var(--color-accent-dark);
  --surface: var(--color-surface);
  --border: var(--color-card-border);
  --green: var(--color-primary);
  --green-mid: var(--color-primary-mid);
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-hero: clamp(2.4rem, 5vw, 4rem);
  --font-size-section: clamp(1.8rem, 3vw, 2.8rem);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; font-style: italic; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

/* === NAVBAR === */
.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--fg);
  text-decoration: none;
}

.navbar-logo:hover { color: var(--green); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-links a {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.navbar-links a:hover { color: var(--fg); }
.navbar-links a.active { color: var(--fg); font-weight: 600; }

@media (max-width: 600px) {
  .navbar-links { display: none; }
}

/* Section header: number + label + horizontal line */
.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.section-num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  opacity: 0.6;
}

.section-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--color-text);
  margin-bottom: 2.5rem;
}

/* === LAYOUT UTILITIES === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.hero-headline em {
  color: var(--color-primary);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.separator { color: var(--border); }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green);
  color: #FFF;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,80,22,0.22);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--fg);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background: var(--fg);
  color: #FFF;
}

/* === HERO CTA === */
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.hero-cta-sub {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

.hero-cta--secondary {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.hero-cta-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin: 0;
}

/* === RISK CHAIN === */
.risk-chain {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.4rem 2.8rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.risk-chain-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.8rem;
}

/* Top row: 5 escalation steps in a horizontal chain */
.risk-chain-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  padding-bottom: 0;
}

.risk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1 1 0;
}

.risk-icon {
  font-size: 1.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.risk-chain-steps > .risk-step:nth-child(1) .risk-icon { background: #FEE2E2; color: #991B1B; }
.risk-chain-steps > .risk-step:nth-child(3) .risk-icon { background: #FEF3C7; color: #92400E; }
.risk-chain-steps > .risk-step:nth-child(5) .risk-icon { background: #FFEDD5; color: #C2410C; }
.risk-chain-steps > .risk-step:nth-child(7) .risk-icon { background: #FEF9C3; color: #A16207; }
.risk-chain-steps > .risk-step:nth-child(9) .risk-icon { background: #1C1917; color: #FFF; }
.risk-chain-steps > .risk-step:nth-child(11) .risk-icon,
.risk-step.risk-final .risk-icon { background: #1C1917; color: #FFF; }

.risk-text {
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
  color: var(--fg);
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.risk-arrow {
  font-size: 0.9rem;
  color: var(--color-muted);
  padding: 0 0.15rem;
  flex-shrink: 0;
  margin-top: 0.8rem;
}

/* Outcome row — Schwächere Position as highlighted result */
.risk-outcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  position: relative;
}

/* Downward connector arrow before outcome */
.risk-outcome::before {
  content: '';
  display: block;
  width: 2px;
  height: 20px;
  background: #1C1917;
  margin-bottom: 0.6rem;
}

.risk-outcome .risk-icon {
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
  background: #1C1917;
  color: #FFF;
  margin-bottom: 0.4rem;
}

.risk-outcome .risk-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
}

.risk-chain-caption {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

/* === PRICING LOGIC === */
.pricing-logic {
  background: #1a2e2a;
  background: var(--green, #1a2e2a);
  color: #FFF;
  padding: 5rem 2rem;
}

.pricing-logic-inner { max-width: 1100px; margin: 0 auto; }

.pricing-logic .section-label,
.pricing-logic .section-num { color: rgba(255,255,255,0.6); }
.pricing-logic .section-rule { background: rgba(255,255,255,0.2); }

.pricing-logic-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 2rem;
}

.pricing-stat { padding: 1.5rem 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #FFF;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.pricing-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  margin: 0 2rem;
}

.pricing-logic-note {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

/* === PROCESS === */
.process { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:nth-child(odd) { padding-right: 3rem; border-right: 1px solid var(--border); }
.process-step:nth-child(even) { padding-left: 3rem; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.6;
}

.step-body h3 {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === BENEFITS === */
.benefits { background: var(--bg-alt); padding: 5rem 2rem; }

.benefits-inner { max-width: 1100px; margin: 0 auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}

.benefit-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Accent card: dark green bg, white text (Card III) */
.benefit-card--accent {
  background: #1a2e2a;
  background: var(--green, #1a2e2a);
  border-color: #1a2e2a;
  border-color: var(--green, #1a2e2a);
  color: #FFF;
}

.benefit-card--accent h3 { color: #FFF; }
.benefit-card--accent p { color: rgba(255,255,255,0.8); }

.benefit-card--accent .benefit-icon {
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === REPORT PREVIEW === */
.report-preview { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }

.report-preview-content { max-width: 680px; }

.report-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.report-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2rem;
  margin-bottom: 2.5rem;
}

.report-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.925rem;
  color: var(--fg);
}

.report-item-icon {
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  font-weight: 700;
}

.report-cta {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--fg);
}

/* === CLOSING / FOOTER CTA BANNER === */
.footer-cta {
  background: #1a2e2a;
  background: var(--green, #1a2e2a);
  color: #FFF;
  padding: 5rem 2rem;
  text-align: center;
}

.footer-cta-inner { max-width: 760px; margin: 0 auto; }

.footer-cta-statement {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.footer-cta-emphasis {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #FFF;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.footer-cta .btn-primary {
  background: #FFF;
  color: var(--green);
  font-size: 1rem;
  padding: 1rem 2.2rem;
}

.footer-cta .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* === FOOTER === */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 0.8rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.footer-legal-links a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal-links a:hover { color: var(--fg); }

.footer-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* === CONFIRMATION & LEGAL PAGES === */
.page-shell {
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 2rem;
  background: var(--bg);
}

.confirmation-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.confirmation-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #166534;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.confirmation-icon.cancel-icon {
  background: #FEF2F2;
  color: #991B1B;
}

.confirmation-title {
  font-size: 1.8rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.confirmation-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.confirmation-sub a { color: var(--accent); }

.confirmation-steps {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
}

.confirmation-steps h2 {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.steps-list {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps-list li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.steps-list li strong { color: var(--fg); }

.confirmation-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.confirmation-note a { color: var(--accent); }

.confirmation-widerruf {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 1.8rem;
}

.confirmation-widerruf a { color: var(--accent-dark); }

/* === LEGAL PAGES === */
.legal-page {
  max-width: 680px;
  width: 100%;
  padding: 1rem 0;
}

.legal-page h1 {
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  color: var(--fg);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.legal-page h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--fg);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.legal-page p {
  font-size: 0.925rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.legal-page ul {
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
}

.legal-page ul li {
  font-size: 0.925rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 0.3rem;
}

.legal-page a { color: var(--accent); }

.legal-page .btn-secondary {
  margin-top: 2.5rem;
}

@media (max-width: 600px) {
  .confirmation-card { padding: 2rem 1.2rem; }
  .confirmation-title { font-size: 1.4rem; }
  .page-shell { padding: 2rem 1rem; align-items: flex-start; }
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; max-width: 640px; }
  .hero-visual { margin-top: 1rem; }
  .footer-cta { padding: 4rem 1.5rem; }
  .process { padding: 4rem 2rem; }
  .benefits { padding: 4rem 2rem; }
  .report-preview { padding: 4rem 2rem; }
  .price-trap { padding: 4rem 2rem; }
  .pricing-logic-content { grid-template-columns: 1fr; gap: 0; }
  .pricing-divider { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step:nth-child(odd) { border-right: none; padding-right: 0; }
  .process-step:nth-child(even) { padding-left: 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .report-sections { grid-template-columns: 1fr; }
}

/* === MOBILE: Vertical Startpreis-Falle timeline (≤768px) === */
@media (max-width: 768px) {
  .risk-chain {
    padding: 1.6rem 1.4rem;
  }

  /* Stack steps + arrows vertically */
  .risk-chain-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding-bottom: 0;
  }

  /* Step: icon left, text right in a row */
  .risk-chain-steps .risk-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0;
  }

  .risk-chain-steps .risk-step .risk-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    font-size: 1.1rem;
  }

  .risk-chain-steps .risk-step .risk-text {
    font-size: 0.9rem;
    text-align: left;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-text);
  }

  /* Vertical connector arrow between steps — rotated downward */
  .risk-chain-steps .risk-arrow {
    font-size: 0;         /* hide the → text */
    display: flex;
    align-items: center;
    padding: 0 0 0 0.95rem; /* align with icon center */
    margin-top: 0;
    height: 20px;
  }

  .risk-chain-steps .risk-arrow::after {
    content: '';
    display: block;
    width: 2px;
    height: 16px;
    background: var(--color-muted);
    opacity: 0.4;
    border-radius: 1px;
  }

  /* Color progression for the 5 step icons */
  .risk-chain-steps > .risk-step:nth-child(1) .risk-icon { background: #FEE2E2; color: #991B1B; }
  .risk-chain-steps > .risk-step:nth-child(3) .risk-icon { background: #FEF3C7; color: #92400E; }
  .risk-chain-steps > .risk-step:nth-child(5) .risk-icon { background: #FFEDD5; color: #C2410C; }
  .risk-chain-steps > .risk-step:nth-child(7) .risk-icon { background: #FEF9C3; color: #A16207; }
  .risk-chain-steps > .risk-step:nth-child(9) .risk-icon { background: #1C1917; color: #FFF; }

  /* Outcome section: visually distinct with dark border */
  .risk-outcome {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 0.6rem;
    padding: 0.9rem;
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    justify-content: flex-start;
  }

  .risk-outcome::before { display: none; } /* remove desktop connector */

  .risk-outcome .risk-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.2rem;
  }

  .risk-outcome .risk-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: left;
  }

  .risk-chain-caption {
    font-size: 0.8rem;
    margin-top: 1.2rem;
  }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 1.8rem; }
  .section-headline { font-size: 1.4rem; }
  .closing-statement { font-size: 1rem; }
  .closing-emphasis { font-size: 1.3rem; }

  /* Tighter padding on small screens */
  .risk-chain { padding: 1.2rem 1rem; }
  .risk-chain-steps .risk-step .risk-icon { width: 38px; height: 38px; min-width: 38px; font-size: 1rem; }
  .risk-chain-steps .risk-step .risk-text { font-size: 0.85rem; }
  .risk-outcome .risk-icon { width: 40px; height: 40px; min-width: 40px; }
}

/* === PRICE TRAP SECTION === */
.price-trap {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}

.price-trap-inner {
  max-width: 760px;
  margin: 0 auto;
}

.price-trap-headline {
  margin-bottom: 1rem;
}

.price-trap-intro {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

/* --- Stepper --- */
.trap-stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

/* Scroll-reveal: start hidden, animate in */
.trap-step,
.trap-connector,
.faustregel,
.trap-cta {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.trap-step--visible,
.trap-connector.trap-step--visible,
.faustregel.trap-step--visible,
.trap-cta.trap-step--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Step card base */
.trap-step {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trap-step:focus { outline: 2px solid var(--accent); outline-offset: 2px; }

.trap-step-header {
  display: grid;
  grid-template-columns: 44px 44px 1fr 24px;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.4rem;
}

.trap-step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--fg-muted);
  opacity: 0.5;
}

.trap-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trap-step-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.35;
}

.trap-step-toggle {
  color: var(--fg-muted);
  font-size: 1.1rem;
  transition: transform 0.25s ease;
  user-select: none;
  text-align: right;
}

/* Step body — hidden by default, shown when active */
.trap-step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.4rem;
}

.trap-step-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  padding-bottom: 1.2rem;
}

/* Active state */
.trap-step--active .trap-step-body {
  max-height: 200px;
  padding: 0 1.4rem;
}

.trap-step--active .trap-step-toggle {
  transform: rotate(180deg);
}

/* Escalating severity colors per step */
.trap-step--1 { border-color: #FDE68A; }
.trap-step--1 .trap-step-icon { background: #FEF9C3; color: #A16207; }
.trap-step--1.trap-step--active { border-color: #F59E0B; box-shadow: 0 4px 16px rgba(245,158,11,0.12); }

.trap-step--2 { border-color: #FED7AA; }
.trap-step--2 .trap-step-icon { background: #FFEDD5; color: #C2410C; }
.trap-step--2.trap-step--active { border-color: #F97316; box-shadow: 0 4px 16px rgba(249,115,22,0.12); }

.trap-step--3 { border-color: #FECACA; }
.trap-step--3 .trap-step-icon { background: #FEE2E2; color: #B91C1C; }
.trap-step--3.trap-step--active { border-color: #EF4444; box-shadow: 0 4px 16px rgba(239,68,68,0.14); }

.trap-step--4 { border-color: #FECACA; }
.trap-step--4 .trap-step-icon { background: #FEE2E2; color: #991B1B; }
.trap-step--4.trap-step--active { border-color: #DC2626; box-shadow: 0 4px 16px rgba(220,38,38,0.15); }

.trap-step--5.trap-step--final { border-color: #1C1917; }
.trap-step--5 .trap-step-num { opacity: 1; color: var(--fg); }
.trap-step--5 .trap-step-icon { background: #1C1917; color: #FFF; }
.trap-step--5 .trap-step-title { color: var(--fg); }
.trap-step--5.trap-step--active { box-shadow: 0 6px 24px rgba(0,0,0,0.18); }

/* Connector between steps */
.trap-connector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.4rem;
  height: 32px;
}

.trap-connector-line {
  width: 2px;
  height: 24px;
  margin-left: 21px;
  border-radius: 1px;
}

.trap-connector-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trap-connector--1 .trap-connector-line { background: #F59E0B; }
.trap-connector--1 .trap-connector-label { color: #92400E; }
.trap-connector--2 .trap-connector-line { background: #F97316; }
.trap-connector--2 .trap-connector-label { color: #C2410C; }
.trap-connector--3 .trap-connector-line { background: #EF4444; }
.trap-connector--3 .trap-connector-label { color: #B91C1C; }
.trap-connector--4 .trap-connector-line { background: #DC2626; }
.trap-connector--4 .trap-connector-label { color: #991B1B; }

/* --- Faustregel boxes --- */
.trap-faustregeln {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.faustregel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.faustregel--green {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.faustregel--warn {
  background: #FFF7ED;
  border-color: #FED7AA;
}

.faustregel-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.faustregel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.faustregel--green .faustregel-label { color: #166534; }
.faustregel--warn .faustregel-label { color: #9A3412; }

.faustregel-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--fg);
}

/* --- CTA --- */
.trap-cta {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.trap-cta-note {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.trap-cta-note em {
  font-style: italic;
  color: var(--fg);
}

.trap-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #FFF;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.trap-cta-btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.trap-cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.trap-cta-btn:hover .trap-cta-arrow { transform: translateX(3px); }

.trap-cta-sub {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* --- Price trap responsive --- */
@media (max-width: 700px) {
  .trap-faustregeln { grid-template-columns: 1fr; }
  .trap-step-header { grid-template-columns: 36px 36px 1fr 20px; gap: 0.5rem; padding: 1rem 1rem; }
  .trap-faustregeln { grid-template-columns: 1fr; }
  .trap-step-num { font-size: 1.2rem; }
  .trap-step-icon { width: 36px; height: 36px; font-size: 0.95rem; }
  .trap-step-title { font-size: 0.875rem; }
  .trap-connector-line { margin-left: 17px; }
}

/* === WIZARD === */
.wizard-wrapper {
  max-width: 540px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.wizard-progress {
  margin-bottom: 2.5rem;
}

.wizard-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.wizard-progress-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Numbered step indicator (check wizard stepper) */
.wizard-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.wizard-stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.wizard-stepper-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--fg-muted);
  transition: all 0.25s ease;
}

.wizard-stepper-step--active .wizard-stepper-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,46,42,0.2);
}

.wizard-stepper-step--done .wizard-stepper-dot {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

.wizard-stepper-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  white-space: nowrap;
}

.wizard-stepper-step--active .wizard-stepper-label {
  color: var(--fg);
  font-weight: 600;
}

.wizard-stepper-line {
  width: 48px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 0.25rem;
  margin-bottom: 1.2rem;
}

.wizard-stepper-line--done {
  background: var(--accent);
}

@media (max-width: 600px) {
  .wizard-stepper-line { width: 32px; }
  .wizard-stepper-dot { width: 32px; height: 32px; font-size: 0.8rem; }
  .wizard-stepper-label { font-size: 0.62rem; }
}

.wizard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.wizard-headline {
  font-size: 1.7rem;
  color: var(--fg);
  margin-bottom: 0.7rem;
}

.wizard-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.wizard-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.form-required { color: #DC2626; }
.form-optional { font-weight: 400; color: var(--fg-muted); font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-muted); opacity: 0.7; }

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B635A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.wizard-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #991B1B;
  margin-bottom: 1rem;
}

.wizard-price-note {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-top: 0.5rem;
}

.wizard-price-tag {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.wizard-price-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg-muted);
  margin-left: 0.3rem;
}

.wizard-price-note p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
}

.wizard-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.wizard-btn svg { transition: transform 0.2s ease; }
.wizard-btn:hover svg { transform: translateX(2px); }

.wizard-btn--primary { background: var(--green); }
.wizard-btn--primary:hover { background: var(--green-mid); }

.wizard-secure {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 0.8rem;
}

.wizard-back {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.wizard-back:hover { color: var(--fg); }
/* When wizard-back is inside form-actions row, reset bottom margin */
.form-actions .wizard-back { margin-bottom: 0; }

@media (max-width: 600px) {
  .wizard-wrapper { padding: 2rem 1rem 4rem; }
  .wizard-card { padding: 1.8rem 1.4rem; }
  .wizard-headline { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Check Wizard overrides ──────────────────────────────────────────── */
/* Wider wrapper for the 2-column check form (vs 540px default wizard) */
.wizard-wrapper--wide { max-width: 620px; }

/* Section divider inside wizard cards */
.wizard-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.5rem 0 0;
  padding-top: 1.5rem;
}

/* DSGVO / consent checkbox card */
.form-consent {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1rem;
}
.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.form-consent a { color: var(--accent); }

/* Inline field + checkbox row (e.g. modernisierung + "Unbekannt") */
.form-inline-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.form-inline-row input[type="number"] { flex: 1; }
.form-inline-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  white-space: nowrap;
  cursor: pointer;
}
.form-inline-check input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

/* Constrained-width input (e.g. price field) */
.form-group--narrow input { max-width: 280px; }

@media (max-width: 600px) {
  .wizard-wrapper--wide { max-width: 100%; }
}

/* ── Waitlist section ───────────────────────────────────────────────────── */
.waitlist-section {
  background: var(--bg-warm);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
}
.waitlist-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.waitlist-form { width: 100%; }
.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}
.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 140px 180px;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.waitlist-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.waitlist-label .required { color: var(--gold); }
.waitlist-label .optional { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.75rem; }
.waitlist-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  background: #fff;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}
.waitlist-input:focus { outline: none; border-color: var(--gold); }
.waitlist-select { cursor: pointer; }
.waitlist-submit {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  margin-bottom: 1rem;
}
.waitlist-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.waitlist-dsgvo {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.waitlist-dsgvo a { color: var(--gold-dark); }
.waitlist-success {
  text-align: center;
  padding: 2rem;
  background: #f0fdf4;
  border-radius: 12px;
  border: 1.5px solid #86efac;
}
.waitlist-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.waitlist-success h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.waitlist-success p { font-size: 0.9rem; color: #374151; line-height: 1.6; }
.waitlist-error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
}
.waitlist-error p { font-size: 0.875rem; color: #b91c1c; margin: 0; }

@media (max-width: 700px) {
  .waitlist-fields { grid-template-columns: 1fr; }
}

/* ── Check Result Page ────────────────────────────────────────────────── */
.check-result { max-width: 680px; margin: 0 auto; padding: 3rem 2rem 4rem; }

.check-result-success {
  text-align: center;
  margin-bottom: 1.5rem;
}

.check-result-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #f0fdf4;
  border-radius: 50%;
  border: 2px solid #86efac;
  margin: 0 auto 1rem;
}

.check-result-success-label {
  font-size: 0.9rem;
  color: #16a34a;
  font-weight: 600;
}

/* Property summary pills */
.check-result-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.check-result-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Action / recommendation badge */
.check-result-action {
  text-align: center;
  margin-bottom: 1.5rem;
}

.check-result-action-inner {
  display: inline-block;
  border-radius: 10px;
  padding: 0.7rem 1.4rem;
}

.check-result-action-label {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* 5 Risk cards */
.check-risk-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.check-risk-card {
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.check-risk-card-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}

.check-risk-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Assessment text block */
.check-assessment {
  background: var(--bg);
  border-radius: 14px;
  padding: 1.6rem;
  border-left: 4px solid var(--accent);
  margin-bottom: 1.5rem;
  text-align: left;
}

.check-assessment p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--fg);
  margin: 0;
}

/* Recommendation banner */
.check-recommendation {
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.check-recommendation p {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}

/* Upsell section */
.check-upsell {
  border-top: 2px solid var(--accent);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

.check-upsell-headline {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
  font-family: var(--font-body);
  font-style: normal;
}

.check-upsell-risk {
  background: #fefce8;
  border: 1px solid #fde047;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.check-upsell-risk p {
  font-size: 0.9rem;
  color: #854d0e;
  line-height: 1.6;
  margin: 0;
}

.check-upsell-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
  text-align: center;
  margin-bottom: 1.25rem;
}

.check-upsell-cta {
  text-align: center;
}

.check-upsell-email {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 0.75rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--fg);
  box-sizing: border-box;
  text-align: center;
  display: block;
}

.check-upsell-email:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.check-upsell-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.check-upsell-btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,46,42,0.25);
}

.check-upsell-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.check-upsell-price {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
}

/* Risk card color variants */
.check-risk-card--niedrig { background: #f0fdf4; border: 1px solid #86efac; }
.check-risk-card--mittel { background: #fefce8; border: 1px solid #fde047; }
.check-risk-card--erhoeht { background: #fef2f2; border: 1px solid #fecaca; }

.check-risk-badge--niedrig { background: #dcfce7; color: #166534; border: 1px solid #16653430; }
.check-risk-badge--mittel { background: #fef9c3; color: #854d0e; border: 1px solid #854d0e30; }
.check-risk-badge--erhoeht { background: #fee2e2; color: #991b1b; border: 1px solid #991b1b30; }

/* Action / recommendation color variants */
.check-result-action--standard .check-result-action-inner { background: #f0fdf4; border: 1px solid #16653440; }
.check-result-action--standard .check-result-action-label { color: #166534; }
.check-result-action--priority .check-result-action-inner { background: #fefce8; border: 1px solid #854d0e40; }
.check-result-action--priority .check-result-action-label { color: #854d0e; }
.check-result-action--critical .check-result-action-inner { background: #fef2f2; border: 1px solid #991b1b40; }
.check-result-action--critical .check-result-action-label { color: #991b1b; }

.check-recommendation--standard { background: #f0fdf4; border: 1px solid #16653440; }
.check-recommendation--standard p { color: #166534; }
.check-recommendation--priority { background: #fefce8; border: 1px solid #854d0e40; }
.check-recommendation--priority p { color: #854d0e; }
.check-recommendation--critical { background: #fef2f2; border: 1px solid #991b1b40; }
.check-recommendation--critical p { color: #991b1b; }

/* Fallback wizard card centered */
.wizard-card--centered { text-align: center; padding: 2.5rem; }

/* Fallback / restart link */
.check-result-restart {
  text-align: center;
  margin-top: 2rem;
}

.check-result-restart a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.check-result-restart a:hover {
  color: var(--fg);
}

@media (max-width: 600px) {
  .check-result { padding: 2rem 1rem 3rem; }
  .check-upsell-headline { font-size: 1.15rem; }
  .check-upsell-btn { font-size: 0.95rem; padding: 0.9rem 1.5rem; }
}