/* ============================================================
   Lifebridge Health — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  --teal: #0a7a6b;
  --teal-light: #0fa080;
  --teal-dark: #065a4e;
  --sky: #e6f4f1;
  --sky-mid: #b2ddd6;
  --gold: #e8a832;
  --gold-light: #f5c55a;
  --charcoal: #1c2b2a;
  --slate: #4a5f5d;
  --mist: #f2f8f7;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 32px rgba(10,122,107,0.10);
  --shadow-lg: 0 12px 56px rgba(10,122,107,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e0edeb;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

  .logo-img {
    height: 60px;
    width: auto;
    margin-right: 10px;
    display: block;
  }
  .footer-brand .logo-img {
    height: 50px;
  }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--charcoal); letter-spacing: -0.01em;
}

.logo-text span { color: var(--teal); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none; color: var(--slate);
  font-size: 0.9rem; font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-cta {
  display: flex; gap: 10px; align-items: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 22px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all .25s; text-decoration: none; border: none;
}

.btn-outline {
  border: 1.5px solid var(--teal); color: var(--teal); background: transparent;
}

.btn-outline:hover { background: var(--sky); }

.btn-primary {
  background: var(--teal); color: white;
  box-shadow: 0 2px 12px rgba(10,122,107,0.25);
}

.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(10,122,107,0.35); }

.btn-gold {
  background: var(--gold); color: var(--charcoal);
  box-shadow: 0 2px 12px rgba(232,168,50,0.3);
}

.btn-gold:hover { background: #d4971e; transform: translateY(-1px); }

.btn-lg { padding: 15px 34px; font-size: 1rem; border-radius: 50px; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #062e28 0%, #0a4d41 45%, #0a7a6b 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  padding: 80px 5vw 60px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 24px; width: fit-content;
  animation: fadeUp .6s ease both;
}

.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  display: inline-block;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; color: white;
  line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeUp .7s ease .1s both;
}

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

.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.78);
  line-height: 1.7; margin-bottom: 36px; max-width: 500px;
  animation: fadeUp .7s ease .2s both;
  font-weight: 300;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .7s ease .3s both;
}

.hero-zip {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; overflow: hidden;
  animation: fadeUp .7s ease .4s both; margin-top: 28px;
  max-width: 400px;
}

.hero-zip input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 14px 20px; color: white; font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
}

.hero-zip input::placeholder { color: rgba(255,255,255,0.5); }

.hero-zip button {
  background: var(--gold); color: var(--charcoal);
  border: none; padding: 14px 24px; cursor: pointer;
  font-weight: 600; font-size: 0.85rem; font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}

.hero-zip button:hover { background: var(--gold-light); }

.hero-image {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  animation: fadeIn .9s ease .2s both;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px; padding: 40px;
  max-width: 360px; width: 100%;
  position: relative;
}

.hero-card-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: white; margin-bottom: 24px; font-weight: 600;
}

.plan-option {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 16px; margin-bottom: 12px; cursor: pointer;
  transition: all .2s;
}

.plan-option:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }

.plan-option.active { background: var(--teal-light); border-color: var(--teal-light); }

.plan-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.plan-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }

.plan-info { flex: 1; }
.plan-name { font-weight: 600; color: white; font-size: 0.95rem; }
.plan-desc { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
.plan-arrow { color: rgba(255,255,255,0.5); font-size: 1.1rem; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--charcoal);
  padding: 28px 5vw;
  display: flex; justify-content: center; gap: 0;
}

.stat-item {
  text-align: center; padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  margin-top: 4px; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── SECTIONS ── */
.section { padding: 90px 5vw; }

.section-label {
  font-size: 0.75rem; font-weight: 600; color: var(--teal);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--charcoal); line-height: 1.15; margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem; color: var(--slate); max-width: 560px; line-height: 1.7;
  margin-bottom: 52px; font-weight: 300;
}

.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

/* ── PLAN CARDS ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.plan-card {
  background: var(--white);
  border: 1.5px solid #d8ece8; border-radius: 20px;
  padding: 36px 30px; cursor: pointer;
  transition: all .3s; position: relative; overflow: hidden;
}

.plan-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}

.plan-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card:hover::before { transform: scaleX(1); }

.plan-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--sky); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}

.plan-card-icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 2; }

.plan-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px;
}

.plan-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; margin-bottom: 22px; }

.plan-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-size: 0.875rem; font-weight: 600;
  text-decoration: none; transition: gap .2s;
}

.plan-link:hover { gap: 10px; }

/* ── MY LIFEBRIDGE ── */
.my-lifebridge {
  background: var(--mist);
  padding: 90px 5vw;
}

.feature-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }

.feature-item { display: flex; gap: 16px; align-items: flex-start; }

.feature-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

.feature-dot svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; }

.feature-text h4 { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.feature-text p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }

/* ── APP MOCKUP ── */
.app-mockup {
  background: white; border-radius: 24px;
  box-shadow: var(--shadow-lg); padding: 28px;
  max-width: 360px; margin-left: auto;
  border: 1px solid #e0edeb;
}

.app-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }

.app-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600;
}

.app-greeting { font-size: 0.75rem; color: var(--slate); }
.app-name { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); }

.app-notify {
  position: relative; width: 36px; height: 36px;
  background: var(--sky); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.app-notify svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; }

.notify-dot {
  position: absolute; top: 7px; right: 7px;
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; border: 2px solid white;
}

.app-card {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 16px; padding: 22px; margin-bottom: 18px; color: white;
}

.app-card-label { font-size: 0.75rem; opacity: 0.7; margin-bottom: 6px; }
.app-card-value { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; }
.app-card-sub { font-size: 0.75rem; opacity: 0.65; margin-top: 6px; }

.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.quick-btn {
  background: var(--mist); border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; transition: background .2s;
}

.quick-btn:hover { background: var(--sky); }
.quick-btn svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; }
.quick-btn span { font-size: 0.75rem; font-weight: 500; color: var(--charcoal); }

/* ── FIND CARE ── */
.find-care {
  padding: 90px 5vw;
  background: white;
}

.care-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 40px;
}

.care-card {
  border-radius: 20px; overflow: hidden;
  position: relative; min-height: 220px; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.care-bg { position: absolute; inset: 0; }
.care-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.28); }

.care-content {
  position: relative; z-index: 1;
  padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%;
}

.care-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-light);
  background: rgba(0,0,0,0.3); padding: 4px 10px; border-radius: 20px;
  width: fit-content; margin-bottom: 10px;
}

.care-content h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; margin-bottom: 6px; }
.care-content p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ── RESOURCES ── */
.resources { padding: 90px 5vw; background: var(--mist); }

.resources-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}

.resource-card {
  background: white; border-radius: 18px; overflow: hidden;
  border: 1px solid #e4eeec; transition: all .3s;
}

.resource-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.resource-thumb {
  height: 140px; display: flex; align-items: center; justify-content: center;
}

.resource-thumb svg { width: 44px; height: 44px; stroke: var(--teal); fill: none; stroke-width: 1.5; }

.resource-body { padding: 22px; }

.resource-tag {
  font-size: 0.68rem; font-weight: 600; color: var(--teal);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px;
}

.resource-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--charcoal); line-height: 1.35; margin-bottom: 8px;
}

.resource-body p { font-size: 0.8rem; color: var(--slate); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 80px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: white; font-weight: 700;
  line-height: 1.2; max-width: 540px;
}

.cta-banner h2 em { font-style: italic; color: var(--gold-light); }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.cta-phone { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-top: 12px; font-weight: 300; }
.cta-phone strong { color: white; font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 60px 5vw 30px;
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 50px;
}

.footer-brand .logo-text { color: white; font-size: 1.15rem; }

.footer-tagline {
  font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-top: 10px;
  line-height: 1.65; max-width: 260px;
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover { background: rgba(255,255,255,0.16); }
.social-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; }

.footer-col h5 {
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  text-decoration: none; color: rgba(255,255,255,0.45);
  font-size: 0.83rem; transition: color .2s;
}

.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}

.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 720px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #062e28 0%, #0a4d41 45%, #0a7a6b 100%);
  padding: 80px 5vw 70px;
  position: relative; overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }

.page-hero .hero-badge { animation: none; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700; color: white;
  line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 18px;
  animation: fadeUp .7s ease .1s both;
}

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

.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  line-height: 1.7; margin-bottom: 32px; max-width: 560px;
  font-weight: 300;
  animation: fadeUp .7s ease .2s both;
}

.page-hero .hero-actions { animation: fadeUp .7s ease .3s both; }

/* ── INFO CARDS ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}

.info-card {
  background: white; border: 1.5px solid #d8ece8;
  border-radius: 20px; padding: 32px 28px;
  transition: all .3s; position: relative; overflow: hidden;
}

.info-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}

.info-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.info-card:hover::before { transform: scaleX(1); }

.info-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sky); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
}

.info-card-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; }

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px;
}

.info-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* ── FAQ ACCORDION ── */
.faq-section { padding: 80px 5vw; background: var(--mist); }

.faq-list { max-width: 780px; margin: 40px auto 0; }

.faq-item {
  background: white; border: 1px solid #e0edeb;
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
}

.faq-question {
  width: 100%; background: none; border: none;
  padding: 22px 28px; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  font-weight: 600; color: var(--charcoal);
  transition: background .2s;
}

.faq-question:hover { background: var(--sky); }

.faq-question .faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--sky); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .3s, background .2s;
}

.faq-question .faq-icon svg { width: 12px; height: 12px; stroke: var(--teal); fill: none; stroke-width: 2.5; }

.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); background: var(--teal); }
.faq-item.open .faq-question .faq-icon svg { stroke: white; }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 28px;
  font-size: 0.875rem; color: var(--slate); line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }

/* ── CAREERS ── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-top: 48px;
}

.job-card {
  background: white; border: 1.5px solid #d8ece8;
  border-radius: 20px; padding: 32px 28px;
  transition: all .3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}

.job-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}

.job-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.job-card:hover::before { transform: scaleX(1); }

.job-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sky); color: var(--teal);
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 16px; width: fit-content;
}

.job-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px;
}

.job-meta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px;
}

.job-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; color: var(--slate); font-weight: 500;
}

.job-tag svg { width: 13px; height: 13px; stroke: var(--slate); fill: none; stroke-width: 2; }

.job-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; flex: 1; margin-bottom: 24px; }

.job-card .btn { align-self: flex-start; }

.job-perks {
  background: var(--mist); border-radius: 16px; padding: 28px;
  margin-top: 12px;
}

.job-perks h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 14px;
}

.perks-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none;
}

.perks-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--slate);
}

.perks-list li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

/* ── APPLY MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: white; border-radius: 24px; padding: 40px;
  max-width: 520px; width: 90%; max-height: 90vh; overflow-y: auto;
  transform: translateY(30px); transition: transform .3s;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--charcoal);
}

.modal-close {
  background: var(--sky); border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0;
}

.modal-close:hover { background: var(--sky-mid); }
.modal-close svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 2.5; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #d8ece8; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  color: var(--charcoal); outline: none; transition: border-color .2s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%; border-collapse: collapse; margin-top: 40px;
  font-size: 0.875rem;
}

.compare-table th {
  background: var(--teal); color: white; padding: 14px 20px;
  text-align: left; font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}

.compare-table th:first-child { border-radius: 12px 0 0 0; }
.compare-table th:last-child { border-radius: 0 12px 0 0; }

.compare-table td {
  padding: 14px 20px; border-bottom: 1px solid #e0edeb;
  color: var(--slate); vertical-align: middle;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--mist); }

.check { color: var(--teal); font-weight: 700; font-size: 1rem; }
.cross { color: #c0392b; font-weight: 700; }

/* ── FIND CARE SEARCH ── */
.search-bar {
  display: flex; align-items: center; gap: 0;
  background: white; border: 1.5px solid #d8ece8;
  border-radius: 50px; overflow: hidden;
  box-shadow: var(--shadow); max-width: 640px;
  margin: 32px 0;
}

.search-bar input {
  flex: 1; border: none; outline: none;
  padding: 16px 24px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--charcoal);
}

.search-bar button {
  background: var(--teal); color: white; border: none;
  padding: 16px 28px; cursor: pointer;
  font-weight: 600; font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif; transition: background .2s;
}

.search-bar button:hover { background: var(--teal-dark); }

/* ── PROVIDER CARDS ── */
.provider-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 32px;
}

.provider-card {
  background: white; border: 1.5px solid #d8ece8;
  border-radius: 18px; padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .3s;
}

.provider-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }

.provider-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sky); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--teal);
}

.provider-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.provider-info p { font-size: 0.8rem; color: var(--slate); line-height: 1.5; }
.provider-info .provider-tag {
  display: inline-block; background: var(--sky); color: var(--teal);
  font-size: 0.7rem; font-weight: 600; padding: 2px 10px;
  border-radius: 20px; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .care-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .perks-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .care-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .stats-strip { flex-wrap: wrap; gap: 22px; }
  .stat-item { border-right: none; }
  .footer-top { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.78rem; }
}

/* ============================================================
   RESPONSIVE — COMPREHENSIVE BREAKPOINTS
   Added on top of existing rules; no existing rules removed.
   Breakpoints:
     1200px  — large laptop / small desktop
      960px  — tablet landscape / small laptop
      768px  — tablet portrait (iPad)
      600px  — large phone (already existed, extended)
      420px  — small phone
   ============================================================ */

/* ── HAMBURGER MENU BUTTON (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

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

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid #e0edeb;
  padding: 18px 5vw 24px;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  flex-direction: column;
  gap: 0;
}

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

.nav-mobile a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid #f0f5f4;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--teal); }

.nav-mobile .nav-mobile-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-mobile .nav-mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ── 1200px — Large laptop ── */
@media (max-width: 1200px) {
  .hero { padding: 70px 4vw 50px; }
  .section { padding: 70px 4vw; }
  .my-lifebridge { padding: 70px 4vw; }
  .faq-section { padding: 70px 4vw; }
  .cta-banner { padding: 60px 4vw; }
  footer { padding: 50px 4vw 28px; }
  .nav-links { gap: 1.4rem; }
}

/* ── 960px — Tablet landscape / small laptop ── */
@media (max-width: 960px) {
  /* Nav */
  .nav-links { gap: 1rem; font-size: 0.85rem; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 5vw 50px;
    text-align: center;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-image { display: none; }
  .hero p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-zip { max-width: 100%; }

  /* Stats */
  .stats-strip { gap: 0; flex-wrap: wrap; }
  .stat-item { padding: 18px 24px; flex: 1 1 50%; min-width: 140px; }
  .stat-item:nth-child(2) { border-right: none; }

  /* Two-col layouts */
  .two-col { grid-template-columns: 1fr; gap: 40px; }

  /* Grids */
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }

  /* Perks & form rows */
  .perks-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
    padding: 60px 5vw;
  }
  .cta-actions { justify-content: center; align-items: center !important; flex-direction: row !important; }
  .cta-banner h2 { max-width: 100%; }

  /* Page hero */
  .page-hero { padding: 60px 5vw 50px; }
  .page-hero-inner { max-width: 100%; }

  /* Compare table */
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── 768px — Tablet portrait (iPad) ── */
@media (max-width: 768px) {
  /* Nav: hide links, show hamburger */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 50px 5vw 44px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 50px 5vw 44px; }
  .page-hero h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .page-hero .hero-actions { flex-direction: column; align-items: flex-start; }
  .page-hero .hero-actions .btn { width: auto; }

  /* Stats */
  .stats-strip { padding: 20px 5vw; }
  .stat-item { padding: 14px 16px; }
  .stat-num { font-size: 1.6rem; }

  /* Section spacing */
  .section { padding: 60px 5vw; }
  .my-lifebridge { padding: 60px 5vw; }
  .faq-section { padding: 60px 5vw; }

  /* Plans grid */
  .plans-grid { grid-template-columns: 1fr 1fr; }

  /* Jobs */
  .jobs-grid { grid-template-columns: 1fr; }

  /* Modal */
  .modal { padding: 28px 22px; border-radius: 18px; max-width: 96vw; }
  .modal-title { font-size: 1.25rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  footer { padding: 44px 5vw 24px; }

  /* Section titles */
  .section-title { font-size: clamp(1.7rem, 5vw, 2.2rem); }

  /* Compare table */
  .compare-table { font-size: 0.8rem; }
  .compare-table th,
  .compare-table td { padding: 10px 12px; }

  /* Search bar */
  .search-bar { flex-direction: column; border-radius: 16px; overflow: hidden; }
  .search-bar input { border-radius: 0; padding: 14px 18px; width: 100%; }
  .search-bar button { border-radius: 0; width: 100%; padding: 14px 18px; }

  /* CTA banner */
  .cta-banner { padding: 50px 5vw; }
  .cta-actions { flex-direction: column !important; align-items: stretch !important; }
  .cta-actions .btn { text-align: center; justify-content: center; }
}

/* ── 600px — Large phone (extends existing rules) ── */
@media (max-width: 600px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 0 4vw; }

  /* Hero */
  .hero { padding: 40px 4vw 36px; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero p { font-size: 0.95rem; }

  /* Page hero */
  .page-hero { padding: 40px 4vw 36px; }
  .page-hero h1 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }

  /* Stats */
  .stats-strip { flex-wrap: wrap; gap: 0; padding: 16px 4vw; }
  .stat-item { border-right: none; flex: 1 1 50%; padding: 12px 10px; }
  .stat-num { font-size: 1.4rem; }

  /* Sections */
  .section { padding: 48px 4vw; }
  .my-lifebridge { padding: 48px 4vw; }
  .faq-section { padding: 48px 4vw; }
  footer { padding: 36px 4vw 20px; }

  /* Grids */
  .plans-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .provider-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Modal */
  .modal { padding: 24px 18px; max-width: 100%; border-radius: 16px 16px 0 0; }
  .modal-overlay { align-items: flex-end; }

  /* Compare table */
  .compare-table { font-size: 0.75rem; }
  .compare-table th,
  .compare-table td { padding: 8px 10px; }

  /* Section title */
  .section-title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .section-sub { font-size: 0.9rem; }

  /* Buttons */
  .btn-lg { padding: 13px 26px; font-size: 0.95rem; }

  /* Hero actions */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  /* CTA banner */
  .cta-banner { padding: 40px 4vw; flex-direction: column; gap: 24px; text-align: center; }
  .cta-actions { flex-direction: column !important; align-items: stretch !important; }
  .cta-actions .btn { text-align: center; justify-content: center; }

  /* Feature list */
  .feature-item { gap: 12px; }

  /* Job card */
  .job-card { padding: 24px 20px; }
  .perks-list { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: 0.9rem; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
}

/* ── 420px — Small phone ── */
@media (max-width: 420px) {
  .hero h1 { font-size: 1.7rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.45rem; }

  .stat-item { flex: 1 1 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }

  .plan-card { padding: 26px 20px; }
  .info-card { padding: 24px 18px; }
  .job-card { padding: 22px 16px; }

  .modal { padding: 20px 14px; }
  .modal-title { font-size: 1.1rem; }

  .btn { padding: 9px 18px; font-size: 0.82rem; }
  .btn-lg { padding: 12px 22px; font-size: 0.9rem; }

  nav { height: 62px; }
  .nav-mobile { top: 62px; }
}
