/* ══════════════════════════════════════════
   SELF-HOSTED FONTS (variable fonts)
   ══════════════════════════════════════════ */
@font-face {
  font-family: 'Newsreader';
  src: url('fonts/newsreader.woff2') format('woff2');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('fonts/newsreader-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/outfit.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ══════════════════════════════════════════
   RESET & DESIGN TOKENS
   ══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --slate: #1a2332;
  --slate-mid: #243044;
  --slate-light: #2d3f56;
  --amber: #b87a00;
  --amber-light: #d4920b;
  --amber-pale: rgba(184,122,0,0.06);
  --amber-glow: rgba(184,122,0,0.1);
  --cream: #faf8f5;
  --warm-white: #fffdf9;
  --white: #ffffff;
  --text-primary: #1a2332;
  --text-body: #556270;
  --text-muted: #7a8a9e;
  /* ⚠️ WARNING: --text-muted (#7a8a9e) only passes WCAG AA for large text (≥18px / 1.125rem).
     NEVER use on text smaller than 18px. Use --text-body for smaller muted text. */
  --border: rgba(26,35,50,0.22);
  --border-hover: rgba(26,35,50,0.32);
  --error: #e53e3e;
  --success: #48bb78;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(26,35,50,0.04);
  --shadow-md: 0 4px 20px rgba(26,35,50,0.06);
  --shadow-lg: 0 12px 48px rgba(26,35,50,0.08), 0 4px 12px rgba(26,35,50,0.04);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════
   SKIP LINK
   ══════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--slate);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  text-decoration: none;
}
.skip-link:focus {
  top: 16px;
}

/* ══════════════════════════════════════════
   AMBIENT BACKGROUND & NOISE
   ══════════════════════════════════════════ */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,122,0,0.06) 0%, transparent 70%);
  animation: ambientFloat 20s ease-in-out infinite;
}

.ambient::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,35,50,0.03) 0%, transparent 70%);
  animation: ambientFloat 25s ease-in-out infinite reverse;
}

@keyframes ambientFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  padding: 12px 32px;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--slate);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header.scrolled .logo-mark {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: 'Newsreader', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: -0.02em;
}

.header-trust {
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
}

.header-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

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

/* ══════════════════════════════════════════
   MAIN LAYOUT
   ══════════════════════════════════════════ */
.main {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  padding: 120px 24px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ══════════════════════════════════════════
   DISCLAIMER FOOTNOTE (outside main content)
   ══════════════════════════════════════════ */
.disclaimer-footnote {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 24px 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px 24px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-primary); }

/* ══════════════════════════════════════════
   PARTNER BANNER
   ══════════════════════════════════════════ */
.partner-banner {
  display: none;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--amber-pale) 0%, rgba(184,122,0,0.02) 100%);
  border-radius: 14px;
  border: 1px solid rgba(184,122,0,0.12);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.1s;
}

.partner-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), var(--slate-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Newsreader', serif;
  font-size: 18px;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

.partner-text {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}

.partner-text span {
  display: block;
  font-size: 12px;
  color: var(--text-body);
  font-weight: 400;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   HERO CONTENT
   ══════════════════════════════════════════ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--amber-pale);
  border: 1px solid rgba(184,122,0,0.1);
  color: var(--amber);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: 'Newsreader', serif;
  font-size: 42px;
  line-height: 1.12;
  color: var(--slate);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.4s;
}

/* ── Trust signals ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.5s;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

.trust-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  color: var(--amber);
  display: flex;
  align-items: center;
}

/* ── Price indication ── */
.price-hint {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.6s;
}

.price-hint-amount {
  font-family: 'Newsreader', serif;
  font-size: 24px;
  color: var(--slate);
  font-weight: 600;
  white-space: nowrap;
}

.price-hint-label {
  font-size: 13px;
  color: var(--text-body);
}

.price-hint-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* ── CTA ── */
.cta-group {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.7s;
  margin-bottom: 32px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--slate);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(26,35,50,0.15);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.06) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,35,50,0.2);
}

.btn-cta:hover::before { opacity: 1; }

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(26,35,50,0.15);
}

.btn-cta .arrow {
  transition: transform 0.3s ease;
}

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

.cta-subtext {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.cta-subtext strong {
  color: var(--amber);
  font-weight: 600;
}

/* ── Legal line ── */
.legal-line {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.8s;
}

.legal-line a {
  color: var(--text-body);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-line a:hover {
  color: var(--amber);
}

/* ══════════════════════════════════════════
   STEP SECTIONS
   ══════════════════════════════════════════ */
.step-section {
  display: none;
  animation: stepIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.step-section.active { display: block; }

.step-section.exit-left {
  display: block;
  animation: slideOutLeft 0.3s ease forwards;
}

.step-section.exit-right {
  display: block;
  animation: slideOutRight 0.3s ease forwards;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--amber-pale);
  border: 1px solid var(--amber-glow);
  color: var(--amber);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Newsreader', serif;
  font-size: 28px;
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step-title:focus {
  outline: none;
}

.step-subtitle {
  color: var(--text-body);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.step-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   PROGRESS BAR
   ══════════════════════════════════════════ */
.progress-wrap {
  margin-bottom: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-wrap.visible { opacity: 1; }

.progress-bar {
  display: flex;
  gap: 6px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.progress-seg {
  flex: 1;
  max-width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.5s ease-out;
  font-size: 0;
  color: transparent;
  overflow: hidden;
}

.progress-seg.active { background: var(--slate); }
.progress-seg.done { background: var(--amber); }

/* ══════════════════════════════════════════
   FIELDSET RESET
   ══════════════════════════════════════════ */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

/* ══════════════════════════════════════════
   FORM COMPONENTS — INPUTS & LABELS
   ══════════════════════════════════════════ */
.form-group {
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
}

.form-input {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: var(--warm-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  transition: all 0.25s ease;
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:hover {
  border-color: var(--border-hover);
}

.form-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-glow);
  background: var(--white);
}

.form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(229,62,62,0.1);
}

.form-input.shake {
  animation: shake 0.3s ease;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a8a9e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.input-unit {
  position: relative;
}

.input-unit .form-input {
  padding-right: 56px;
}

.input-unit .unit {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  pointer-events: none;
}

/* ══════════════════════════════════════════
   FORM COMPONENTS — OPTION CARDS
   ══════════════════════════════════════════ */
.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease, transform var(--spring);
  text-align: center;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.option-card.selected {
  border-color: var(--amber);
  background: var(--amber-pale);
  box-shadow: 0 0 0 4px var(--amber-glow);
  transform: scale(1.02);
}

.option-card:focus-within {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.option-icon {
  font-size: 28px;
  line-height: 1;
}

.option-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.option-desc {
  font-size: 12px;
  color: var(--text-body);
}

/* ══════════════════════════════════════════
   FORM COMPONENTS — BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--slate);
  color: white;
  box-shadow: 0 4px 16px rgba(26,35,50,0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,35,50,0.18);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(26,35,50,0.12);
}

.btn-primary .arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-submit {
  background: var(--amber);
  color: white;
  box-shadow: 0 4px 16px rgba(184,122,0,0.2);
}

.btn-submit:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,122,0,0.25);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(184,122,0,0.15);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-back {
  background: transparent;
  color: var(--text-body);
  border: 2px solid var(--border);
}

.btn-back:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.btn-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

/* ══════════════════════════════════════════
   CONSENT CHECKBOXES
   ══════════════════════════════════════════ */
.consent-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 12px;
}

.consent-wrap:hover {
  background: rgba(250,248,245,0.8);
}

.consent-wrap.checked {
  border-color: var(--amber);
  background: var(--amber-pale);
}

.consent-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.consent-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.consent-text a {
  color: var(--slate);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-text a:hover {
  color: var(--amber);
}

/* ══════════════════════════════════════════
   SUMMARY TABLE
   ══════════════════════════════════════════ */
.summary-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.summary-row:last-child { border-bottom: none; }

.summary-row:nth-child(odd) {
  background: var(--warm-white);
}

.summary-label {
  color: var(--text-body);
}

.summary-value {
  font-weight: 600;
  text-align: right;
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   ERROR MESSAGES
   ══════════════════════════════════════════ */
.error-msg {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--error);
  margin-top: 6px;
}

.error-msg::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23e53e3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.error-msg.visible { display: flex; }

/* ══════════════════════════════════════════
   SUCCESS SCREEN
   ══════════════════════════════════════════ */
.success-screen {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #38a169);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.success-title {
  font-family: 'Newsreader', serif;
  font-size: 36px;
  color: var(--slate);
  margin-bottom: 12px;
}

.success-title:focus {
  outline: none;
}

.success-subtitle {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.success-steps {
  text-align: left;
  margin-bottom: 32px;
}

.success-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.success-step:last-child { border-bottom: none; }
.success-step:nth-child(1) { animation-delay: 0.3s; }
.success-step:nth-child(2) { animation-delay: 0.5s; }
.success-step:nth-child(3) { animation-delay: 0.7s; }

.success-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.success-step-num.done {
  background: var(--amber-pale);
  color: var(--amber);
  border: 2px solid var(--amber-glow);
}

.success-step-num.pending {
  background: var(--slate);
  color: white;
}

.success-step-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.success-step-text span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  margin-top: 2px;
}

.success-ref {
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.success-ref strong {
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   ERSTINFORMATION MODAL (native <dialog>)
   ══════════════════════════════════════════ */
.modal-dialog {
  border: none;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 560px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  margin: auto;
  box-shadow: 0 24px 80px rgba(26,35,50,0.18), 0 8px 24px rgba(26,35,50,0.08);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-dialog.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-dialog::backdrop {
  background: rgba(26,35,50,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              -webkit-backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-dialog.is-visible::backdrop {
  background: rgba(26,35,50,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-card {
  padding: 32px;
}
/* ── Erstinfo header ── */
.erstinfo-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.erstinfo-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-pale);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal-card h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.2;
}
.modal-card h2:focus {
  outline: none;
}
.erstinfo-lead {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ── Benefit rows ── */
.erstinfo-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.erstinfo-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.erstinfo-benefit:last-child {
  border-bottom: none;
}
.erstinfo-benefit > svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 1px;
}
.erstinfo-benefit strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1px;
}
.erstinfo-benefit span {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.4;
}
.erstinfo-benefit a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Footer area ── */
.erstinfo-footer {
  padding-top: 20px;
}
.erstinfo-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8125rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.erstinfo-download:hover {
  border-color: var(--amber);
  color: var(--text-primary);
  background: var(--amber-pale);
}
.modal-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   LEGAL PAGE CONTENT
   ══════════════════════════════════════════ */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal-content h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--amber);
}
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 24px 0 8px;
}
.legal-content p,
.legal-content li {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content a {
  color: var(--amber);
  text-decoration: underline;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
}

/* ══════════════════════════════════════════
   SCROLL INDICATOR (hero)
   ══════════════════════════════════════════ */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  animation: fadeUp 0.6s ease both;
  animation-delay: 1s;
  transition: color 0.3s;
}
.scroll-indicator:hover { color: var(--amber); }
.scroll-indicator svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ══════════════════════════════════════════
   LANDING CONTENT — SECTION SYSTEM
   ══════════════════════════════════════════ */
.landing-content {
  position: relative;
  z-index: 2;
}

.lp-section {
  padding: 80px 24px;
}

.lp-inner {
  max-width: 960px;
  margin: 0 auto;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--amber-pale);
  border: 1px solid rgba(184,122,0,0.1);
  color: var(--amber);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lp-heading {
  font-family: 'Newsreader', serif;
  font-size: 36px;
  line-height: 1.15;
  color: var(--slate);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.lp-subheading {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════ */
.lp-trust-bar {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--warm-white);
}

.trust-bar-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.trust-bar-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-bar-logo {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--slate);
  opacity: 0.35;
  transition: opacity 0.3s;
  letter-spacing: -0.01em;
}

.trust-bar-logo:hover {
  opacity: 0.65;
}

/* ══════════════════════════════════════════
   RISK SCENARIOS
   ══════════════════════════════════════════ */
.lp-risks {
  background: var(--cream);
}

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

.risk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.risk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.risk-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(184,122,0,0.08) 0%, rgba(184,122,0,0.02) 100%);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.risk-card h3 {
  font-family: 'Newsreader', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.risk-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* stagger reveal */
.risk-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.risk-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.risk-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.risk-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.risk-card.reveal:nth-child(6) { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   COVERAGE SECTION
   ══════════════════════════════════════════ */
.lp-coverage {
  background: var(--warm-white);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.coverage-item:last-child { border-bottom: none; }

.coverage-item svg {
  color: var(--success);
  flex-shrink: 0;
}

.coverage-item.highlight {
  color: var(--amber);
  font-weight: 600;
}

.coverage-item.highlight svg {
  color: var(--amber);
}

.coverage-callout {
  background: var(--slate);
  border-radius: var(--radius);
  padding: 32px;
  color: white;
  position: sticky;
  top: 100px;
}

.callout-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber-light);
}

.coverage-callout h3 {
  font-family: 'Newsreader', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.coverage-callout p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.85;
}

.callout-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  opacity: 0.55;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   PROCESS / HOW IT WORKS
   ══════════════════════════════════════════ */
.lp-process {
  background: var(--cream);
}

.process-steps {
  max-width: 560px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--slate);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Newsreader', serif;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.process-content {
  padding-top: 4px;
}

.process-content h3 {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.process-connector {
  width: 2px;
  height: 32px;
  background: var(--border);
  margin-left: 23px;
  border-radius: 1px;
}

/* stagger */
.process-step.reveal:nth-child(3) { transition-delay: 0.12s; }
.process-step.reveal:nth-child(5) { transition-delay: 0.24s; }

/* ══════════════════════════════════════════
   WHY VISUREL
   ══════════════════════════════════════════ */
.lp-why {
  background: var(--warm-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-pale);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'Newsreader', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* stagger */
.why-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.why-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.why-card.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ══════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════ */
.lp-faq {
  background: var(--cream);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item[open] {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }

.faq-question:hover {
  color: var(--amber);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.2s;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--amber);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  animation: faqOpen 0.3s ease;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* stagger */
.faq-item.reveal:nth-child(2) { transition-delay: 0.05s; }
.faq-item.reveal:nth-child(3) { transition-delay: 0.1s; }
.faq-item.reveal:nth-child(4) { transition-delay: 0.15s; }
.faq-item.reveal:nth-child(5) { transition-delay: 0.2s; }
.faq-item.reveal:nth-child(6) { transition-delay: 0.25s; }
.faq-item.reveal:nth-child(7) { transition-delay: 0.3s; }
.faq-item.reveal:nth-child(8) { transition-delay: 0.35s; }

/* ══════════════════════════════════════════
   FINAL CTA SECTION
   ══════════════════════════════════════════ */
.lp-final-cta {
  background: var(--slate);
  padding: 80px 24px;
}

.final-cta-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.final-cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.final-cta-heading {
  font-family: 'Newsreader', serif;
  font-size: 32px;
  line-height: 1.15;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.final-cta-text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}

.final-cta-btn {
  background: var(--amber);
  box-shadow: 0 4px 20px rgba(184,122,0,0.3);
}

.final-cta-btn:hover {
  background: var(--amber-light);
  box-shadow: 0 8px 32px rgba(184,122,0,0.4);
}

.final-cta-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.final-cta-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

.final-cta-meta svg {
  color: var(--amber-light);
}

/* ══════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideOutLeft {
  to { opacity: 0; transform: translateX(-20px); }
}

@keyframes slideOutRight {
  to { opacity: 0; transform: translateX(20px); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 960px) {
  .risk-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-callout { position: static; }
}

@media (max-width: 640px) {
  .main { padding: 100px 16px 40px; }
  .hero-title { font-size: 32px; }
  .btn-row { flex-direction: column-reverse; }
  .btn { width: 100%; justify-content: center; }
  .modal-card { padding: 24px; }
  .legal-content { padding: 100px 16px 60px; }

  .lp-section { padding: 56px 16px; }
  .lp-heading { font-size: 28px; }
  .lp-subheading { font-size: 16px; }

  .risk-grid { grid-template-columns: 1fr; gap: 12px; }
  .risk-card { padding: 20px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 20px; }

  .trust-bar-logos { gap: 20px; }
  .trust-bar-logo { font-size: 16px; }

  .final-cta-heading { font-size: 26px; }
  .final-cta-text { font-size: 16px; }
  .final-cta-meta { flex-direction: column; align-items: center; gap: 10px; }
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .progress-seg { max-width: 36px; }
}
