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

:root {
  --rose:      #db4f81;
  --rose-dark: #b83a68;
  --rose-light:#fbe6ee;
  --rose-mid:  #cc8ea8;
  --gold:      #ffcc66;
  --gold-dark: #a97a1f;
  --gold-light:#fff6e0;
  --navy:      #2b3a4a;
  --blue:      #6e95ce;
  --blue-dark: #3c71b2;
  --blue-light:#eaf0fa;
  --green:     #89b540;
  --green-light:#eef5e2;
  --cream:     #faf7f5;
  --white:     #ffffff;
  --text:      #474a50;
  --muted:     #767b85;
  --border:    #e3e7ee;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
a { color: inherit; }
img { max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 40px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 56px; width: auto; display: block; }

.nav-links-inline { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links-inline > li { position: relative; }
.nav-links-inline a { text-decoration: none; color: var(--navy); font-size: 14.5px; font-weight: 500; transition: color .2s; }
.nav-links-inline a:hover, .nav-links-inline a.current { color: var(--rose); }
.nav-links-inline li.has-dropdown > a::after { content: '▾'; font-size: 9px; margin-left: 5px; display: inline-block; color: var(--muted); position: relative; top: -1px; }
.nav-links-inline li.has-dropdown:hover > a::after,
.nav-links-inline li.has-dropdown:focus-within > a::after { color: var(--rose); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 16px 40px rgba(43,58,74,0.12); padding: 8px; min-width: 230px;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 60;
}
.nav-links-inline li.has-dropdown:hover .nav-dropdown-menu,
.nav-links-inline li.has-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 13.5px; color: var(--text); white-space: nowrap; font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--rose-light); color: var(--rose-dark); }

/* mobile drawer accordion */
.nav-links li { list-style: none; }
.dropdown-toggle-mobile {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  background: none; border: none; font-family: 'Inter', sans-serif;
  text-align: left; padding: 12px 0; border-bottom: 1px solid var(--border);
  color: var(--navy); font-size: 16px; font-weight: 500; cursor: pointer;
}
.dropdown-toggle-mobile:hover { color: var(--rose); }
.dropdown-toggle-mobile .caret { font-size: 17px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.dropdown-toggle-mobile.open .caret { transform: rotate(45deg); }
.mobile-submenu {
  list-style: none; max-height: 0; overflow: hidden;
  transition: max-height .28s ease; padding-left: 14px;
}
.mobile-submenu.open { max-height: 320px; }
.mobile-submenu a {
  display: block; padding: 10px 0; font-size: 14.5px; color: var(--muted);
  border-bottom: none; text-decoration: none;
}
.mobile-submenu a:hover { color: var(--rose); }
.nav-cta-inline {
  background: var(--rose); color: var(--white) !important;
  padding: 11px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background .2s;
}
.nav-cta-inline:hover { background: var(--rose-dark); }

.nav-hamburger {
  background: none; border: none; cursor: pointer;
  display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 300;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all .3s;
}
.nav-hamburger:hover span { background: var(--rose); }

.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

.nav-drawer {
  position: fixed; top: 0; right: -340px; width: 320px; height: 100vh;
  background: var(--white); z-index: 300;
  display: flex; flex-direction: column; gap: 0;
  padding: 32px 36px 40px;
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }

.nav-close {
  background: none; border: none; font-size: 20px; color: var(--muted);
  cursor: pointer; align-self: flex-end; margin-bottom: 32px; padding: 4px;
  line-height: 1; transition: color .2s;
}
.nav-close:hover { color: var(--rose); }

.nav-links { list-style: none; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.nav-links a {
  display: block; text-decoration: none; color: var(--navy);
  font-size: 16px; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.nav-links a:hover { color: var(--rose); padding-left: 6px; }
.nav-links li:last-child a { border-bottom: none; }

.nav-cta {
  background: var(--rose); color: var(--white);
  padding: 14px 24px; border-radius: 30px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  text-decoration: none; text-align: center; margin-top: 24px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--rose-dark); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 150px 60px 70px; background: var(--cream); text-align: center; }
.page-hero-tag { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 16px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.5vw, 50px); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
.page-hero h1 span { color: var(--rose); }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 640px; margin: 0 auto; line-height: 1.65; }

/* ── PAGE HERO WITH PHOTO ── */
.page-hero.has-img {
  position: relative; overflow: hidden; text-align: left;
  min-height: clamp(380px, 40vw, 660px); display: flex; align-items: center;
  padding: 150px 60px 70px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-position: top right; background-size: cover; background-repeat: no-repeat;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(250,247,245,0.9) 0%, rgba(250,247,245,0.8) 30%, rgba(250,247,245,0.42) 52%, rgba(250,247,245,0) 74%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 560px; }
.page-hero.has-img p { margin: 0; max-width: 100%; }

/* ── HOME HERO ── */
.hero {
  position: relative; min-height: 660px;
  display: flex; align-items: center;
  overflow: hidden; background: var(--cream); padding: 84px 0 56px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero.jpg') center right / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(250,247,245,0.96) 0%, rgba(250,247,245,0.88) 30%, rgba(250,247,245,0.4) 55%, rgba(250,247,245,0) 74%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: left; padding: 0 24px; max-width: 560px; margin-left: 64px;
}
.hero-tag {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 700; line-height: 1.15;
  color: var(--navy); margin-bottom: 22px;
}
.hero-title span { color: var(--rose); }
.hero-sub {
  font-size: 17px; font-weight: 300; color: var(--muted);
  line-height: 1.65; max-width: 480px; margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.hero .btn-outline { border-color: var(--navy); color: var(--navy); }
.hero .btn-outline:hover { background: rgba(43,58,74,0.08); }
.btn-primary {
  display: inline-block;
  background: var(--rose); color: var(--white);
  padding: 15px 36px; border-radius: 30px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.4px;
  text-decoration: none; transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.75); color: var(--white);
  padding: 13px 34px; border-radius: 30px;
  font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ── STATS BAR (light) ── */
.stats-bar {
  background: var(--white);
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; border-bottom: 1px solid var(--border);
}
.stat-item { padding: 40px 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 700; color: var(--rose);
}
.stat-item:nth-child(2) .stat-num { color: var(--blue-dark); }
.stat-item:nth-child(3) .stat-num { color: var(--green); }
.stat-item:nth-child(4) .stat-num { color: var(--gold-dark); }
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* ── SECTION SHARED ── */
.section-header { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rose); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 700;
  color: var(--navy); line-height: 1.2;
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 560px; margin: 14px auto 0; line-height: 1.65; }

/* ── AUDIENCE SPLIT (home) ── */
.audience-section { padding: 100px 60px; background: var(--cream); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1100px; margin: 0 auto; }
.audience-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.audience-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.audience-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.audience-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.audience-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.audience-card a { font-size: 14px; font-weight: 600; color: var(--rose); text-decoration: none; }
.audience-card a:hover { text-decoration: underline; }

/* ── PHYSICIAN-LED ── */
.physician-section { padding: 100px 60px; background: var(--white); }
.physician-inner { display: grid; grid-template-columns: 1fr auto; gap: 72px; align-items: center; max-width: 1100px; margin: 0 auto; }
.physician-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin: 12px 0 20px;
}
.physician-headline span { color: var(--rose); }
.physician-desc { font-size: 15px; color: var(--muted); line-height: 1.75; }
.physician-desc + .physician-desc { margin-top: 16px; }
.physician-video-wrap { max-width: 900px; margin: 72px auto 0; text-align: center; }
.physician-video-head { margin-bottom: 26px; }
.physician-video-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 32px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-top: 8px;
}
.physician-video {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(43,58,74,0.18);
  background: #000; aspect-ratio: 16 / 9;
}
.physician-video video { width: 100%; height: 100%; display: block; object-fit: cover; }
.badge-circle {
  width: 250px; height: 250px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 32px;
}
.badge-icon { font-size: 34px; margin-bottom: 12px; }
.badge-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.badge-sub { font-size: 11px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ── COMPENSATION (light card, not dark panel) ── */
.comp-hero { padding: 100px 60px; background: var(--cream); text-align: center; }
.comp-card {
  max-width: 720px; margin: 0 auto 44px; background: var(--white);
  border: 1px solid var(--border); border-radius: 24px; padding: 48px 40px;
  box-shadow: 0 20px 50px rgba(43,58,74,0.06);
}
.comp-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.5vw, 54px); font-weight: 700; color: var(--navy); line-height: 1.15; margin: 12px 0 16px; }
.comp-hero-title span { color: var(--rose); }
.comp-hero-sub { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.65; }
.covered-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1000px; margin: 0 auto 40px; }
.covered-item { padding: 26px 20px; border-radius: 14px; background: var(--white); border: 1px solid var(--border); text-align: center; }
.covered-icon { font-size: 26px; margin-bottom: 10px; }
.covered-title { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.covered-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }
.referral-card {
  max-width: 560px; margin: 0 auto; background: var(--gold-light);
  border: 1px solid rgba(169,122,31,0.25); border-radius: 16px; padding: 28px 32px; text-align: center;
}
.referral-amount { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--gold-dark); }
.referral-title { font-weight: 700; font-size: 15px; color: var(--navy); margin: 6px 0 6px; }
.referral-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── WHY GBSS ── */
.why-section { padding: 100px 60px; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.why-card {
  padding: 30px 22px; border-radius: 16px;
  border: 1px solid var(--border); background: var(--white);
  transition: box-shadow .25s, transform .25s; text-align: center;
}
.why-card:hover { box-shadow: 0 12px 40px rgba(219,79,129,0.15); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--rose-light); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin: 0 auto 18px;
}
.why-card:nth-child(2n) .why-icon { background: var(--blue-light); }
.why-card:nth-child(3n) .why-icon { background: var(--green-light); }
.why-title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PROCESS ── */
.process-section { padding: 100px 60px; background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-card { padding: 32px 24px; border-radius: 16px; background: var(--white); border: 1px solid var(--border); }
.process-num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--rose); opacity: 0.5; line-height: 1; margin-bottom: 14px; }
.process-time { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--rose); background: var(--rose-light); padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }
.process-title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.process-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── ELIGIBILITY / QUIZ ── */
.elig-section { padding: 100px 60px; background: var(--white); }
.elig-inner { max-width: 1200px; margin: 0 auto; }
.elig-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 56px; }
.elig-card {
  padding: 24px 20px; border-radius: 14px;
  border: 1px solid var(--border); background: var(--cream);
  transition: box-shadow .25s, transform .25s;
}
.elig-card:hover { box-shadow: 0 8px 28px rgba(219,79,129,0.13); transform: translateY(-3px); }
.elig-card-icon { font-size: 24px; margin-bottom: 10px; }
.elig-card-title { font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.elig-card-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── QUALIFY QUIZ ── */
.quiz-section { padding: 20px 24px 100px; background: var(--white); }
#gqz{ max-width:600px;margin:0 auto; }
#gqz *,#gqz *::before,#gqz *::after{box-sizing:border-box;}
#gqz .quiz-card{background:var(--cream);border-radius:16px;padding:48px 44px;box-shadow:0 20px 60px rgba(184,58,104,0.12);border:1px solid var(--border);}
#gqz .progress-row{display:flex;gap:6px;margin-bottom:36px;}
#gqz .progress-seg{flex:1;height:5px;border-radius:3px;background:var(--rose-mid);opacity:0.4;transition:background .3s, opacity .3s;}
#gqz .progress-seg.active{background:var(--gold);opacity:1;}
#gqz .progress-seg.done{background:var(--rose);opacity:1;}
#gqz .step{display:none;}
#gqz .step.active{display:block;animation:gqzFade .4s ease;}
@keyframes gqzFade{from{opacity:0;transform:translateY(12px);}to{opacity:1;transform:translateY(0);}}
#gqz .step-num{font-size:13px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--rose);margin-bottom:10px;}
#gqz .step-q{font-family:'Playfair Display',serif;font-size:26px;font-weight:700;color:var(--navy);margin-bottom:8px;line-height:1.25;}
#gqz .step-help{font-size:14px;color:var(--muted);margin-bottom:26px;}
#gqz .opt-list{display:flex;flex-direction:column;gap:12px;}
#gqz .opt{display:flex;align-items:center;gap:14px;width:100%;padding:16px 20px;border:2px solid var(--border);border-radius:10px;background:var(--white);cursor:pointer;text-align:left;font-family:'Inter',sans-serif;font-size:15px;font-weight:500;color:var(--text);transition:all .18s;line-height:1.4;}
#gqz .opt:hover{border-color:var(--rose);background:var(--rose-light);}
#gqz .opt-radio{width:20px;height:20px;border-radius:50%;border:2px solid var(--border);flex-shrink:0;transition:all .18s;}
#gqz .opt:hover .opt-radio{border-color:var(--rose);}
#gqz .btn-back{background:none;border:none;color:var(--muted);font-size:14px;cursor:pointer;margin-top:16px;width:100%;font-family:'Inter',sans-serif;transition:color .2s;}
#gqz .btn-back:hover{color:var(--rose);}
#gqz .result{display:none;text-align:center;animation:gqzFade .5s ease;}
#gqz .result.active{display:block;}
#gqz .result-icon{font-size:52px;margin-bottom:18px;}
#gqz .result-title{font-family:'Playfair Display',serif;font-size:28px;font-weight:700;line-height:1.2;margin-bottom:16px;}
#gqz .result-body{font-size:15px;color:var(--text);margin-bottom:26px;line-height:1.7;}
#gqz .result.qualify .result-title{color:var(--rose);}
#gqz .result.close .result-title{color:var(--gold-dark);}
#gqz .result.no .result-title{color:var(--navy);}
#gqz .result-btn{display:inline-block;background:var(--rose);color:var(--white);text-decoration:none;padding:15px 34px;border-radius:10px;font-size:15px;font-weight:600;transition:all .2s;}
#gqz .result-btn:hover{background:var(--rose-dark);transform:translateY(-1px);}
#gqz .restart{background:none;border:none;color:var(--muted);font-size:14px;cursor:pointer;margin-top:20px;text-decoration:underline;font-family:'Inter',sans-serif;}

/* ── TESTIMONIALS (light cards, colored accent) ── */
.testimonials { padding: 100px 60px; background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial-card {
  padding: 34px 30px; border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--rose);
}
.testimonial-card:nth-child(2n) { border-top-color: var(--blue); }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 56px; line-height: 1; color: var(--rose-mid);
  margin-bottom: 4px;
}
.testimonial-text { font-size: 14.5px; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--rose); overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 17px;
}
.author-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.author-detail { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 60px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  color: var(--navy); margin-bottom: 16px; line-height: 1.2;
}
.cta-banner p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto 32px; line-height: 1.65; }
.cta-banner .btn-white {
  background: var(--rose); color: var(--white);
  padding: 16px 44px; border-radius: 30px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.4px;
  text-decoration: none; display: inline-block;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.cta-banner .btn-white:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(219,79,129,0.25); }

/* ── FAQ ── */
.faq-section { padding: 100px 60px; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: 12px; background: var(--cream); border: 1px solid var(--border); overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 600; font-size: 15px; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--rose); font-weight: 300; flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: '\2212'; }
.faq-a { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── LGBTQIA+ CALLOUT ── */
.lgbtq-section { padding: 80px 60px; background: var(--cream); text-align: center; }
.lgbtq-inner { max-width: 700px; margin: 0 auto; }

/* ── GENERIC CONTENT SECTION (about/why/lgbtqia/etc.) ── */
.content-section { padding: 90px 60px; background: var(--white); }
.content-section.alt { background: var(--cream); }
.content-inner { max-width: 880px; margin: 0 auto; }
.content-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 34px); color: var(--navy); font-weight: 700; margin: 34px 0 14px; line-height: 1.25; }
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); font-weight: 700; margin: 26px 0 10px; }
.content-inner p { font-size: 15.5px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.content-inner ul { margin: 6px 0 16px 22px; color: var(--muted); font-size: 15px; line-height: 1.9; }
.content-inner strong { color: var(--text); }
.content-inner img { border-radius: 16px; margin: 10px 0 26px; }
.content-banner {
  width: 100%; height: clamp(200px, 26vw, 300px);
  object-fit: cover; border-radius: 16px;
  box-shadow: 0 16px 40px rgba(43,58,74,0.14);
  margin: 6px 0 30px;
}

/* ── BLOG INDEX ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1120px; margin: 0 auto; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px 26px 24px; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(43,58,74,0.10); }
.blog-date { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; line-height: 1.3; color: var(--navy); margin-bottom: 12px; font-weight: 700; }
.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card h3 a:hover { color: var(--rose); }
.blog-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.blog-readmore { font-size: 13.5px; font-weight: 600; color: var(--rose); text-decoration: none; align-self: flex-start; }
.blog-readmore:hover { color: var(--rose-dark); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── SINGLE ARTICLE ── */
.article { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.article-back { display: inline-block; margin-bottom: 22px; font-size: 14px; color: var(--rose); font-weight: 600; text-decoration: none; }
.article-back:hover { text-decoration: underline; }
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 16px; margin-bottom: 30px; }
.article-meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.article-meta .dot { margin: 0 8px; color: var(--border); }
.article h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); line-height: 1.2; color: var(--navy); margin-bottom: 22px; font-weight: 700; }
.article-body { font-size: 16.5px; color: var(--text); line-height: 1.85; }
.article-body p { margin-bottom: 20px; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--navy); font-weight: 700; margin: 34px 0 14px; }
.article-body h3, .article-body h4 { font-size: 19px; color: var(--navy); font-weight: 700; margin: 26px 0 10px; }
.article-body ul, .article-body ol { margin: 6px 0 20px 22px; line-height: 1.9; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--rose); font-weight: 600; text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-cta { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.content-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.content-two-col.align-start { align-items: start; }
.finance-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 30px 28px; box-shadow: 0 12px 34px rgba(43,58,74,0.06);
}
.finance-card-title {
  font-size: 12.5px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.feature-check { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-check li { position: relative; padding-left: 34px; font-size: 15px; color: var(--text); line-height: 1.5; }
.feature-check li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--rose-light); color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

/* ── CONTACT ── */
.contact { padding: 100px 60px; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; max-width: 1100px; margin: 0 auto; }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px;}
.contact-detail { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.contact-detail span:first-child { font-size: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--text); background: var(--cream);
  transition: border-color .2s; outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--rose); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--rose); color: var(--white);
  padding: 14px 36px; border-radius: 30px;
  border: none; font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background .2s, transform .2s; align-self: flex-start;
}
.form-submit:hover { background: var(--rose-dark); transform: translateY(-1px); }
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); margin-top: 28px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ── FOOTER (light, no dark panel) ── */
footer { background: var(--cream); padding: 56px 60px 32px; border-top: 4px solid transparent; border-image: linear-gradient(90deg, var(--blue), var(--rose), var(--green)) 1; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-inner img { height: 50px; width: auto; display: block; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--rose); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET & BELOW (≤900px)
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav .nav-links-inline { display: none; }
  nav .nav-cta-inline { display: none; }
  .nav-hamburger { display: flex; }
  .hero { flex-direction: column; align-items: stretch; height: auto; min-height: 0; padding: 96px 0 0; }
  .hero-bg { position: static; inset: auto; width: 100%; height: 280px; order: 2; }
  .hero-bg::after { display: none; }
  .hero-content { order: 1; max-width: 640px; margin: 0 auto; padding: 0 32px 40px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .page-hero { padding: 130px 28px 56px; }
  .page-hero.has-img {
    flex-direction: column; align-items: stretch;
    text-align: center; min-height: 0; padding: 96px 0 0;
  }
  .page-hero.has-img .page-hero-bg {
    position: static; inset: auto; width: 100%; height: 260px; order: 2;
    background-position: center;
  }
  .page-hero.has-img .page-hero-bg::after { display: none; }
  .page-hero.has-img .page-hero-content {
    order: 1; max-width: 640px; margin: 0 auto; padding: 0 28px 40px;
  }
  .audience-grid { grid-template-columns: 1fr; }
  .content-two-col { grid-template-columns: 1fr; gap: 30px; }
  .physician-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .badge-circle { margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid,
  .covered-grid,
  .process-grid,
  .elig-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — PHONE (≤680px)
   ══════════════════════════════════════════ */
@media (max-width: 680px) {
  nav { padding: 10px 20px; }
  .nav-logo img { height: 44px; }
  .nav-drawer { width: 300px; max-width: 85vw; padding: 28px 24px 32px; }

  .hero { padding-top: 84px; }
  .hero-bg { height: 220px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a { width: 100%; text-align: center; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 22px 12px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-left: 1px solid var(--border); }
  .stat-num { font-size: 24px; }

  .page-hero,
  .audience-section,
  .physician-section,
  .comp-hero,
  .why-section,
  .process-section,
  .elig-section,
  .testimonials,
  .faq-section,
  .lgbtq-section,
  .content-section,
  .contact { padding: 56px 22px; }
  .cta-banner { padding: 56px 22px; }
  .quiz-section { padding: 10px 18px 56px; }
  footer { padding: 48px 22px 24px; }

  .why-grid,
  .covered-grid,
  .process-grid,
  .elig-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .badge-circle { width: 210px; height: 210px; padding: 22px; }
  .comp-card { padding: 32px 22px; }

  #gqz .quiz-card { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
