/* ============================================
   CSS RESET + BASE STYLES
   ============================================
   Imported by components that need a clean baseline.
   Scoped to :host since components run in Shadow DOM.
   ============================================ */

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

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

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-default);
}

a:not([class]):hover {
  color: var(--blue-primary);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.CtaSection-module__ctaSection--aKqah {
  /* 2026-04-28: Light variant (whitish gradient) per the Two-Container
     Rule. Was pure white since 2026-04-25; now matches the canonical
     Light section recipe used across the redesign. No containers
     inside this section — content is centered text + buttons + trust
     pills, so no rule conflict. */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(244, 248, 253, 0.92) 100%
  );
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
}

/* === Navy theme — dramatic conversion close ===
   Used on Home (and any page where CTA is the page's dramatic ending,
   sandwiched between a Navy/Dark band and the dark Footer). Brand navy
   gradient + overhead radial glow in --blue-bright. Matches the Outcomes
   Ticker section bg recipe so they read as one continuous block. */
.CtaSection-module__ctaSection--aKqah.CtaSection-module__ctaSection--navy--TjRYo {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 156, 222, 0.28), transparent 65%),
    linear-gradient(135deg, #003A73 0%, #00264A 100%);
  color: var(--text-inverse);
}
/* Higher-specificity overrides — `.ctaSection.ctaSection--navy .ctaCard h2`
   has specificity 0,3,1, beating the base `.ctaCard h2` rule (0,1,1).
   Without this bump, source-order coincidence was sometimes deciding
   color, and Cameron observed the H2 rendering dark on navy. */
.CtaSection-module__ctaSection--aKqah.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__ctaCard--mrSgO h2 { color: var(--text-inverse) !important; }
.CtaSection-module__ctaSection--aKqah.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__ctaCard--mrSgO p { color: rgba(255, 255, 255, 0.85) !important; }

/* Navy theme — secondary CTA flips to translucent-white outline */
.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__btnSecondary--uXfCL {
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__btnSecondary--uXfCL:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-inverse);
}

/* Navy theme — trust pills + alt paths flipped for dark bg.
   Specificity bumped via `.ctaSection.ctaSection--navy` to ensure
   white-text wins over base styles. */
.CtaSection-module__ctaSection--aKqah.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__ctaTrust--_mx8M {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.CtaSection-module__ctaSection--aKqah.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__ctaTrustItem--p5Hpv {
  color: rgba(255, 255, 255, 0.65) !important;
}
.CtaSection-module__ctaSection--aKqah.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__ctaNoAsterisks--wx2tU {
  color: rgba(255, 255, 255, 0.55) !important;
}
.CtaSection-module__ctaSection--aKqah.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__ctaAltPaths--y5dG2 a {
  color: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}
.CtaSection-module__ctaSection--aKqah.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__ctaAltPaths--y5dG2 a:hover {
  color: var(--text-inverse) !important;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.10);
}
.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__ctaAltPhone--DYB8h {
  color: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}
.CtaSection-module__ctaSection--navy--TjRYo .CtaSection-module__ctaAltPhone--DYB8h:hover {
  color: var(--text-inverse) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.10) !important;
}

.CtaSection-module__ctaSection--aKqah::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.CtaSection-module__container--V2lg6 {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.CtaSection-module__ctaCard--mrSgO {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  /* 2026-04-25: White section per Cameron — card visual treatment
     removed. .ctaCard now acts purely as a layout wrapper for the
     centered text + buttons + trust pills. No background, no border,
     no shadow. Matches BentoGrid-style centered content on white. */
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.CtaSection-module__ctaCard--mrSgO h2 {
  font-family: var(--font-body);
  font-size: var(--h2-size);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.CtaSection-module__ctaCard--mrSgO p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.CtaSection-module__ctaButtons--_7LPJ {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 8px;
}

.CtaSection-module__btnPrimary--tQFyl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--cta-orange);
  color: var(--text-inverse);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-hover),
              transform var(--duration-fast) var(--ease-hover),
              box-shadow var(--duration-fast) var(--ease-hover);
}

.CtaSection-module__btnPrimary--tQFyl:hover {
  background: var(--cta-orange-hover);
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(255, 106, 20, 0.10),
    0 4px 12px rgba(255, 106, 20, 0.25),
    0 12px 24px rgba(255, 106, 20, 0.15);
  color: var(--text-inverse);
}

.CtaSection-module__btnPrimary--tQFyl:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(255, 106, 20, 0.2);
}

.CtaSection-module__btnPrimary--tQFyl:focus-visible {
  outline: 2px solid var(--text-primary, #1E1E1E);
  outline-offset: 2px;
}

.CtaSection-module__btnSecondary--uXfCL {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border: 1.5px solid rgba(0, 0, 0, 0.20);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--duration-fast) var(--ease-hover),
              background var(--duration-fast) var(--ease-hover),
              color var(--duration-fast) var(--ease-hover);
}

.CtaSection-module__btnSecondary--uXfCL:hover {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: var(--text-inverse);
}

.CtaSection-module__btnSecondary--uXfCL:active {
  transform: scale(0.98);
}

.CtaSection-module__btnSecondary--uXfCL:focus-visible {
  outline: 2px solid var(--blue-primary, #0072B5);
  outline-offset: 2px;
}

.CtaSection-module__btnSecondary--uXfCL svg { margin-left: 4px; }

.CtaSection-module__ctaTrust--_mx8M {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.CtaSection-module__ctaTrustItem--p5Hpv {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

.CtaSection-module__ctaNoAsterisks--wx2tU {
  margin-top: 28px;
  margin-bottom: 0;
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  /* Overrides the default .ctaCard p styling so the payoff line stays
     compact and quiet below the trust pills. */
}

.CtaSection-module__ctaAltPaths--y5dG2 {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.CtaSection-module__ctaAltPaths--y5dG2 a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  text-decoration: none;
  transition: border-color var(--duration-fast) var(--ease-hover),
              color var(--duration-fast) var(--ease-hover),
              background var(--duration-fast) var(--ease-hover);
}

.CtaSection-module__ctaAltPaths--y5dG2 a:hover {
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.30);
  background: rgba(0, 0, 0, 0.03);
}

.CtaSection-module__ctaAltPhone--DYB8h {
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  padding: 10px 20px !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.CtaSection-module__ctaAltPhone--DYB8h:hover {
  color: var(--text-primary) !important;
  border-color: rgba(0, 0, 0, 0.30) !important;
  background: rgba(0, 0, 0, 0.03) !important;
}

@media (max-width: 768px) {
  /* .ctaCard padding/border-radius removed 2026-04-25 — card visual gone,
     wrapper is transparent. Section padding (.ctaSection) handles spacing. */
  .CtaSection-module__ctaButtons--_7LPJ { flex-direction: column; align-items: center; }
  .CtaSection-module__ctaTrust--_mx8M { flex-direction: column; gap: 12px; }
}

