
:root {
  --primary: #1E3A8A;
--hprimary: #cfe5fb;
--hsecondary: #f0f4f8;
  --secondary: #083a5d;
  --accent: #F97316;
  --bg-light: #F9FAFB;
  --bg-alt: #F3F4F6;
  --text-dark: #111827;
  --text-muted: #6B7280;
  --radius: 16px;
}
* { box-sizing: border-box; }
body { font-family: 'Source Sans Pro', sans-serif; color: var(--text-dark); background: var(--bg-light); }
h1,h2,h3,h4 { font-family: 'Inter', sans-serif; }
a { text-decoration: none; }
.btn-primary {
  background: var(--primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
}

.text-brand{color: var(--primary);}
.btn-primary:hover { background: var(--secondary); }
.navbar { backdrop-filter: blur(6px); }
.hero {
  background: linear-gradient(135deg, var(--hprimary), var(--hsecondary));
  color: #565757;
  padding: 4rem 0 5rem;
  text-align: center;
}
.hero .lead { max-width: 820px; margin: 1rem auto 0; opacity: 0.95; }
.hero img { max-width: 100%; height: auto; margin-top: 2rem; border-radius: var(--radius);  }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section .eyebrow { text-transform: uppercase; letter-spacing: .08em; color: var(--secondary); font-weight: 700; font-size: .85rem; }
.icon-pill { display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius:12px; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 1rem; }
.icon-pill i { font-size: 1.25rem; color: var(--primary); }
.feature-item h3 { margin-top: .5rem; }
.divider { height: 1px; background: rgba(0,0,0,0.06); margin: 2rem 0; }
.cta-band { background: linear-gradient(135deg, rgba(30,58,138,0.06), rgba(13,148,136,0.06)); border-radius: var(--radius); padding: 2rem; text-align: center; }
.alt-surface { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
footer { background: #111827; color: #e5e7eb; padding: 3rem 0; }
footer a { color: #e5e7eb; }
footer a:hover { color: var(--secondary); }
.reveal { opacity: 0; transform: translateY(14px); transition: all .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.tl { border-left: 3px solid var(--primary); padding-left: 1rem; }
.pricing-tier { border-radius: var(--radius); padding: 2rem; background: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.pricing-price { font-size: 2rem; font-weight: 700; }
.pricing-features li { margin-bottom: .5rem; }
.faq h3 { font-size: 1.1rem; }


/* === Home: extra sections === */
.steps { counter-reset: step; }
.step-item { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.25rem; }
.num-badge { flex-shrink:0; width:40px; height:40px; border-radius:12px; background:#fff; box-shadow:0 2px 10px rgba(0,0,0,.06); display:flex; align-items:center; justify-content:center; font-weight:700; color:var(--primary); }
.testimonial { padding:1.5rem; border-radius:var(--radius); background:#fff; box-shadow:0 6px 20px rgba(0,0,0,.05); }
.testimonial p { margin-bottom:.5rem; }
.badge-soft { background:rgba(13,148,136,.08); color:var(--secondary); border-radius:999px; padding:.35rem .75rem; font-weight:600; font-size:.9rem; }
.coverage-list .item { display:flex; align-items:center; gap:.6rem; margin-bottom:.6rem; }
.coverage-list i { color:var(--secondary); }
.grid-logos img { opacity:.8; filter:grayscale(100%); height:34px; margin:0 .75rem; }

/* Accordion item handles the rounding and border */
.accordion-item {
  border: 1px solid #2D85CC;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Remove button’s own border so it inherits the parent’s */
.accordion-button {
  border: none !important;
  border-radius: 0 !important;
  background: #fff;
  color: #2D85CC;
  font-weight: 600;
  padding: 1rem 1.25rem;
  transition: all 0.25s ease;
}

/* Expanded (active) button */
.accordion-button:not(.collapsed) {
  background: #2D85CC;
  color: #fff;
  box-shadow: none;
}

/* Chevron */
.accordion-button::after {
  font-family: "bootstrap-icons";
  content: "\f282";
  font-size: 1.25rem;
  color: inherit;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  color: #fff;
}

/* Body keeps the left highlight */
.accordion-body {
  background: #f9fafb;
  color: #444;
  padding: 1rem 1.25rem;
  border-top: 1px solid #ddd;
}

/* === Uniform Coverage Pills === */
.coverage-list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #2D85CC;
  font-weight: 600;
  font-size: .95rem;
  transition: all 0.25s ease;
  min-width: 200px;        /* ensures consistent pill width */
  text-align: center;
}

.coverage-list .item i {
  font-size: 1.1rem;
  color: #2D85CC;
  flex-shrink: 0;
}

.coverage-list .item:hover {
  background: #2D85CC;
  color: #fff;
}

.coverage-list .item:hover i {
  color: #fff;
}

/* === Light Brand Button (Hero CTA) === */
.btn-light-brand {
  background: #fff;
  color: #083a5d;
  font-weight: 600;
border-radius: 12px;

  padding: .6rem 1.5rem;
  transition: all 0.25s ease;
}

.btn-light-brand:hover {
  background: #2D85CC;
  color: #fff;
}

@media (max-width: 575.98px) {
  .row.g-5 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
}


    