:root {
  --navy: #0f2a44;
  --navy-dark: #0b2138;
  --teal: #4c9c8b;
  --teal-dark: #3d8171;
  --teal-tint: #d9ede8;
  --bg-light: #eef3f5;
  --white: #ffffff;
  --text-body: #5b6b76;
  --text-heading: #14213d;
  --border: #e1e8eb;
  --radius: 16px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.55;
  padding-bottom: 64px; /* space for mobile bottom nav */
}

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  color: var(--text-heading);
  margin: 0 0 16px;
  line-height: 1.15;
  font-weight: 800;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; }

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-heading);
}

.logo .mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo .mark svg { width: 20px; height: 20px; }

.logo .accent { color: var(--teal); }

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg { width: 24px; height: 24px; }

.site-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-bottom: 1px solid var(--border);
}

.site-nav.open { display: flex; }

.site-nav a {
  padding: 10px 4px;
  font-weight: 600;
  color: var(--text-heading);
  border-radius: 8px;
}

.site-nav a:hover { background: var(--bg-light); }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 28px;
    padding: 0;
    border: none;
  }
  .site-header { padding: 18px 40px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline {
  background: var(--white);
  color: var(--text-heading);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--teal); }

.btn-block { display: block; width: 100%; }

/* ---------- Eyebrow / pill labels ---------- */
.eyebrow {
  display: inline-block;
  background: var(--teal-tint);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Sections ---------- */
section { padding: 56px 0; }

.section-light { background: var(--bg-light); }
.section-dark {
  background: var(--navy);
  color: #c9d6de;
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-heading);
}
.checklist .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 760px) {
  .card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Stats */
.stats-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 700px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}

/* Pills (roles) */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  color: var(--text-heading);
}

/* Numbered steps */
.steps { list-style: none; padding: 0; margin: 0 0 28px; }
.steps li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.steps p { margin: 0; color: var(--text-body); }

/* Why-us icon cards */
.why-card { display: flex; flex-direction: column; gap: 12px; }
.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-tint);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 4px;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 400;
  color: var(--teal);
  font-size: 1.3rem;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-body { padding: 0 4px 18px; color: var(--text-body); }

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: #a9b8c2;
  padding: 48px 0 24px;
}
footer.site-footer h4 {
  color: var(--teal);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.footer-brand {
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--teal); display:flex; align-items:center; justify-content:center;
}
.footer-brand .mark svg { width: 16px; height: 16px; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer li { margin-bottom: 10px; }
footer.site-footer .fine {
  border-top: 1px solid #1c3350;
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

/* Mobile bottom nav */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 30;
}
.bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-heading);
}
.bottom-nav a svg { width: 20px; height: 20px; }
.bottom-nav a.active { background: var(--teal); color: var(--white); }

@media (min-width: 860px) {
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
}

/* Form */
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.field .req { color: #c0392b; }
.field input, .field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
}
.field .hint { font-size: 0.85rem; color: #8a97a1; margin-top: 6px; }

.step-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.step-tab {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-body);
}
.step-tab.current { background: var(--navy); color: var(--white); border-color: var(--navy); }

.help-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}
.help-box .phone { font-weight: 800; font-size: 1.1rem; color: var(--text-heading); }
