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

:root {
  --bg: #F7F5F0;
  --bg-alt: #EFECE5;
  --fg: #1C1917;
  --fg-muted: #6B635A;
  --accent: #C4820A;
  --accent-light: #F5E6C8;
  --accent-dark: #9A6508;
  --surface: #FFFFFF;
  --border: #DDD8CF;
  --step-num-bg: #1C1917;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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.15; }

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

.section-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 2.5rem;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent-dark);
  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(--accent);
  animation: pulse 2s infinite;
}

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

.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 1.2rem;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-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(--fg);
}

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

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #FFF;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.95rem 2rem;
  border-radius: 8px;
  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(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,130,10,0.25);
}

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

.btn-secondary:hover {
  border-color: var(--fg);
  background: var(--bg-alt);
}

/* === 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;
}

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

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

.risk-chain-steps {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.risk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

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

.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-text {
  font-size: 0.65rem;
  font-weight: 500;
  text-align: center;
  color: var(--fg);
  line-height: 1.3;
}

.risk-arrow {
  font-size: 1.1rem;
  color: var(--border);
  padding: 0 0.2rem;
  flex-shrink: 0;
}

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

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

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

.pricing-logic .section-label { color: var(--accent); }

.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: 12px;
  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;
}

/* === 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 === */
.closing {
  background: var(--fg);
  color: #FFF;
  padding: 5rem 2rem;
  text-align: center;
}

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

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

.closing-emphasis {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #FFF;
  line-height: 1.4;
}

/* === 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: 900px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .hero-visual { margin-top: 1rem; }
  .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; }
}

@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; }
  .risk-chain-steps { gap: 0; }
  .risk-arrow { padding: 0 0.1rem; }
}

/* === 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;
  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--red {
  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--red .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(--fg);
  color: #FFF;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.trap-cta-btn:hover {
  background: var(--accent-dark);
  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-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);
}

.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-actions { display: flex; justify-content: flex-end; }

.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(--fg);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
}

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

.wizard-btn--primary { background: var(--accent); }
.wizard-btn--primary:hover { background: var(--accent-dark); }

.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); }

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