/* ==========================================================================
   become-provider.css — /en/become-a-provider
   Design A "Editorial Trust" — provider-enrollment marketing page.
   Bootstrap-free. Brand tokens only (--primary #F05000 / --navy #003060).
   ========================================================================== */

/* ── HERO ──────────────────────────────────────────────────────────────── */
.bp-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: var(--sp-16) 0;
  overflow: hidden;
  isolation: isolate;
}
.bp-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.bp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Navy gradient for strong white-text + CTA contrast over the photo. */
  background: linear-gradient(160deg, rgba(0, 48, 96, 0.78) 0%, rgba(0, 30, 62, 0.86) 100%);
}
.bp-hero__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.bp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin: 0 0 var(--sp-5);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--on-navy);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.01em;
}
.bp-hero__eyebrow svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.bp-hero__title {
  margin: 0 0 var(--sp-4);
  color: var(--on-navy);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 28, 58, 0.45);
}
.bp-hero__subtitle {
  margin: 0 auto var(--sp-8);
  max-width: 600px;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 28, 58, 0.40);
}
.bp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3) var(--sp-6);
}
.bp-hero__alt {
  color: var(--on-navy);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.bp-hero__alt:hover {
  text-decoration-color: var(--on-navy);
  color: var(--on-navy);
}
.bp-hero__note {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin: var(--sp-8) 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}
.bp-hero__note svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: var(--on-navy);
}

/* CTA button — arrow icon sizing (button base comes from global .btn). */
.bp-cta-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* ── INTRO PITCH ───────────────────────────────────────────────────────── */
.bp-intro {
  text-align: center;
}
.bp-intro__title {
  margin: 0 0 var(--sp-4);
  color: var(--navy);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: 1.2;
}
.bp-intro__text {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray-700);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

/* ── STATS BAND (navy, full-bleed) ─────────────────────────────────────── */
.bp-stats {
  background: var(--navy);
  padding: var(--sp-10) 0;
}
.bp-stats__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.bp-stat {
  flex: 1 1 180px;
}
.bp-stat__num {
  display: block;
  color: var(--on-navy);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bp-stat__label {
  display: block;
  margin-top: var(--sp-2);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

/* ── SECTION HEADINGS (shared) ─────────────────────────────────────────── */
.bp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-10);
}
.bp-section-title {
  margin: 0 0 var(--sp-3);
  color: var(--navy);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: 1.2;
}
.bp-section-sub {
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-lg);
  line-height: 1.5;
}

/* ── BENEFITS GRID ─────────────────────────────────────────────────────── */
.bp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.bp-benefit {
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast),
              border-color var(--transition-fast);
}
.bp-benefit:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-border, rgba(240, 80, 0, 0.35));
  transform: translateY(-2px);
}
.bp-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: var(--sp-4);
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  color: var(--primary);
}
.bp-benefit__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.bp-benefit__title {
  margin: 0 0 var(--sp-2);
  color: var(--gray-900);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
}
.bp-benefit__text {
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

/* ── HOW IT WORKS ──────────────────────────────────────────────────────── */
.bp-steps-section {
  background: var(--bg-warm);
}
.bp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: bp-step;
}
.bp-step {
  text-align: center;
  padding: 0 var(--sp-2);
}
.bp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--sp-4);
  border-radius: var(--radius-full);
  background: var(--navy);
  color: var(--on-navy);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
}
.bp-step__title {
  margin: 0 0 var(--sp-2);
  color: var(--navy);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
}
.bp-step__text {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

/* ── FINAL CTA BAND (navy, full-bleed) ─────────────────────────────────── */
.bp-final {
  background: linear-gradient(135deg, var(--navy) 0%, #001E3E 100%);
  padding: var(--sp-16) 0;
}
.bp-final__inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.bp-final__title {
  margin: 0 0 var(--sp-3);
  color: var(--on-navy);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: 1.15;
}
.bp-final__text {
  margin: 0 0 var(--sp-8);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  line-height: 1.5;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .bp-steps {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .bp-hero {
    min-height: 0;
    padding: var(--sp-12) 0;
  }
  .bp-hero__title {
    font-size: var(--text-4xl);
  }
  .bp-hero__subtitle {
    font-size: var(--text-base);
  }
  .bp-stat__num {
    font-size: var(--text-4xl);
  }
  .bp-intro__title,
  .bp-section-title {
    font-size: var(--text-2xl);
  }
  .bp-final__title {
    font-size: var(--text-3xl);
  }
}
