:root {
  --navy: #0B1D3A;
  --navy-light: #1a3a5c;
  --amber: #F5A623;
  --amber-dark: #d4910e;
  --white: #ffffff;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --green: #22C55E;
  --amber-light: #FEF3C7;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 100;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

/* ── Shared section ── */
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-body {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 24px;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 80px 24px 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); max-width: 110px; line-height: 1.4; }
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* Score Card */
.score-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.score-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.score-label { color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.score-badge.hot {
  background: linear-gradient(135deg, #EF4444, #F97316);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}
.score-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.score-meter {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  height: 8px;
  margin-bottom: 20px;
}
.meter-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #F5A623, #EF4444);
}
.score-signals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.signal { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.signal-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.signal-dot.green { background: var(--green); }
.signal-dot.amber { background: var(--amber); }
.score-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.action-tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
.action-tag.appointment { background: rgba(34,197,94,0.2); color: #4ade80; }

/* ── How It Works ── */
.how-it-works { background: var(--off-white); }
.pipeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pipeline-step {
  flex: 1;
  min-width: 160px;
}
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pipeline-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pipeline-step p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }
.pipeline-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-top: 18px;
}

/* ── Valuation ── */
.valuation { background: var(--white); }
.valuation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.valuation-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.valuation-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-800);
}
.mock-window {
  background: var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.mock-bar {
  background: var(--gray-200);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-400); display: block; }
.mock-body { padding: 24px; }
.mock-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 16px; }
.mock-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.mock-field {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--gray-400);
}
.mock-row { display: flex; gap: 10px; }
.mock-field.half { flex: 1; }
.mock-btn {
  background: var(--navy);
  color: white;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
}
.mock-result {
  background: var(--amber-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.result-label { font-size: 0.78rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.result-value { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.result-sub { font-size: 0.75rem; color: var(--gray-600); }

/* ── Features ── */
.features { background: var(--navy); }
.features .section-eyebrow { color: var(--amber); }
.features .section-title { color: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  transition: background 0.3s;
}
.feature-card:hover { background: rgba(255,255,255,0.08); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,166,35,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── Pricing ── */
.pricing { background: var(--off-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 8px 40px rgba(245,166,35,0.15);
}
.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-weight: 700; font-size: 0.9rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--navy); }
.per { font-size: 0.9rem; color: var(--gray-400); }
.plan-desc { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 24px; min-height: 40px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--gray-800); }

/* ── Closing ── */
.closing {
  background: var(--navy);
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}
.closing p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 32px 24px;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.footer-copy { font-size: 0.82rem; color: var(--gray-400); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner, .valuation-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pipeline { gap: 24px; }
  .pipeline-arrow { display: none; }
  .section-inner { padding: 56px 20px; }
  .hero { padding: 56px 20px 72px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .nav-links { display: none; }
}