:root {
  --navy: #0a2540;
  --blue: #1B4F8A;
  --teal: #0F6E56;
  --teal-hover: #0b5a47;
  --amber: #E8A838;
  --deep-navy: #0c1a2e;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #eef1f5;
  --gray-200: #dde3ea;
  --gray-400: #94a3b5;
  --gray-500: #64748b;
  --gray-600: #475569;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow-hover: 0 8px 24px rgba(10, 37, 64, 0.08)
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7
}

a {
  text-decoration: none
}

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

.section {
  padding: 48px 0
}

.section--alt {
  background: var(--off-white)
}

.services-cta {
  margin-top: 20px;
}

.section--navy {
  background: var(--deep-navy);
  color: var(--white)
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px
}

.section--navy .eyebrow {
  color: var(--amber)
}

h1 {
  font-size: 3.25rem;
  line-height: 4.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px
}

h2 {
  font-size: 2.1rem;
  line-height: 2.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

h3 {
  font-size: 1.08rem;
  line-height: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px
}

.section--navy h2,
.section--navy h3 {
  color: var(--white)
}

p {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.75
}

.section--navy p {
  color: #a8b8cc
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s ease
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal)
}

.btn--teal:hover {
  background: var(--teal-hover);
  border-color: var(--teal-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200)
}

.btn--outline:hover {
  border-color: var(--navy)
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white)
}

.btn--white:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white)
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3)
}

.btn--ghost:hover {
  border-color: var(--white)
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero {
  padding: 64px 0 52px;
  background: var(--off-white)
}

.hero p.lead {
  font-size: 1.25rem;
  max-width: 980px;
  margin-bottom: 24px
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow)
}

.stat-card .num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.15
}

.stat-card .lbl {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-top: 6px;
  line-height: 1.45
}

.stat-card .src {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 6px
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease
}

.card:hover {
  box-shadow: var(--shadow-hover)
}

.card-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 4px
}

.card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--gray-600)
}

.card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 24px
}

.card--wide .card-icon {
  margin-bottom: 0;
  font-size: 1.3rem
}

.card--wide .card-text h3 {
  margin-bottom: 2px
}

.mid-cta {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.mid-cta p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0
}

.flow-grid {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 28px
}

.flow-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
}

.flow-step:hover {
  box-shadow: var(--shadow-hover)
}

.flow-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 12px
}

.flow-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35
}

.flow-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0
}

.flow-arrow {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: var(--teal);
  font-weight: 600;
  flex-shrink: 0
}

.icp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px
}

.icp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow)
}

.icp-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px
}

.icp-badge--bh {
  background: #e8f5e9;
  color: #2e7d32
}

.icp-badge--pp {
  background: #e3f2fd;
  color: #1565c0
}

.icp-badge--asc {
  background: #fff3e0;
  color: #e65100
}

.icp-card h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.4
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none
}

.tag-list li {
  font-size: 0.78rem;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 4px 11px;
  border-radius: 20px;
  line-height: 1.4
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px
}

.result-tile {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03)
}

.result-tile .num {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2
}

.result-tile .lbl {
  font-size: 0.78rem;
  color: #7f92a8;
  margin-top: 5px;
  line-height: 1.4
}

.results-link {
  margin-top: 20px;
  text-align: center
}

.results-link a {
  color: var(--amber);
  font-weight: 600;
  font-size: 0.9rem
}

.results-link a:hover {
  text-decoration: underline
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px
}

.related-tag {
  display: block;
  padding: 11px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500
}

.related-tag:hover {
  box-shadow: var(--shadow-hover);
  color: var(--teal)
}

.faq-list {
  margin-top: 20px;
  max-width: 980px
}

.faq-item {
  border-bottom: 1px solid var(--gray-200)
}

.faq-q {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.faq-q::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gray-400);
  flex-shrink: 0
}

.faq-item.open .faq-q::after {
  content: "\2212"
}

.faq-a {
  display: none;
  padding: 0 0 14px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65
}

.faq-item.open .faq-a {
  display: block
}

.final-cta {
  padding: 52px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--blue) 0%, #163d6b 100%);
  color: var(--white)
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 10px
}

.final-cta p {
  color: #b8c8dc;
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 1.02rem
}

.final-cta .btn-row {
  justify-content: center
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px
}

.metric {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow)
}

.metric .metric-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px
}

.metric .metric-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.45
}

@media(max-width:900px) {

  .cards-grid,
  .icp-grid,
  .stats-grid,
  .metrics-grid {
    grid-template-columns: 1fr 1fr
  }

  .results-grid {
    grid-template-columns: 1fr 1fr
  }

  .card--wide {
    grid-column: 1 / -1
  }

  .flow-grid {
    flex-direction: column
  }

  ;

  .flow-arrow {
    transform: rotate(90deg);
    justify-content: center;
    padding: 2px 0
  }
}

@media(max-width:640px) {
  h1 {
    font-size: 2.2rem;
    line-height: 2.8rem
  }

  h2 {
    font-size: 1.65rem;
    line-height: 2.1rem
  }

  .hero {
    padding: 48px 0 40px
  }

  .section {
    padding: 36px 0
  }

  .cards-grid,
  .icp-grid,
  .stats-grid,
  .metrics-grid {
    grid-template-columns: 1fr
  }

  .results-grid {
    grid-template-columns: 1fr 1fr
  }

  .mid-cta {
    flex-direction: column;
    text-align: center
  }

  .card--wide {
    grid-template-columns: 1fr
  }
}