/* ============================================================
   CONTENT KOMMISSAR — styles.css
   Dark-Theme, mobile-first, keine externen Assets
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --bg:           #0d1520;
  --surface:      #131d2e;
  --surface-2:    #182438;
  --surface-3:    #1d2c45;
  --border:       #1e3052;
  --border-light: #253c65;
  --text:         #eee8dc;
  --text-muted:   #7a8ea8;
  --text-faint:   #4a5d78;
  --accent:       #c8102e;
  --accent-hover: #a50d26;
  --accent-bg:    rgba(200, 16, 46, 0.08);
  --gold:         #f5c518;
  --gold-dark:    #c9a00e;
  --gold-bg:      rgba(245, 197, 24, 0.08);
  --radius:       6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --shadow:       0 2px 16px rgba(0,0,0,0.4);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.5);
  --transition:   0.2s ease;
  --font:         system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    ui-monospace, "SF Mono", "Cascadia Mono", "Courier New", monospace;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; }
p  { color: var(--text-muted); }
strong { color: var(--text); font-weight: 700; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(245,197,24,0.2);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.section-headline {
  margin-bottom: 1rem;
}
.section-subtext {
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}
@media (min-width: 1024px) { .section-subtext { margin-bottom: 3.5rem; } }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,16,46,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border-light);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid transparent;
  padding: 0;
}
.btn-ghost:hover { color: var(--text); }

.btn-sm  { font-size: 0.8rem;  padding: 0.45rem 1rem; }
.btn-md  { font-size: 0.9rem;  padding: 0.6rem 1.4rem; }
.btn-lg  { font-size: 0.95rem; padding: 0.75rem 1.75rem; }
.btn-xl  { font-size: 1.05rem; padding: 0.9rem 2.25rem; }
.btn-full { width: 100%; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--border-light); }
.card-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  box-shadow: 0 0 0 1px rgba(245,197,24,0.1), var(--shadow);
  position: relative;
}
.card-featured:hover { border-color: var(--gold); box-shadow: 0 0 24px rgba(245,197,24,0.12), var(--shadow-lg); }

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.badge-trust {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

/* ============================================================
   NAV HEADER
   ============================================================ */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,21,32,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .nav-toggle { display: none; } }

/* Mobile nav menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
}
.mobile-nav a:hover { color: var(--text); background: var(--surface-2); }
.mobile-nav .btn { margin-top: 0.5rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.section-hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
@media (min-width: 1024px) { .section-hero { padding: 6rem 0 7rem; } }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 3rem;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 4.5rem;
  }
}
.hero-content { max-width: 620px; min-width: 0; }
.hero-badge-row { margin-bottom: 1.5rem; }
.hero-headline {
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--text) 60%, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hero-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
.hero-visual {
  display: none;
}
@media (min-width: 900px) {
  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.hero-badge-svg {
  width: min(220px, 100%);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(245,197,24,0.18));
  animation: badge-float 4s ease-in-out infinite;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
/* Markenname unter dem Badge — HTML-Element für saubere Typografie */
.hero-brand-name {
  text-align: center;
  margin: 0.7rem 0 0.3rem;
  line-height: 1;
}
.hero-brand-name span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.66rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.6;
}
.case-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  border: 1px solid var(--border);
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius);
  margin-top: 0.35rem;
  white-space: nowrap;
}

/* Background grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.18;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.section-problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid { gap: 1.25rem; }
.card-problem { text-align: left; }
.problem-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}
.card-problem h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.card-problem p  { font-size: 0.925rem; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.section-process {}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color var(--transition);
}
.process-step:hover { border-color: var(--border-light); }
.step-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.process-step:hover .step-number { opacity: 0.5; }
.step-content h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.step-content p   { font-size: 0.875rem; }
.process-connector {
  display: none;
}
@media (min-width: 768px) {
  .process-connector {
    display: flex;
    align-items: center;
    padding-top: 3rem;
    color: var(--border-light);
  }
  .process-connector::after {
    content: "→";
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.4;
  }
}
/* Mobile: vertical connector */
@media (max-width: 767px) {
  .process-step + .process-step { margin-top: 0.75rem; }
}

/* ============================================================
   PROFIL-CHECK SECTION
   ============================================================ */
.section-check {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.check-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .check-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.check-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.check-list li:hover { border-color: var(--border-light); }
.check-item-icon {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}
.check-list li strong { display: block; font-size: 0.95rem; margin-bottom: 0.15rem; }
.check-list li span   { font-size: 0.85rem; color: var(--text-muted); }

/* Akte (File) Visual */
.akte-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  box-shadow: var(--shadow);
}
.akte-header {
  background: var(--surface-3);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.akte-stamp {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  opacity: 0.9;
}
.akte-number {
  font-size: 0.65rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}
.akte-field {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.akte-field:last-of-type { border-bottom: none; }
.akte-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.akte-value { color: var(--text-muted); }
.akte-blank { border-bottom: 1px solid var(--border-light); padding-bottom: 0.1rem; display: block; }
.akte-findings { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.35rem; }
.akte-finding { color: var(--text-muted); font-size: 0.78rem; }
.akte-footer {
  background: var(--surface-3);
  border-top: 1px solid var(--border-light);
  padding: 0.6rem 1.25rem;
  text-align: center;
  font-size: 0.6rem;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   ANGEBOTE / PRICING SECTION
   ============================================================ */
.section-offers {}
.offers-grid { align-items: start; }
.card-offer { display: flex; flex-direction: column; gap: 0; }
.offer-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  align-self: flex-start;
}
.offer-tag-featured {
  color: var(--gold);
  background: var(--gold-bg);
  border-color: rgba(245,197,24,0.25);
}
.offer-name { font-size: 1.1rem; margin-bottom: 0.5rem; }
.offer-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.offer-period { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.offer-desc {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.offer-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.offer-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.offer-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Teaser line under pricing cards */
.offers-teaser {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.offers-teaser-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ============================================================
   ZIELGRUPPE / AUDIENCE SECTION
   ============================================================ */
.section-audience {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px)  { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
.audience-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.audience-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.audience-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}
.audience-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.audience-card p  { font-size: 0.8rem; }
.audience-note {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
}
.audience-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.audience-note a:hover { color: var(--gold-dark); }

/* ============================================================
   CONTENT EXAMPLES SECTION
   ============================================================ */
.section-examples {}
/* 6 Beispiele: 1→2→3 Spalten */
.examples-grid {
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .examples-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .examples-grid { grid-template-columns: repeat(3, 1fr); } }
.example-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.example-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity var(--transition);
}
.example-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.example-card:hover::before { opacity: 1; }
.example-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.example-platform {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
.example-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid rgba(200,16,46,0.2);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius);
}
.example-headline {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.example-desc { font-size: 0.875rem; margin-bottom: 1rem; }
.example-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(245,197,24,0.15);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.section-faq {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-container .section-headline { margin-bottom: 2.5rem; }
.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--border-light); }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-answer p { font-size: 0.925rem; line-height: 1.7; }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.section-final-cta {
  padding: 6rem 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,16,46,0.07) 0%, transparent 70%);
  position: relative;
}
.final-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.final-cta-badge { margin: 0 auto 1.5rem; }
.final-cta-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.final-cta-sub {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.final-cta-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  max-width: 360px;
}
.footer-email {
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.footer-email:hover { color: var(--gold-dark); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-nav { justify-content: flex-end; }
}
.footer-nav a {
  font-size: 0.825rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--text); }
.footer-nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-faint);
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .footer-copy { text-align: left; } }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FOCUS VISIBLE — accessibility
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   SCROLLBAR (optional, webkit only)
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-faint); }
