/* ── Variables ── */
:root {
  --navy:     #0d1f3c;
  --navy-mid: #152a50;
  --teal:     #00c9a7;
  --teal-dim: #00a889;
  --off-white:#f5f3ee;
  --gray:     #8a93a8;
  --text:     #1a2744;
  --bg:       var(--off-white);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}
.proof-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ── Dashboard Mock ── */
.dashboard-mock {
  background: #0f2447;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.mock-header {
  background: rgba(255,255,255,0.05);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-dots {
  display: flex;
  gap: 6px;
}
.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mock-title {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.mock-body {
  padding: 16px;
}
.mock-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 40px;
  align-items: center;
  padding: 9px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  gap: 8px;
}
.mock-row:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mock-row.header-row {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.mock-row.muted { opacity: 0.4; }
.val { color: rgba(255,255,255,0.7); }
.match-badge {
  background: rgba(0,201,167,0.15);
  color: var(--teal);
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.7rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  justify-self: center;
}
.status-dot.active { background: #00c9a7; }
.status-dot.closing { background: #f5a623; }
.status-dot.done { background: #6c8ef5; }

/* ── Stats ── */
.stats {
  background: var(--navy-mid);
  padding: 48px 0;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
}
.stat-icon {
  margin-bottom: 12px;
}
.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

/* ── Solutions ── */
.solutions {
  padding: 96px 0;
  background: var(--off-white);
}
.solutions-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  max-width: 580px;
  letter-spacing: -0.02em;
}
.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.6;
}
.solution-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step-card {
  background: #fff;
  border: 1px solid rgba(13,31,60,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,31,60,0.1);
}
.step-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(0,201,167,0.15);
  margin-bottom: 16px;
  display: block;
}
.step-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── Differentiators ── */
.differentiators {
  padding: 96px 0;
  background: var(--navy);
  color: #fff;
}
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.differentiators .section-label { color: var(--teal); }
.differentiators .section-title { color: #fff; }
.diff-body {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.diff-items {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diff-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(0,201,167,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.diff-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.diff-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
}
.quote-card blockquote {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
}
.quote-attribution {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.quote-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.quote-role {
  font-size: 0.72rem;
  color: var(--teal);
  margin-top: 2px;
  letter-spacing: 0.03em;
}

/* ── Clients ── */
.clients {
  padding: 64px 0;
  background: #fff;
  border-top: 1px solid rgba(13,31,60,0.06);
  border-bottom: 1px solid rgba(13,31,60,0.06);
}
.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.clients .section-label {
  color: var(--navy);
  opacity: 0.4;
  display: block;
  text-align: center;
  margin-bottom: 32px;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.logo-item {
  background: var(--navy);
  border-radius: 8px;
  padding: 14px 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.logo-item:hover { opacity: 1; }
.logo-svg text {
  font-family: 'DM Sans', sans-serif;
}

/* ── Closing ── */
.closing {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0a1628 100%);
  color: #fff;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.closing-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
}
.closing-body {
  margin-top: 20px;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.c-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
}
.c-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ── Footer ── */
.footer {
  background: #080f1d;
  padding: 48px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
  }
  .solution-steps {
    grid-template-columns: 1fr 1fr;
  }
  .diff-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .closing-stats {
    gap: 32px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0 48px; }
  .hero-inner { padding: 0 24px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-sep { width: 60px; height: 1px; }
  .solutions { padding: 64px 0; }
  .solutions-inner { padding: 0 24px; }
  .solution-steps { grid-template-columns: 1fr; }
  .clients-inner { padding: 0 24px; }
  .closing { padding: 64px 0; }
  .closing-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
}