/* ============================================================
   tom&lea — Immobilien Käufer-Findung Landingpage
   ============================================================ */

:root {
  --brand:        #23A9E3;
  --brand-dark:   #1690c4;
  --brand-soft:   #E8F6FD;
  --navy:         #12263F;
  --navy-2:       #0B1C30;
  --ink:          #142440;
  --body:         #5A6B7B;
  --bg:           #FFFFFF;
  --bg-alt:       #EEF1F5;
  --line:         #E3E8EF;
  --violet:       #7C4DFF;

  --radius:       18px;
  --radius-sm:    12px;
  --shadow:       0 24px 60px -20px rgba(18, 38, 63, 0.18);
  --shadow-sm:    0 10px 30px -12px rgba(18, 38, 63, 0.14);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.eyebrow-center { display: block; text-align: center; }
.eyebrow-light { color: #7FD0F5; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section-title-center { text-align: center; }

.section-sub {
  color: var(--body);
  font-size: 1.05rem;
  max-width: 640px;
  margin-top: 16px;
}
.section-sub-center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(35, 169, 227, 0.6);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(18,38,63,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand-logo { height: 30px; width: auto; }
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink);
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--brand); }
.nav-cta .cta-short { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 60px 0 80px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-title .hl { color: var(--brand); }
.hero-sub {
  color: var(--body);
  font-size: 1.12rem;
  margin-top: 24px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-checks { list-style: none; margin-top: 34px; display: grid; gap: 14px; }
.hero-checks li {
  position: relative;
  padding-left: 30px;
  color: var(--body);
  font-size: 0.96rem;
  max-width: 500px;
}
.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: grid; place-items: center;
}

/* Hero visual / photo */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;              /* Querformat */
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;      /* zeigt die beleuchtete Fassade */
  display: block;
}
/* dezenter Verlauf unten für Lesbarkeit der Overlays */
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,28,48,0.35) 0%, rgba(11,28,48,0) 42%);
  pointer-events: none;
}
.hero-photo-stat {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
}
.hps-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--brand);
}
.hps-label { font-size: 0.78rem; font-weight: 500; color: var(--ink); line-height: 1.25; }
.hero-photo-badge {
  position: absolute;
  right: 16px; top: 16px;
  z-index: 2;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 7px;
}
.hero-photo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #46e0a0;
  box-shadow: 0 0 0 0 rgba(70,224,160,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(70,224,160,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(70,224,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,224,160,0); }
}

/* ---------- Trust bar ---------- */
.trustbar { padding: 30px 0 10px; }
.trustbar-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body);
  font-weight: 600;
  margin-bottom: 22px;
}
.trustbar-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 6vw, 70px);
  flex-wrap: wrap;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: #9aa8b6;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.wordmark:hover { color: var(--ink); }

/* ---------- Statement ---------- */
.statement { padding: 90px 0; }
.statement-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.statement-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.statement-sub { color: var(--body); font-size: 1.1rem; margin-top: 22px; max-width: 620px; margin-inline: auto; }
.statement-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
  text-align: left;
}
.stmt-point {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.stmt-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 18px;
}
.stmt-point h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.stmt-point p { color: var(--body); font-size: 0.95rem; }
@media (max-width: 780px) {
  .statement-points { grid-template-columns: 1fr; gap: 16px; max-width: 460px; margin-inline: auto; }
}

/* ---------- Features ---------- */
.features { padding: 30px 0 40px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
}
.feature-row.reverse .feature-copy { order: 2; }
.feature-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  display: block;
  margin-bottom: 14px;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 16px;
}
.feature-copy p { color: var(--body); font-size: 1.02rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  background: var(--bg-alt);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 999px;
}

/* Feature mock visuals */
.feature-visual { display: flex; justify-content: center; }
.mock {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.mock-browser-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mock-browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.mock-hero-line { height: 14px; border-radius: 6px; background: var(--bg-alt); margin-bottom: 8px; }
.mock-hero-line.lg { width: 80%; background: var(--brand-soft); }
.mock-hero-line.md { width: 55%; }
.mock-img { height: 120px; border-radius: 12px; background: linear-gradient(135deg,#dbeefb,#eef4f9); margin: 14px 0; }
.mock-row { display: flex; gap: 10px; }
.mock-card { flex: 1; height: 46px; border-radius: 10px; background: var(--bg-alt); }
.mock-btn { height: 34px; width: 45%; border-radius: 999px; background: var(--brand); margin-top: 16px; }

.mock-ads-head { display: flex; align-items: center; gap: 10px; }
.mock-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--brand),#7fd0f5); }
.mock-lines { display: flex; flex-direction: column; gap: 5px; }
.mock-lines .l1 { width: 90px; height: 9px; border-radius: 5px; background: var(--ink); opacity:.8; }
.mock-lines .l2 { width: 60px; height: 8px; border-radius: 5px; background: var(--line); }
.mock-ads-img { height: 160px; border-radius: 12px; background: linear-gradient(135deg,#c9e8fa,#e9f4fb); margin: 14px 0; }
.mock-ads-cta {
  background: var(--bg-alt); border-radius: 10px; padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
}
.mock-ads-cta::after { content: "›"; color: var(--brand); font-weight: 700; }
.mock-metric {
  margin-top: 14px; display: flex; align-items: center; justify-content: space-between;
  border-top: 1px dashed var(--line); padding-top: 14px;
}
.mock-metric-label { font-size: 0.8rem; color: var(--body); }
.mock-metric-value { font-family: var(--font-display); font-weight: 700; color: var(--brand); font-size: 1.15rem; }

.mock-leads { display: flex; flex-direction: column; gap: 12px; }
.mock-lead {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
}
.mock-lead-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  font-family: var(--font-display); font-weight: 700;
  display: grid; place-items: center; font-size: 0.9rem;
}
.mock-lead-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mock-lead-body .ln { width: 65%; height: 9px; border-radius: 5px; background: var(--ink); opacity:.75; }
.mock-lead-body .ls { width: 40%; height: 8px; border-radius: 5px; background: var(--line); }
.mock-lead-tag {
  font-size: 0.72rem; font-weight: 600; color: #17936a;
  background: #e2f7ee; padding: 5px 10px; border-radius: 999px;
}

/* ---------- Dark block ---------- */
.dark-block { padding: 40px 0; }
.dark-inner {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 68px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark-inner::before {
  content:""; position:absolute; top:-120px; right:-80px;
  width: 340px; height: 340px; border-radius:50%;
  background: radial-gradient(circle, rgba(35,169,227,0.35), transparent 70%);
}
.dark-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.dark-list { list-style: none; display: grid; gap: 20px; margin-bottom: 30px; }
.dark-list li { position: relative; padding-left: 34px; color: #C6D2DE; font-size: 0.98rem; }
.dark-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(35,169,227,0.18); color: var(--brand);
  display: grid; place-items: center; font-size: 0.72rem; font-weight: 700;
}
.dark-list strong { color: #fff; display: block; font-weight: 600; margin-bottom: 2px; }

.ad-manager {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.am-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.am-title { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.am-badge {
  background: var(--brand); color: #fff; font-size: 0.75rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}
.am-row { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 7px; }
.am-k { color: #A9B8C7; }
.am-v { font-family: var(--font-display); font-weight: 600; }
.am-bar { height: 7px; border-radius: 999px; background: rgba(255,255,255,0.1); margin-bottom: 18px; overflow: hidden; }
.am-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg,var(--brand),#7fd0f5); }
.am-foot { margin-top: 6px; font-size: 0.78rem; color: #A9B8C7; display: flex; align-items: center; gap: 8px; }
.am-dot { width: 8px; height: 8px; border-radius: 50%; background: #46e0a0; }

/* ---------- References ---------- */
.refs { padding: 90px 0; background: var(--bg-alt); }
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.ref-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ref-accent { position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--brand); }
.ref-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  color: var(--brand); background: var(--brand-soft);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.ref-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.ref-card p { color: var(--body); font-size: 0.95rem; }
.ref-result {
  display: inline-block; margin-top: 18px;
  font-weight: 600; font-size: 0.88rem; color: var(--ink);
  padding-top: 16px; border-top: 1px solid var(--line); width: 100%;
}
.ref-link {
  display: inline-block; margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line); width: 100%;
  color: var(--brand); font-weight: 600; font-size: 0.9rem;
}
.ref-link:hover { color: var(--brand-dark); }

/* ---------- Funnel ---------- */
.funnel { padding: 90px 0; }
.funnel-shell { max-width: 720px; margin: 0 auto; }
.funnel-intro { margin-bottom: 38px; }
.funnel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
}
.progress { margin-bottom: 30px; }
.progress-bar { height: 8px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.progress-bar i {
  display: block; height: 100%; width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #6fcbf1);
  transition: width .35s cubic-bezier(.4,0,.2,1);
}
.progress-text { display: block; margin-top: 10px; font-size: 0.8rem; color: var(--body); font-weight: 500; }

.step { display: none; animation: fade .35s ease; }
.step.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.step-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 22px;
}
.step-hint { color: var(--body); font-size: 0.95rem; margin-top: -12px; margin-bottom: 22px; }

.options { display: grid; gap: 12px; }
.option {
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 17px 20px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
  position: relative;
}
.option:hover { border-color: var(--brand); background: var(--brand-soft); }
.option.selected { border-color: var(--brand); background: var(--brand-soft); }
.option.selected::after {
  content: "✓";
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  color: var(--brand); font-weight: 700;
}
.options.shake { animation: shake .4s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}

/* Contact fields */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(35,169,227,0.12);
}
.field input.invalid { border-color: #e5484d; }
.error { display: block; color: #e5484d; font-size: 0.8rem; margin-top: 6px; min-height: 1px; }
.error-consent { margin-top: -6px; margin-bottom: 10px; }
.consent {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 0.86rem; color: var(--body); margin-top: 6px; cursor: pointer;
}
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--brand); flex-shrink: 0; }
.consent a { color: var(--brand); text-decoration: underline; }

.funnel-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; gap: 14px; }
.btn-back { padding-left: 20px; padding-right: 20px; }
.funnel-nav .btn-next { margin-left: auto; }

.funnel-trust { text-align: center; margin-top: 22px; font-size: 0.82rem; color: var(--body); }

/* ---------- FAQ ---------- */
.faq { padding: 90px 0; background: var(--bg-alt); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.accordion { margin-top: 40px; display: grid; gap: 12px; }
.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.acc-head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  background: none; border: none; cursor: pointer;
  padding: 22px 24px;
}
.acc-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; background: var(--brand);
  border-radius: 2px; transition: transform .25s ease, opacity .25s ease;
}
.acc-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc-icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.acc-item.open .acc-icon::after { transform: scaleY(0); opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-body p { padding: 0 24px 22px; color: var(--body); font-size: 0.98rem; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 40px 0 100px; }
.final-cta-box {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 28px;
  padding: clamp(48px, 7vw, 90px) 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta-box::before {
  content:""; position:absolute; bottom:-140px; left:50%; transform:translateX(-50%);
  width: 460px; height: 460px; border-radius:50%;
  background: radial-gradient(circle, rgba(35,169,227,0.3), transparent 70%);
}
.final-cta-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 640px; margin: 0 auto 18px;
}
.final-cta-box p { position: relative; color: #C6D2DE; max-width: 480px; margin: 0 auto 32px; font-size: 1.05rem; }
.final-cta-box .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-2); color: #A9B8C7; padding: 64px 0 30px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 26px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 340px; line-height: 1.7; }
.footer-head {
  display: block; color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 11px; transition: color .15s ease; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--brand); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 34px; }
  .feature-row.reverse .feature-copy { order: 0; }
  .feature-visual { order: -1; }
  .dark-inner { grid-template-columns: 1fr; gap: 38px; }
  .ref-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .main-nav { display: none; }
  .nav-cta { padding: 9px 16px; font-size: 0.82rem; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
  .hero { padding: 40px 0 60px; }
  .statement, .refs, .funnel, .faq { padding: 60px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .btn { padding: 13px 22px; }
}
