:root {
  --navy: #0f2740;
  --blue: #1976d2;
  --sky: #e9f5ff;
  --gold: #f4b942;
  --text: #17212b;
  --muted: #64748b;
  --white: #ffffff;
  --border: #dbe7f0;
  --shadow: 0 24px 70px rgba(15, 39, 64, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f8fbfd;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1150px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid white;
  box-shadow: 0 8px 18px rgba(15, 39, 64, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  color: #334155;
}

.nav-cta {
  padding: 10px 16px;
  background: var(--navy);
  color: white;
  border-radius: 999px;
}

.hero {
  max-width: 1150px;
  margin: 0 auto;
  padding: 90px 22px 55px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: var(--navy);
}

.hero-text {
  max-width: 670px;
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 30px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: white;
  box-shadow: 0 16px 32px rgba(25, 118, 210, 0.24);
}

.btn.secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--border);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.pill-row span {
  background: var(--sky);
  border: 1px solid #cbe5fa;
  color: var(--navy);
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.hero-card {
  background: radial-gradient(circle at top left, #ffffff, #e9f5ff 60%, #d9ecfb);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(244, 185, 66, 0.26);
  right: -60px;
  bottom: -70px;
}

.hero-logo {
  width: 100%;
  max-width: 310px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
  border: 6px solid white;
  box-shadow: 0 18px 38px rgba(15, 39, 64, 0.18);
  margin-bottom: 24px;
}

.hero-card h2, .section h2, .split-section h2, .quote-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-card h2 { font-size: 30px; }
.hero-card p { color: var(--muted); }
.hero-card ul { padding-left: 20px; font-weight: 700; color: var(--navy); }
.hero-card li { margin-bottom: 8px; }

.stats {
  max-width: 1050px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 22px;
}

.stats div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15,39,64,0.06);
}

.stats strong { display: block; color: var(--navy); font-size: 22px; }
.stats span { color: var(--muted); }

.section, .split-section, .quote-section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 70px 22px;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.quote-card h2 { font-size: clamp(32px, 4vw, 48px); }
.section-heading p, .split-section p, .quote-card p { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card, .feature-list div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(15,39,64,0.05);
}

.service-card h3, .feature-list h3 {
  margin: 0 0 10px;
  color: var(--navy);
}
.service-card p, .feature-list p { margin: 0; color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.area-section {
  background: white;
  border-radius: 34px;
  border: 1px solid var(--border);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quote-card {
  background: linear-gradient(135deg, var(--navy), #173d62);
  color: white;
  border-radius: 34px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  box-shadow: var(--shadow);
}

.quote-card h2, .quote-card p { color: white; }
.quote-card .eyebrow { color: var(--gold); }

.quote-form {
  background: white;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #f8fbfd;
}

textarea { min-height: 110px; resize: vertical; }
.full { width: 100%; }
.form-callout { margin: 0; text-align: center; color: var(--muted) !important; font-size: 14px; }
.form-callout a { color: var(--navy); font-weight: 800; }

.footer {
  max-width: 1150px;
  margin: 0 auto;
  padding: 30px 22px 44px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a { color: var(--navy); font-weight: 800; }

@media (max-width: 850px) {
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .hero, .split-section, .quote-card { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .stats, .service-grid { grid-template-columns: 1fr; }
}
