:root {
  --navy: #0f3057;
  --blue: #1868b7;
  --blue-light: #eaf3fc;
  --accent: #d63a5c;
  --text: #1e2a35;
  --muted: #5c6b78;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 48, 87, 0.08);
  --shadow-hover: 0 16px 36px rgba(15, 48, 87, 0.14);
  --font-heading: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, .btn, .nav-cta, .brand {
  font-family: var(--font-heading);
}

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

img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e7edf3;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.brand img.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}
.footer-brand img {
  height: 30px;
  width: auto;
  display: block;
}
.footer-brand h4 { margin: 0; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--blue);
  border-color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy), var(--blue) 120%);
  color: #fff;
  padding: 90px 24px 110px;
  text-align: center;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #bcd9f5;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 18px;
  font-weight: 800;
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: 1.15rem;
  color: #e6f0fb;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #b62d4b; }

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: #eaf3fc; }

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 70px 24px; }
.section-soft { background: var(--bg-soft); }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 46px;
}
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 14px;
  color: var(--navy);
}
.section-head p { color: var(--muted); margin: 0; }

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

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f6;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card p { color: var(--muted); margin: 0; }

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: var(--muted);
}
.checklist li strong { color: var(--text); }
.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 20px;
}
.stat-row .num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-row .label { color: var(--muted); font-size: 0.9rem; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-light) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: var(--shadow);
}
.step h3 { color: var(--navy); margin: 0 0 8px; font-size: 1.05rem; }
.step p { color: var(--muted); margin: 0; font-size: 0.95rem; }

@media (max-width: 860px) {
  .steps::before { display: none; }
}

/* Testimonials */
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f6;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.quote-card p.quote {
  color: var(--text);
  font-style: italic;
  margin: 0 0 16px;
}
.quote-card .who {
  font-weight: 700;
  color: var(--navy);
}

/* CTA banner */
.cta-banner {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}
.cta-banner h2 { margin: 0 0 12px; font-size: 1.8rem; }
.cta-banner p { color: #cfe0f2; margin: 0 0 26px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
form.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
  color: var(--navy);
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7e1ea;
  font-family: inherit;
  font-size: 1rem;
}
form.contact-form textarea { min-height: 130px; resize: vertical; }
form.contact-form button { align-self: flex-start; }

.info-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 30px;
}
.info-card h3 { color: var(--navy); margin-top: 0; }
.info-card .row { margin-bottom: 14px; }
.info-card .row .label { font-weight: 700; color: var(--navy); display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.info-card .row a { color: var(--blue); font-weight: 600; }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #cfe0f2;
  padding: 46px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto 30px;
}
.footer-grid h4 { color: #fff; margin: 0 0 14px; font-size: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  nav.main-nav, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .two-col, .contact-grid, .footer-grid, .steps { grid-template-columns: 1fr; }
}

nav.main-nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  padding: 20px 24px;
  border-bottom: 1px solid #e7edf3;
  box-shadow: var(--shadow);
}
nav.main-nav.open ul { flex-direction: column; gap: 16px; }
