/*
Theme Name: Express Final Expense v1.1.9
Theme URI: https://expressfinalexpense.com
Author: Express Final Expense
Description: Premium, mobile-first Express Final Expense website and quote experience.
Version: 1.1.9
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: express-final-expense
*/

:root {
  --express-navy: #071c3c;
  --express-navy-2: #0b2b58;
  --express-blue: #0b5fae;
  --express-blue-light: #e9f4ff;
  --express-orange: #f58220;
  --express-orange-dark: #d96306;
  --express-cream: #fff8f1;
  --express-white: #ffffff;
  --express-ink: #11223b;
  --express-muted: #5b6980;
  --express-line: #dfe7f1;
  --express-success: #137a57;
  --express-danger: #b42318;
  --express-shadow: 0 24px 60px rgba(7, 28, 60, 0.14);
  --express-shadow-soft: 0 12px 30px rgba(7, 28, 60, 0.09);
  --express-radius: 26px;
  --express-radius-small: 16px;
  --express-max: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--express-ink);
  background: var(--express-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.express-menu-open { overflow: hidden; }

a { color: var(--express-blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--express-orange-dark); }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  z-index: 100000;
  color: var(--express-navy);
  background: var(--express-white);
  border-radius: 8px;
}

.express-shell { width: min(calc(100% - 40px), var(--express-max)); margin-inline: auto; }
.express-section { padding: 92px 0; }
.express-section--soft { background: #f5f9fd; }
.express-section--cream { background: var(--express-cream); }
.express-section--navy { color: var(--express-white); background: var(--express-navy); }

.express-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--express-orange-dark);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.express-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--express-orange);
  border-radius: 999px;
}

.express-heading {
  max-width: 760px;
  margin: 0;
  color: var(--express-navy);
  font-size: clamp(2.1rem, 5vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.express-heading--center { margin-inline: auto; text-align: center; }
.express-heading--light { color: var(--express-white); }

.express-lede {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--express-muted);
  font-size: clamp(1.05rem, 2vw, 1.23rem);
}

.express-lede--center { margin-inline: auto; text-align: center; }
.express-lede--light { color: rgba(255, 255, 255, 0.76); }

.express-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  color: var(--express-white);
  background: linear-gradient(135deg, var(--express-orange), #ff9a3e);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(245, 130, 32, 0.28);
  cursor: pointer;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.express-button:hover,
.express-button:focus-visible {
  color: var(--express-white);
  background: linear-gradient(135deg, var(--express-orange-dark), var(--express-orange));
  box-shadow: 0 16px 28px rgba(245, 130, 32, 0.33);
  transform: translateY(-2px);
}

.express-button:focus-visible,
.express-choice:focus-visible,
.express-input:focus-visible,
.express-select:focus-visible,
.express-menu-toggle:focus-visible {
  outline: 3px solid rgba(245, 130, 32, 0.35);
  outline-offset: 3px;
}

.express-button--navy {
  background: linear-gradient(135deg, var(--express-navy-2), var(--express-blue));
  box-shadow: 0 12px 24px rgba(11, 43, 88, 0.22);
}

.express-button--navy:hover,
.express-button--navy:focus-visible {
  background: linear-gradient(135deg, var(--express-navy), var(--express-navy-2));
}

.express-button--ghost {
  color: var(--express-navy);
  background: var(--express-white);
  border: 1px solid var(--express-line);
  box-shadow: none;
}

.express-button--ghost:hover,
.express-button--ghost:focus-visible {
  color: var(--express-navy);
  background: var(--express-blue-light);
  box-shadow: none;
}

.express-button--wide { width: 100%; }
.express-button[disabled] { opacity: 0.58; cursor: wait; transform: none; }

/* Header */
.express-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 231, 241, 0.84);
  backdrop-filter: blur(18px);
}

.express-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.express-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--express-navy);
  text-decoration: none;
}

.express-brand:hover { color: var(--express-navy); }
.express-brand img { max-width: 230px; max-height: 52px; object-fit: contain; }
.express-brand--logo {
  position: relative;
  width: 190px;
  height: 88px;
  overflow: hidden;
  flex: 0 0 190px;
}

.express-brand--logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 300px;
  height: 200px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo-link img { width: auto; max-width: 230px; max-height: 52px; object-fit: contain; }

.express-brand__badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--express-white);
  background: var(--express-navy);
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.express-brand__copy { display: grid; line-height: 1; }
.express-brand__copy strong { font-size: 1.03rem; letter-spacing: 0.08em; }
.express-brand__copy span { margin-top: 6px; color: var(--express-orange-dark); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.15em; }

.express-nav { display: flex; align-items: center; gap: 28px; }
.express-nav a { color: var(--express-navy); font-size: 0.94rem; font-weight: 720; text-decoration: none; }
.express-nav a:hover { color: var(--express-orange-dark); }
.express-nav .express-button { color: var(--express-white); }

.express-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--express-navy);
  background: var(--express-white);
  border: 1px solid var(--express-line);
  border-radius: 13px;
  cursor: pointer;
  font-size: 1.35rem;
}

.express-header .express-shell {
  width: min(calc(100% - 56px), 1440px);
}

.express-step h2:focus {
  outline: none;
}

/* Hero */
.express-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  color: var(--express-white);
  background:
    radial-gradient(circle at 85% 15%, rgba(245, 130, 32, 0.22), transparent 28%),
    radial-gradient(circle at 65% 90%, rgba(45, 141, 224, 0.22), transparent 30%),
    linear-gradient(135deg, #061831 0%, #0a2b58 58%, #0c427b 100%);
}

.express-hero::before,
.express-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.express-hero::before { top: -180px; right: -110px; width: 520px; height: 520px; }
.express-hero::after { right: 250px; bottom: -360px; width: 650px; height: 650px; }

.express-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.express-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  color: #ffe1c3;
  background: rgba(245, 130, 32, 0.12);
  border: 1px solid rgba(245, 130, 32, 0.28);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.express-hero h1 {
  max-width: 760px;
  margin: 21px 0 20px;
  color: var(--express-white);
  font-size: clamp(2.8rem, 6.2vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.express-hero h1 em { color: var(--express-orange); font-style: normal; }

.express-hero__copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1.07rem, 2vw, 1.25rem);
}

.express-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.express-hero__actions .express-button--ghost { color: var(--express-white); background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); }

.express-hero__microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  list-style: none;
}

.express-hero__microcopy li::before { content: "✓"; margin-right: 7px; color: var(--express-orange); font-weight: 900; }

.express-hero-card {
  position: relative;
  padding: 31px;
  color: var(--express-ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
}

.express-hero-card::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 28px;
  width: 72px;
  height: 10px;
  background: var(--express-orange);
  border-radius: 999px 999px 0 0;
}

.express-hero-card__label { color: var(--express-orange-dark); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.express-hero-card h2 { margin: 9px 0 10px; color: var(--express-navy); font-size: 1.85rem; line-height: 1.1; letter-spacing: -0.035em; }
.express-hero-card > p { margin: 0; color: var(--express-muted); font-size: 0.95rem; }

.express-hero-card__list { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.express-hero-card__list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.94rem; font-weight: 680; }
.express-hero-card__list li span { display: grid; flex: 0 0 25px; width: 25px; height: 25px; place-items: center; color: var(--express-white); background: var(--express-success); border-radius: 50%; font-size: 0.75rem; }

/* Trust strip */
.express-trust-strip { border-bottom: 1px solid var(--express-line); background: var(--express-white); }
.express-trust-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.express-trust-item { display: flex; min-height: 92px; align-items: center; justify-content: center; gap: 12px; padding: 20px; color: var(--express-navy); font-size: 0.91rem; font-weight: 790; text-align: center; }
.express-trust-item + .express-trust-item { border-left: 1px solid var(--express-line); }
.express-trust-item b { display: grid; width: 33px; height: 33px; place-items: center; color: var(--express-orange-dark); background: var(--express-cream); border-radius: 10px; }

/* Cards and grids */
.express-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.express-card {
  position: relative;
  overflow: hidden;
  padding: 31px;
  background: var(--express-white);
  border: 1px solid var(--express-line);
  border-radius: var(--express-radius);
  box-shadow: var(--express-shadow-soft);
}

.express-card::after { content: ""; position: absolute; top: 0; right: 0; width: 70px; height: 5px; background: var(--express-orange); border-radius: 0 0 0 999px; }
.express-card__number { display: grid; width: 49px; height: 49px; place-items: center; color: var(--express-white); background: var(--express-navy); border-radius: 15px; font-weight: 900; }
.express-card h3 { margin: 21px 0 10px; color: var(--express-navy); font-size: 1.35rem; line-height: 1.2; }
.express-card p { margin: 0; color: var(--express-muted); }

.express-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(42px, 8vw, 100px); }

.express-protection-panel {
  position: relative;
  min-height: 490px;
  padding: 38px;
  overflow: hidden;
  color: var(--express-white);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 130, 32, 0.28), transparent 29%),
    linear-gradient(145deg, var(--express-navy), #0d477e);
  border-radius: 32px;
  box-shadow: var(--express-shadow);
}

.express-protection-panel h3 { max-width: 460px; margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; letter-spacing: -0.045em; }
.express-protection-panel p { max-width: 480px; color: rgba(255, 255, 255, 0.75); }
.express-protection-panel__quote { position: absolute; right: 34px; bottom: 34px; left: 34px; padding: 24px; color: var(--express-ink); background: rgba(255, 255, 255, 0.95); border-radius: 20px; }
.express-protection-panel__quote strong { display: block; color: var(--express-navy); font-size: 1.12rem; }
.express-protection-panel__quote span { display: block; margin-top: 5px; color: var(--express-muted); font-size: 0.86rem; }

.express-check-list { display: grid; gap: 16px; margin: 30px 0 0; padding: 0; list-style: none; }
.express-check-list li { display: flex; align-items: flex-start; gap: 13px; }
.express-check-list li::before { content: "✓"; display: grid; flex: 0 0 28px; width: 28px; height: 28px; place-items: center; color: var(--express-white); background: var(--express-orange); border-radius: 50%; font-size: 0.8rem; font-weight: 900; }
.express-check-list strong { display: block; color: var(--express-navy); }
.express-check-list span { display: block; color: var(--express-muted); font-size: 0.94rem; }

/* Needs */
.express-needs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 28px; }
.express-need { padding: 18px 20px; background: var(--express-white); border: 1px solid var(--express-line); border-radius: 16px; font-size: 0.94rem; font-weight: 760; }
.express-need::before { content: "•"; margin-right: 8px; color: var(--express-orange); font-size: 1.35rem; line-height: 0; }

/* FAQ */
.express-faq { max-width: 850px; margin: 42px auto 0; }
.express-faq details { border-bottom: 1px solid var(--express-line); }
.express-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: var(--express-navy); cursor: pointer; font-weight: 810; list-style: none; }
.express-faq summary::-webkit-details-marker { display: none; }
.express-faq summary::after { content: "+"; display: grid; flex: 0 0 32px; width: 32px; height: 32px; place-items: center; color: var(--express-orange-dark); background: var(--express-cream); border-radius: 50%; font-size: 1.2rem; }
.express-faq details[open] summary::after { content: "−"; }
.express-faq details p { margin: -7px 50px 24px 0; color: var(--express-muted); }

/* CTA */
.express-cta { position: relative; overflow: hidden; padding: 60px; color: var(--express-white); background: linear-gradient(135deg, var(--express-navy), var(--express-blue)); border-radius: 34px; box-shadow: var(--express-shadow); }
.express-cta::after { content: ""; position: absolute; top: -120px; right: -90px; width: 350px; height: 350px; border: 60px solid rgba(245, 130, 32, 0.13); border-radius: 50%; }
.express-cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.express-cta h2 { max-width: 650px; margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.04; letter-spacing: -0.045em; }
.express-cta p { max-width: 620px; margin: 14px 0 0; color: rgba(255, 255, 255, 0.73); }

/* Funnel */
.express-funnel-page {
  --express-funnel-navy: #033d77;
  --express-funnel-blue: #054da7;
  --express-funnel-blue-soft: #eff7ff;
  --express-funnel-orange: #fcbb23;
  --express-funnel-orange-deep: #f4a500;
  --express-funnel-cream: #f8f0d9;
  --express-funnel-line: #cfddea;
  --express-funnel-muted: #617c9d;
  min-height: calc(100vh - 82px);
  padding: 44px 0 80px;
  background: linear-gradient(120deg, var(--express-funnel-blue-soft) 0%, #f7f9f5 52%, var(--express-funnel-cream) 100%);
}

.express-funnel-status { display: flex; max-width: 960px; align-items: center; gap: 16px; margin: 0 auto 25px; color: var(--express-funnel-muted); font-size: 0.82rem; font-weight: 760; }
.express-progress { flex: 1; height: 8px; overflow: hidden; background: #d9e4ee; border-radius: 999px; }
.express-progress__bar { width: 10%; height: 100%; background: linear-gradient(90deg, var(--express-funnel-orange), #ffd568); border-radius: inherit; transition: width 260ms ease; }

.express-funnel-card {
  display: grid;
  max-width: 960px;
  min-height: 590px;
  margin: 0 auto;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
  background: var(--express-white);
  border: 1px solid var(--express-funnel-line);
  border-radius: 31px;
  box-shadow: var(--express-shadow);
}

.express-funnel-aside { display: flex; flex-direction: column; justify-content: space-between; padding: 38px; color: var(--express-white); background: linear-gradient(155deg, var(--express-funnel-navy), var(--express-funnel-blue)); }
.express-funnel-aside__step { color: var(--express-funnel-orange); font-size: 0.75rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.express-funnel-aside h1 { margin: 13px 0 13px; color: var(--express-white); font-size: clamp(2rem, 4vw, 3.05rem); line-height: 1.03; letter-spacing: -0.045em; }
.express-funnel-aside p { margin: 0; color: rgba(255, 255, 255, 0.73); font-size: 0.95rem; }
.express-funnel-aside__trust { padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.69); font-size: 0.78rem; }

.express-funnel-main { display: flex; min-width: 0; flex-direction: column; padding: clamp(30px, 5vw, 54px); }
.express-step { display: none; flex: 1; animation: expressFade 220ms ease; }
.express-step.is-active { display: flex; flex-direction: column; }
@keyframes expressFade { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

.express-step__count { margin: 0 0 9px; color: var(--express-funnel-orange-deep); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.express-step h2 { margin: 0; color: var(--express-funnel-navy); font-size: clamp(1.75rem, 4vw, 2.45rem); line-height: 1.08; letter-spacing: -0.035em; }
.express-step__help { margin: 11px 0 0; color: var(--express-funnel-muted); font-size: 0.92rem; }

.express-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.express-choice-grid--single { grid-template-columns: 1fr; }
.express-choice {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  color: var(--express-funnel-navy);
  background: var(--express-white);
  border: 1px solid var(--express-funnel-line);
  border-radius: 16px;
  cursor: pointer;
  font-weight: 730;
  line-height: 1.25;
  text-align: left;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease, transform 150ms ease;
}

.express-choice:hover { border-color: #8bb9df; background: var(--express-funnel-blue-soft); transform: translateY(-1px); }
.express-choice.is-selected { color: var(--express-funnel-navy); background: #edf6ff; border-color: var(--express-funnel-blue); box-shadow: 0 0 0 3px rgba(5, 77, 167, 0.1); }
.express-choice__mark { display: grid; flex: 0 0 29px; width: 29px; height: 29px; place-items: center; color: var(--express-funnel-blue); background: #e3f0fb; border-radius: 9px; font-size: 0.79rem; font-weight: 900; }
.express-choice.is-selected .express-choice__mark { color: var(--express-white); background: var(--express-funnel-blue); }

.express-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; margin-top: 27px; }
.express-field { display: grid; gap: 7px; }
.express-field--full { grid-column: 1 / -1; }
.express-field label { color: var(--express-funnel-navy); font-size: 0.84rem; font-weight: 790; }
.express-input,
.express-select {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--express-ink);
  background: var(--express-white);
  border: 1px solid #cfdbea;
  border-radius: 13px;
  outline: none;
}

.express-input:focus,
.express-select:focus { border-color: var(--express-funnel-blue); box-shadow: 0 0 0 4px rgba(5, 77, 167, 0.1); }
.express-input[aria-invalid="true"], .express-select[aria-invalid="true"] { border-color: var(--express-danger); }

.express-dob { display: grid; grid-template-columns: 1fr 0.9fr 1.15fr; gap: 10px; margin-top: 28px; }
.express-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; color: var(--express-muted); font-size: 0.73rem; line-height: 1.45; }
.express-consent input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--express-funnel-blue); }
.express-consent a { color: var(--express-funnel-blue); }

.express-funnel-page .express-button {
  color: var(--express-funnel-navy);
  background: linear-gradient(135deg, var(--express-funnel-orange), #ffd568);
  box-shadow: 0 12px 28px rgba(252, 187, 35, 0.28);
}

.express-funnel-page .express-button:hover {
  color: var(--express-funnel-navy);
  box-shadow: 0 16px 34px rgba(252, 187, 35, 0.34);
}

.express-funnel-actions { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 32px; }
.express-back { min-height: 45px; padding: 10px 5px; color: var(--express-muted); background: transparent; border: 0; cursor: pointer; font-size: 0.86rem; font-weight: 760; }
.express-back:hover { color: var(--express-navy); }
.express-back[hidden] { display: block; visibility: hidden; }

.express-error { display: none; margin: 18px 0 0; padding: 12px 14px; color: var(--express-danger); background: #fff1f0; border: 1px solid #ffd0cc; border-radius: 12px; font-size: 0.84rem; }
.express-error.is-visible { display: block; }

.express-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.express-success { display: none; max-width: 720px; margin: 0 auto; padding: clamp(34px, 7vw, 70px); text-align: center; background: var(--express-white); border: 1px solid var(--express-line); border-radius: 31px; box-shadow: var(--express-shadow); }
.express-success.is-visible { display: block; animation: expressFade 220ms ease; }
.express-success__check { display: grid; width: 72px; height: 72px; margin: 0 auto 22px; place-items: center; color: var(--express-white); background: var(--express-success); border-radius: 50%; font-size: 2rem; font-weight: 900; }
.express-success h1 { margin: 0; color: var(--express-navy); font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.04em; }
.express-success p { max-width: 560px; margin: 16px auto 0; color: var(--express-muted); }
.express-success .express-button { margin-top: 26px; }

/* Booking and legal */
.express-page-hero { padding: 70px 0 45px; color: var(--express-white); background: linear-gradient(135deg, var(--express-navy), #0e4b86); text-align: center; }
.express-page-hero h1 { margin: 0; color: var(--express-white); font-size: clamp(2.35rem, 5vw, 4.4rem); line-height: 1.02; letter-spacing: -0.045em; }
.express-page-hero p { max-width: 700px; margin: 18px auto 0; color: rgba(255, 255, 255, 0.76); }
.express-content { width: min(calc(100% - 40px), 820px); margin-inline: auto; padding: 65px 0 90px; }
.express-content h2, .express-content h3 { color: var(--express-navy); line-height: 1.2; }
.express-content h2 { margin-top: 42px; }
.express-content p, .express-content li { color: var(--express-muted); }

.express-booking-card { max-width: 930px; margin: -26px auto 0; padding: 26px; background: var(--express-white); border: 1px solid var(--express-line); border-radius: 28px; box-shadow: var(--express-shadow); }
.express-booking-frame { width: 100%; min-height: 720px; border: 0; border-radius: 18px; }
.express-booking-empty { padding: 55px 25px; text-align: center; }

/* Footer */
.express-footer { color: rgba(255, 255, 255, 0.72); background: #041226; }
.express-footer__top { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 50px; padding: 66px 0 40px; }
.express-footer .express-brand { color: var(--express-white); }
.express-footer__about { max-width: 470px; margin: 18px 0 0; font-size: 0.9rem; }
.express-footer h3 { margin: 0 0 16px; color: var(--express-white); font-size: 0.93rem; }
.express-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.express-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.express-footer a:hover { color: var(--express-orange); }
.express-footer__bottom { display: flex; justify-content: space-between; gap: 25px; padding: 24px 0 32px; border-top: 1px solid rgba(255, 255, 255, 0.11); font-size: 0.74rem; }
.express-footer__disclosure { max-width: 810px; }

.express-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2000;
  display: flex;
  width: min(calc(100% - 44px), 980px);
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-inline: auto;
  padding: 20px 22px;
  color: var(--express-ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--express-line);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(7, 28, 60, 0.24);
}
.express-cookie-banner[hidden] { display: none; }
.express-cookie-banner strong { color: var(--express-navy); }
.express-cookie-banner p { max-width: 650px; margin: 4px 0 0; color: var(--express-muted); font-size: 0.78rem; line-height: 1.45; }
.express-cookie-banner__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.express-cookie-banner .express-button { min-height: 44px; padding: 10px 17px; font-size: 0.8rem; }
.express-cookie-secondary { min-height: 44px; padding: 10px 15px; color: var(--express-navy); background: var(--express-white); border: 1px solid var(--express-line); border-radius: 999px; cursor: pointer; font-size: 0.8rem; font-weight: 780; }

@media (max-width: 960px) {
  .express-nav { display: none; position: fixed; top: 82px; right: 0; bottom: 0; left: 0; align-content: start; flex-direction: column; align-items: stretch; gap: 7px; padding: 28px 20px; background: var(--express-white); }
  .express-menu-open .express-nav { display: flex; }
  .express-nav a { padding: 12px; text-align: center; }
  .express-menu-toggle { display: grid; }
  .express-hero__grid, .express-split { grid-template-columns: 1fr; }
  .express-hero__copy { text-align: center; }
  .express-hero__copy > p { margin-inline: auto; }
  .express-hero__actions, .express-hero__microcopy { justify-content: center; }
  .express-hero-card { max-width: 610px; margin-inline: auto; }
  .express-card-grid { grid-template-columns: 1fr; }
  .express-card { display: grid; grid-template-columns: auto 1fr; column-gap: 20px; }
  .express-card h3 { margin-top: 2px; }
  .express-card p { grid-column: 2; }
  .express-funnel-card { grid-template-columns: 1fr; }
  .express-funnel-aside { min-height: auto; padding: 27px 30px; }
  .express-funnel-aside h1 { font-size: 2rem; }
  .express-funnel-aside__trust { margin-top: 22px; padding-top: 18px; }
  .express-cta__inner { display: block; text-align: center; }
  .express-cta .express-button { margin-top: 28px; }
  .express-footer__top { grid-template-columns: 1fr 1fr; }
  .express-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 660px) {
  body { font-size: 16px; }
  .express-shell { width: min(calc(100% - 28px), var(--express-max)); }
  .express-section { padding: 68px 0; }
  .express-header__inner { min-height: 72px; }
  .express-nav { top: 72px; }
  .express-brand img { max-width: 190px; }
  .express-brand__copy strong { font-size: 0.91rem; }
  .express-brand__copy span { font-size: 0.59rem; }
  .express-hero { padding: 64px 0 52px; }
  .express-hero h1 { font-size: clamp(2.65rem, 13vw, 4.3rem); }
  .express-hero__grid { gap: 42px; }
  .express-hero__actions { display: grid; }
  .express-hero__actions .express-button { width: 100%; }
  .express-hero__microcopy { display: grid; gap: 7px; }
  .express-hero-card { padding: 25px 22px; border-radius: 24px; }
  .express-trust-strip__inner { grid-template-columns: 1fr; }
  .express-trust-item { min-height: 68px; justify-content: flex-start; }
  .express-trust-item + .express-trust-item { border-top: 1px solid var(--express-line); border-left: 0; }
  .express-card { display: block; padding: 25px; }
  .express-card h3 { margin-top: 17px; }
  .express-card p { grid-column: auto; }
  .express-needs { grid-template-columns: 1fr; }
  .express-protection-panel { min-height: 520px; padding: 28px; }
  .express-protection-panel__quote { right: 22px; bottom: 22px; left: 22px; }
  .express-cta { padding: 42px 24px; border-radius: 26px; }
  .express-funnel-page { min-height: calc(100vh - 72px); padding: 24px 0 55px; }
  .express-funnel-status { gap: 10px; font-size: 0.72rem; }
  .express-funnel-card { min-height: 650px; border-radius: 24px; }
  .express-funnel-aside { padding: 22px; }
  .express-funnel-aside h1 { margin: 8px 0; font-size: 1.62rem; }
  .express-funnel-aside__trust { display: none; }
  .express-funnel-main { padding: 28px 22px; }
  .express-choice-grid, .express-fields { grid-template-columns: 1fr; }
  .express-field--full { grid-column: auto; }
  .express-choice { min-height: 62px; }
  .express-dob { grid-template-columns: 1fr 0.85fr 1.1fr; gap: 7px; }
  .express-input, .express-select { padding-inline: 10px; }
  .express-funnel-actions { align-items: stretch; }
  .express-funnel-actions .express-button { flex: 1; }
  .express-booking-card { width: calc(100% - 28px); padding: 12px; }
  .express-booking-frame { min-height: 760px; }
  .express-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .express-footer__brand { grid-column: auto; }
  .express-footer__bottom { display: block; }
  .express-cookie-banner { display: grid; right: 14px; bottom: 14px; left: 14px; width: auto; padding: 18px; }
  .express-cookie-banner[hidden] { display: none; }
  .express-cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}


/* Call-first homepage option */
.express-contact-card {
  overflow: visible;
}
.express-live-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 19px 0 14px;
  color: var(--express-success);
  font-size: 0.82rem;
  font-weight: 820;
}
.express-live-status > span {
  width: 10px;
  height: 10px;
  background: #20b77a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(32, 183, 122, 0.55);
  animation: expressLivePulse 1.8s ease-out infinite;
}
.express-call-option {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  overflow: hidden;
  color: var(--express-white);
  background: linear-gradient(135deg, var(--express-navy), var(--express-blue));
  border: 2px solid rgba(32, 183, 122, 0.88);
  border-radius: 19px;
  box-shadow: 0 0 0 0 rgba(32, 183, 122, 0.42), 0 16px 34px rgba(7, 28, 60, 0.22);
  text-align: center;
  text-decoration: none;
  animation: expressCallGlow 2.2s ease-in-out infinite;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.express-call-option::before {
  content: "";
  position: absolute;
  inset: -80% -30%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.18) 50%, transparent 58%);
  transform: translateX(-55%);
  animation: expressCallShine 3.2s ease-in-out infinite;
}
.express-call-option:hover,
.express-call-option:focus-visible {
  color: var(--express-white);
  box-shadow: 0 0 0 6px rgba(32, 183, 122, 0.18), 0 20px 40px rgba(7, 28, 60, 0.28);
  transform: translateY(-2px);
}
.express-call-option:focus-visible {
  outline: 3px solid rgba(32, 183, 122, 0.5);
  outline-offset: 3px;
}
.express-call-option small {
  color: #ffd8b4;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.express-call-option strong {
  color: var(--express-white);
  font-size: clamp(1.72rem, 4.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0.025em;
  text-shadow: 0 0 20px rgba(255,255,255,0.28);
}
.express-call-option em {
  color: rgba(255,255,255,0.76);
  font-size: 0.76rem;
  font-style: normal;
}
.express-choice-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 13px 0;
  color: var(--express-muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.express-choice-divider::before,
.express-choice-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--express-line);
}
@keyframes expressLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(32, 183, 122, 0.55); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(32, 183, 122, 0); }
}
@keyframes expressCallGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(32, 183, 122, 0.34), 0 16px 34px rgba(7, 28, 60, 0.22); }
  50% { box-shadow: 0 0 0 7px rgba(32, 183, 122, 0.14), 0 20px 40px rgba(7, 28, 60, 0.28); }
}
@keyframes expressCallShine {
  0%, 58% { transform: translateX(-55%); }
  78%, 100% { transform: translateX(55%); }
}
@media (max-width: 560px) {
  .express-call-option { padding: 17px 14px; }
  .express-call-option strong { font-size: 1.72rem; }
}


/* Call-first survey funnel */
.express-call-funnel-top {
  padding: 26px 0 8px;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}
.express-call-funnel-top__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: center;
  column-gap: 26px;
  width: min(100%, 900px);
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 26px;
  text-align: left;
}
.express-call-funnel-top__card .express-live-status {
  grid-column: 1;
  margin: 0 0 6px;
}
.express-call-funnel-top__card h1 {
  grid-column: 1;
  max-width: 520px;
  margin: 0 0 7px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}
.express-call-funnel-top__card > p {
  grid-column: 1;
  max-width: 540px;
  margin: 0;
  font-size: 0.94rem;
}
.express-call-funnel-top__card .express-call-option {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 100%;
  margin: 0;
  padding: 17px 13px;
}
.express-call-funnel-top__card .express-call-option strong {
  white-space: nowrap;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  letter-spacing: 0.01em;
  animation: expressNumberFlash 1.45s ease-in-out infinite;
}
.express-call-funnel-top__survey-intro {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
}
.express-call-funnel-top__survey-intro .express-eyebrow {
  justify-content: center;
}
.express-call-funnel-top__survey-intro h2 {
  margin: 7px 0 5px;
  color: var(--express-navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}
.express-call-funnel-top__survey-intro p {
  margin: 0;
  color: var(--express-muted);
  font-size: 0.92rem;
}
.express-call-funnel-top + .express-funnel-page {
  padding-top: 12px;
}
@keyframes expressNumberFlash {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(255,255,255,0.34);
  }
  50% {
    opacity: 0.72;
    text-shadow: 0 0 32px rgba(255,255,255,0.82), 0 0 18px rgba(245,130,32,0.72);
  }
}
@media (max-width: 720px) {
  .express-call-funnel-top {
    padding: 10px 0 3px;
  }
  .express-call-funnel-top__card {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 12px;
    text-align: center;
  }
  .express-call-funnel-top__card .express-live-status,
  .express-call-funnel-top__card h1,
  .express-call-funnel-top__card > p,
  .express-call-funnel-top__card .express-call-option {
    grid-column: 1;
  }
  .express-call-funnel-top__card .express-live-status {
    justify-content: center;
    margin-bottom: 2px;
    font-size: 0.72rem;
  }
  .express-call-funnel-top__card h1 {
    margin-inline: auto;
    font-size: 1.3rem;
  }
  .express-call-funnel-top__card > p {
    margin: 0 auto 3px;
    font-size: 0.78rem;
  }
  .express-call-funnel-top__card .express-call-option {
    grid-row: auto;
    padding: 11px 7px;
  }
  .express-call-funnel-top__card .express-call-option strong {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
    letter-spacing: 0;
  }
  .express-call-funnel-top__card .express-call-option small,
  .express-call-funnel-top__card .express-call-option em {
    font-size: 0.68rem;
  }
  .express-call-funnel-top__survey-intro {
    margin-top: 12px;
  }
}

/* Express 2026 homepage hero — scoped to avoid changing the quote flow. */
.efe-2026-landing {
	--efe-navy: #061f43;
	--efe-navy-deep: #03172f;
	--efe-orange: #f36f0b;
	--efe-green: #72d51b;
	--efe-ink: #08234f;
	background: linear-gradient(180deg, var(--efe-navy) 0%, var(--efe-navy-deep) 100%);
	color: #fff;
	padding: 0 0 28px;
	overflow: hidden;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.efe-2026-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
	min-height: 478px;
	padding-top: 34px;
}

.efe-2026-copy {
	align-self: center;
	padding: 20px 44px 70px 0;
	position: relative;
	z-index: 2;
}

.efe-2026-badge {
	align-items: center;
	border: 1px solid rgba(255,255,255,.45);
	border-radius: 999px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	gap: 10px;
	letter-spacing: .07em;
	margin-bottom: 20px;
	padding: 9px 16px;
	text-transform: uppercase;
}

.efe-2026-badge span { color: var(--efe-green); font-size: 20px; line-height: 1; }

.efe-2026-copy h1 {
	color: #fff;
	font-size: clamp(42px, 4.25vw, 68px);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: 1.04;
	margin: 0;
	max-width: 760px;
}

.efe-2026-copy h1 span { color: var(--efe-orange); white-space: nowrap; }

.efe-2026-intro {
	color: #fff;
	font-size: clamp(19px, 1.55vw, 25px);
	line-height: 1.45;
	margin: 20px 0 22px;
	max-width: 740px;
}

.efe-2026-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.efe-2026-benefit {
	align-items: center;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 9px;
	line-height: 1.32;
}

.efe-2026-benefit b {
	align-items: center;
	border: 2px solid #fff;
	border-radius: 50%;
	color: var(--efe-green);
	display: inline-flex;
	flex: 0 0 42px;
	font-size: 24px;
	height: 42px;
	justify-content: center;
}

.efe-2026-photo {
	height: 100%;
	margin: 0 -24px 0 0;
	min-height: 478px;
	position: relative;
}

.efe-2026-photo::before {
	background: linear-gradient(90deg, var(--efe-navy) 0%, rgba(6,31,67,.52) 24%, transparent 56%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.efe-2026-photo img { height: 100%; object-fit: cover; object-position: 52% center; width: 100%; }

.efe-2026-start {
	background: linear-gradient(180deg, #07346c 0%, #042858 100%);
	border-radius: 20px;
	box-shadow: 0 18px 45px rgba(0,0,0,.28);
	margin-top: -48px;
	padding: 15px 22px 0;
	position: relative;
	z-index: 4;
}

.efe-2026-choice-title {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: clamp(22px, 2vw, 31px);
	font-weight: 900;
	gap: 18px;
	justify-content: center;
	line-height: 1.2;
	margin: 0 0 14px;
	text-align: center;
}

.efe-2026-choice-title::before,
.efe-2026-choice-title::after { background: rgba(255,255,255,.65); content: ""; flex: 1; height: 1px; min-width: 30px; }

.efe-2026-choices { display: grid; grid-template-columns: 1fr 58px 1fr; align-items: stretch; }

.efe-2026-option {
	background: #fff;
	border-radius: 14px;
	color: var(--efe-ink);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 228px;
	padding: 22px 34px;
	text-align: center;
}

.efe-2026-option h3 { color: var(--efe-ink); font-size: clamp(28px, 2.5vw, 40px); line-height: 1.08; margin: 0 0 7px; }

.efe-2026-number {
	align-items: center;
	color: var(--efe-ink);
	display: flex;
	font-size: clamp(30px, 3vw, 49px);
	gap: 12px;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.efe-2026-number > span { align-items: center; background: var(--efe-ink); border-radius: 50%; color: #fff; display: inline-flex; flex: 0 0 48px; font-size: 25px; height: 48px; justify-content: center; }
.efe-2026-hours { color: #208113; font-size: 16px; font-weight: 900; margin: 8px 0 12px; }

.efe-2026-call-button,
.efe-2026-review-button {
	align-items: center;
	border-radius: 10px;
	display: flex;
	font-size: 22px;
	font-weight: 900;
	justify-content: center;
	min-height: 56px;
	text-decoration: none;
}

.efe-2026-call-button { background: var(--efe-ink); border: 3px solid var(--efe-green); color: #fff; gap: 14px; overflow: hidden; position: relative; }
.efe-2026-call-button:hover,
.efe-2026-call-button:focus { color: #fff; filter: brightness(1.12); }

.efe-2026-phone-pulse { align-items: center; border: 1px solid var(--efe-green); border-radius: 50%; color: #fff; display: inline-flex; flex: 0 0 42px; font-size: 23px; height: 42px; justify-content: center; line-height: 1; position: relative; }
.efe-2026-phone-pulse::before,
.efe-2026-phone-pulse::after { border: 1px solid var(--efe-green); border-radius: 50%; content: ""; inset: -7px; opacity: .75; position: absolute; }
.efe-2026-phone-pulse::after { animation: efe-phone-pulse 1.7s ease-out infinite; inset: -14px; }

@keyframes efe-phone-pulse { 0% { opacity: .85; transform: scale(.72); } 70%,100% { opacity: 0; transform: scale(1.22); } }

.efe-2026-or {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	color: var(--efe-ink);
	display: flex;
	font-size: 18px;
	font-weight: 900;
	height: 58px;
	justify-content: center;
	margin: auto;
	position: relative;
	width: 58px;
	z-index: 2;
}

.efe-2026-or::before { background: rgba(255,255,255,.85); content: ""; height: 188px; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); width: 2px; z-index: -1; }

.efe-2026-option-label { color: var(--efe-orange); font-size: 16px; font-weight: 900; letter-spacing: .03em; margin: 0 0 6px; text-transform: uppercase; }
.efe-2026-review-note { font-size: 18px; margin: 9px 0 18px; text-align: center; }
.efe-2026-review-button { background: linear-gradient(90deg, #f36f0b, #ff8512); border-radius: 999px; color: #fff; gap: 18px; }
.efe-2026-review-button:hover,
.efe-2026-review-button:focus { color: #fff; filter: brightness(1.06); }

.efe-2026-trust {
	align-items: center;
	display: flex;
	font-size: 16px;
	font-weight: 800;
	gap: 34px;
	justify-content: center;
	padding: 14px 10px;
}

.efe-2026-trust div { align-items: center; display: flex; gap: 10px; }
.efe-2026-trust div::before { background: var(--efe-green); border-radius: 50%; content: ""; flex: 0 0 10px; height: 10px; width: 10px; }

@media (max-width: 980px) {
	.efe-2026-hero { grid-template-columns: 1fr; padding-top: 24px; }
	.efe-2026-copy { padding: 20px 0 30px; }
	.efe-2026-photo { height: clamp(260px, 52vw, 440px); margin: 0 -24px; min-height: 0; }
	.efe-2026-photo::before { background: linear-gradient(180deg, var(--efe-navy) 0%, rgba(6,31,67,.1) 25%, transparent 55%); }
	.efe-2026-photo img { object-position: center 42%; }
	.efe-2026-start { margin-top: 0; }
	.efe-2026-choices { grid-template-columns: 1fr; gap: 14px; }
	.efe-2026-or { height: 46px; margin: -7px auto; width: 46px; }
	.efe-2026-or::before { display: none; }
	.efe-2026-option { min-height: 0; padding: 24px; }
	.efe-2026-choice-title::before,
	.efe-2026-choice-title::after { display: none; }
	.efe-2026-trust { flex-wrap: wrap; gap: 12px 26px; }
}

@media (max-width: 640px) {
	.efe-2026-landing { padding-bottom: 18px; }
	.efe-2026-hero { padding-left: 18px; padding-right: 18px; }
	.efe-2026-copy h1 { font-size: clamp(37px, 11.4vw, 51px); }
	.efe-2026-copy h1 span { white-space: normal; }
	.efe-2026-intro { font-size: 18px; }
	.efe-2026-benefits { grid-template-columns: 1fr; gap: 10px; }
	.efe-2026-benefit { font-size: 15px; }
	.efe-2026-benefit b { flex-basis: 38px; height: 38px; }
	.efe-2026-photo { margin: 0 -18px; }
	.efe-2026-landing #review-options.efe-2026-start {
		border-radius: 14px;
		margin-left: auto !important;
		margin-right: auto !important;
		max-width: calc(100% - 28px);
		padding: 24px 14px 0;
		width: calc(100% - 28px);
	}
	.efe-2026-choice-title { font-size: 21px; line-height: 1.25; margin-bottom: 18px; padding: 0 2px; }
	.efe-2026-choices { width: 100%; }
	.efe-2026-option { border-radius: 12px; padding: 24px 18px; }
	.efe-2026-option h3 { font-size: 30px; }
	.efe-2026-number { font-size: clamp(31px, 10.2vw, 38px); gap: 0; }
	.efe-2026-call-button,
	.efe-2026-review-button { font-size: 18px; min-height: 58px; width: 100%; }
	.efe-2026-call-button { gap: 10px; }
	.efe-2026-phone-pulse { flex-basis: 38px; font-size: 20px; height: 38px; }
	.efe-2026-option--review h3 { font-size: 28px; }
	.efe-2026-review-note { font-size: 16px; line-height: 1.4; margin: 10px 0 17px; }
	.efe-2026-trust { align-items: flex-start; flex-direction: column; font-size: 15px; padding: 16px 5px; }
}

@media (prefers-reduced-motion: reduce) {
	.efe-2026-phone-pulse::after { animation: none; }
}

/* Express ZIP-first visual funnel */
.express-funnel-card--visual{overflow:hidden}
.express-funnel-aside--visual{padding:0;overflow:hidden}
.express-funnel-aside__media{position:relative;height:260px;overflow:hidden;background:#eef5fb}
.express-funnel-aside__media>img{width:100%;height:100%;object-fit:cover;object-position:center}
.express-final-icons{position:absolute;right:16px;bottom:16px;display:flex;align-items:center;gap:8px;padding:9px 11px;color:#0b5fae;background:rgba(255,255,255,.94);border:1px solid rgba(223,231,241,.95);border-radius:14px;box-shadow:0 8px 20px rgba(7,28,60,.13)}
.express-final-icons svg:first-child{width:54px;height:32px}
.express-final-icons svg:last-child{width:31px;height:38px;color:#c9860a}
.express-funnel-aside__content{padding:28px 30px 20px}
.express-funnel-aside--visual .express-funnel-aside__trust{padding:0 30px 28px}
.express-input--zip,.express-input--age{max-width:280px;font-size:1.35rem;font-weight:750;letter-spacing:.03em}
.express-found{text-align:center;padding:15px 0 10px}
.express-found__check{display:grid;width:78px;height:78px;margin:0 auto 20px;place-items:center;color:#fff;background:#16865f;border-radius:50%;font-size:2.6rem;font-weight:900;box-shadow:0 12px 28px rgba(19,122,87,.22)}
.express-found h2{max-width:600px;margin-inline:auto}
.express-found p{margin:15px 0 0;color:var(--express-blue);font-size:1.35rem;font-weight:850}
.express-choice__urn{position:relative;color:#c9860a;background:transparent}
.express-choice__urn:before{content:"";position:absolute;left:12px;top:8px;width:18px;height:4px;background:currentColor;border-radius:4px}
.express-choice__urn:after{content:"";position:absolute;left:14px;top:14px;width:14px;height:18px;background:currentColor;border-radius:4px 4px 7px 7px}
.express-success__route{display:grid;gap:10px;max-width:520px;margin:22px auto}
.express-success__route span{display:block;padding:13px 16px;color:var(--express-navy);background:#eef7ff;border:1px solid #d8e9f8;border-radius:12px;font-weight:750;text-align:left}
.express-age-exit .express-success__check--soft{color:var(--express-blue);background:#eaf4fd}
@media (max-width:800px){
 .express-funnel-card--visual{display:block}
 .express-funnel-aside--visual{display:block}
 .express-funnel-aside__media{height:180px}
 .express-funnel-aside__content{padding:20px 22px 12px}
 .express-funnel-aside--visual .express-funnel-aside__trust{padding:0 22px 20px}
 .express-funnel-aside__content h1{font-size:1.55rem}
 .express-funnel-main{padding-top:26px}
}


/* Express Final Expense storyboard funnel — approved 4-stage visual */
.page-id-7 .express-header,.page-id-7 .express-footer{display:none}
.page-id-7 #main-content{min-height:100vh}
.page-id-7 .express-funnel-page--visual{min-height:100vh;padding:34px 22px 48px;background:linear-gradient(135deg,#edf7ff 0%,#dceffc 100%)}
.page-id-7 .express-shell{max-width:1040px;margin:0 auto}
.page-id-7 .express-funnel-status{display:none}
.page-id-7 .express-funnel-card--visual{display:grid;grid-template-columns:34% 66%;min-height:650px;border:1px solid #b9d4e8;border-radius:0;background:#fff;box-shadow:0 18px 42px rgba(13,57,96,.18)}
.page-id-7 .express-funnel-aside--visual{display:flex;flex-direction:column;background:#eef7fd;color:#153f70}
.page-id-7 .express-funnel-aside__media{height:320px;background:#dcecf8}
.page-id-7 .express-funnel-aside__media>img{object-position:center 42%}
.page-id-7 .express-final-icons{display:none}
.page-id-7 .express-funnel-aside__content{flex:1;padding:26px 28px 18px;background:linear-gradient(180deg,#eef7fd,#e4f2fb)}
.page-id-7 .express-funnel-aside__step{color:#0f5eaa;font-size:.82rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.page-id-7 .express-funnel-aside__content h1{margin:12px 0 14px;color:#173f70;font-family:Georgia,'Times New Roman',serif;font-size:2rem;line-height:1.08;letter-spacing:-.02em}
.page-id-7 .express-funnel-aside__content p{color:#274d76;font-family:Georgia,'Times New Roman',serif;font-size:1.08rem;line-height:1.38}
.page-id-7 .express-funnel-aside__content:after{content:'';display:block;width:38px;height:3px;margin-top:18px;background:#f9a21b}
.page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust{padding:18px 28px 24px;color:#365d84;background:#e4f2fb;border-top:0;font-size:.78rem;font-weight:700;line-height:1.45}
.page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust:before{content:'♢';display:inline-grid;width:30px;height:30px;margin-right:9px;place-items:center;color:#0e62b5;border:2px solid #0e62b5;border-radius:50%;font-size:1rem}
.page-id-7 .express-funnel-main{display:flex;min-width:0;padding:26px 58px 34px;flex-direction:column;background:#fff}
.page-id-7 .express-storyboard-brand{text-align:center}
.page-id-7 .express-storyboard-brand img{display:inline-block;width:152px;height:auto}
.page-id-7 .express-stage-dots{display:flex;align-items:center;justify-content:center;margin:12px auto 36px;width:min(420px,100%)}
.page-id-7 .express-stage-dots span{display:grid;width:28px;height:28px;place-items:center;color:#7798b8;background:#fff;border:2px solid #c7d9e8;border-radius:50%;font-size:.78rem;font-weight:900}
.page-id-7 .express-stage-dots i{height:2px;flex:1;background:#c7d9e8}
.page-id-7 .express-stage-dots span.is-complete,.page-id-7 .express-stage-dots span.is-current{color:#fff;background:#073f79;border-color:#073f79}
.page-id-7 .express-stage-dots i.is-complete{background:#073f79}
.page-id-7 .express-step.is-active{display:flex;flex:1;flex-direction:column;align-items:stretch;justify-content:flex-start;text-align:center}
.page-id-7 .express-step__count{margin:0 0 12px;color:#0f5eaa;font-size:.78rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.page-id-7 .express-step h2{max-width:600px;margin:0 auto 22px;color:#123e70;font-family:Georgia,'Times New Roman',serif;font-size:2.08rem;line-height:1.12;letter-spacing:-.025em}
.page-id-7 .express-step__help{margin:-8px auto 22px;color:#456887;font-size:.98rem}
.page-id-7 .express-choice-grid{gap:10px}
.page-id-7 .express-choice{min-height:74px;padding:14px 18px;color:#123e70;background:#fff;border:1px solid #b9d1e3;border-radius:8px;box-shadow:0 3px 7px rgba(19,63,108,.05);font-family:Georgia,'Times New Roman',serif;font-size:1rem;font-weight:750;text-align:left}
.page-id-7 .express-choice:hover,.page-id-7 .express-choice[aria-pressed=true]{color:#073f79;background:#edf7ff;border-color:#1976c9;box-shadow:0 0 0 2px rgba(25,118,201,.12)}
.page-id-7 .express-choice__mark{background:#e8f4fc;color:#0d64b2;border-radius:7px}
.page-id-7 .express-fields{justify-content:center}
.page-id-7 .express-field label{text-align:left}
.page-id-7 .express-input{border:1px solid #9fbfd8;border-radius:7px;box-shadow:0 2px 5px rgba(17,61,103,.06)}
.page-id-7 .express-input--zip,.page-id-7 .express-input--age{max-width:100%;min-height:64px;font-family:Georgia,'Times New Roman',serif;font-size:1.35rem}
.page-id-7 .express-found{padding:20px 0}
.page-id-7 .express-found__check{width:76px;height:76px;color:#0873d1;background:#dff0ff;box-shadow:none}
.page-id-7 .express-found h2{font-size:2.1rem}
.page-id-7 .express-found p{color:#0d64b2;font-family:Georgia,'Times New Roman',serif;font-size:1.25rem}
.page-id-7 .express-funnel-actions{display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:center;margin-top:auto;padding-top:28px}
.page-id-7 .express-button{justify-self:stretch;width:100%;min-height:58px;color:#fff;background:linear-gradient(90deg,#ff6a12,#ff7e16);border:0;border-radius:5px;box-shadow:0 8px 18px rgba(255,107,18,.2);font-family:Georgia,'Times New Roman',serif;font-size:1.08rem;font-weight:800}
.page-id-7 .express-button:hover,.page-id-7 .express-button:focus{color:#fff;filter:brightness(1.04)}
.page-id-7 .express-back{color:#496984;font-weight:800}
.page-id-7 .express-funnel-actions:has(.express-back[hidden]){grid-template-columns:1fr}
.page-id-7 .express-consent{text-align:left;font-size:.72rem;line-height:1.35}

@media(max-width:800px){
 .page-id-7 .express-funnel-page--visual{padding:16px 10px 28px}
 .page-id-7 .express-shell{max-width:410px}
 .page-id-7 .express-funnel-card--visual{display:block;min-height:0;border-radius:0}
 .page-id-7 .express-funnel-aside--visual{display:none}
 .page-id-7 .express-funnel-main{min-height:660px;padding:20px 18px 24px}
 .page-id-7 .express-storyboard-brand img{width:128px}
 .page-id-7 .express-stage-dots{margin:8px auto 30px}
 .page-id-7 .express-stage-dots span{width:25px;height:25px}
 .page-id-7 .express-step h2{font-size:1.6rem}
 .page-id-7 .express-choice-grid,.page-id-7 .express-choice-grid--single{grid-template-columns:1fr}
 .page-id-7 .express-choice{min-height:58px;padding:11px 13px;font-size:.92rem}
 .page-id-7 .express-funnel-actions{padding-top:20px}
 .page-id-7 .express-button{min-height:54px}
}


/* Seven-question funnel: matched step photography */
.page-id-7 .express-funnel-aside__media{height:250px;overflow:hidden;background:#dcecf7}
.page-id-7 .express-funnel-aside__media img{display:block;width:100%;height:100%;object-fit:cover;object-position:center}
.page-id-7 .express-funnel-aside__content{display:flex;flex:1;flex-direction:column;justify-content:center;padding:48px 34px 24px}
.page-id-7 .express-funnel-aside__content h1{font-size:2.15rem}
.page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust{padding:20px 34px 30px}
/* Final expense education below the six-question form */
.page-id-7 .express-fex-info{padding:56px 0 8px}
.page-id-7 .express-fex-info__inner{max-width:1040px;margin:0 auto;color:#173f70}
.page-id-7 .express-fex-info__intro{max-width:760px;margin:0 auto 30px;text-align:center}
.page-id-7 .express-fex-info__eyebrow{margin:0 0 8px;color:#0f5eaa;font-size:.78rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.page-id-7 .express-fex-info h2{margin:0 0 14px;color:#123e70;font-family:Georgia,'Times New Roman',serif;font-size:2rem;line-height:1.15}
.page-id-7 .express-fex-info p{color:#3f6281;line-height:1.65}
.page-id-7 .express-fex-info__steps{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:24px}
.page-id-7 .express-fex-info__steps article,.page-id-7 .express-fex-info__note{padding:24px;background:#fff;border:1px solid #c6ddeb;box-shadow:0 8px 22px rgba(13,57,96,.08)}
.page-id-7 .express-fex-info__steps article>span{display:grid;width:34px;height:34px;margin-bottom:14px;place-items:center;color:#fff;background:#0d5ea8;border-radius:50%;font-weight:900}
.page-id-7 .express-fex-info h3{margin:0 0 8px;color:#173f70;font-family:Georgia,'Times New Roman',serif;font-size:1.18rem}
.page-id-7 .express-fex-info__steps p,.page-id-7 .express-fex-info__note p{margin:0;font-size:.92rem}
.page-id-7 .express-fex-info__costs{display:grid;grid-template-columns:1.15fr .85fr;gap:28px;align-items:center;margin:0 0 24px;padding:32px;background:#fff;border:1px solid #c6ddeb;box-shadow:0 8px 22px rgba(13,57,96,.08)}
.page-id-7 .express-fex-info__cost-grid{display:grid;gap:10px}
.page-id-7 .express-fex-info__cost-grid article{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:15px 17px;background:#edf7ff;border-left:4px solid #ff7415}
.page-id-7 .express-fex-info__cost-grid strong{color:#0d5ea8;font-size:1.35rem}
.page-id-7 .express-fex-info__cost-grid span{color:#345b7c;font-size:.86rem;text-align:right}
.page-id-7 .express-fex-info__source{margin-top:12px;font-size:.76rem}
.page-id-7 .express-fex-info__source a{color:#0d5ea8;text-decoration:underline}
@media(max-width:800px){.page-id-7 .express-fex-info{padding:34px 4px 6px}.page-id-7 .express-fex-info__steps,.page-id-7 .express-fex-info__costs{grid-template-columns:1fr}.page-id-7 .express-fex-info__costs{padding:22px}.page-id-7 .express-fex-info h2{font-size:1.65rem}}


/* Express personalized estimate layout — 2026-09-11 */
.page-id-7 .express-success--visual{max-width:1080px;padding:0;overflow:hidden;text-align:left;border-radius:0}
.page-id-7 .express-success--visual.is-visible{display:grid;grid-template-columns:34% 66%}
.page-id-7 .express-success__visual{display:flex;min-height:650px;flex-direction:column;background:linear-gradient(180deg,#eef7fd,#e4f2fb);color:#173f70}
.page-id-7 .express-success__visual>img{width:100%;height:300px;object-fit:cover;object-position:center}
.page-id-7 .express-success__visual>div{padding:30px}
.page-id-7 .express-success__visual h2{margin:8px 0 14px;color:#173f70;font-family:Georgia,'Times New Roman',serif;font-size:2rem;line-height:1.08}
.page-id-7 .express-success__visual p{margin:0;color:#274d76}
.page-id-7 .express-success__body{padding:42px 34px;text-align:center}
.page-id-7 .express-estimate-grid{display:grid;grid-template-columns:1.25fr 1fr 1fr;gap:10px;margin:24px 0 10px;text-align:left}
.page-id-7 .express-estimate-grid article{padding:16px;background:#eef7ff;border:1px solid #d8e9f8;border-radius:12px}
.page-id-7 .express-estimate-grid h3{margin:0 0 10px;color:#153f70;font-size:.93rem}
.page-id-7 .express-estimate-grid p{margin:7px 0;color:#365d84;font-size:.84rem;line-height:1.35}
.page-id-7 .express-estimate-grid strong{color:#153f70;font-size:1rem}
.page-id-7 .express-success__route--details{grid-template-columns:1fr 1fr;max-width:none}
.page-id-7 .express-success__route--details small{display:block;margin-top:7px;color:#486987;font-weight:500;line-height:1.45}
@media(max-width:820px){.page-id-7 .express-success--visual.is-visible{display:block}.page-id-7 .express-success__visual{min-height:0}.page-id-7 .express-success__visual>img{height:220px}.page-id-7 .express-success__visual>div{padding:24px}.page-id-7 .express-success__body{padding:30px 22px}.page-id-7 .express-estimate-grid{grid-template-columns:1fr}.page-id-7 .express-success__route--details{grid-template-columns:1fr}}


/* Mobile parity: preserve the approved desktop story and remove empty form height */
@media(max-width:800px){
 .page-id-7 .express-funnel-card--visual{display:flex;flex-direction:column;min-height:0}
 .page-id-7 .express-funnel-aside--visual{display:flex;flex-direction:column}
 .page-id-7 .express-funnel-aside__media{height:220px;min-height:220px}
 .page-id-7 .express-funnel-aside__media>img{object-position:center 42%}
 .page-id-7 .express-funnel-aside__content{display:block;padding:22px 20px 16px}
 .page-id-7 .express-funnel-aside__content h1{margin:8px 0 10px;font-size:1.65rem;line-height:1.12}
 .page-id-7 .express-funnel-aside__content p{font-size:.96rem;line-height:1.45}
 .page-id-7 .express-funnel-aside__content:after{margin-top:14px}
 .page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust{padding:12px 20px 18px;font-size:.74rem}
 .page-id-7 .express-funnel-main{min-height:0;padding:22px 18px 24px}
 .page-id-7 .express-stage-dots{margin:8px auto 24px}
 .page-id-7 .express-step.is-active{flex:none}
 .page-id-7 .express-funnel-actions{margin-top:24px;padding-top:0}
}


/* Mobile first-screen conversion: ZIP field and CTA visible without scrolling */
@media(max-width:800px){
 .page-id-7 .express-funnel-page--visual{padding:8px 8px 24px}
 .page-id-7 .express-shell{max-width:430px}
 .page-id-7 .express-funnel-card--visual{display:flex;flex-direction:column}
 .page-id-7 .express-funnel-aside--visual{order:1;display:block}
 .page-id-7 .express-funnel-aside__media{height:132px;min-height:132px}
 .page-id-7 .express-funnel-aside__content,
 .page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust{display:none}
 .page-id-7 .express-funnel-main{order:2;min-height:0;padding:12px 16px 18px;justify-content:flex-start}
 .page-id-7 .express-storyboard-brand img{width:104px}
 .page-id-7 .express-stage-dots{margin:2px auto 14px}
 .page-id-7 .express-stage-dots span{width:24px;height:24px;font-size:.72rem}
 .page-id-7 .express-step__count{margin-bottom:6px}
 .page-id-7 .express-step h2{margin-bottom:10px;font-size:1.48rem;line-height:1.08}
 .page-id-7 .express-step__help{margin:0 auto 12px;font-size:.88rem;line-height:1.35}
 .page-id-7 .express-fields{margin-top:10px}
 .page-id-7 .express-field label{margin-bottom:6px}
 .page-id-7 .express-input--zip{min-height:56px}
 .page-id-7 .express-funnel-actions{margin-top:14px;padding-top:0}
 .page-id-7 .express-button{min-height:52px}
}


/* Mobile content parity: same approved explanation as desktop, fitted for phones */
@media(max-width:800px){
 .page-id-7 .express-funnel-aside--visual{
   order:1;
   display:grid;
   grid-template-columns:118px minmax(0,1fr);
   grid-template-rows:auto auto;
   align-items:stretch;
 }
 .page-id-7 .express-funnel-aside__media{
   grid-column:1;
   grid-row:1;
   height:auto;
   min-height:164px;
 }
 .page-id-7 .express-funnel-aside__media>img{height:100%;object-fit:cover;object-position:center 42%}
 .page-id-7 .express-funnel-aside__content{
   grid-column:2;
   grid-row:1;
   display:block;
   padding:12px 12px 10px;
 }
 .page-id-7 .express-funnel-aside__step{font-size:.62rem;letter-spacing:.06em}
 .page-id-7 .express-funnel-aside__content h1{margin:5px 0 7px;font-size:1.18rem;line-height:1.08}
 .page-id-7 .express-funnel-aside__content p{margin:0;font-size:.75rem;line-height:1.3}
 .page-id-7 .express-funnel-aside__content:after{width:28px;height:2px;margin-top:8px}
 .page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust{
   grid-column:1 / -1;
   grid-row:2;
   display:block;
   padding:7px 12px 9px;
   font-size:.65rem;
   line-height:1.25;
   text-align:center;
 }
 .page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust:before{
   display:inline-grid;
   width:20px;
   height:20px;
   margin-right:5px;
 }
 .page-id-7 .express-funnel-main{padding-top:10px}
}


/* Compact mobile context strip: preserve the why, prioritize the ZIP question */
@media(max-width:800px){
 .page-id-7 .express-funnel-aside--visual{
   grid-template-columns:92px minmax(0,1fr);
 }
 .page-id-7 .express-funnel-aside__media{
   min-height:118px;
 }
 .page-id-7 .express-funnel-aside__content{
   padding:8px 10px 6px;
 }
 .page-id-7 .express-funnel-aside__step{
   font-size:.54rem;
   letter-spacing:.055em;
 }
 .page-id-7 .express-funnel-aside__content h1{
   margin:3px 0 4px;
   font-size:.98rem;
   line-height:1.06;
 }
 .page-id-7 .express-funnel-aside__content p{
   font-size:.67rem;
   line-height:1.22;
 }
 .page-id-7 .express-funnel-aside__content:after{
   width:22px;
   margin-top:5px;
 }
 .page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust{
   padding:5px 8px 6px;
   font-size:.58rem;
   line-height:1.15;
 }
 .page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust:before{
   width:17px;
   height:17px;
   margin-right:4px;
 }
}


/* Approved mobile balance: fuller context with ZIP question still dominant */
@media(max-width:800px){
 .page-id-7 .express-funnel-aside--visual{grid-template-columns:110px minmax(0,1fr)}
 .page-id-7 .express-funnel-aside__media{min-height:142px}
 .page-id-7 .express-funnel-aside__content{padding:10px 11px 8px}
 .page-id-7 .express-funnel-aside__step{font-size:.58rem}
 .page-id-7 .express-funnel-aside__content h1{margin:4px 0 6px;font-size:1.08rem;line-height:1.07}
 .page-id-7 .express-funnel-aside__content p{font-size:.71rem;line-height:1.25}
 .page-id-7 .express-funnel-aside__content:after{width:25px;margin-top:6px}
 .page-id-7 .express-funnel-aside--visual .express-funnel-aside__trust{padding:6px 10px 7px;font-size:.62rem}
}


/* Express Final Expense two-step quote funnel — 2026-09-13 */
.page-id-7 .express-funnel-page--visual{
  background:#f5f0e6;
  color:#13251b;
  padding:28px 18px 54px;
}
.page-id-7 .express-funnel-status{max-width:1040px;color:#1e5f43}
.page-id-7 .express-progress{background:#d9ded5}
.page-id-7 .express-progress__bar{background:#1f6f4a}
.page-id-7 .express-funnel-card--twostep{
  max-width:1040px;
  min-height:680px;
  overflow:hidden;
  border:1px solid #d5d8cf;
  border-radius:24px;
  background:#fff;
  box-shadow:0 24px 70px rgba(20,44,31,.14);
}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside--visual{
  background:#173f2d;
  color:#fff;
}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__media{position:relative}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__media:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(15,48,33,.05),rgba(15,48,33,.45));
  pointer-events:none;
}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__content h1{
  color:#fff;
  font-family:Georgia,"Times New Roman",serif;
}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__content p{color:#e9f2ec}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__step{color:#d9b96e}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__content:after{background:#d9b96e}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__trust{background:#123424;color:#eaf3ed}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__trust:before{
  background:#d9b96e;
  color:#173f2d;
}
.page-id-7 .express-funnel-card--twostep .express-funnel-main{
  background:#fffdf8;
  padding:38px 44px 34px;
}
.page-id-7 .express-funnel-card--twostep .express-storyboard-brand img{max-width:142px}
.page-id-7 .express-funnel-card--twostep .express-brand-fallback{
  color:#173f2d;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:800;
  letter-spacing:.04em;
}
.page-id-7 .express-funnel-card--twostep .express-stage-dots span{
  width:34px;
  height:34px;
  border:2px solid #bdd0c3;
  background:#fff;
  color:#557060;
}
.page-id-7 .express-funnel-card--twostep .express-stage-dots span.is-current,
.page-id-7 .express-funnel-card--twostep .express-stage-dots span.is-complete{
  border-color:#1f6f4a;
  background:#1f6f4a;
  color:#fff;
}
.page-id-7 .express-funnel-card--twostep .express-stage-dots i,
.page-id-7 .express-funnel-card--twostep .express-stage-dots i.is-complete{background:#1f6f4a}
.page-id-7 .express-funnel-card--twostep .express-step__count{color:#1f6f4a;letter-spacing:.12em}
.page-id-7 .express-funnel-card--twostep .express-step h2{
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
  color:#14271d;
  font-family:Georgia,"Times New Roman",serif;
  font-size:2.3rem;
  line-height:1.08;
}
.page-id-7 .express-funnel-card--twostep .express-step__help{max-width:620px;color:#58675f}
.page-id-7 .express-question-grid,
.page-id-7 .express-fields--contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  max-width:700px;
  margin:26px auto 0;
}
.page-id-7 .express-field--full{grid-column:1 / -1}
.page-id-7 .express-funnel-card--twostep .express-field label,
.page-id-7 .express-funnel-card--twostep .express-field legend{
  display:block;
  margin:0 0 8px;
  color:#20372a;
  font-weight:750;
  text-align:left;
}
.page-id-7 .express-funnel-card--twostep .express-input{
  min-height:58px;
  border:1.5px solid #aebcaf;
  border-radius:12px;
  background:#fff;
  color:#14271d;
  box-shadow:none;
}
.page-id-7 .express-funnel-card--twostep .express-input:focus{
  border-color:#1f6f4a;
  box-shadow:0 0 0 4px rgba(31,111,74,.13);
}
.page-id-7 .express-funnel-card--twostep .express-input[aria-invalid="true"]{border-color:#b42318}
.page-id-7 .express-choice-grid--coverage{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.page-id-7 .express-choice-grid--coverage .express-choice{
  min-height:58px;
  padding:11px 8px;
  border:1.5px solid #9daf9f;
  border-radius:12px;
  background:#fff;
  color:#193225;
  font-weight:800;
}
.page-id-7 .express-choice-grid--coverage .express-choice:hover,
.page-id-7 .express-choice-grid--coverage .express-choice:focus,
.page-id-7 .express-choice-grid--coverage .express-choice.is-selected{
  border-color:#1f6f4a;
  background:#e5f0e9;
  color:#154c34;
  box-shadow:0 0 0 3px rgba(31,111,74,.1);
}
.page-id-7 .express-funnel-card--twostep .express-button--primary{
  min-height:58px;
  border-radius:999px;
  background:#1f6f4a;
  box-shadow:0 10px 25px rgba(31,111,74,.22);
  font-weight:850;
}
.page-id-7 .express-funnel-card--twostep .express-button--primary:hover{background:#174f37}
.page-id-7 .express-funnel-card--twostep .express-button--ghost{
  border-color:#7d9283;
  border-radius:999px;
  color:#234b36;
}
.page-id-7 .express-funnel-card--twostep .express-location-result{color:#1f6f4a}
.page-id-7 .express-funnel-card--twostep .express-security-note{color:#66736b}
.page-id-7 .express-funnel-card--twostep .express-consent{
  color:#59655e;
  font-size:.73rem;
  line-height:1.48;
}
.page-id-7 .express-funnel-card--twostep .express-consent a{color:#1b6444}
.page-id-7 .express-success--visual{border-radius:24px}
.page-id-7 .express-success__visual{background:linear-gradient(180deg,#eaf2ec,#dfeae3);color:#173f2d}
.page-id-7 .express-success__visual h2,
.page-id-7 .express-estimate-grid h3,
.page-id-7 .express-estimate-grid strong{color:#173f2d}
.page-id-7 .express-estimate-grid article{background:#f0f6f1;border-color:#d4e3d8}

@media(max-width:800px){
  .page-id-7 .express-funnel-page--visual{padding:8px 8px 28px}
  .page-id-7 .express-funnel-card--twostep{min-height:0;border-radius:18px}
  .page-id-7 .express-funnel-card--twostep .express-funnel-aside--visual{
    display:grid;
    grid-template-columns:104px minmax(0,1fr);
    grid-template-rows:auto auto;
  }
  .page-id-7 .express-funnel-card--twostep .express-funnel-aside__media{height:auto;min-height:134px}
  .page-id-7 .express-funnel-card--twostep .express-funnel-aside__content{display:block;padding:10px 12px 8px}
  .page-id-7 .express-funnel-card--twostep .express-funnel-aside__content h1{font-size:1.08rem}
  .page-id-7 .express-funnel-card--twostep .express-funnel-aside__content p{font-size:.7rem}
  .page-id-7 .express-funnel-card--twostep .express-funnel-aside__trust{display:block;grid-column:1/-1;padding:7px 10px;font-size:.62rem}
  .page-id-7 .express-funnel-card--twostep .express-funnel-main{padding:16px 16px 22px}
  .page-id-7 .express-funnel-card--twostep .express-storyboard-brand img{width:104px}
  .page-id-7 .express-funnel-card--twostep .express-stage-dots{margin:3px auto 16px}
  .page-id-7 .express-funnel-card--twostep .express-stage-dots span{width:28px;height:28px}
  .page-id-7 .express-funnel-card--twostep .express-step h2{font-size:1.55rem}
  .page-id-7 .express-question-grid,
  .page-id-7 .express-fields--contact{grid-template-columns:1fr;gap:13px;margin-top:17px}
  .page-id-7 .express-field--full{grid-column:auto}
  .page-id-7 .express-choice-grid--coverage{grid-template-columns:1fr 1fr;gap:9px}
  .page-id-7 .express-choice-grid--coverage .express-choice{min-height:54px}
  .page-id-7 .express-funnel-card--twostep .express-funnel-actions{margin-top:18px}
  .page-id-7 .express-funnel-card--twostep .express-button{min-height:54px}
}


/* Left-panel readability refinement — 2026-09-13 */
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__content{
  position:relative;
  z-index:2;
  background:#173f2d;
}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__content h1{
  color:#fff !important;
  text-shadow:0 1px 2px rgba(0,0,0,.22);
}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__content p:not(.express-funnel-aside__step){
  color:#f5fff8 !important;
  opacity:1;
}
.page-id-7 .express-funnel-card--twostep .express-funnel-aside__step{
  color:#f0cf7c !important;
  opacity:1;
}


/* Coverage-number typography refinement — 2026-09-13 */
.page-id-7 .express-choice-grid--coverage .express-choice{
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.2rem;
  min-height:68px;
  font-variant-numeric:tabular-nums lining-nums;
  letter-spacing:-.012em;
  white-space:nowrap;
}
@media(max-width:420px){
  .page-id-7 .express-choice-grid--coverage .express-choice{
    font-size:1.05rem;
    min-height:64px;
    padding-left:5px;
    padding-right:5px;
  }
}


/* Step navigation visibility fix — 2026-09-13 */
.page-id-7 #express-back[hidden]{display:none !important}
.page-id-7 .express-choice-grid--coverage{width:100%;overflow:visible}
.page-id-7 .express-choice-grid--coverage .express-choice{width:100%;max-width:none}


/* ZIP availability confirmation — 2026-09-13 */
.page-id-7 .express-area-confirmation[hidden],
.page-id-7 .express-funnel-actions[hidden]{display:none !important}
.page-id-7 .express-area-confirmation{
  min-height:390px;
  padding:54px 24px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
}
.page-id-7 .express-area-confirmation.is-visible{display:flex;animation:express-confirm-in .28s ease-out both}
.page-id-7 .express-area-confirmation__check{
  display:grid;
  width:74px;
  height:74px;
  margin-bottom:20px;
  place-items:center;
  border-radius:50%;
  background:#1f6f4a;
  color:#fff;
  font-size:2.25rem;
  font-weight:900;
  box-shadow:0 12px 30px rgba(31,111,74,.24);
}
.page-id-7 .express-area-confirmation h2{
  max-width:590px;
  margin:8px auto 14px;
  color:#14271d;
  font-family:Georgia,"Times New Roman",serif;
  font-size:2.25rem;
  line-height:1.12;
}
.page-id-7 .express-area-confirmation h2 span{color:#1f6f4a}
.page-id-7 .express-area-confirmation>p:last-child{color:#65736a}
@keyframes express-confirm-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
@media(max-width:800px){
  .page-id-7 .express-area-confirmation{min-height:330px;padding:42px 12px}
  .page-id-7 .express-area-confirmation h2{font-size:1.7rem}
  .page-id-7 .express-area-confirmation__check{width:66px;height:66px;font-size:2rem}
}


.page-id-7 .express-area-confirmation__button{
  width:min(100%,340px);
  margin:10px auto 14px;
  font-size:1rem;
}


/* Phone-width containment fix — 2026-09-13 */
.page-id-7 .express-funnel-card--twostep,
.page-id-7 .express-funnel-card--twostep .express-funnel-main,
.page-id-7 .express-funnel-card--twostep .express-step,
.page-id-7 .express-funnel-card--twostep .express-question-grid,
.page-id-7 .express-funnel-card--twostep .express-field,
.page-id-7 .express-funnel-card--twostep fieldset{
  min-width:0;
  max-width:100%;
  box-sizing:border-box;
}
.page-id-7 .express-funnel-card--twostep .express-input{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.page-id-7 .express-choice-grid--coverage .express-choice{
  min-width:0;
  box-sizing:border-box;
}
@media(max-width:600px){
  .page-id-7 .express-funnel-card--twostep .express-funnel-main{
    width:100%;
    overflow:hidden;
    padding-left:16px;
    padding-right:16px;
  }
  .page-id-7 .express-question-grid{width:100%}
  .page-id-7 .express-choice-grid--coverage{
    grid-template-columns:minmax(0,1fr);
    width:100%;
    gap:10px;
  }
  .page-id-7 .express-choice-grid--coverage .express-choice{
    width:100%;
    min-height:62px;
    padding:12px 10px;
    font-size:1.15rem;
    white-space:nowrap;
  }
  .page-id-7 .express-funnel-card--twostep .express-funnel-actions{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
  }
  .page-id-7 .express-funnel-card--twostep .express-funnel-actions .express-button{
    width:100%;
    max-width:none;
  }
  .page-id-7 .express-funnel-card--twostep .express-security-note{
    font-size:.78rem;
    line-height:1.4;
  }
}
