:root {
  --navy: #0f2744;
  --navy-light: #1a3a5f;
  --teal: #00c9a7;
  --teal-dim: rgba(0,201,167,0.12);
  --cream: #f5f4f0;
  --cream-dark: #eeecea;
  --ink: #1a1a2e;
  --ink-mid: #4a4a6a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15,39,68,0.06);
  --shadow-md: 0 8px 32px rgba(15,39,68,0.10);
  --shadow-lg: 0 24px 64px rgba(15,39,68,0.14);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', system-ui, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === LAYOUT === */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* === NAV === */
.nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.15s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: opacity 0.15s;
}
.nav-phone:hover { opacity: 0.8; }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--teal);
  border-radius: 8px;
  padding: 8px 16px;
  transition: background 0.15s, opacity 0.15s;
}
.nav-cta:hover { background: #00b894; opacity: 0.9; }

/* === HERO === */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,167,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,58,95,0.8) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0,201,167,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-headline .teal { color: var(--teal); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta-row { display: flex; align-items: center; gap: 16px; }
.hero-trust { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Hero visual card stack */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 360px; }
.h-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
}
.h-card:hover { transform: translateX(-4px); border-color: rgba(0,201,167,0.3); }
.h-card--1 { transform: translateX(-16px); }
.h-card--2 { transform: translateX(0); }
.h-card--3 { transform: translateX(16px); }
.h-card-icon { flex-shrink: 0; }
.h-card-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); }
.h-card-sub { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* === STATS === */
.stats { background: var(--white); border-top: 1px solid rgba(15,39,68,0.08); border-bottom: 1px solid rgba(15,39,68,0.08); padding: 48px 0; }
.stats-inner { max-width: 1120px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 0; }
.stat { flex: 1; text-align: center; padding: 0 24px; }
.stat-number { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--ink-mid); line-height: 1.5; }
.stat-divider { width: 1px; height: 60px; background: rgba(15,39,68,0.12); flex-shrink: 0; }

/* === SECTION HEADER === */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

/* === SERVICES === */
.services { padding: 96px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.service-card {
  background: var(--white);
  border: 1px solid rgba(15,39,68,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,201,167,0.3); }
.service-icon { color: var(--teal); margin-bottom: 20px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

/* === WHY === */
.why { background: var(--cream); padding: 96px 0; }
.why .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-left .section-tag { margin-bottom: 16px; }
.why-left h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.why-lede { font-size: 16px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 36px; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink); line-height: 1.6; }
.why-check { flex-shrink: 0; margin-top: 2px; }
.why-point strong { color: var(--navy); }

.why-right { display: flex; flex-direction: column; gap: 24px; }
.why-quote-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.quote-mark { font-family: 'Syne', sans-serif; font-size: 80px; line-height: 0.6; color: var(--teal); opacity: 0.6; margin-bottom: 16px; }
.why-quote-card p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.quote-attribution { font-size: 13px; color: rgba(255,255,255,0.5); }
.why-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-metric {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(15,39,68,0.08);
}
.metric-val { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: var(--teal); margin-bottom: 4px; }
.metric-label { font-size: 13px; color: var(--ink-mid); }

/* === PROCESS === */
.process { background: var(--white); padding: 96px 0; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  overflow-x: auto;
}
.step { flex: 1; min-width: 0; }
.step-number { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--teal-dim); line-height: 1; margin-bottom: 16px; }
.step-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.step-arrow { flex-shrink: 0; color: rgba(15,39,68,0.2); padding: 40px 16px 0; }

/* === PRICING === */
.pricing { padding: 96px 0; }
.pricing-sub { font-size: 16px; color: var(--ink-mid); margin-bottom: 56px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.price-card {
  background: var(--white);
  border: 1px solid rgba(15,39,68,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured { border: 2px solid var(--teal); background: linear-gradient(to bottom, rgba(0,201,167,0.03), var(--white)); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); font-size: 12px; font-weight: 600; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.price-tier { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; }
.price-amount span { font-size: 22px; font-weight: 600; }
.price-per { font-size: 13px; color: var(--ink-mid); margin-bottom: 28px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { font-size: 14px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.price-features li::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
.price-note { font-size: 12px; color: var(--ink-mid); font-style: italic; border-top: 1px solid rgba(15,39,68,0.08); padding-top: 20px; }
.pricing-cta { text-align: center; margin-top: 56px; }
.btn-pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-pricing-cta:hover { background: var(--navy-light); transform: translateY(-2px); }
.pricing-cta-sub { font-size: 14px; color: var(--ink-mid); margin-top: 14px; }

/* === CLOSING === */
.closing { background: var(--navy); color: var(--white); padding: 100px 0; }
.closing-inner { max-width: 700px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing-inner h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; color: var(--white); margin-bottom: 24px; }
.closing-inner p { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 16px; }
.closing-areas { margin-top: 48px; }
.area-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.area-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* === FOOTER === */
.footer { background: #0a1e38; color: rgba(255,255,255,0.6); padding: 64px 0 32px; }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-col-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1120px; margin: 0 auto; padding: 24px 32px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; font-size: 13px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why .container { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; padding: 0 32px; }
  .step-arrow { display: none; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-metrics { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero { padding: 56px 0 72px; }
  .process { padding: 64px 0; }
  .services { padding: 64px 0; }
  .why { padding: 64px 0; }
  .pricing { padding: 64px 0; }
  .closing { padding: 72px 0; }
}