/*
Theme Name:  First Choice Health Plan Child
Theme URI:   https://firstchoicehealthplan.com
Description: Child theme for First Choice Health Plan broker site. Parent: Astra.
Author:      Benefit Re / Health Logistics Group
Template:    astra
Version:     1.0.0
License:     Private
Text Domain: fchp-child
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:        #0d2240;
  --navy-mid:    #163459;
  --teal:        #1a8fa0;
  --teal-light:  #22b5cc;
  --teal-faint:  #e8f7fa;
  --gold:        #c9a84c;
  --white:       #ffffff;
  --off-white:   #f6f9fb;
  --gray-light:  #e4eaf2;
  --gray-mid:    #8a9ab0;
  --gray-dark:   #3d4f63;
  --text:        #1a2b3c;
}

/* ============================================================
   RESET / BASE OVERRIDES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Strip Astra defaults that conflict */
.ast-container,
.ast-page-builder-template .ast-content-area-inner,
#primary,
.site-content {
  padding: 0 !important;
  max-width: 100% !important;
}

.entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

/* Hide Astra's default header/footer on our custom templates */
.fchp-page .site-header,
.fchp-page .site-footer,
.fchp-page .ast-breadcrumbs-wrapper,
.fchp-page h1.entry-title,
.fchp-page .entry-header {
  display: none !important;
}

/* ============================================================
   SHARED NAV
   ============================================================ */
.fchp-nav {
  background: var(--white) !important;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--gray-light) !important;
  box-shadow: 0 1px 8px rgba(13,34,64,0.07) !important;
}

.fchp-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fchp-nav-logo img {
  height: 125px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
}

.fchp-nav-logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--white);
  line-height: 1;
  display: none;
}

.fchp-nav-logo-sub {
  font-size: 10px;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  display: none;
}

.fchp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.fchp-nav-links a {
  color: var(--gray-dark) !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.fchp-nav-links a:hover { color: var(--navy) !important; }

.fchp-nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.fchp-nav-cta:hover { background: var(--teal-light) !important; }

/* ============================================================
   SHARED FOOTER
   ============================================================ */
.fchp-footer {
  background: var(--navy);
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fchp-footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--white);
  display: block;
}

.fchp-footer-carrier {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
}

.fchp-footer-right {
  text-align: right;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.fchp-footer-right a {
  color: var(--teal-light);
  text-decoration: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-light); color: var(--white); }

.btn-secondary {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  transition: color 0.15s;
}
.btn-secondary:hover { color: var(--white); }
.btn-secondary::after { content: '→'; }

.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.15s;
}
.btn-white:hover { opacity: 0.9; color: var(--navy); }

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s, background 0.15s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* ============================================================
   LANDING PAGE — HERO
   ============================================================ */
.fchp-hero {
  background: var(--navy);
  padding: 80px 56px 72px;
  position: relative;
  overflow: hidden;
}

.fchp-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,143,160,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.fchp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.fchp-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.fchp-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fchp-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal-light);
}

.fchp-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 46px;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}

.fchp-hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}

.fchp-hero-desc {
  color: rgba(255,255,255,0.62);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 36px;
}

.fchp-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Hero card */
.fchp-hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.fchp-hero-card-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.fchp-hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fchp-hero-stat { display: flex; flex-direction: column; gap: 3px; }

.fchp-hero-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

.fchp-hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.4;
}

.fchp-hero-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 20px 0;
}

.fchp-hero-carrier {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.fchp-hero-carrier strong {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================================
   LANDING PAGE — TRUST BAR
   ============================================================ */
.fchp-trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.fchp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-dark);
}

.fchp-trust-icon {
  width: 32px; height: 32px;
  background: var(--teal-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.fchp-trust-divider {
  width: 1px; height: 28px;
  background: var(--gray-light);
}

/* ============================================================
   LANDING PAGE — MAIN CONTENT
   ============================================================ */
.fchp-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 56px 80px;
}

.fchp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: center;
}

.fchp-intro-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}

.fchp-intro-grid h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.fchp-intro-grid p {
  color: var(--gray-dark);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 14px;
}

.fchp-value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.fchp-value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 18px 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.fchp-value-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(26,143,160,0.08);
}

.fchp-value-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }

.fchp-value-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.fchp-value-text span {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.5;
  font-weight: 300;
}

/* ============================================================
   PLAN TYPES GRID
   ============================================================ */
.fchp-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.fchp-section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.fchp-section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}

.fchp-section-header p {
  color: var(--gray-mid);
  font-size: 14px;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

.fchp-plan-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.fchp-plan-type-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.fchp-plan-type-card:hover {
  box-shadow: 0 8px 28px rgba(13,34,64,0.09);
  transform: translateY(-2px);
}

.fchp-plan-type-icon { font-size: 28px; margin-bottom: 4px; }

.fchp-plan-type-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.1;
}

.fchp-plan-type-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  width: fit-content;
}

.tag-hsa   { background: #e8f5ec; color: #1a7a30; }
.tag-epo   { background: #e8f0fb; color: #1a5fa0; }
.tag-vl    { background: #faf0e8; color: #7a3a1a; }
.tag-copay { background: #f3e8fa; color: #5a1a7a; }

.fchp-plan-type-desc {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.65;
  font-weight: 300;
}

.fchp-plan-type-plans {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
  font-size: 12px;
  color: var(--gray-mid);
}

.fchp-plan-type-plans strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 12px;
}

/* ============================================================
   SUPPLEMENTAL CALLOUT
   ============================================================ */
.fchp-supplemental {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.fchp-supplemental::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}

.fchp-supplemental::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.fchp-sup-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.fchp-supplemental h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.fchp-supplemental p {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin: 0;
}

.fchp-supplemental p strong { color: var(--gold); font-weight: 600; }

.fchp-sup-price { text-align: center; flex-shrink: 0; }

.fchp-sup-price-val {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.fchp-sup-price-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-top: 4px;
}

/* ============================================================
   NETWORK SECTION
   ============================================================ */
.fchp-network-section {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 40px 48px;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.fchp-network-section h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 14px;
}

.fchp-network-section p {
  color: var(--gray-dark);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}

.fchp-network-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fchp-net-stat {
  text-align: center;
  background: var(--teal-faint);
  border-radius: 10px;
  padding: 20px;
}

.fchp-net-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.fchp-net-stat-label { font-size: 12px; color: var(--gray-dark); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.fchp-cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fchp-cta-section::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.fchp-cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.fchp-cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.fchp-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PLANS PAGE — PAGE HEADER
   ============================================================ */
.fchp-page-header {
  background: var(--navy);
  padding: 44px 56px 40px;
  position: relative;
  overflow: hidden;
}

.fchp-page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.fchp-page-header-inner { max-width: 1200px; margin: 0 auto; }

.fchp-page-header-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fchp-page-header-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--teal-light);
}

.fchp-page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: var(--white);
  margin-bottom: 10px;
}

.fchp-page-header p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 300;
  max-width: 600px;
  margin: 0;
}

/* ============================================================
   PLANS PAGE — STICKY PLAN NAV
   ============================================================ */
.fchp-plan-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 56px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  position: sticky;
  top: 68px;
  z-index: 400;
}

.fchp-plan-nav-item {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--gray-dark);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fchp-plan-nav-item:hover { color: var(--teal); border-bottom-color: var(--teal-light); }

.fchp-plan-nav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-hsa   { background: #1a7a30; }
.dot-epo   { background: #1a5fa0; }
.dot-vl    { background: #7a3a1a; }
.dot-copay { background: #5a1a7a; }

/* ============================================================
   PLANS PAGE — MAIN LAYOUT
   ============================================================ */
.fchp-plans-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 56px 80px;
}

.fchp-anchor-target { scroll-margin-top: 140px; }

.fchp-tier-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 52px 0 24px;
}

.fchp-tier-heading:first-child { margin-top: 0; }

.fchp-tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-hsa   { background: #e8f5ec; color: #1a7a30; }
.tier-epo   { background: #e8f0fb; color: #1a5fa0; }
.tier-vl    { background: #faf0e8; color: #7a3a1a; }
.tier-copay { background: #f3e8fa; color: #5a1a7a; }

.fchp-tier-line { flex: 1; height: 1px; background: var(--gray-light); }

/* ============================================================
   PLAN CARDS
   ============================================================ */
.fchp-plans-row {
  display: grid;
  gap: 24px;
  margin-bottom: 8px;
}

.fchp-plans-row-2 { grid-template-columns: 1fr 1fr; }
.fchp-plans-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.fchp-plan-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.fchp-plan-card:hover {
  box-shadow: 0 8px 28px rgba(13,34,64,0.09);
  transform: translateY(-2px);
}

.fchp-plan-card.featured {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(26,143,160,0.12);
}

.fchp-card-head {
  background: var(--navy);
  padding: 20px 22px 18px;
  position: relative;
}

.fchp-card-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}

.ch-hsa::after   { background: #2a9a3f; }
.ch-epo::after   { background: #1a6fcc; }
.ch-vl::after    { background: #c25a20; }
.ch-copay::after { background: #8a30c0; }

.fchp-card-plan-num {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fchp-card-plan-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.fchp-card-badges { display: flex; flex-wrap: wrap; gap: 5px; }

.fchp-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-hsa    { background: rgba(42,154,63,0.2);   color: #5dd97a; border: 1px solid rgba(42,154,63,0.3); }
.badge-hdhp   { background: rgba(201,168,76,0.2);  color: #f0c84a; border: 1px solid rgba(201,168,76,0.25); }
.badge-epo    { background: rgba(26,111,204,0.2);  color: #6aaaff; border: 1px solid rgba(26,111,204,0.3); }
.badge-vl     { background: rgba(194,90,32,0.2);   color: #ff9a5c; border: 1px solid rgba(194,90,32,0.3); }
.badge-copay  { background: rgba(138,48,192,0.2);  color: #cc88ff; border: 1px solid rgba(138,48,192,0.3); }
.badge-dental { background: rgba(26,143,160,0.2);  color: #5dd4e8; border: 1px solid rgba(26,143,160,0.3); }
.badge-special{ background: rgba(201,168,76,0.25); color: #f0c84a; border: 1px solid rgba(201,168,76,0.3); }

.fchp-card-highlight {
  background: var(--teal-faint);
  border-bottom: 1px solid rgba(26,143,160,0.15);
  padding: 10px 22px;
  font-size: 12px;
  color: var(--navy-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fchp-card-body {
  padding: 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fchp-benefit-section-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 12px 0 6px;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 2px;
}

.fchp-benefit-section-title:first-child { padding-top: 0; }

.fchp-brow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  gap: 10px;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(228,234,242,0.5);
}

.fchp-brow:last-child { border-bottom: none; }
.fchp-bl { color: var(--gray-dark); flex-shrink: 0; }
.fchp-bv { text-align: right; font-weight: 500; color: var(--navy); }
.fchp-bv.green  { color: #1a7a30; }
.fchp-bv.muted  { color: var(--gray-mid); font-weight: 400; font-size: 11.5px; font-style: italic; }
.fchp-bv.small  { font-size: 11.5px; }

.fchp-vl-note {
  background: #faf0e8;
  border: 1px solid rgba(194,90,32,0.2);
  border-radius: 7px;
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 11.5px;
  color: #7a3a1a;
  line-height: 1.6;
}

.fchp-vl-note strong { font-weight: 600; display: block; margin-bottom: 2px; }

.fchp-dental-note {
  background: #e8f7fa;
  border: 1px solid rgba(26,143,160,0.2);
  border-radius: 7px;
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 11.5px;
  color: #0d4a56;
  line-height: 1.6;
}

.fchp-dental-note strong { font-weight: 600; display: block; margin-bottom: 2px; }

.fchp-card-foot {
  padding: 14px 22px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
}

.fchp-network-tag {
  font-size: 11px;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.fchp-network-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.fchp-quote-link {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 9px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.fchp-quote-link:hover { background: var(--teal); color: var(--white); }

/* ============================================================
   PLANS PAGE — SUPPLEMENTAL CALLOUT
   ============================================================ */
.fchp-supplemental-callout {
  background: var(--navy);
  border-radius: 14px;
  padding: 32px 40px;
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.fchp-supplemental-callout::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}

.fchp-supplemental-callout h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}

.fchp-supplemental-callout p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 300;
  max-width: 580px;
  margin: 0;
}

.fchp-supplemental-callout p strong { color: var(--gold); font-weight: 600; }

/* ============================================================
   BOTTOM CTA (PLANS PAGE)
   ============================================================ */
.fchp-bottom-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
  border-radius: 14px;
  padding: 44px;
  text-align: center;
  margin-top: 48px;
}

.fchp-bottom-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 10px;
}

.fchp-bottom-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.fchp-bottom-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fchp-hero-inner            { grid-template-columns: 1fr; }
  .fchp-hero-card             { display: none; }
  .fchp-plan-types-grid       { grid-template-columns: 1fr 1fr; }
  .fchp-plans-row-3           { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fchp-nav                   { padding: 0 20px; }
  .fchp-hero                  { padding: 48px 24px; }
  .fchp-main,
  .fchp-plans-main            { padding: 40px 24px 60px; }
  .fchp-trust-bar             { padding: 16px 24px; gap: 16px; }
  .fchp-trust-divider         { display: none; }
  .fchp-intro-grid            { grid-template-columns: 1fr; gap: 36px; }
  .fchp-plan-types-grid       { grid-template-columns: 1fr; }
  .fchp-plans-row-2,
  .fchp-plans-row-3           { grid-template-columns: 1fr; }
  .fchp-supplemental          { grid-template-columns: 1fr; }
  .fchp-network-section       { grid-template-columns: 1fr; }
  .fchp-supplemental-callout  { grid-template-columns: 1fr; }
  .fchp-page-header           { padding: 32px 24px; }
  .fchp-plan-nav              { padding: 0 24px; }
  .fchp-footer                { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
  .fchp-footer-right          { text-align: center; }
}

/* ============================================================
   MOBILE NAV — HAMBURGER MENU
   ============================================================ */
.fchp-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: 12px;
}

.fchp-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.fchp-nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.fchp-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.fchp-nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.fchp-nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 8px 24px rgba(13,34,64,0.1);
  z-index: 499;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}

.fchp-nav-mobile.open { display: flex; }

.fchp-nav-mobile a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}

.fchp-nav-mobile a:hover { background: var(--off-white); }

.fchp-nav-mobile .fchp-nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  margin-top: 8px;
  text-align: center;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .fchp-nav-hamburger { display: flex; }
  .fchp-nav-links { display: none !important; }
  .fchp-nav-logo img { height: 75px !important; }
}
