/* ══════════════════════════════════════════════════════════════════
   Radiant Behavioral Health Group PLLC — Premium Stylesheet
   Inter + Playfair Display · Navy / Gold / White
══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --navy:       #08152e;
  --navy-mid:   #0f2347;
  --navy-light: #1a3a6e;
  --blue:       #1758c4;
  --blue-lt:    #2472e8;
  --gold:       #c8930a;
  --gold2:      #e8ab18;
  --gold-pale:  #fef8e8;
  --green:      #1a7a3a;
  --green2:     #22a050;
  --sky:        #edf3fb;
  --sky2:       #d4e5f7;
  --cream:      #f8f4ed;
  --white:      #ffffff;
  --ink:        #08152e;
  --body:       #2a3f5a;
  --muted:      #5a738e;
  --border:     rgba(8,21,46,.08);
  --border-md:  rgba(8,21,46,.14);
  --shadow-xs:  0 1px 4px rgba(8,21,46,.06);
  --shadow-sm:  0 4px 16px rgba(8,21,46,.08);
  --shadow:     0 8px 32px rgba(8,21,46,.12);
  --shadow-lg:  0 20px 60px rgba(8,21,46,.18);
  --shadow-gold:0 6px 24px rgba(200,147,10,.30);
  --r-sm:  8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100% }
a { color: inherit; text-decoration: none }
p { margin: 0 0 14px }
p:last-child { margin-bottom: 0 }
svg { flex-shrink: 0 }

.container { width: min(1240px, 92%); margin: auto }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #fff; color: #000; padding: 10px; z-index: 200
}
.skip-link:focus { left: 0 }

/* ── Announcement Bar ──────────────────────────────────────────── */
.announcement {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2px;
  border-bottom: 1px solid rgba(200,147,10,.18);
}
.announcement-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.ann-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
}
.ann-item svg { opacity: .7 }
.ann-item a { color: var(--gold2); transition: color .18s }
.ann-item a:hover { color: #fff }
.ann-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.15);
}

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-md);
  z-index: 100;
  box-shadow: 0 1px 12px rgba(8,21,46,.06);
}
.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 4px 0;
}
.brand { flex: 0 0 auto; display: flex; align-items: center }
.brand-logo, .brand img {
  height: 160px;
  width: auto;
  max-width: 500px;
  object-fit: contain;
  display: block;
}

/* ── Nav ───────────────────────────────────────────────────────── */
.main-nav { display: flex; gap: 0; align-items: center; flex: 1; justify-content: center }
.main-nav a {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--body);
  padding: 8px 10px;
  border-radius: var(--r-sm);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--sky); color: var(--blue) }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--navy);
  border: none;
  border-radius: var(--r-sm);
  padding: 11px 13px;
  cursor: pointer;
  transition: background .18s;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.menu-toggle:hover { background: var(--navy-mid) }
.nav-cta { white-space: nowrap; flex-shrink: 0 }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-sm);
  padding: 13px 26px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,147,10,.42) }
.btn.dark {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn.dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow) }
.btn.outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-md);
}
.btn.outline-dark:hover { background: var(--sky); transform: translateY(-2px) }
.btn.outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn.outline-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px) }
.btn.full-width { width: 100%; justify-content: center }
.btn.sm-btn { padding: 10px 18px; font-size: 12px }
.btn:active { transform: translateY(0) !important }
.btn:focus-visible { outline: 3px solid var(--gold2); outline-offset: 3px }
.nav-cta.btn {
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  font-size: 11.5px;
  box-shadow: var(--shadow-sm);
}
.nav-cta.btn:hover { background: var(--navy-mid); transform: translateY(-1px) }

/* ── Type ──────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.2px;
}
h1 {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  margin-bottom: 22px;
  line-height: 1.04;
}
h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}
h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px }
.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}
.lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--body);
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 0;
}
.section-sub {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 680px;
  margin: 0 auto 0;
}
.section { padding: 100px 0 }
.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-heading .section-sub { margin-top: 14px }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #f0f6ff 0%, #fff 45%, #faf8f4 100%);
  padding: 80px 0 90px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,147,10,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--green);
  border: 1.5px solid rgba(26,122,58,.22);
  border-radius: 999px;
  padding: 8px 18px 8px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
  letter-spacing: .2px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.22);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.22) }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,.08) }
}
.action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
}
.hero-trust-item svg { color: var(--gold) }
.hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 560px;
}
.hero-visual img {
  width: 100%; height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}
.floating-card {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(8,21,46,.94);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--r-lg);
  max-width: 300px;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,147,10,.25);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.floating-card-icon {
  background: rgba(200,147,10,.2);
  border-radius: var(--r-sm);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--gold2);
}
.floating-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.floating-card span {
  display: block;
  color: rgba(210,225,255,.65);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2px;
}

/* ── Stats Band ────────────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(200,147,10,.07), transparent),
    radial-gradient(ellipse 30% 60% at 10% 50%, rgba(26,58,110,.5), transparent);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative; z-index: 1;
}
.stat-card {
  padding: 52px 36px;
  border-left: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.stat-card:first-child { border-left: none }
.stat-card:hover { background: rgba(255,255,255,.03) }
.stat-icon {
  width: 52px; height: 52px;
  background: rgba(200,147,10,.14);
  border-radius: var(--r);
  display: grid; place-items: center;
  color: var(--gold2);
  margin-bottom: 20px;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.stat-card strong {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  margin-bottom: 6px;
}
.stat-card p {
  color: rgba(180,210,255,.5);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* ── About ─────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-copy h2 { margin-bottom: 20px }
.about-copy p { color: var(--body); font-size: 16px; line-height: 1.82; margin-bottom: 16px }
.about-features { display: grid; gap: 20px; margin-top: 36px }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.af-icon {
  width: 42px; height: 42px;
  background: var(--sky);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--blue);
  border: 1px solid var(--sky2);
}
.about-feature > div strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.about-feature > div p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.about-visual { position: relative }
.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
}
.about-badge-card {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.about-badge-card svg { color: var(--green); flex-shrink: 0 }
.about-badge-card strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
}
.about-badge-card span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

/* ── Video ─────────────────────────────────────────────────────── */
.video-section {
  background: linear-gradient(180deg, var(--sky) 0%, #fff 100%);
  padding: 96px 0;
}
.video-shell { max-width: 900px; margin: 0 auto; text-align: center }
.video-shell h2 { margin-bottom: 14px }
.video-shell .section-sub { margin: 0 auto 36px }
.video-wrapper {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  cursor: pointer;
  border: 1px solid var(--border-md);
}
.promo-video { width: 100%; display: block }
.video-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,21,46,.38);
  transition: opacity .3s ease;
}
.video-overlay.hidden { opacity: 0; pointer-events: none }
.play-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform .22s;
}
.video-wrapper:hover .play-badge { transform: scale(1.06) }
.play-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(200,147,10,.95);
  display: grid; place-items: center;
  color: var(--navy);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.play-badge > span {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  letter-spacing: .2px;
}

/* ── Services ──────────────────────────────────────────────────── */
.services-section {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,147,10,.22) }
.service-card:hover::before { transform: scaleX(1) }
.service-card-wide { grid-column: span 2 }
.svc-icon-wrap {
  width: 56px; height: 56px;
  background: var(--sky);
  border-radius: var(--r);
  display: grid; place-items: center;
  color: var(--blue);
  margin-bottom: 20px;
  border: 1px solid var(--sky2);
  transition: background .25s, color .25s;
}
.service-card:hover .svc-icon-wrap { background: var(--navy); color: var(--gold2) }
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.2px;
}
.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.78;
  margin: 0;
}
.disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 36px;
  padding: 16px 24px;
  background: var(--sky);
  border-radius: var(--r-sm);
  border: 1px solid var(--sky2);
}

/* ── Conditions ────────────────────────────────────────────────── */
.conditions-section {
  background: linear-gradient(180deg, #fff 0%, var(--sky) 100%);
}
.conditions-hero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 40px 0 48px;
  box-shadow: var(--shadow);
  height: 340px;
}
.conditions-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.conditions-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,21,46,.72) 0%, rgba(8,21,46,.28) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 56px;
  color: #fff;
}
.conditions-hero-overlay h3 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.conditions-hero-overlay p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  margin: 0;
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
details.condition-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s, transform .25s;
}
details.condition-card:hover { transform: translateY(-4px); box-shadow: var(--shadow) }
details.condition-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
details.condition-card summary::-webkit-details-marker { display: none }
details.condition-card summary::marker { content: '' }
details.condition-card summary img {
  width: 100%; height: 140px;
  object-fit: cover;
  display: block;
}
.condition-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  gap: 8px;
}
.cond-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}
.cond-toggle {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform .25s;
}
details[open] .cond-toggle { transform: rotate(180deg) }
.condition-detail {
  padding: 0 16px 18px;
  border-top: 1px solid var(--sky2);
  animation: slideDown .28s ease;
}
.condition-detail p {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--muted);
  margin: 12px 0 0;
}
.condition-detail a { color: var(--blue); text-decoration: underline }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px) } to { opacity: 1; transform: none } }

/* ── Who We Serve ──────────────────────────────────────────────── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}
.serve-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
}
.serve-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg) }
.serve-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.serve-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.serve-card:hover .serve-img-wrap img { transform: scale(1.06) }
.serve-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,21,46,.15), rgba(8,21,46,.55));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: opacity .28s;
}
.serve-icon-lg {
  width: 48px; height: 48px;
  background: rgba(200,147,10,.88);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  color: var(--navy);
}
.serve-body {
  padding: 22px 20px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.serve-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.serve-body p { color: var(--muted); font-size: 14px; line-height: 1.68; margin-bottom: 16px; flex: 1 }
.serve-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  background: var(--sky);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--sky2);
}

/* ── Provider ──────────────────────────────────────────────────── */
.provider-section {
  background: linear-gradient(140deg, var(--sky) 0%, #fff 60%);
}
.provider-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,147,10,.2);
  position: relative;
  overflow: hidden;
}
.provider-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 100% 50%, rgba(200,147,10,.09), transparent),
    radial-gradient(ellipse 35% 50% at 0% 0%, rgba(26,58,110,.4), transparent);
  pointer-events: none;
}
.provider-img-col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.provider-logo-frame {
  background: rgba(255,255,255,.96);
  border-radius: var(--r-lg);
  padding: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.provider-logo-frame img { max-height: 160px; width: 100%; object-fit: contain }
.provider-credentials { display: flex; flex-direction: column; gap: 8px; width: 100% }
.cred-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(200,147,10,.25);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  color: rgba(230,240,255,.82);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .2px;
}
.cred-badge svg { color: var(--gold2) }
.provider-bio-col { position: relative; z-index: 1 }
.provider-bio-col .eyebrow { color: var(--gold2) }
.provider-bio-col h2 { color: #fff; font-size: clamp(26px, 3.2vw, 42px); margin-bottom: 6px }
.provider-lead {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.provider-bio-col p {
  color: rgba(210,225,255,.82);
  font-size: 15.5px;
  line-height: 1.82;
  margin-bottom: 16px;
}
.provider-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px }

/* ── Insurance ─────────────────────────────────────────────────── */
.insurance-section {
  background: linear-gradient(180deg, #fff 0%, var(--sky) 100%);
}
.insurance-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.insurance-header h2 { margin-bottom: 10px }
.insurance-header p { color: var(--muted); font-size: 15.5px; max-width: 540px }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.plan-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.plan-card svg { color: var(--green); flex-shrink: 0 }
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(200,147,10,.25) }

/* ── Forms (Verification + Referral) ───────────────────────────── */
.cream-section { background: var(--cream) }
.form-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.form-intro h2 { margin-bottom: 16px }
.form-intro > p { color: var(--muted); font-size: 16px; line-height: 1.8 }
.form-promise { display: grid; gap: 12px; margin-top: 28px }
.fp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.fp-item svg { color: var(--gold); flex-shrink: 0 }
.referral-steps { display: grid; gap: 14px; margin-top: 28px }
.ref-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ref-step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.ref-step strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.ref-step p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6 }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--body);
}
input, textarea, select {
  width: 100%;
  display: block;
  margin-top: 6px;
  border: 1.5px solid var(--sky2);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font: 15px/1.5 'Inter', sans-serif;
  background: var(--sky);
  color: var(--ink);
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200,147,10,.12);
}
input::placeholder, textarea::placeholder { color: var(--muted); font-weight: 400 }
textarea { resize: vertical; min-height: 100px }
.form-card .btn { margin-top: 4px }
.form-note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}
.form-note a { color: var(--blue); text-decoration: underline }
.req { color: var(--gold) }

/* ── Resources ─────────────────────────────────────────────────── */
.resources-section { background: linear-gradient(180deg, var(--sky) 0%, #fff 100%) }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.resource-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform .28s, box-shadow .28s;
  display: flex;
  flex-direction: column;
}
.resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow) }
.resource-img {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--sky);
}
.resource-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}
.resource-card:hover .resource-img img { transform: scale(1.04) }
.resource-img-overlay {
  position: absolute; inset: 0;
  background: rgba(8,21,46,.0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity .28s, background .28s;
}
.resource-card:hover .resource-img-overlay { opacity: 1; background: rgba(8,21,46,.45) }
.resource-body { padding: 24px; flex: 1; display: flex; flex-direction: column }
.resource-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.resource-body p { color: var(--muted); font-size: 14px; line-height: 1.68; margin-bottom: 18px; flex: 1 }
.biz-card { grid-column: span 3; display: grid; grid-template-columns: 1.4fr 1fr; }
.biz-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  padding: 28px;
  gap: 16px;
}
.biz-preview-grid img { border-radius: var(--r-sm); border: 1px solid rgba(200,147,10,.3) }
.biz-btns { display: flex; gap: 10px; flex-wrap: wrap }

/* ── CTA Banner ────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(200,147,10,.08), transparent);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; margin-bottom: 10px; font-size: clamp(24px, 3.5vw, 42px) }
.cta-inner p { color: rgba(210,225,255,.7); font-size: 16px; margin: 0; max-width: 520px }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0 }

/* ── Contact ───────────────────────────────────────────────────── */
.contact-section { background: linear-gradient(130deg, var(--sky) 0%, #fff 60%) }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-col h2 { margin-bottom: 14px }
.contact-info-col > p { color: var(--muted); font-size: 16px; line-height: 1.78; margin-bottom: 36px }
.contact-items { display: grid; gap: 12px }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  box-shadow: var(--shadow-xs);
}
a.contact-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(200,147,10,.3);
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--sky);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--blue);
  border: 1px solid var(--sky2);
}
.ci-text span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
  margin-bottom: 3px;
}
.ci-text strong { display: block; font-size: 15px; color: var(--ink); font-weight: 700 }
.contact-cta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.contact-cta-card h3 { font-size: 26px; margin-bottom: 14px }
.contact-cta-card p { color: var(--muted); font-size: 15.5px; line-height: 1.78; margin-bottom: 28px }
.contact-or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.contact-or::before, .contact-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-md);
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, #050e20 0%, var(--navy) 100%);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
  border-top: 1px solid rgba(200,147,10,.15);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  height: 100px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}
.footer-brand-col > p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(210,225,255,.55);
  margin-bottom: 20px;
}
.footer-contact-quick { display: grid; gap: 8px }
.footer-contact-quick a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .18s;
}
.footer-contact-quick a:hover { color: #fff }
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px }
.footer-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(210,225,255,.55);
  transition: color .18s;
}
.footer-nav a:hover { color: var(--gold2) }
.footer-info-list { display: grid; gap: 12px }
.fi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(210,225,255,.55);
}
.fi-item svg { color: var(--gold2); flex-shrink: 0 }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(200,215,235,.32);
  margin: 0;
}
.footer-legal { color: rgba(200,215,235,.22) !important; font-size: 11.5px !important }

/* ── Scroll Animations ─────────────────────────────────────────── */
.section-animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.section-animate.visible { opacity: 1; transform: none }

/* ── Sticky Call (mobile) ──────────────────────────────────────── */
.sticky-call { display: none }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */

/* ── 1180px ────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .brand-logo, .brand img { height: 105px; max-width: 340px }
  .main-nav a { font-size: 10px; padding: 7px 8px }
  .conditions-grid { grid-template-columns: repeat(2,1fr) }
  .plan-grid { grid-template-columns: repeat(3,1fr) }
}

/* ── 1040px — tablet / hamburger ──────────────────────────────── */
@media (max-width: 1040px) {
  .main-nav { display: none }
  .menu-toggle { display: flex }
  .nav-cta { display: none }
  .main-nav.open {
    position: absolute; left: 0; right: 0; top: 100%;
    display: grid;
    padding: 8px 0 18px;
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
    z-index: 98;
    background: #fff;
    border-bottom: 2px solid var(--sky2);
    box-shadow: 0 16px 40px rgba(8,21,46,.14);
  }
  .main-nav.open a {
    display: block;
    padding: 14px 6%;
    font-size: 14px;
    border-bottom: 1px solid var(--sky);
    border-radius: 0;
    color: var(--navy);
  }
  .main-nav.open a:last-child { border-bottom: 0 }
  .main-nav.open a:hover { background: var(--sky); color: var(--blue) }

  .hero-grid, .about-grid, .form-split, .contact-grid { grid-template-columns: 1fr }
  .about-visual { order: -1 }
  .about-img-wrap img { height: 360px }
  .hero-visual { min-height: unset }
  .hero-visual img { min-height: 360px }
  .stats-grid { grid-template-columns: repeat(2,1fr) }
  .serve-grid { grid-template-columns: repeat(2,1fr) }
  .service-grid { grid-template-columns: repeat(2,1fr) }
  .service-card-wide { grid-column: span 2 }
  .conditions-grid { grid-template-columns: repeat(2,1fr) }
  .plan-grid { grid-template-columns: repeat(2,1fr) }
  .provider-card { grid-template-columns: 1fr; text-align: center; padding: 48px }
  .provider-credentials { flex-direction: row; justify-content: center; flex-wrap: wrap }
  .provider-actions { justify-content: center }
  .insurance-header { flex-direction: column; align-items: flex-start }
  .footer-top { grid-template-columns: 1fr 1fr }
  .footer-brand-col { grid-column: span 2 }
  .biz-card { grid-template-columns: 1fr; grid-column: span 3 }
  .cta-inner { text-align: center; justify-content: center; flex-direction: column }
}

/* ── 820px ─────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .resource-grid { grid-template-columns: repeat(2,1fr) }
  .biz-card { grid-column: span 2; grid-template-columns: 1fr }
  .footer-top { grid-template-columns: 1fr; gap: 36px }
  .footer-brand-col { grid-column: span 1 }
}

/* ── 680px — phones ────────────────────────────────────────────── */
@media (max-width: 680px) {
  body { padding-bottom: 80px }

  .sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    left: 14px; right: 14px; bottom: 14px;
    z-index: 200;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--navy);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 16px;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-gold);
    text-decoration: none;
  }

  .announcement-inner { gap: 8px; flex-direction: column; text-align: center }
  .ann-divider { display: none }
  .ann-item:last-child { display: none }

  .brand-logo, .brand img { height: 80px; max-width: 280px }
  .menu-toggle { padding: 10px 12px }

  h1 { font-size: clamp(28px, 9.5vw, 40px) }
  h2 { font-size: clamp(24px, 7.5vw, 32px) }

  .hero { padding: 48px 0 52px }
  .hero-trust { gap: 8px 16px }
  .hero-trust-item { font-size: 12px }
  .action-row { flex-direction: column }
  .action-row .btn { width: 100% }
  .floating-card { left: 12px; right: 12px; bottom: 12px; max-width: none }

  .stats-grid, .serve-grid, .service-grid, .resource-grid { grid-template-columns: 1fr }
  .service-card-wide { grid-column: span 1 }
  .conditions-grid { grid-template-columns: 1fr }
  .plan-grid { grid-template-columns: 1fr 1fr }
  .biz-card { grid-column: span 1; grid-template-columns: 1fr }
  .form-row { grid-template-columns: 1fr }

  .section { padding: 64px 0 }
  .form-card { padding: 28px }
  .provider-card { padding: 32px }
  .contact-cta-card { padding: 28px }

  .footer-top { gap: 28px }
  .footer-bottom { flex-direction: column; text-align: center }
  .footer-nav { grid-template-columns: 1fr 1fr }

  .conditions-hero { height: 240px }
  .conditions-hero-overlay { padding: 24px 28px }
  .conditions-hero-overlay h3 { font-size: 22px }

  .cta-banner { padding: 52px 0 }
  .cta-actions { flex-direction: column; width: 100% }
  .cta-actions .btn { width: 100%; justify-content: center }

  input, textarea, select { font-size: 16px !important }
}

/* ── 400px — small phones ──────────────────────────────────────── */
@media (max-width: 400px) {
  .brand-logo, .brand img { height: 68px; max-width: 240px }
  .container { width: 94% }
  .btn { padding: 13px 18px; font-size: 12px }
  .plan-grid { grid-template-columns: 1fr }
}
