/* =============================================================
   Prime Home Warranty - Stylesheet
   Modern, accessible, responsive
   ============================================================= */

:root {
  --c-navy:        #0b2e59;
  --c-navy-deep:   #07203e;
  --c-navy-light:  #143b6b;
  --c-gold:        #f5b021;
  --c-gold-deep:   #d8930a;
  --c-cta:         #ff6a13;
  --c-cta-deep:    #e2570a;
  --c-success:     #16a34a;
  --c-error:       #ef4444;
  --c-text:        #0f172a;
  --c-text-muted:  #475569;
  --c-text-light:  #94a3b8;
  --c-bg:          #ffffff;
  --c-bg-alt:      #f7f9fc;
  --c-border:      #e2e8f0;
  --c-border-dark: #cbd5e1;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 1px rgba(15, 23, 42, .04);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, .12), 0 4px 8px rgba(15, 23, 42, .04);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Poppins', 'Inter', system-ui, sans-serif;

  --container: 1180px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

/* Critical: enforce the `hidden` HTML attribute even if a later class
   rule defines display (e.g. .exit-popup { display: flex }). Without
   this, hidden popups/views still cover the page and block clicks. */
[hidden] { display: none !important; }

/* Belt-and-suspenders: even if the popup's hidden attr gets stripped,
   never let it intercept clicks unless it's actually open. */
.exit-popup:not(.is-open) {
  pointer-events: none !important;
  opacity: 0 !important;
}
.exit-popup.is-open { pointer-events: auto; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a, a:link, a:visited { color: var(--c-navy); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--c-navy-deep);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--c-text-muted); }

ul { padding-left: 1.25rem; margin: 0 0 1em; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-navy);
  color: #fff;
}
.btn--primary:hover { background: var(--c-navy-deep); }

.btn--cta {
  background: linear-gradient(135deg, var(--c-cta), var(--c-cta-deep));
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 106, 19, .35);
}
.btn--cta:hover {
  box-shadow: 0 10px 22px rgba(255, 106, 19, .45);
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
  border-color: var(--c-navy);
  color: var(--c-navy);
}
.btn--ghost:hover { background: var(--c-navy); color: #fff; }

.btn--ghost-light {
  border-color: #fff;
  color: #fff;
}
.btn--ghost-light:hover { background: #fff; color: var(--c-navy); }

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

.btn-link {
  background: none;
  border: 0;
  color: var(--c-text-muted);
  text-decoration: underline;
  font-size: .9rem;
  margin-top: .5rem;
  padding: .25rem 0;
}
.btn-link:hover { color: var(--c-navy); }

/* ---------- Header ---------- */
.header {
  background: #fff;
  border-bottom: 0;
  position: relative;
  z-index: 20;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1.5rem;
}
.header__call,
.header__call:link,
.header__call:visited {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--c-navy-deep);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background .15s ease;
}
.header__call:hover {
  background: var(--c-navy);
  color: #fff;
  text-decoration: none;
}
.header__call * {
  color: #fff;
}
.header__call-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.header__call-icon svg { width: 18px; height: 18px; }
.header__call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.header__call-text small {
  font-size: .8rem;
  opacity: .85;
  font-weight: 500;
}
.header__call-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Header nav menu */
.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 2rem;
  flex: 1;
}
.header__nav-link,
.header__nav-link:link,
.header__nav-link:visited {
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-text);
  text-decoration: none;
  padding: .35rem 0;
  position: relative;
  transition: color .15s ease;
}
/* Only hover changes color - :focus and :active stay the default color
   so clicked links don't stay highlighted blue */
.header__nav-link:hover {
  color: #1F6AC7;
  text-decoration: none;
}
.header__nav-link:focus,
.header__nav-link:active {
  color: var(--c-text);
  outline: none;
}
.header__nav-link:focus-visible {
  outline: 2px solid #1F6AC7;
  outline-offset: 4px;
  border-radius: 4px;
}
/* No persistent active highlight — only hover changes the color */
.header__quote-btn {
  background: linear-gradient(180deg, #FFD740, #F5B400);
  color: var(--c-navy-deep);
  font-weight: 800;
  padding: .75rem 1.5rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 2px solid #E5A100;
  transition: filter .15s ease, transform .1s ease;
  white-space: nowrap;
}
.header__quote-btn:hover {
  filter: brightness(1.08);
  text-decoration: none;
}
.header__quote-btn:active {
  transform: translateY(1px);
}

@media (max-width: 960px) {
  .header__nav { display: none; }
  .header__quote-btn { padding: .55rem 1rem; font-size: .85rem; }
}
@media (max-width: 600px) {
  .header__quote-btn { display: none; }
}

/* Legal sections (Terms / Privacy inline) */
.legal-section h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 .5rem;
  color: var(--c-navy-deep);
}
.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
}
.legal-section .updated {
  color: var(--c-text-light);
  font-size: .9rem;
  margin: 0 0 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo__img {
  height: 64px;
  width: auto;
  display: block;
}
@media (max-width: 960px) {
  .logo__img { height: 52px; }
}
@media (max-width: 600px) {
  .logo__img { height: 44px; }
}

.nav {
  display: flex;
  gap: 1.75rem;
}
.nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-text);
  position: relative;
}
.nav a:hover { color: var(--c-navy); text-decoration: none; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.header__cta svg { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
/* ---------- Sale Banner (Mother's Day) ---------- */
.sale-bar {
  background: linear-gradient(180deg, #2B6CDF, #1F6AC7);
  color: #fff;
  padding: .85rem 0;
}
.sale-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.sale-bar__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.sale-bar__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
}
.sale-bar__text strong {
  background: #FFD740;
  color: var(--c-navy-deep);
  padding: 0 .35rem;
  border-radius: 4px;
}

/* ---------- Hero with kitchen background ---------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 600px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../assets/banner.webp');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 46, 89, 0) 0%, rgba(11, 46, 89, .15) 50%, rgba(11, 46, 89, .85) 100%);
  pointer-events: none;
}
.hero__badges { pointer-events: none; }
.hero__badges {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 460px;
}
.hero__badges-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0, .25));
}
.hero__badges-2026 {
  height: 130px;
  width: auto;
  margin-left: -32px;
  margin-bottom: 4px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0, .25));
  transform: rotate(2deg);
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 380px;
  padding-bottom: 2rem;
}
.hero__copy {
  background: var(--c-navy-deep);
  border-top-left-radius: var(--r-md);
  border-top-right-radius: var(--r-md);
  padding: 1.75rem 2rem 1.25rem;
  margin: 0 -24px -1px;
}
.hero__title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin: 0;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-display);
}
.hero__title strong { font-weight: 800; }

.stars { display: inline-flex; gap: 2px; color: var(--c-gold); }
.stars svg { width: 16px; height: 16px; }
.stars--lg svg { width: 22px; height: 22px; }

/* ---------- Lead form card (inside hero) ---------- */
.hero .lead-card {
  background: var(--c-navy-deep);
  color: #fff;
  border: 0;
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: none;
  padding: 1.5rem 2rem 1.75rem;
  margin: -1px -24px 0;
  position: relative;
}
.hero .lead-card__ribbon,
.hero .lead-card__title,
.hero .lead-card__sub,
.hero .lead-form__progress { display: none; }

/* General lead-card (used on other pages/sections if needed) */
.lead-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--c-border);
}
.lead-card__ribbon {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, var(--c-cta), var(--c-cta-deep));
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  position: absolute;
  top: -16px;
  left: 2rem;
  box-shadow: 0 6px 16px rgba(255, 106, 19, .35);
}
.lead-card__ribbon svg { width: 14px; height: 14px; }
.lead-card__title {
  font-size: 1.5rem;
  margin: .5rem 0 .25rem;
}
.lead-card__sub {
  font-size: .95rem;
  margin-bottom: 1.25rem;
}

/* Step 1 of hero form = ZIP + button on a single row */
.hero .lead-form__step[data-step="1"] {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  align-items: start;
}
.hero .lead-form__step[data-step="1"][hidden] { display: none; }
.hero .lead-form__step[data-step="1"] .field { margin-bottom: 0; }
.hero .lead-form__step[data-step="1"] .field__label { display: none; }
.hero .lead-form__step[data-step="1"] input {
  padding: 1.05rem 1.1rem;
  font-size: 1.05rem;
}
.hero .lead-form__step[data-step="1"] .btn {
  padding: 1.05rem 1.75rem;
  background: #4DA3FF;
  color: var(--c-navy-deep);
  border-radius: var(--r-sm);
  font-size: 1.05rem;
  font-weight: 700;
}
.hero .lead-form__step[data-step="1"] .btn:hover {
  background: #fff;
  color: var(--c-navy-deep);
}
.hero .field__label, .hero .field-row .field__label { color: rgba(255,255,255, .9); }
.hero .consent, .hero .legal { color: rgba(255,255,255, .8); }
.hero .legal a { color: rgba(255,255,255, .9); }
.hero .btn-link { color: rgba(255,255,255, .8); }

.lead-form .field {
  display: block;
  margin-bottom: 1rem;
}
.field__label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .35rem;
}
.field__label em { color: var(--c-error); font-style: normal; }

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  padding: .85rem 1rem;
  font-size: 1rem;
  border: 1.5px solid var(--c-border-dark);
  border-radius: var(--r-sm);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
.lead-form input:focus {
  outline: none;
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(11, 46, 89, .12);
}
.lead-form .field--error input {
  border-color: var(--c-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

.field__error {
  display: none;
  color: var(--c-error);
  font-size: .8rem;
  margin-top: .35rem;
  font-weight: 500;
}
.field--error .field__error { display: block; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.consent {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--c-text-muted);
  margin: 1rem 0 .75rem;
  cursor: pointer;
}
.consent input { margin-top: 3px; accent-color: var(--c-navy); }

.legal {
  font-size: .72rem;
  color: var(--c-text-light);
  line-height: 1.5;
  margin: .75rem 0 1rem;
}
.legal a { color: var(--c-text-muted); text-decoration: underline; }
.lead-form__legal {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255, .12);
}

.lead-form__progress {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-border-dark);
  transition: background .2s;
}
.dot.is-active { background: var(--c-navy); }

.lead-form__success {
  text-align: center;
  padding: 1rem .5rem;
}
.lead-form__success svg {
  width: 64px;
  height: 64px;
  color: var(--c-success);
  margin: 0 auto 1rem;
}
.lead-form__success h3 { font-size: 1.4rem; margin-bottom: .5rem; }

/* ---------- Affiliations / badges ---------- */
.affiliations {
  background: #fff;
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--c-border);
}
.affiliations .section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}
.affiliations__sub {
  font-size: 1.1rem;
  color: var(--c-text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0;
}
.affiliations__divider {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #1F6AC7;
  border-radius: 2px;
}
.hl-blue { color: #1F6AC7; }

.h2--blue {
  color: #1F6AC7;
  font-weight: 800;
}

/* ---------- Plans page ---------- */
.plans-hero {
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  padding: 3.5rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.plans-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: .5rem 0 .75rem;
  color: var(--c-navy-deep);
}
.plans-hero .lede {
  max-width: 640px;
  margin: 0 auto;
}

.plans-section { padding: 3.5rem 0 4.5rem; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plan-card--featured {
  border: 2px solid #1F6AC7;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  transform: scale(1.02);
}
.plan-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--c-cta), var(--c-cta-deep));
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  letter-spacing: .03em;
  box-shadow: 0 6px 14px rgba(255, 106, 19, .3);
  white-space: nowrap;
}
.plan-card__head { margin-bottom: 1.25rem; }
.plan-card__tier {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 800;
  color: #1F6AC7;
}
.plan-card__name {
  font-size: 1.75rem;
  margin: .35rem 0 .5rem;
  color: var(--c-navy-deep);
  font-weight: 800;
}
.plan-card__tagline {
  color: var(--c-text-muted);
  font-size: .95rem;
  margin: 0;
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 1.25rem 0 .25rem;
  font-family: var(--font-display);
  color: var(--c-navy-deep);
}
.plan-card__currency { font-size: 1.5rem; font-weight: 700; }
.plan-card__amount { font-size: 3rem; font-weight: 800; line-height: 1; }
.plan-card__cents { font-size: 1.25rem; font-weight: 700; }
.plan-card__period { font-size: 1rem; font-weight: 500; color: var(--c-text-muted); margin-left: .25rem; }
.plan-card__annual {
  font-size: .9rem;
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}
.plan-card__annual strong { color: var(--c-text); }

.plan-card .btn { margin-bottom: 1.5rem; }

.plan-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
}
.plan-card__list li {
  position: relative;
  padding: .5rem 0 .5rem 1.5rem;
  font-size: .95rem;
  color: var(--c-text);
  border-bottom: 1px dashed var(--c-border);
}
.plan-card__list li:last-child { border-bottom: 0; }
.plan-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .55rem;
  color: var(--c-success);
  font-weight: 800;
  font-size: 1rem;
}
.plan-card__list li:has(strong)::before { content: '★'; color: #1F6AC7; }

/* ---------- Compare table ---------- */
.compare-wrap {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: .95rem;
}
.compare thead th {
  background: var(--c-navy-deep);
  color: #fff;
  padding: 1.25rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.compare thead th small { display: block; font-weight: 500; font-size: .8rem; opacity: .85; margin-top: 2px; }
.compare__feature { text-align: left !important; }
.compare__featured { background: #1F6AC7 !important; }
.compare tbody th {
  text-align: left;
  font-weight: 600;
  padding: .9rem 1.25rem;
  color: var(--c-text);
  background: var(--c-bg-alt);
}
.compare tbody td {
  padding: .9rem 1rem;
  border-top: 1px solid var(--c-border);
  color: var(--c-text);
}
.compare tbody tr:hover td,
.compare tbody tr:hover th { background: #f4f8ff; }
.compare tbody td:nth-child(3) {
  background: rgba(31, 106, 199, .05);
  font-weight: 600;
}

/* ---------- Add-ons grid ---------- */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.addon {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.addon:hover {
  border-color: #1F6AC7;
  box-shadow: var(--shadow-sm);
}
.addon__name {
  color: var(--c-text);
  font-weight: 500;
  font-size: .92rem;
}
.addon__price {
  color: #1F6AC7;
  font-weight: 800;
  font-family: var(--font-display);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }
  .addons-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .addons-grid { grid-template-columns: 1fr; }
  .compare { font-size: .85rem; }
  .compare thead th, .compare tbody th, .compare tbody td { padding: .7rem .5rem; }
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.badge-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 140px;
  transition: box-shadow .2s, transform .2s;
}
.badge-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.badge-card img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  margin: auto 0;
}
.badge-card figcaption {
  font-size: .85rem;
  color: var(--c-text-muted);
  line-height: 1.4;
  border-top: 1px solid var(--c-border);
  padding-top: .75rem;
  width: 100%;
}

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section--alt { background: var(--c-bg-alt); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section__head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--c-gold-deep);
  margin-bottom: .75rem;
}
.lede {
  font-size: 1.1rem;
  color: var(--c-text-muted);
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature {
  background: #fff;
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  transition: transform .2s, box-shadow .2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 176, 33, .15), rgba(255, 106, 19, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature__icon svg { width: 26px; height: 26px; color: var(--c-cta); }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { font-size: .95rem; margin-bottom: 0; }

/* ---------- Coverage cards ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.coverage-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}
.coverage-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.coverage-card__icon svg { width: 22px; height: 22px; }
.coverage-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.coverage-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.coverage-card li {
  font-size: .9rem;
  color: var(--c-text-muted);
  padding: .35rem 0;
  border-top: 1px dashed var(--c-border);
}
.coverage-card li:first-child { border-top: 0; padding-top: 0; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
.step {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  position: relative;
  text-align: center;
}
.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 16px rgba(11, 46, 89, .25);
}
.step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; margin-bottom: 0; }

/* ---------- Reviews ---------- */
.reviews-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
.reviews-img {
  margin: 0;
}
.reviews-img img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.reviews-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reviews-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.reviews-pill {
  background: var(--c-cta);
  color: #fff;
  font-weight: 700;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .95rem;
  white-space: nowrap;
}
.reviews-pill:hover { background: var(--c-cta-deep); text-decoration: none; }
.reviews-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.review {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.review .stars { color: var(--c-cta); margin-bottom: .85rem; }
.review .stars svg { width: 20px; height: 20px; }
.review blockquote {
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  color: var(--c-text);
  line-height: 1.55;
  font-weight: 500;
}
.review figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-text-muted);
  font-size: .9rem;
  gap: 1rem;
}
.review figcaption strong {
  color: var(--c-navy-deep);
  font-size: 1rem;
  font-weight: 700;
}
.review figcaption small { font-size: .8rem; color: var(--c-text-light); }
.review figcaption img { height: 24px; width: auto; }

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: .75rem;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  transition: box-shadow .2s, border-color .2s;
}
.faq__item:hover { border-color: var(--c-border-dark); }
.faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--c-navy);
}
.faq__item summary {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-navy-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-gold-deep);
  transition: transform .2s;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p {
  margin: .75rem 0 0;
  color: var(--c-text-muted);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--c-navy-deep);
  color: #fff;
  padding: 2rem 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-strip__copy {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  font-family: var(--font-display);
}
.cta-strip__phone,
.cta-strip__phone:link,
.cta-strip__phone:visited {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  text-decoration: none;
}
.cta-strip__phone:hover { text-decoration: none; color: #fff; }
.cta-strip__phone * { color: #fff; }
.cta-strip__phone .cta-strip__phone-icon { color: #4DA3FF; }
.cta-strip__phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4DA3FF;
  border: 1.5px solid rgba(77, 163, 255, .35);
}
.cta-strip__phone-icon svg { width: 18px; height: 18px; }
.cta-strip__phone-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.cta-strip__or {
  color: rgba(255,255,255, .9);
  font-weight: 500;
}
.cta-strip__btn {
  background: #4DA3FF;
  color: var(--c-navy-deep);
  font-weight: 700;
  padding: 1rem 1.75rem;
  border-radius: 999px;
}
.cta-strip__btn svg { width: 16px; height: 16px; }
.cta-strip__btn:hover {
  background: #fff;
  color: var(--c-navy-deep);
}

/* ---------- Footer ---------- */
.footer {
  background: #f4f4f4;
  color: var(--c-text-muted);
  padding: 2rem 0;
  border-top: 1px solid var(--c-border);
  position: relative;
  z-index: 5;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__logo img {
  height: 60px;
  width: auto;
  display: block;
}
.footer__legal {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  color: var(--c-text-muted);
  flex-wrap: wrap;
}
.footer__legal a {
  color: var(--c-text);
  text-decoration: underline;
  font-weight: 500;
}
.footer__legal a:hover { color: var(--c-navy); }
.footer__copy {
  margin-left: .5rem;
  color: var(--c-text-muted);
}
@media (max-width: 700px) {
  .footer__inner { justify-content: center; text-align: center; }
  .footer__legal { justify-content: center; }
}

/* (old dark footer styles removed - replaced above) */

/* ---------- Legal pages ---------- */
.legal-page {
  padding: 3.5rem 0 5rem;
}
.legal-page h1 {
  font-size: 2.25rem;
  margin-bottom: .5rem;
}
.legal-page .updated {
  color: var(--c-text-light);
  font-size: .9rem;
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}
.legal-page p, .legal-page li {
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .features { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .badges-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-row { grid-template-columns: 1fr; }
  .reviews-img img { max-width: 320px; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .nav { display: none; }
  .cta-strip__inner { flex-direction: column; text-align: center; gap: 1rem; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .affiliations { padding: 3rem 0; }
  .hero { padding: 2.5rem 0 3.5rem; }
  .features, .coverage-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .badge-card { padding: 1.25rem .75rem 1rem; min-height: 120px; }
  .badge-card img { max-height: 40px; }
  .badge-card figcaption { font-size: .75rem; }
  .topbar__msg { display: none; }
  .topbar__inner { justify-content: center; }
  .header__cta { padding: .65rem 1rem; font-size: .85rem; }
  .header__call { padding: .55rem .85rem; }
  .header__call-icon { width: 30px; height: 30px; }
  .header__call-icon svg { width: 14px; height: 14px; }
  .header__call-text small { font-size: .7rem; }
  .header__call-text strong { font-size: .95rem; }
  .lead-card { padding: 1.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .cta-strip__phone-num { font-size: 1.4rem; }
  .sale-bar__text { font-size: .9rem; }
  .sale-bar__icon { width: 22px; height: 22px; }
  .hero { min-height: 460px; }
  .hero__grid { padding-top: 240px; }
  .hero__badges { top: 12px; right: 12px; max-width: 280px; }
  .hero__badges-img { max-width: 190px; }
  .hero__badges-2026 { height: 80px; margin-left: -20px; }
  .hero .lead-form__step[data-step="1"] { grid-template-columns: 1fr; }
  .hero .lead-card { padding: 1.25rem 1.25rem 1.5rem; margin-left: -16px; margin-right: -16px; }
  .hero__copy { padding: 1.25rem 1.25rem .75rem; margin-left: -16px; margin-right: -16px; }
  .hero__title { font-size: 1.3rem; }
}

/* ---------- Entry popup modal ---------- */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s ease;
}
.exit-popup.is-open { opacity: 1; }
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 32, 62, .65);
  backdrop-filter: blur(2px);
}
.exit-popup__wrap {
  position: relative;
  width: 100%;
  max-width: 880px;
  background: var(--c-navy-deep);
  background-image:
    radial-gradient(circle at 90% 50%, rgba(77, 163, 255, .15), transparent 60%);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0, .35);
  transform: scale(.96);
  transition: transform .35s ease;
}
.exit-popup.is-open .exit-popup__wrap { transform: scale(1); }
.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255, .85);
  cursor: pointer;
  padding: 4px;
  z-index: 5;
}
.exit-popup__close svg { width: 30px; height: 30px; }
.exit-popup__close:hover { color: #fff; transform: scale(1.05); }

.exit-popup__content {
  padding: 2.5rem 2rem 2rem;
  max-width: 540px;
}
.exit-popup__eyebrow {
  font-size: 1.05rem;
  color: rgba(255,255,255, .9);
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.exit-popup__offer {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: #fff;
}
.exit-popup__amount {
  background: #4DA3FF;
  color: var(--c-navy-deep);
  padding: 0 .55rem;
  border-radius: 6px;
  font-weight: 800;
}
.exit-popup__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.exit-popup__perks li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
}
.exit-popup__perks svg { width: 26px; height: 26px; flex-shrink: 0; }

.exit-popup__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
}
.exit-popup__field {
  position: relative;
}
.exit-popup__field input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  font-size: 1rem;
  border: 0;
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--c-text);
  font-family: inherit;
}
.exit-popup__field input.is-error {
  outline: 2px solid var(--c-error);
}
.exit-popup__field input:focus {
  outline: 2px solid #4DA3FF;
}
.exit-popup__field-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-light);
  pointer-events: none;
}
.exit-popup__field-icon svg { width: 20px; height: 20px; }
.exit-popup__error {
  display: none;
  position: absolute;
  bottom: -20px;
  left: 4px;
  font-size: .8rem;
  color: #ff4444;
  font-weight: 500;
}
.exit-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 1.75rem;
  background: #4DA3FF;
  color: var(--c-navy-deep);
  border: 0;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
  font-family: inherit;
}
.exit-popup__btn:hover { background: #fff; }
.exit-popup__btn svg { width: 18px; height: 18px; }

.exit-popup__img {
  margin: 0;
  align-self: end;
  display: flex;
}
.exit-popup__img img {
  max-height: 460px;
  width: auto;
  display: block;
}

@media (max-width: 760px) {
  .exit-popup__wrap { grid-template-columns: 1fr; }
  .exit-popup__content { padding: 2.25rem 1.5rem 1.5rem; max-width: none; }
  .exit-popup__img { display: none; }
  .exit-popup__form { grid-template-columns: 1fr; }
  .exit-popup__offer { font-size: 1.6rem; }
}

/* ---------- Education section ---------- */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.edu-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.edu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #1F6AC7;
}
.edu-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(31, 106, 199, .1);
  color: #1F6AC7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.edu-card__icon svg { width: 30px; height: 30px; }
.edu-card h3 {
  font-size: 1.25rem;
  margin-bottom: .75rem;
  color: var(--c-navy-deep);
}
.edu-card p { font-size: .95rem; margin: 0; }

/* ---------- Nationwide section ---------- */
.nationwide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.nationwide__left h2 { margin-bottom: 1rem; }
.nationwide__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: .65rem;
}
.nationwide__list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 500;
  color: var(--c-text);
}
.check-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-success);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
}
.nationwide__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.us-stat {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem 1rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.us-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.us-stat--accent {
  background: linear-gradient(135deg, #1F6AC7, #143b6b);
  color: #fff;
  border-color: #143b6b;
}
.us-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .35rem;
  color: var(--c-navy-deep);
}
.us-stat--accent .us-stat__num { color: #FFD740; }
.us-stat__label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-text-muted);
}
.us-stat--accent .us-stat__label { color: rgba(255,255,255, .85); }

/* ---------- Contractor benefits ---------- */
.contractor-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 4rem;
}
.contractor-benefit {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: transform .2s, box-shadow .2s;
}
.contractor-benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contractor-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 106, 199, .12), rgba(31, 106, 199, .04));
  color: #1F6AC7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contractor-benefit__icon svg { width: 24px; height: 24px; }
.contractor-benefit h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.contractor-benefit p { font-size: .92rem; margin: 0; }

/* ---------- Contractor form ---------- */
.contractor-form-wrap {
  background: #f4f8ff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
}
.contractor-form-wrap__intro h2 { font-size: 1.6rem; margin-bottom: .75rem; }
.contractor-form-wrap__intro p { margin-bottom: 1.5rem; }
.contractor-form-wrap__requirements {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .65rem;
}
.contractor-form-wrap__requirements li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
}

.contractor-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
}
.contractor-form h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1F6AC7;
  margin: 1.5rem 0 .75rem;
  font-family: var(--font-sans);
  font-weight: 700;
}
.contractor-form h3:first-child { margin-top: 0; }
.contractor-form select,
.contractor-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-size: 1rem;
  border: 1.5px solid var(--c-border-dark);
  border-radius: var(--r-sm);
  background: #fff;
  font-family: inherit;
  resize: vertical;
}
.contractor-form select:focus,
.contractor-form textarea:focus {
  outline: none;
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(11, 46, 89, .12);
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem 1rem;
  padding: 1rem;
  background: #f4f8ff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
}
.trades-grid.field--error { border-color: var(--c-error); }
.trades-grid label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  cursor: pointer;
}
.trades-grid input { accent-color: #1F6AC7; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .75rem;
  background: #f4f8ff;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: .92rem;
  cursor: pointer;
}
.checkbox-field.field--error {
  border-color: var(--c-error);
  background: rgba(239, 68, 68, .05);
}
.checkbox-field input {
  margin-top: 2px;
  accent-color: #1F6AC7;
  flex-shrink: 0;
}

.contractor-form__submit {
  margin-top: 1.5rem;
}

.contractor-form__success {
  text-align: center;
  padding: 2rem;
}
.contractor-form__success svg {
  width: 72px;
  height: 72px;
  color: var(--c-success);
  margin: 0 auto 1rem;
}
.contractor-form__success h3 {
  color: var(--c-navy-deep);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.5rem;
  font-family: var(--font-display);
  margin-bottom: .5rem;
}

@media (max-width: 960px) {
  .edu-grid, .contractor-benefits { grid-template-columns: 1fr 1fr; }
  .nationwide { grid-template-columns: 1fr; }
  .contractor-form-wrap { grid-template-columns: 1fr; padding: 1.5rem; }
  .trades-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .edu-grid, .contractor-benefits { grid-template-columns: 1fr; }
  .nationwide__right { grid-template-columns: 1fr 1fr; }
  .us-stat { padding: 1.25rem .75rem; }
  .us-stat__num { font-size: 1.85rem; }
  .trades-grid { grid-template-columns: 1fr; }
  .contractor-form { padding: 1.25rem; }
}
