:root {
  /* Brand: Health Plan Coaching — deep teal + cream + coach-cap green,
     with the red medical cross as a small accent. Pulled from the logo. */
  --navy: #123F3D;        /* deep teal — headings + dark surfaces */
  --navy-2: #0D2E2C;
  --teal: #1C6E68;        /* mid teal — links + accents */
  --teal-2: #14524E;
  --gold: #3F7D4E;        /* coach-cap green — primary CTAs + accents */
  --gold-2: #33683F;
  --red: #C0392B;         /* medical-cross red — sparing accent */
  --cream: #F5EEE3;       /* logo paper cream — page background */
  --cream-2: #EDE3D2;
  --white: #FFFFFF;
  --text: #262421;
  --muted: #6A6459;
  --border: #E3DAC9;
  --shadow-sm: 0 1px 2px rgba(13,31,60,0.06), 0 1px 3px rgba(13,31,60,0.04);
  --shadow-md: 0 4px 12px rgba(13,31,60,0.08), 0 2px 6px rgba(13,31,60,0.05);
  --shadow-lg: 0 20px 40px rgba(13,31,60,0.12), 0 8px 16px rgba(13,31,60,0.06);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 700; letter-spacing: 0; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.625rem); font-weight: 700; letter-spacing: 0; }
h3 { font-size: 1.375rem; font-weight: 600; }

p { color: #2A2A2A; }
.muted { color: var(--muted); }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-2); }

.container { max-width: 1800px; margin: 0 auto; padding: 0 56px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 900px) {
  .container, .container-narrow { padding: 0 32px; }
}
@media (max-width: 700px) {
  .container, .container-narrow { padding: 0 20px; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-family: inherit; font-size: 16px;
  font-weight: 600; cursor: pointer; border: none; transition: all .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #FFFFFF; }
.btn-primary:hover { background: var(--gold-2); color: #FFFFFF; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 34px; font-size: 17px; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(245,238,227,0.95), rgba(245,238,227,0.74));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18,63,61,0.10); transition: all .2s ease;
}
.nav.scrolled {
  background: rgba(245,238,227,0.98);
  border-bottom-color: rgba(18,63,61,0.14);
  box-shadow: 0 8px 26px rgba(18,63,61,0.12);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 32px; max-width: 1280px; margin: 0 auto; gap: 24px; }
.nav-logo { display: flex; align-items: center; font-family: 'Playfair Display', serif; font-size: 1.375rem; font-weight: 700; color: var(--navy); letter-spacing: 0; }
.nav-logo img { display: block; height: 62px; width: auto; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
}
.nav-links a:not(.btn):not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity .15s ease, transform .15s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a:not(.btn):not(.nav-phone):hover::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.nav-phone svg { color: var(--gold); }
.btn-nav { padding: 13px 28px; font-size: 15px; border-radius: 8px; box-shadow: 0 10px 28px rgba(250,70,22,0.28); }
@media (max-width: 1180px) {
  .nav-links { gap: 20px; }
  .nav-phone { display: none; }
}
@media (max-width: 1000px) {
  html { scroll-padding-top: 100px; }
  .nav-inner { padding: 12px 24px; }
  .nav-logo img { height: 76px; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 600px) {
  html { scroll-padding-top: 92px; }
  .nav-phone span { display: none; }
  .nav-inner { padding: 12px 18px; gap: 12px; }
  .nav-logo { font-size: 1.125rem; }
  .nav-logo img { height: 64px; }
  .btn-nav { padding: 10px 18px; font-size: 14px; }
}

/* ─────────────────────────────────────────────────────────────────────
   DARK HERO REDESIGN — 2026-05-20
   Dark navy gradient with the large DNA illustration, curved dark divider
   into the trust strip, and the lead form relocated below the hero.
   ──────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 720px;
  padding: 178px 0 184px;
  background:
    radial-gradient(ellipse at 78% 44%, rgba(31,110,104,0.55) 0%, rgba(13,60,58,0.62) 34%, rgba(9,42,40,0.96) 66%, #082624 100%),
    linear-gradient(115deg, #082624 0%, #0c3a36 48%, #0a2e2b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  background:
    linear-gradient(90deg, rgba(8,38,36,0.98) 0%, rgba(8,38,36,0.80) 42%, rgba(8,38,36,0.24) 72%, rgba(8,38,36,0.08) 100%),
    radial-gradient(circle at 79% 36%, rgba(63,125,78,0.30), transparent 28%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 118px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 118' preserveAspectRatio='none'><path d='M0,18 C320,78 670,92 1014,72 C1196,61 1328,32 1440,8 L1440,118 L0,118 Z' fill='%23F5EEE3'/><path d='M0,13 C348,75 684,87 1014,67 C1196,56 1328,27 1440,3' fill='none' stroke='%233F7D4E' stroke-width='7'/><path d='M0,20 C348,82 684,94 1014,74 C1196,63 1328,34 1440,10' fill='none' stroke='%231C6E68' stroke-width='5'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 630px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.85rem, 6vw, 5.15rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}
.hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 24px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--dk-blue));
}
.hero h1 em {
  background: linear-gradient(90deg, var(--dk-blue) 0%, #1D75FF 48%, var(--gold) 84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 58%;
  max-width: none;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.14) 10%, #000 26%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.14) 10%, #000 26%, #000 100%);
  filter: saturate(1.14) contrast(1.08) drop-shadow(0 24px 70px rgba(0,0,0,0.32));
  transform-origin: 62% 48%;
  backface-visibility: hidden;
  will-change: transform, filter;
  animation: heroDnaSlowTurn 46s ease-in-out infinite;
}

@keyframes heroDnaSlowTurn {
  0%, 100% {
    transform: perspective(1400px) translate3d(0, 0, 0) rotateY(-5deg) rotateZ(-0.8deg) scale(1.025);
    filter: saturate(1.12) contrast(1.07) drop-shadow(0 24px 70px rgba(0,0,0,0.32));
  }
  50% {
    transform: perspective(1400px) translate3d(1.8%, -0.6%, 0) rotateY(5deg) rotateZ(0.8deg) scale(1.055);
    filter: saturate(1.22) contrast(1.10) drop-shadow(0 30px 82px rgba(0,0,0,0.38));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
    transform: none;
  }
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-pill { border-radius: 99px; }
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 600;
}
.btn-hero-outline:hover { background: var(--white); color: var(--navy); }

/* Trust-features strip */
.trust-features {
  background: var(--dk-bg-2);
  color: var(--navy);
  padding: 46px 0 48px;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(111,168,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 56px;
}
.trust-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0 18px;
  border-right: 1px solid rgba(13,31,60,0.14);
}
.trust-feature:last-child { border-right: none; }
.trust-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(13,104,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-feature:nth-child(even) .trust-feature-icon { border-color: rgba(250,70,22,0.58); }
.trust-feature-icon svg { color: #1268FF; }
.trust-feature:nth-child(even) .trust-feature-icon svg { color: var(--gold); }
.trust-feature-text h4 {
  margin: 0 0 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.trust-feature-text p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 900px) { .trust-features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 900px) { .trust-feature:nth-child(2n) { border-right: none; } }
@media (max-width: 540px) {
  .trust-features-grid { grid-template-columns: 1fr; }
  .trust-feature { border-right: none; padding: 0; }
}

.form-section {
  background: var(--cream);
  padding: 72px 0;
}
.form-section-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.form-section-header { text-align: center; margin-bottom: 32px; }
.form-section-header h2 { margin-bottom: 8px; }
.form-section-header p { color: var(--muted); font-size: 1.0625rem; margin: 0; }

@media (max-width: 980px) {
  .hero { min-height: auto; padding: 136px 0 150px; }
  .hero::before { background: linear-gradient(90deg, rgba(3,12,28,0.98) 0%, rgba(3,12,28,0.86) 62%, rgba(3,12,28,0.58) 100%); }
  .hero-image { opacity: 0.28; right: 0; width: 100%; height: 100%; object-position: 72% center; }
}
@media (max-width: 600px) {
  .hero { padding: 116px 0 126px; }
  .hero h1 { font-size: clamp(2.15rem, 10.4vw, 2.95rem); }
  .hero-image { opacity: 0.20; }
}


.form-card {
  background: var(--white); border-radius: 16px; padding: 32px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-card > form > h3,
.form-card > form > .form-sub { display: none; }
.form-card h3 { margin-bottom: 6px; }
.form-card .form-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-field-inline { margin-bottom: 0; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: 15px; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--white); color: var(--text); transition: border-color .15s, box-shadow .15s;
}
.form-field textarea { resize: vertical; min-height: 64px; line-height: 1.5; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,107,114,0.12);
}
.form-card .btn { width: 100%; margin-top: 8px; }
.sms-consent-box {
  margin: 14px 0 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.68);
}
.sms-consent-label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}
.sms-consent-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}
.sms-consent-label a {
  color: var(--teal);
  font-weight: 700;
}
.form-card .form-alternative {
  text-align: center; font-size: 13px; color: var(--muted);
  margin: 14px 0 4px 0;
}
.form-card .form-alternative a { color: var(--teal); font-weight: 500; }
.form-card .form-fineprint { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
}

.form-success { display: none; text-align: center; padding: 24px 8px; }
.form-success.visible { display: block; }
.form-success .check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header p { font-size: 1.0625rem; color: var(--muted); margin-top: 14px; }

@media (max-width: 700px) { .section { padding: 72px 0; } }

.why-section { background: var(--white); }
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1040px; margin: 0 auto;
}
.compare-card {
  background: var(--white); border-radius: 16px; padding: 32px;
  border: 1px solid var(--border);
}
.compare-card h3 { margin-bottom: 8px; }
.compare-card .plan-detail {
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.compare-card .tag { font-size: 13px; color: var(--teal); font-weight: 500; margin-bottom: 20px; }
.compare-card ul { list-style: none; }
.compare-card li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-top: 1px solid var(--border); font-size: 15px; }
.compare-card li:first-child { border-top: none; }
.compare-card li svg { flex-shrink: 0; margin-top: 4px; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }

.who-section { background: var(--cream); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border-radius: 14px; padding: 28px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.who-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); color: inherit; }
.who-card .who-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  margin-top: 14px; transition: gap .15s;
}
.who-card:hover .who-cta { gap: 10px; }
.who-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(14,107,114,0.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; margin-bottom: 16px;
}
.who-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.who-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .who-grid { grid-template-columns: 1fr; } }

.how-section { background: var(--white); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.how-grid-3 { grid-template-columns: repeat(3, 1fr); }
.how-step { text-align: left; }
.how-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 12px;
}
.how-step h3 { font-size: 1.125rem; margin-bottom: 6px; }
.how-step p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 900px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .how-grid, .how-grid-3 { grid-template-columns: 1fr; }
}

.test-section { background: var(--cream); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.test-card {
  background: var(--white); border-radius: 14px; padding: 28px;
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.test-quote {
  font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 0.6;
  color: var(--gold); margin-bottom: 8px;
}
.test-body { font-size: 15.5px; line-height: 1.6; color: #2A2A2A; flex: 1; margin-bottom: 18px; }
.test-attr { font-size: 14px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 14px; }
.test-attr strong { color: var(--navy); display: block; font-size: 15px; }
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }

.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.about-content h2 { margin-bottom: 18px; }
.about-content p { font-size: 1.0625rem; color: #2A2A2A; margin-bottom: 16px; line-height: 1.65; }
.about-photo {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 26px;
  min-height: 520px;
  padding: 18px 0;
  text-align: center;
  overflow: visible;
}
.about-headshot {
  position: relative;
  z-index: 1;
  width: min(76%, 340px);
  height: auto;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.34),
    0 0 0 14px rgba(111,168,255,0.10),
    0 0 46px rgba(250,70,22,0.22);
}
.about-family {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  height: auto;
  aspect-ratio: 1100 / 789;
  object-fit: cover;
  border-radius: 20px;
  background: var(--white);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.34),
    0 0 0 8px rgba(111,168,255,0.10),
    0 0 46px rgba(250,70,22,0.18);
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 8% 4% 28%;
  background:
    radial-gradient(circle at 54% 44%, rgba(250,70,22,0.16), transparent 32%),
    radial-gradient(circle at 40% 52%, rgba(111,168,255,0.18), transparent 38%);
  filter: blur(10px);
  pointer-events: none;
}
.about-identity { position: relative; z-index: 1; max-width: 440px; }
.about-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--navy);
}
.about-name span { color: var(--gold); }
.about-title {
  margin-top: 10px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.about-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 3px solid var(--gold);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 420px; min-height: auto; margin: 0 auto; padding: 8px 0; }
}

.states-section {
  position: relative;
  overflow: hidden;
  background: var(--dk-bg-2);
  padding: 88px 0;
  scroll-margin-top: 110px;
}
.states-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(111,168,255,0.035);
  pointer-events: none;
}
.states-section .container { position: relative; z-index: 1; }
.license-map-card {
  max-width: 1060px;
  margin: 34px auto 0;
  padding: 18px;
  border-radius: 22px;
  background: #101C36;
  border: 1px solid rgba(111,168,255,0.24);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.license-map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 8px 18px;
  color: #FFFFFF;
}
.license-map-toolbar strong {
  display: block;
  margin-top: 4px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  line-height: 1.05;
}
.license-map-kicker,
.license-status-kicker {
  color: var(--dk-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.license-map-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--dk-text-soft);
  font-size: 0.94rem;
  font-weight: 800;
}
.license-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.legend-swatch {
  width: 18px;
  height: 12px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.18);
}
.legend-blue {
  background: #147CFF;
  box-shadow: 0 0 12px rgba(20,124,255,0.32);
}
.legend-dark { background: #192641; }
.license-map-stage {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #07152C;
  border: 1px solid rgba(111,168,255,0.18);
}
.license-map {
  width: 100%;
  min-height: 310px;
}
.license-map svg,
.license-map-fallback {
  display: block;
  width: 100%;
  height: auto;
}
.license-map-loading {
  min-height: 420px;
  display: grid;
  place-items: center;
  color: var(--dk-text-soft);
  font-weight: 800;
}
.license-map-tooltip {
  position: absolute;
  z-index: 4;
  max-width: 220px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(5,13,29,0.94);
  border: 1px solid rgba(111,168,255,0.34);
  box-shadow: 0 16px 36px rgba(0,0,0,0.34);
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 14px));
  white-space: normal;
  text-align: center;
}
.license-map-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: rgba(5,13,29,0.94);
  border-right: 1px solid rgba(111,168,255,0.34);
  border-bottom: 1px solid rgba(111,168,255,0.34);
  transform: translateX(-50%) rotate(45deg);
}
.license-map-tooltip[hidden] { display: none; }
.license-map-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  align-items: center;
  margin: 16px 4px 0;
  padding: 14px 16px;
  border-top: 1px solid rgba(111,168,255,0.24);
  color: var(--dk-text-soft);
}
.license-map-status strong {
  color: #FFFFFF;
  font-size: 1.05rem;
}
.license-map-status span:last-child {
  grid-column: 2;
  line-height: 1.5;
}
.license-map-card p {
  max-width: 740px;
  margin: 16px auto 0;
  color: var(--dk-text-soft);
  text-align: center;
  font-size: 0.98rem;
}
@media (max-width: 620px) {
  .states-section { padding: 64px 0; }
  .license-map-card { padding: 12px; border-radius: 16px; }
  .license-map-toolbar { align-items: flex-start; flex-direction: column; gap: 12px; padding: 4px 4px 14px; }
  .license-map-stage { border-radius: 12px; }
  .license-map { min-height: 220px; }
  .license-map-loading { min-height: 260px; }
  .license-map-status { grid-template-columns: 1fr; gap: 4px; padding: 12px 6px 4px; }
  .license-map-status span:last-child { grid-column: 1; }
  .license-map-tooltip { display: none; }
  .license-map-card p { font-size: 0.92rem; padding: 0 6px; }
}

.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 18px; color: #2A2A2A; }
.prose p strong { color: var(--navy); }
.prose p:last-child { margin-bottom: 0; }

.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden; transition: box-shadow .15s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px; font-weight: 600; color: var(--navy);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; font-size: 16.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 26px; color: var(--teal); font-weight: 300;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 24px 22px; color: #2A2A2A; line-height: 1.7; font-size: 15.5px; }
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

.cta-section {
  background: var(--navy); color: var(--white); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(250,70,22,0.18) 0%, transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.cta-actions .btn-outline:hover { background: var(--white); color: var(--navy); }
.cta-phone {
  font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700;
  color: var(--gold); margin: 24px 0; letter-spacing: 0;
}
.cta-phone a { color: var(--gold); }
.cta-phone a:hover { color: var(--white); }

.footer {
  background:
    linear-gradient(rgba(9,42,20,0.58), rgba(6,28,14,0.72)),
    url("field-header.jpg") center center / cover no-repeat;
  background-color: #0b2c15;
  color: #ffffff;
  padding: 56px 0 32px;
}
/* Desktop: paint the grass identically in the header and footer so the white
   yard line lands at the same x in both (one continuous vertical line), and
   zoom to the straight middle of the line. Mobile keeps cover (gap-safe). */
@media (min-width: 1024px) {
  .nav, .nav.scrolled { background-size: 150% auto; background-position: center; }
  .footer { background-size: auto, 150% auto; background-position: center, center; }
}
/* Keep every word legible over the grass — a dark halo behind all text so it
   reads even where a bright yard line or number sits behind it. */
.footer p, .footer a, .footer h4, .footer li,
.footer .footer-brand, .footer-legal, .footer-policy-links a {
  text-shadow: 0 1px 4px rgba(0,0,0,0.85), 0 0 2px rgba(0,0,0,0.7);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.375rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: var(--gold); }
.footer p { color: rgba(255,255,255,0.92); font-size: 14.5px; line-height: 1.65; }
.footer h4 { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 14.5px; }
.footer a { color: rgba(255,255,255,0.95); }
.footer a:hover { color: var(--gold); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.6;
}
.footer-policy-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: 10px;
}
.footer-policy-links a {
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}
.footer-policy-links a:hover { color: var(--gold); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--navy); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: 16px;
  padding: 12px 14px; border-radius: 8px; text-decoration: none;
}
@media (max-width: 720px) {
  .mobile-bar { display: block; }
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
}

/* ─────────────────────────────────────────────────────────────────────
   FULL-SITE LIGHT THEME — 2026-05-20 (Goodwin-inspired refresh)
   Clean professional layout: white backgrounds, navy headings,
   teal accents, orange primary CTA. Sans-serif throughout (no
   Playfair Display). Adds the service-card grid + Goodwin-style
   hero pattern used on the homepage.
   ──────────────────────────────────────────────────────────────────── */

:root {
  --lt-bg:        #FFFFFF;
  --lt-bg-2:      #F7F8FA;
  --lt-bg-3:      #EEF2F7;
  --lt-border:    #E5E9EF;
  --lt-text:      #2A3340;
  --lt-text-soft: #5B6B7B;
  --lt-text-dim:  #8A95A3;
  /* Palette derived from the new Medford Made Insurance logo:
     Health Plan Coaching: deep teal wordmark, coach-cap green,
     red medical cross accent. */
  --brand-navy:   #15605B;
  --brand-navy-2: #104E4A;
  --brand-red:    #C0392B;
  --brand-red-2:  #9E2C20;
  --brand-blue:   #3F7D4E;
  --brand-blue-2: #33683F;
  /* Legacy aliases — kept so older rules don't break. Point them at
     the new palette so anything using --brand-teal etc still works. */
  --brand-teal:   var(--brand-blue);
  --brand-teal-2: var(--brand-blue-2);
  --brand-orange: var(--brand-red);
  --brand-orange-2: var(--brand-red-2);
}

/* Buttons — override the original .btn-primary (which used --gold orange) */
.btn-primary {
  background: var(--brand-navy);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--brand-navy-2);
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(30,58,95,0.22);
}

/* Sans-serif everywhere — drop Playfair Display from headings. */
body {
  background: var(--lt-bg);
  color: var(--lt-text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
h1, h2, h3, h4 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--brand-navy);
  letter-spacing: -0.015em;
}
h1 { font-weight: 800; letter-spacing: -0.022em; }
h2 { font-weight: 800; letter-spacing: -0.018em; }
h3 { font-weight: 700; }
h4 { font-weight: 700; }
p { color: var(--lt-text); }
.muted, p.muted { color: var(--lt-text-soft); }
a { color: var(--brand-teal); }
a:hover { color: var(--brand-orange); }

.section-eyebrow { color: var(--brand-red); font-weight: 700; }
.section-header p { color: var(--lt-text-soft); }
.hero-eyebrow { color: var(--brand-red); font-weight: 700; }
.hero-eyebrow::before { background: var(--brand-red); }

/* Nav — grass football field (yard lines are in the image); logo, links,
   and button sit on white "chips" so everything stays readable. */
.nav {
  background: #2f7d32 url("field-header.jpg") center center / cover no-repeat;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 4px solid rgba(255,255,255,0.92);
}
.nav.scrolled {
  background: #2f7d32 url("field-header.jpg") center center / cover no-repeat;
  border-bottom-color: rgba(255,255,255,0.92);
  box-shadow: 0 6px 22px rgba(12,45,20,0.30);
}
/* Wider nav to match the new 1800px container, with breathing room. */
.nav-inner {
  max-width: 1880px;
  padding: 14px 56px;
  gap: 32px;
}
.nav-logo {
  background: #ffffff;
  border-radius: 16px;
  padding: 6px 20px;
  box-shadow: 0 6px 18px rgba(12,45,20,0.28);
}
.nav-logo img {
  height: 140px;
  filter: none;
}
.nav-links {
  gap: 22px;
  background: rgba(255,255,255,0.94);
  border-radius: 99px;
  padding: 9px 12px 9px 26px;
  box-shadow: 0 6px 18px rgba(12,45,20,0.28);
}
.nav-links a:not(.btn) {
  color: var(--brand-navy);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.nav-links a:not(.btn):hover { color: var(--brand-red); }
/* CTA button in the nav — white text on navy must win over the
   .nav-links a color rule above. Higher specificity locks it in. */
.nav-links a.btn-primary,
.nav-links a.btn.btn-nav { color: #FFFFFF; }
.nav-links a.btn-primary:hover { color: #FFFFFF; }
.nav-links a:not(.btn):not(.nav-phone)::after {
  background: var(--brand-red);
}
.nav-phone { color: var(--brand-navy); }
.nav-phone svg { color: var(--brand-navy); }
.btn-nav {
  padding: 13px 26px;
  font-size: 15px;
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(30,58,95,0.18);
}
@media (max-width: 1000px) {
  .nav-inner { padding: 12px 28px; gap: 20px; }
  .nav-logo img { height: 96px; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 10px 18px; gap: 12px; }
  .nav-logo img { height: 72px; }
}

/* Trust-features strip → light gray panel between hero and content */
.trust-features {
  background: var(--lt-bg-2);
  border-top: 1px solid var(--lt-border);
  border-bottom: 1px solid var(--lt-border);
  padding: 48px 0;
}
.trust-feature-icon { background: rgba(198,40,40,0.10); }
.trust-feature-icon svg { color: var(--brand-red); }
.trust-feature-text h4 { color: var(--brand-navy); }
.trust-feature-text p { color: var(--lt-text-soft); }

/* Form section + form card — light surfaces */
.form-section { background: var(--lt-bg); padding: 80px 0; }
.form-section-header h2 { color: var(--brand-navy); }
.form-section-header p { color: var(--lt-text-soft); }
.form-card {
  background: var(--lt-bg);
  border: 1px solid var(--lt-border);
  box-shadow: 0 12px 32px rgba(13,31,60,0.08), 0 2px 8px rgba(13,31,60,0.04);
}
.form-card h3 { color: var(--brand-navy); }
.form-card .form-sub { color: var(--lt-text-soft); }
.form-field label { color: var(--brand-navy); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--lt-bg);
  color: var(--lt-text);
  border: 1px solid var(--lt-border);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--lt-text-dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(14,107,114,0.15);
}

/* Section backgrounds — alternating white / light gray rhythm */
.section { background: var(--lt-bg); padding: 96px 0; }
.why-section   { background: var(--lt-bg); }
.who-section   { background: var(--lt-bg-2); }
.how-section   { background: var(--lt-bg); }
.test-section  { background: var(--lt-bg-2); }
.about-section { background: var(--lt-bg); }
.states-section { background: var(--lt-bg-2); }
.faq-section   { background: var(--lt-bg); }
@media (max-width: 700px) { .section { padding: 72px 0; } }

/* Cards — clean white surfaces with light borders */
.compare-card,
.who-card,
.test-card,
.faq-item,
.state-pill {
  background: var(--lt-bg);
  border: 1px solid var(--lt-border);
  color: var(--lt-text);
}
.compare-card h3, .who-card h3, .test-card h3 { color: var(--brand-navy); }
.who-card { color: var(--lt-text); }
.who-card:hover {
  border-color: var(--brand-teal);
  box-shadow: 0 8px 24px rgba(13,31,60,0.10);
  transform: translateY(-3px);
}
.who-card p { color: var(--lt-text-soft); }
.who-card .who-cta { color: var(--brand-orange); }

/* Service cards (new homepage 4-product grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 24px;
  justify-content: center;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 360px)); } }
@media (max-width: 560px)  { .services-grid { grid-template-columns: minmax(0, 360px); } }
.service-card {
  background: var(--lt-bg);
  border: 1px solid var(--lt-border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: var(--brand-teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,31,60,0.10);
  color: inherit;
}
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(198,40,40,0.10);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--brand-navy);
}
.service-card p {
  font-size: 15px;
  color: var(--lt-text-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 14.5px;
  transition: gap .15s;
}
.service-card:hover .service-card-cta { gap: 10px; }

/* Why-choose section (Goodwin-style trust pillars) */
.why-choose { background: var(--lt-bg-2); }
.why-choose-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .why-choose-grid { grid-template-columns: 1fr; gap: 40px; }
}
.why-choose-content h2 { margin-bottom: 14px; }
.why-choose-content p { color: var(--lt-text-soft); font-size: 1.0625rem; margin-bottom: 14px; line-height: 1.65; }
.why-choose-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 540px) { .why-choose-pillars { grid-template-columns: 1fr; } }
.why-pillar {
  background: var(--lt-bg);
  border: 1px solid var(--lt-border);
  border-radius: 12px;
  padding: 22px;
}
.why-pillar-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 6px;
  line-height: 1;
}
.why-pillar h4 {
  font-size: 1rem;
  color: var(--brand-navy);
  margin-bottom: 6px;
}
.why-pillar p {
  font-size: 14px;
  color: var(--lt-text-soft);
  margin: 0;
  line-height: 1.55;
}

/* Mission section — centered statement block */
.mission-section { background: var(--lt-bg); text-align: center; }
.mission-inner { max-width: 760px; margin: 0 auto; }
.mission-inner h2 { margin-bottom: 18px; }
.mission-inner p { font-size: 1.125rem; color: var(--lt-text-soft); line-height: 1.7; margin-bottom: 28px; }

/* How-section, test cards, etc. — recolor for light */
.how-section { background: var(--lt-bg); }
.how-num { color: var(--brand-orange); }
.how-step h3 { color: var(--brand-navy); }
.how-step p { color: var(--lt-text-soft); }
.test-section { background: var(--lt-bg-2); }
.test-card { background: var(--lt-bg); }
.test-quote { color: var(--brand-orange); }
.test-body { color: var(--lt-text); }
.test-attr { color: var(--lt-text-soft); border-top-color: var(--lt-border); }
.test-attr strong { color: var(--brand-navy); }

/* Testimonial with savings highlight (Goodwin-style) */
.test-savings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,40,40,0.10);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 14.5px;
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

/* About, states, prose, FAQ — light text colors */
.about-section { background: var(--lt-bg); }
.about-content p { color: var(--lt-text); }
.state-pill { color: var(--brand-navy); }
.state-pill strong { color: var(--brand-navy); }
.state-pill span { color: var(--lt-text-soft); }
.prose p { color: var(--lt-text); }
.prose p strong { color: var(--brand-navy); }
.faq-item summary { color: var(--brand-navy); }
.faq-item summary::after { color: var(--brand-teal); }
.faq-answer { color: var(--lt-text); }
.faq-answer p strong { color: var(--brand-navy); }

/* CTA section — solid navy block with orange CTA */
.cta-section {
  background: var(--brand-navy);
  color: #FFFFFF;
  padding: 80px 0;
}
.cta-section::before { display: none; }
.cta-inner h2 { color: #FFFFFF; }
.cta-inner p { color: rgba(255,255,255,0.85); }
.cta-actions .btn-outline { color: #FFFFFF; border-color: rgba(255,255,255,0.5); }
.cta-actions .btn-outline:hover { background: #FFFFFF; color: var(--brand-navy); }
.cta-phone, .cta-phone a { color: var(--brand-orange); }
.cta-phone a:hover { color: #FFFFFF; }

/* Footer stays dark navy — already styled */

/* Buttons — outline = navy on light */
.btn-outline { color: var(--brand-navy); border-color: var(--brand-navy); }
.btn-outline:hover { background: var(--brand-navy); color: #FFFFFF; }

/* ─────────────────────────────────────────────────────────────────────
   HOMEPAGE HERO — Goodwin-style 2-column light hero.
   Override the dark hero block above. Cleaner layout: headline + sub
   + Start My Free Quote CTA on the left, image on the right.
   ──────────────────────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--lt-bg-2) 100%);
  color: var(--lt-text);
  position: relative;
  overflow: hidden;
}
.hero::before { display: none !important; }
.hero::after { display: none !important; }

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 120px 0 60px; }
}

.hero-content {
  max-width: 580px;
  position: static;
  z-index: auto;
}
.hero-eyebrow {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow::before { background: var(--brand-red); }
.hero h1 {
  color: var(--brand-navy);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--brand-orange); font-style: normal; }
.hero-sub {
  color: var(--lt-text-soft);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-fineprint {
  font-size: 13px;
  color: var(--lt-text-soft);
  margin-top: 14px;
}
.hero-fineprint a { color: var(--brand-teal); }

/* Hero image — clean framed photo/illustration on the right.
   Capped at a reasonable max-height so portrait-aspect source images
   (like hero-dna.png at 864×1821) don't blow out the hero vertically. */
.hero-image {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 560px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  transform: none;
  animation: none;
  /* Soft left-edge fade: a long, gentle dissolve so the photo melts into the
     page with no visible band or seam. The drop-shadow follows the fade's
     alpha (not a rectangle), so the transparent side casts no stray shadow. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0,0,0,0.22) 20%, rgba(0,0,0,0.6) 36%, rgba(0,0,0,0.9) 50%, #000 62%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0,0,0,0.22) 20%, rgba(0,0,0,0.6) 36%, rgba(0,0,0,0.9) 50%, #000 62%, #000 100%);
  filter: drop-shadow(0 22px 52px rgba(13,31,60,0.26));
  box-shadow: none;
}
@media (max-width: 900px) {
  .hero-image { max-height: 360px; }
}

/* Pill buttons stay — used on homepage Start My Free Quote */
.btn-pill { border-radius: 99px; }
.btn-hero-outline {
  background: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--brand-navy);
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 600;
}
.btn-hero-outline:hover { background: var(--brand-navy); color: #FFFFFF; }

/* Coach mascots — in-flow, centered, decorative. Placed inside centered
   blocks (section headers, CTA bands) so they never overlap body text. */
.coach-inline {
  display: block; height: auto; margin: 0 auto;
  filter: drop-shadow(0 14px 22px rgba(12,45,20,0.20));
}
.coach-hdr { width: clamp(88px, 9vw, 120px); margin-bottom: 8px; }
.coach-cta { width: clamp(112px, 12vw, 168px); margin-bottom: 16px; }
@media (max-width: 560px) {
  .coach-hdr { width: 78px; }
  .coach-cta { width: 104px; }
}

/* Where I'm Licensed — interactive map (green = licensed, grey = not) + state
   list + coach on the right. Light theme, scoped under .lic-* to avoid the old
   dark map styles. */
.lic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 36px;
  align-items: center;
  max-width: 1120px;
  margin: 10px auto 0;
}
.lic-mapwrap { position: relative; }
.lic-map { width: 100%; }
.lic-map svg { display: block; width: 100%; height: auto; }
.lic-map-fallback { display: block; width: 100%; height: auto; }
.lic-legend {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 22px;
  margin: 16px 0 2px; font-weight: 700; font-size: 14px; color: var(--lt-text-soft);
}
.lic-legend span { display: inline-flex; align-items: center; gap: 8px; }
.lic-dot { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.lic-dot-on { background: #3F7D4E; }
.lic-dot-off { background: #D6DCE2; border: 1px solid #C2C9D1; }
.lic-list {
  max-width: 780px; margin: 16px auto 0; text-align: center;
  color: var(--lt-text-soft); font-size: 14.5px; line-height: 1.7;
}
.lic-side { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.lic-coach {
  width: clamp(150px, 18vw, 210px); height: auto; transform: scaleX(-1);
  filter: drop-shadow(0 14px 22px rgba(12,45,20,0.18));
}
.lic-status { min-height: 66px; }
.lic-status .license-status-kicker {
  display: block; color: var(--brand-red); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
}
.lic-status strong { display: block; color: var(--brand-navy); font-size: 1.05rem; margin: 2px 0; }
.lic-status span:last-child { color: var(--lt-text-soft); font-size: 14px; line-height: 1.5; }
.lic-tooltip {
  position: absolute; z-index: 5; max-width: 220px; padding: 7px 11px; border-radius: 8px;
  background: var(--brand-navy); color: #fff; font-size: 13px; font-weight: 700;
  pointer-events: none; transform: translate(-50%, calc(-100% - 12px)); text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.lic-tooltip::after {
  content: ""; position: absolute; left: 50%; bottom: -6px; width: 12px; height: 12px;
  background: var(--brand-navy); transform: translateX(-50%) rotate(45deg);
}
.lic-tooltip[hidden] { display: none; }
@media (max-width: 900px) {
  .lic-layout { grid-template-columns: 1fr; gap: 20px; }
  .lic-side { order: -1; }
  .lic-coach { width: 130px; }
  .lic-tooltip { display: none; }
}

/* Bright Life plan pages (link-only benefit summaries). */
.plan-wrap { max-width: 1000px; margin: 0 auto; padding: 190px 20px 64px; }
.plan-head { text-align: center; margin-bottom: 26px; }
.plan-eyebrow { color: var(--brand-red); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: 13px; }
.plan-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--brand-navy); margin: 6px 0 8px; }
.plan-head .plan-sub { color: var(--lt-text-soft); font-size: 1.02rem; }
.plan-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.plan-ataglance { display: grid; gap: 16px; margin: 8px auto 30px; max-width: 920px; }
.plan-ataglance.cols4 { grid-template-columns: repeat(4, 1fr); }
.plan-ataglance.cols3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .plan-ataglance.cols4, .plan-ataglance.cols3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .plan-ataglance.cols4, .plan-ataglance.cols3 { grid-template-columns: 1fr; } }
.ag-card { background: var(--white); border: 1px solid var(--lt-border); border-radius: 14px; padding: 18px 16px; box-shadow: var(--shadow-sm); text-align: center; }
.ag-label { font-size: 12px; font-weight: 700; color: var(--lt-text-dim); text-transform: uppercase; letter-spacing: .03em; }
.ag-inn { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--brand-navy); margin-top: 6px; line-height: 1.1; }
.ag-oon { font-size: 12.5px; color: var(--lt-text-soft); margin-top: 5px; }
.plan-inn-note { text-align: center; color: var(--lt-text-dim); font-size: 12.5px; margin: -18px 0 30px; }
.plan-block-title { color: var(--brand-navy); font-size: 1.3rem; margin: 6px 0 14px; }
.plan-highlights { list-style: none; padding: 0; margin: 0 0 32px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px; }
@media (max-width: 640px) { .plan-highlights { grid-template-columns: 1fr; } }
.plan-highlights li { position: relative; padding-left: 26px; color: var(--lt-text); font-size: 15px; line-height: 1.45; }
.plan-highlights li::before { content: "\2713"; position: absolute; left: 0; color: var(--brand-blue); font-weight: 800; }
.plan-doc { background: var(--white); border: 1px solid var(--lt-border); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); }
.plan-doc p { color: var(--lt-text-soft); margin-bottom: 14px; }
.plan-doc-embed { width: 100%; height: 820px; border: 1px solid var(--lt-border); border-radius: 10px; margin-top: 4px; background: #f6f7f9; }
@media (max-width: 640px) { .plan-doc-embed { height: 480px; } }
.plan-disclaimer { color: var(--lt-text-dim); font-size: 12.5px; line-height: 1.6; margin: 24px auto 0; max-width: 860px; text-align: center; }
.plan-index-list { list-style: none; padding: 0; max-width: 640px; margin: 24px auto 0; display: grid; gap: 12px; }
.plan-index-list a { display: flex; justify-content: space-between; gap: 12px; background: var(--white); border: 1px solid var(--lt-border); border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow-sm); color: var(--brand-navy); font-weight: 700; }
.plan-index-list a:hover { border-color: var(--brand-blue); }
.plan-index-list a span { color: var(--lt-text-soft); font-weight: 500; font-size: 14px; }
