/* ══════════════════════════════════════════════════════════
   skupin.law · deepfake-check · Design System
   ══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:         #25486c;   /* Logo-Primärfarbe */
  --navy-dark:    #162d45;
  --navy-mid:     #2d5580;
  --gold:         #b8973e;
  --gold-light:   #d4af5a;
  --anthracite:   #2a2a2a;
  --anthracite-dark: #1c1c1c;
  --page-bg:      #e9eff5;   /* Hellblau von skupin.law (90 % Weißtönung) */
  --card-bg:      #ffffff;
  --off-white:    #f4f7fb;
  --light-gray:   #dde5ee;
  --mid-gray:     #8899aa;
  --text:         #1a2535;
  --text-muted:   #526070;
  --red:          #c0392b;
  --amber:        #d68910;
  --blue-info:    #2471a3;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 2px 16px rgba(37,72,108,0.10);
  --shadow-lg:    0 8px 40px rgba(37,72,108,0.18);
  --transition:   all 0.22s ease;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --cta-h:        68px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.65;
  padding-bottom: var(--cta-h);
}

/* ── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-muted); font-size: 0.95rem; }
a  { color: var(--navy); text-decoration: underline; }
a:hover { color: var(--gold); }
em { font-style: italic; color: var(--gold); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.38; cursor: not-allowed; pointer-events: none; }

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-cta {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--light-gray);
}
.btn-ghost:hover {
  background: var(--off-white);
  color: var(--navy);
  border-color: #b0bec8;
}
.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-sm   { padding: 7px 15px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--card-bg);
  border-bottom: 1px solid var(--light-gray);
  height: 64px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 8px rgba(37,72,108,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-img--footer {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 6px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy); }

/* ── Hero Section ──────────────────────────────────────── */
.hero-section {
  padding: 40px 0;
  background: var(--page-bg);
  height: calc(100vh - 64px - var(--cta-h));
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-section > .container {
  display: flex;
  align-items: stretch;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

/* ── Hero Text (links) ─────────────────────────────────── */
.hero-text { padding-top: 8px; }

.label-tag {
  display: inline-block;
  background: rgba(184,151,62,0.13);
  color: var(--gold);
  border: 1px solid rgba(184,151,62,0.35);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title { margin-bottom: 18px; color: var(--navy-dark); }
.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.trust-icon {
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Attorney badge in hero */
.attorney-badge--hero {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card-bg);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin-top: 28px;
  box-shadow: var(--shadow);
}
.attorney-photo {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid var(--light-gray);
}
.attorney-name    { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.attorney-title   { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; }
.attorney-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 6px;
}

/* ── Journey Card (rechts) ─────────────────────────────── */
.journey-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  height: calc(100vh - 64px - var(--cta-h) - 80px); /* 80px = 2× 40px section padding */
  overflow: hidden;
  align-self: center;
}

/* Progress bar inside card */
.jp-progress {
  flex-shrink: 0;
  padding: 16px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 14px;
}
.jp-step-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
}
.jp-track {
  height: 3px;
  background: var(--light-gray);
  border-radius: 2px;
  overflow: hidden;
}
.jp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  width: 25%;
  transition: width 0.4s ease;
  border-radius: 2px;
}

/* Journey steps */
.jstep { display: none; }
.jstep.active {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  padding: 20px 24px;
  animation: fadeInUp 0.3s ease;
}

.jstep-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.jstep-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* PDF-Download Bar */
.jpdf-bar {
  display: flex;
  justify-content: center;
  padding: 10px 0 4px;
  flex-shrink: 0;
}
.btn-pdf-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}
.btn-pdf-download:hover {
  background: var(--navy);
  color: #fff;
}

/* Navigation inside steps */
.jstep-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  flex-shrink: 0;
  border-top: 1px solid var(--light-gray);
}
.jstep-nav--top-only {
  border-top: none;
  border-bottom: 1px solid var(--light-gray);
  padding-top: 0;
  padding-bottom: 16px;
  margin-top: 0;
  margin-bottom: 18px;
  order: -1; /* show above form */
}

/* ── Scenario buttons ──────────────────────────────────── */
.jscenario-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.jscenario-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-family: var(--font-sans);
  width: 100%;
}
.jscenario-btn:hover {
  border-color: var(--navy);
  background: rgba(37,72,108,0.04);
  transform: translateX(3px);
}
.jscenario-btn.selected {
  border-color: var(--navy);
  background: rgba(37,72,108,0.07);
  box-shadow: 0 0 0 3px rgba(37,72,108,0.10);
}
.jsb-icon {
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  border: 1px solid var(--light-gray);
}
.jscenario-btn.selected .jsb-icon {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.jsb-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.jsb-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.jsb-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.jsb-arrow {
  font-size: 1rem;
  color: var(--mid-gray);
  transition: var(--transition);
  flex-shrink: 0;
}
.jscenario-btn:hover .jsb-arrow,
.jscenario-btn.selected .jsb-arrow { color: var(--navy); transform: translateX(3px); }

.jscenario-btn--soon {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.jsb-soon {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}

/* ── Step 4 scrollbar ──────────────────────────────────── */
.jstep--scrollable.active { overflow-y: auto !important; }

/* ── Zusammenfassung der Angaben ───────────────────────── */
.jsummary {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.jsummary-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.8rem;
}
.jsummary-label {
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 100px;
  flex-shrink: 0;
}
.jsummary-val {
  font-weight: 600;
  color: var(--navy);
}

/* ── Absendebutton prominent ───────────────────────────── */
.btn-submit-main {
  margin-top: 4px;
  font-size: 0.9rem !important;
  padding: 13px 20px !important;
  box-shadow: 0 3px 12px rgba(184,151,62,0.35);
}

/* ── Abbruchseite ──────────────────────────────────────── */
.jabort {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  flex: 1;
  justify-content: center;
}
.jabort-icon {
  width: 72px;
  height: 72px;
  background: #fdf2f2;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.jabort-icon--amber {
  background: #fefbf0;
  border-color: var(--amber);
  color: var(--amber);
}
.jabort-title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.jabort-text {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 12px;
}
.jabort-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Grüne Bestätigung ─────────────────────────────────── */
.jlaw-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0faf4;
  border: 1.5px solid #4caf7d;
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e6b3e;
  line-height: 1.5;
}
.jlaw-success-icon {
  width: 22px;
  height: 22px;
  background: #4caf7d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── Gelbe Infobox ─────────────────────────────────────── */
.jlaw-infobox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fefbf0;
  border: 1.5px solid var(--amber);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 0.825rem;
  color: #7d6608;
  line-height: 1.5;
}
.jlaw-infobox-icon {
  width: 20px;
  height: 20px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Abschnittsbezeichnung ─────────────────────────────── */
.jlaw-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 12px 0 8px;
}

/* ── RSV Radio-Buttons ─────────────────────────────────── */
.jradio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.jradio-btn {
  flex: 1;
  padding: 8px 10px;
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.jradio-btn:hover { border-color: var(--navy); background: rgba(37,72,108,0.04); }
.jradio-btn.selected {
  border-color: var(--navy);
  background: rgba(37,72,108,0.09);
  color: var(--navy);
  font-weight: 600;
}

/* ── Multi-Select (Verbreitung) ────────────────────────── */
.jmulti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.jmulti-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  text-align: left;
}
.jmulti-btn:hover {
  border-color: var(--navy);
  background: rgba(37,72,108,0.04);
}
.jmulti-btn.selected {
  border-color: var(--navy);
  background: rgba(37,72,108,0.09);
  color: var(--navy);
  font-weight: 600;
}
.jmulti-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--mid-gray);
}
.jmulti-btn.selected .jmulti-icon { color: var(--navy); }

@media (min-width: 960px) {
  .jmulti-grid { gap: 6px; }
  .jmulti-btn  { padding: 8px 10px; font-size: 0.78rem; gap: 8px; }
  .jmulti-icon svg { width: 15px; height: 15px; }
}

/* ── Law blocks (Step 2) ───────────────────────────────── */
.jlaw-block { }
.jlaw-block.hidden { display: none; }

.jlaw-alert {
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-size: 0.825rem;
  line-height: 1.55;
}
.jlaw-alert--red   { background: #fdf2f2; border-left: 3px solid var(--red);   color: #7b241c; }
.jlaw-alert--amber { background: #fefbf0; border-left: 3px solid var(--amber); color: #7d6608; }

.jlaw-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff5f5;
  border: 1.5px solid var(--red);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 10px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1.5;
}
.jlaw-warning-icon {
  width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.jlaw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.jlaw-item {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.jlaw-norm {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 2px 7px;
  border-radius: 3px;
  width: fit-content;
}
.jlaw-item span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Options list (Step 3) ─────────────────────────────── */
.joptions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
#jstep3-list {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-right: 2px;
}
.joption {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.joption-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.joption-badge--red    { background: #fdf2f2; color: var(--red);       border: 1px solid rgba(192,57,43,0.25); }
.joption-badge--amber  { background: #fefbf0; color: var(--amber);     border: 1px solid rgba(214,137,16,0.25); }
.joption-badge--blue   { background: #eaf4fb; color: var(--blue-info); border: 1px solid rgba(36,113,163,0.25); }
.joption-badge--purple { background: #f5f0fb; color: #6c3483;          border: 1px solid rgba(108,52,131,0.25); }
.joption-badge--teal   { background: #eafaf6; color: #1a7f64;          border: 1px solid rgba(26,127,100,0.25); }
.joption strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.joption p { font-size: 0.8rem; line-height: 1.5; margin: 0; }

/* ── Contact form in journey card ──────────────────────── */
.jcontact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--card-bg);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab4bd; }
.form-group--checkbox { flex-direction: row; align-items: flex-start; }
.checkbox-label {
  display: flex;
  gap: 8px;
  font-size: 0.775rem !important;
  font-weight: 400 !important;
  color: var(--text-muted) !important;
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  padding: 0;
}
.form-note {
  font-size: 0.72rem;
  color: var(--mid-gray);
  text-align: center;
  margin-top: -6px;
}

/* Form success */
.jform-success { text-align: center; padding: 28px 16px; }
.jform-success.hidden { display: none; }
.success-icon {
  width: 52px;
  height: 52px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.jform-success h4 { color: var(--navy); margin-bottom: 8px; }
.jform-success p  { margin-bottom: 18px; font-size: 0.875rem; }

/* ── FAQ-Bereich ───────────────────────────────────────── */
.faq-section {
  background: #fff;
  padding: 72px 0 80px;
  border-top: 1px solid var(--light-gray);
}
.faq-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.faq-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-item:first-child {
  border-top: 1px solid var(--light-gray);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}
details[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 4px 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.faq-answer strong {
  color: var(--navy);
  font-weight: 600;
}
@media (max-width: 640px) {
  .faq-section  { padding: 48px 0 64px; }
  .faq-heading  { font-size: 1.4rem; }
  .faq-question { font-size: 0.92rem; padding: 16px 4px; }
}

/* ── Sticky CTA Bar ────────────────────────────────────── */
.cta-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--cta-h);
  background: var(--navy);
  z-index: 200;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cta-sticky.visible {
  transform: translateY(0);
  opacity: 1;
}
.cta-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-sticky-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-sticky-question {
  font-size: 0.975rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.cta-sticky-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.cta-sticky-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cta-phone-btn svg { flex-shrink: 0; }


/* ── Animations ────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Utility ───────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-section {
    height: auto;
    min-height: unset;
    overflow: visible;
    padding: 40px 0 56px;
    align-items: flex-start;
  }
  .hero-section > .container { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .journey-card {
    height: auto;
    min-height: unset;
  }
  .jstep.active {
    display: flex;
    flex: unset;
    overflow-y: visible;
  }
  .jstep-nav { margin-top: 18px; }
}
@media (max-width: 640px) {
  /* Grundlayout */
  :root { --cta-h: 116px; }
  .container { padding: 0 16px; }
  .hero-section { padding: 32px 0 48px; }
  .jstep { padding: 18px 16px; }
  .jp-progress { padding: 12px 16px 12px; }
  .form-row { grid-template-columns: 1fr; }
  .jlaw-grid { grid-template-columns: 1fr; }

  /* 1) Header: Impressum & Datenschutz sichtbar */
  .header-nav { gap: 12px; }
  .header-nav .nav-link { font-size: 0.75rem; }

  /* 2) CTA-Bar: zweizeilig statt abgeschnitten */
  .cta-sticky { height: auto; padding: 10px 0; }
  .cta-sticky-inner { flex-direction: column; gap: 8px; align-items: stretch; }
  .cta-sticky-question { font-size: 0.85rem; white-space: normal; text-align: center; }
  .cta-sticky-sub { display: none; }
  .cta-sticky-actions { justify-content: center; gap: 8px; }
  .cta-sticky-actions .cta-phone-btn { display: inline-flex; font-size: 0.8rem; padding: 7px 14px; }
  .cta-sticky .btn-cta { white-space: normal; text-align: center; font-size: 0.85rem; padding: 6px 16px; }

  /* 3+4) Journey-Buttons & Submit-Button: kein Überlauf */
  .jstep-nav .btn { white-space: normal; text-align: center; font-size: 0.8rem; padding: 7px 10px; }
  .btn-submit-main { white-space: normal !important; text-align: center; }
}

/* ── Desktop: Journey-Card kompakt (kein Scroll) ───────── */
@media (min-width: 960px) {
  /* Progress-Header */
  .jp-progress        { padding: 10px 18px 10px; gap: 6px; }
  .jp-step-indicator  { font-size: 0.7rem; }

  /* Step-Wrapper */
  .jstep.active       { padding: 14px 18px; }

  /* Titel & Untertitel */
  .jstep-title        { font-size: 0.95rem; margin-bottom: 4px; }
  .jstep-sub          { font-size: 0.78rem; margin-bottom: 12px; }

  /* Szenario-Buttons */
  .jscenario-grid     { gap: 5px; }
  .jscenario-btn      { padding: 8px 10px; gap: 10px; }
  .jsb-icon           { width: 30px; height: 30px; flex-shrink: 0; }
  .jsb-icon svg       { width: 16px; height: 16px; }
  .jsb-text strong    { font-size: 0.8rem; }
  .jsb-text span      { font-size: 0.71rem; }

  /* Rechtslagen-Kacheln */
  .jlaw-alert         { padding: 8px 12px; font-size: 0.775rem; margin-bottom: 10px; }
  .jlaw-grid          { gap: 6px; margin-bottom: 0; }
  .jlaw-item          { padding: 8px 10px; gap: 3px; }
  .jlaw-norm          { font-size: 0.65rem; padding: 1px 6px; }
  .jlaw-item span:last-child { font-size: 0.75rem; }

  /* Optionsliste */
  .joptions-list      { gap: 6px; }
  .joption            { padding: 9px 11px; gap: 10px; }
  .joption-badge      { font-size: 0.65rem; padding: 2px 7px; }
  .joption strong     { font-size: 0.8rem; margin-bottom: 2px; }
  .joption p          { font-size: 0.75rem; }

  /* Kontaktformular */
  .jcontact-form      { gap: 9px; }
  .form-group label   { font-size: 0.75rem; }
  .form-group input,
  .form-group textarea { padding: 6px 10px; font-size: 0.825rem; }
  .form-group         { gap: 3px; }
  .form-row           { gap: 9px; }
  textarea#jsituation { rows: 2; max-height: 58px; min-height: 52px; }
  .checkbox-label     { font-size: 0.72rem !important; }
  .form-note          { font-size: 0.68rem; margin-top: -4px; }
  .btn-full           { padding: 10px 16px; font-size: 0.85rem; }

  /* Step-Navigation */
  .jstep-nav          { padding-top: 10px; }
}
