/* Legion Health — lgh.css */
/* DM Sans headings + Inter body | Warm Teal + Sage palette */

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --lgh-primary: #1E6E6E;
  --lgh-primary-light: #2D9494;
  --lgh-primary-pale: #E8F4F4;
  --lgh-accent: #4EADA0;
  --lgh-accent-warm: #E07B54;
  --lgh-accent-warm-dark: #C4663F;
  --lgh-neutral-dark: #1C2A2A;
  --lgh-neutral-mid: #4A5E5E;
  --lgh-neutral-light: #8BA3A3;
  --lgh-white: #FFFFFF;
  --lgh-cream: #F8FAFA;
  --lgh-sage: #EEF6F5;
  --lgh-hero-dark: #0F2525;
  --lgh-text-body: #2C3E3E;
  --lgh-text-muted: #6B8282;
  --lgh-border: rgba(30, 110, 110, 0.12);
  --lgh-shadow: 0 4px 24px rgba(30, 110, 110, 0.08);
  --lgh-shadow-md: 0 8px 32px rgba(30, 110, 110, 0.12);
  --lgh-radius-card: 12px;
  --lgh-radius-btn: 8px;
  --lgh-radius-pill: 24px;
  --lgh-font-head: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --lgh-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --lgh-max-width: 1200px;
  --lgh-section-pad: 96px;
  --lgh-section-pad-mobile: 64px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--lgh-font-body);
  font-weight: 400;
  color: var(--lgh-text-body);
  background: var(--lgh-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lgh-primary);
  text-decoration: none;
}

a:hover {
  color: var(--lgh-primary-light);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--lgh-font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--lgh-neutral-dark);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.lgh-container {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.lgh-section {
  padding: var(--lgh-section-pad) 0;
}

.lgh-section--cream { background: var(--lgh-cream); }
.lgh-section--sage { background: var(--lgh-sage); }
.lgh-section--pale { background: var(--lgh-primary-pale); }
.lgh-section--white { background: var(--lgh-white); }
.lgh-section--dark { background: var(--lgh-hero-dark); }
.lgh-section--primary { background: var(--lgh-primary); }

.lgh-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lgh-section__eyebrow {
  font-family: var(--lgh-font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgh-accent);
  margin-bottom: 12px;
  display: block;
}

.lgh-section__title {
  margin-bottom: 16px;
}

.lgh-section__subtitle {
  font-size: 1.125rem;
  color: var(--lgh-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.lgh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--lgh-font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--lgh-radius-btn);
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.lgh-btn:focus-visible {
  outline: 3px solid var(--lgh-accent);
  outline-offset: 2px;
}

.lgh-btn--primary {
  background: var(--lgh-primary);
  color: var(--lgh-white);
  border-color: var(--lgh-primary);
}

.lgh-btn--primary:hover {
  background: var(--lgh-primary-light);
  border-color: var(--lgh-primary-light);
  color: var(--lgh-white);
  box-shadow: var(--lgh-shadow-md);
  transform: translateY(-1px);
}

.lgh-btn--warm {
  background: var(--lgh-accent-warm);
  color: var(--lgh-white);
  border-color: var(--lgh-accent-warm);
}

.lgh-btn--warm:hover {
  background: var(--lgh-accent-warm-dark);
  border-color: var(--lgh-accent-warm-dark);
  color: var(--lgh-white);
  box-shadow: 0 8px 24px rgba(224, 123, 84, 0.3);
  transform: translateY(-1px);
}

.lgh-btn--outline {
  background: transparent;
  color: var(--lgh-primary);
  border-color: var(--lgh-primary);
}

.lgh-btn--outline:hover {
  background: var(--lgh-primary);
  color: var(--lgh-white);
}

.lgh-btn--outline-white {
  background: transparent;
  color: var(--lgh-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.lgh-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--lgh-white);
}

.lgh-btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.lgh-btn--sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.lgh-link {
  color: var(--lgh-primary);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.lgh-link:hover {
  color: var(--lgh-primary-light);
}

.lgh-link--white {
  color: rgba(255, 255, 255, 0.8);
}

.lgh-link--white:hover {
  color: var(--lgh-white);
}

/* ============================================================
   Navigation
   ============================================================ */
.lgh-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0 24px;
}

.lgh-nav.lgh-nav--scrolled {
  background: var(--lgh-white);
  box-shadow: 0 2px 16px rgba(30, 110, 110, 0.1);
}

body.lgh-page--light-top .lgh-nav {
  background: var(--lgh-white);
  box-shadow: 0 2px 16px rgba(30, 110, 110, 0.1);
}

.lgh-nav__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.lgh-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lgh-nav__logo-svg {
  width: auto;
  height: 36px;
  max-width: 200px;
}

.lgh-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.lgh-nav__link {
  font-family: var(--lgh-font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lgh-neutral-dark);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.lgh-nav__link:hover {
  color: var(--lgh-primary);
  background: var(--lgh-sage);
}

.lgh-nav__link--active {
  color: var(--lgh-primary);
}

.lgh-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lgh-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.lgh-nav__hamburger:hover {
  background: var(--lgh-sage);
}

.lgh-nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lgh-neutral-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.lgh-nav--open .lgh-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lgh-nav--open .lgh-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.lgh-nav--open .lgh-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.lgh-nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--lgh-hero-dark);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 40px 40px;
}

.lgh-nav__mobile-overlay.lgh-nav__mobile-overlay--open {
  display: flex;
}

.lgh-nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.lgh-nav__mobile-close:hover {
  color: var(--lgh-white);
}

.lgh-nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 40px;
}

.lgh-nav__mobile-link {
  font-family: var(--lgh-font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  width: 100%;
  text-align: center;
}

.lgh-nav__mobile-link:hover {
  color: var(--lgh-white);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   Hero — Index
   ============================================================ */
.lgh-hero {
  background: var(--lgh-cream);
  padding: 80px 24px 96px;
  overflow: hidden;
}

.lgh-hero__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lgh-hero__eyebrow {
  font-family: var(--lgh-font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgh-accent);
  margin-bottom: 16px;
  display: block;
}

.lgh-hero__headline {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--lgh-neutral-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.lgh-hero__subhead {
  font-size: 1.125rem;
  color: var(--lgh-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.lgh-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.lgh-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lgh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--lgh-white);
  border: 1px solid var(--lgh-border);
  border-radius: var(--lgh-radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lgh-neutral-mid);
  box-shadow: var(--lgh-shadow);
}

.lgh-hero__badge i {
  color: var(--lgh-primary);
  font-size: 0.75rem;
}

.lgh-hero__visual {
  position: relative;
}

.lgh-hero__img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--lgh-shadow-md);
  aspect-ratio: 4/3;
}

.lgh-hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--lgh-primary-pale) 0%, var(--lgh-sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--lgh-shadow-md);
}

.lgh-hero__img-placeholder-icon {
  font-size: 4rem;
  color: var(--lgh-primary);
  opacity: 0.4;
}

/* ============================================================
   Sub-page hero
   ============================================================ */
.lgh-subhero {
  padding: 72px 24px 80px;
}

.lgh-subhero--cream { background: var(--lgh-cream); }
.lgh-subhero--sage { background: var(--lgh-sage); }
.lgh-subhero--white { background: var(--lgh-white); }
.lgh-subhero--dark { background: var(--lgh-hero-dark); }

.lgh-subhero__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.lgh-subhero__inner--centered {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
}

.lgh-subhero__eyebrow {
  font-family: var(--lgh-font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgh-accent);
  margin-bottom: 12px;
  display: block;
}

.lgh-subhero__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
}

.lgh-subhero__headline--white {
  color: var(--lgh-white);
}

.lgh-subhero__subhead {
  font-size: 1.0625rem;
  color: var(--lgh-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.lgh-subhero__subhead--white {
  color: rgba(255, 255, 255, 0.78);
}

.lgh-subhero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lgh-subhero__visual {
  position: relative;
}

.lgh-subhero__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/2;
  box-shadow: var(--lgh-shadow-md);
}

.lgh-subhero__stat-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lgh-subhero__stat-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lgh-radius-card);
  padding: 20px 16px;
  text-align: center;
}

.lgh-subhero__stat-tile-number {
  font-family: var(--lgh-font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lgh-white);
  display: block;
  margin-bottom: 4px;
}

.lgh-subhero__stat-tile-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   Trust Bar
   ============================================================ */
.lgh-trust-bar {
  background: var(--lgh-white);
  border-top: 2px solid var(--lgh-border);
  border-bottom: 2px solid var(--lgh-border);
  padding: 24px;
}

.lgh-trust-bar__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.lgh-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lgh-font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lgh-neutral-mid);
}

.lgh-trust-bar__item i {
  color: var(--lgh-primary);
  font-size: 1rem;
}

/* ============================================================
   Conditions Grid
   ============================================================ */
.lgh-conditions {
  background: var(--lgh-sage);
  padding: var(--lgh-section-pad) 24px;
}

.lgh-conditions__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
}

.lgh-conditions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lgh-condition-card {
  background: var(--lgh-white);
  border-radius: var(--lgh-radius-card);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  box-shadow: var(--lgh-shadow);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.lgh-condition-card:hover {
  border-color: var(--lgh-primary);
  box-shadow: var(--lgh-shadow-md);
  transform: translateY(-2px);
}

.lgh-condition-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lgh-primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.lgh-condition-card__icon i {
  font-size: 1.25rem;
  color: var(--lgh-primary);
}

.lgh-condition-card__title {
  font-family: var(--lgh-font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
  margin-bottom: 8px;
}

.lgh-condition-card__desc {
  font-size: 0.9rem;
  color: var(--lgh-text-muted);
  line-height: 1.6;
  margin: 0;
}

.lgh-conditions__cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   How It Works (3-step)
   ============================================================ */
.lgh-steps {
  background: var(--lgh-white);
  padding: var(--lgh-section-pad) 24px;
}

.lgh-steps__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
}

.lgh-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.lgh-steps__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.666% + 16px);
  right: calc(16.666% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--lgh-primary-pale), var(--lgh-primary), var(--lgh-primary-pale));
}

.lgh-step {
  text-align: center;
  position: relative;
}

.lgh-step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lgh-primary);
  color: var(--lgh-white);
  font-family: var(--lgh-font-head);
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(30, 110, 110, 0.3);
}

.lgh-step__title {
  font-family: var(--lgh-font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
  margin-bottom: 10px;
}

.lgh-step__desc {
  font-size: 0.9375rem;
  color: var(--lgh-text-muted);
  line-height: 1.65;
  margin: 0;
}

.lgh-steps__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   Insurance Callout
   ============================================================ */
.lgh-insurance-callout {
  background: var(--lgh-primary-pale);
  padding: var(--lgh-section-pad) 24px;
}

.lgh-insurance-callout__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lgh-insurance-callout__headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--lgh-neutral-dark);
  margin-bottom: 12px;
}

.lgh-insurance-callout__subhead {
  font-size: 1.0625rem;
  color: var(--lgh-text-muted);
  margin-bottom: 24px;
}

.lgh-insurance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lgh-insurance-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--lgh-white);
  border: 1.5px solid var(--lgh-border);
  border-radius: var(--lgh-radius-pill);
  font-family: var(--lgh-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lgh-primary);
  box-shadow: var(--lgh-shadow);
}

/* ============================================================
   Testimonials
   ============================================================ */
.lgh-testimonials {
  background: var(--lgh-cream);
  padding: var(--lgh-section-pad) 24px;
}

.lgh-testimonials__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
}

.lgh-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lgh-testimonial-card {
  background: var(--lgh-white);
  border-radius: var(--lgh-radius-card);
  padding: 32px 28px;
  box-shadow: var(--lgh-shadow);
  position: relative;
}

.lgh-testimonial-card__quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--lgh-primary);
  margin-bottom: 16px;
  font-family: Georgia, serif;
  display: block;
}

.lgh-testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--lgh-text-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.lgh-testimonial-card__attribution {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lgh-text-muted);
  font-style: normal;
}

/* ============================================================
   Provider Recruitment Teaser
   ============================================================ */
.lgh-provider-teaser {
  background: var(--lgh-hero-dark);
  padding: var(--lgh-section-pad) 24px;
}

.lgh-provider-teaser__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lgh-provider-teaser__eyebrow {
  font-family: var(--lgh-font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgh-accent);
  margin-bottom: 12px;
  display: block;
}

.lgh-provider-teaser__headline {
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--lgh-white);
  margin-bottom: 16px;
}

.lgh-provider-teaser__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.lgh-provider-teaser__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/2;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   States Map Teaser
   ============================================================ */
.lgh-states-teaser {
  background: var(--lgh-white);
  padding: var(--lgh-section-pad) 24px;
}

.lgh-states-teaser__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
  text-align: center;
}

.lgh-states-teaser__map {
  max-width: 760px;
  margin: 40px auto 32px;
}

.lgh-states-teaser__link {
  margin-top: 24px;
}

/* ============================================================
   Final CTA Band
   ============================================================ */
.lgh-cta-band {
  background: var(--lgh-primary);
  padding: 80px 24px;
  text-align: center;
}

.lgh-cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
}

.lgh-cta-band__headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--lgh-white);
  margin-bottom: 12px;
}

.lgh-cta-band__subhead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

/* ============================================================
   Footer
   ============================================================ */
.lgh-footer {
  background: var(--lgh-hero-dark);
  padding: 64px 24px 0;
  color: rgba(255, 255, 255, 0.75);
}

.lgh-footer__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
}

.lgh-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.lgh-footer__brand {
  padding-right: 24px;
}

.lgh-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.lgh-footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.lgh-footer__crisis {
  background: rgba(224, 123, 84, 0.12);
  border: 1px solid rgba(224, 123, 84, 0.3);
  border-radius: var(--lgh-radius-card);
  padding: 14px 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-style: italic;
}

.lgh-footer__crisis strong {
  color: var(--lgh-accent-warm);
  font-style: normal;
}

.lgh-footer__col-heading {
  font-family: var(--lgh-font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.lgh-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lgh-footer__col-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lgh-footer__col-link:hover {
  color: var(--lgh-white);
}

.lgh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   Cookie Banner
   ============================================================ */
.lgh-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--lgh-hero-dark);
  border-top: 2px solid var(--lgh-primary);
  padding: 20px 24px;
  display: none;
}

.lgh-cookie.lgh-cookie--visible {
  display: block;
}

.lgh-cookie__inner {
  max-width: var(--lgh-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lgh-cookie__text {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  min-width: 240px;
}

.lgh-cookie__text a {
  color: var(--lgh-accent);
}

.lgh-cookie__text a:hover {
  color: var(--lgh-primary-light);
}

.lgh-cookie__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

body.cookie-visible {
  padding-bottom: 80px;
}

/* ============================================================
   Blog Cards
   ============================================================ */
.lgh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lgh-blog-card {
  background: var(--lgh-white);
  border-radius: var(--lgh-radius-card);
  overflow: hidden;
  box-shadow: var(--lgh-shadow);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.lgh-blog-card:hover {
  box-shadow: var(--lgh-shadow-md);
  transform: translateY(-3px);
}

.lgh-blog-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.lgh-blog-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--lgh-primary-pale), var(--lgh-sage));
  display: flex;
  align-items: center;
  justify-content: center;
}

.lgh-blog-card__img-placeholder i {
  font-size: 2rem;
  color: var(--lgh-primary);
  opacity: 0.4;
}

.lgh-blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lgh-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.lgh-blog-card__category {
  display: inline-block;
  padding: 3px 10px;
  background: var(--lgh-primary-pale);
  color: var(--lgh-primary);
  border-radius: var(--lgh-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--lgh-font-head);
}

.lgh-blog-card__date {
  font-size: 0.8125rem;
  color: var(--lgh-text-muted);
}

.lgh-blog-card__readtime {
  font-size: 0.8125rem;
  color: var(--lgh-text-muted);
  margin-left: auto;
}

.lgh-blog-card__title {
  font-family: var(--lgh-font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.lgh-blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--lgh-text-muted);
  line-height: 1.65;
  flex: 1;
}

/* ============================================================
   Blog Article
   ============================================================ */
.lgh-article-hero {
  padding: 64px 24px 72px;
  background: var(--lgh-sage);
}

.lgh-article-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.lgh-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lgh-article-hero__category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--lgh-primary-pale);
  color: var(--lgh-primary);
  border-radius: var(--lgh-radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--lgh-font-head);
}

.lgh-article-hero__date {
  font-size: 0.9rem;
  color: var(--lgh-text-muted);
}

.lgh-article-hero__readtime {
  font-size: 0.9rem;
  color: var(--lgh-text-muted);
}

.lgh-article-hero__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--lgh-neutral-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.lgh-article-hero__img {
  width: 100%;
  border-radius: var(--lgh-radius-card);
  object-fit: cover;
  aspect-ratio: 16/10;
  margin-top: 32px;
  box-shadow: var(--lgh-shadow-md);
}

.lgh-article-body {
  padding: 64px 24px 80px;
  background: var(--lgh-white);
}

.lgh-article-body__inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--lgh-text-body);
}

.lgh-article-body__inner h2 {
  font-size: 1.625rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.lgh-article-body__inner h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.lgh-article-body__inner p {
  margin-bottom: 20px;
}

.lgh-article-body__inner ul,
.lgh-article-body__inner ol {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}

.lgh-article-body__inner ol {
  list-style: decimal;
}

.lgh-article-body__inner li {
  margin-bottom: 8px;
}

/* ============================================================
   Team Cards
   ============================================================ */
.lgh-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lgh-team-card {
  background: var(--lgh-white);
  border-radius: var(--lgh-radius-card);
  padding: 28px 24px;
  box-shadow: var(--lgh-shadow);
  text-align: center;
}

.lgh-team-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
}

.lgh-team-card__avatar-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--lgh-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--lgh-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lgh-white);
}

.lgh-team-card__name {
  font-family: var(--lgh-font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
  margin-bottom: 4px;
}

.lgh-team-card__role {
  font-size: 0.875rem;
  color: var(--lgh-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.lgh-team-card__bio {
  font-size: 0.875rem;
  color: var(--lgh-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   Forms
   ============================================================ */
.lgh-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lgh-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.lgh-label {
  font-family: var(--lgh-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
}

.lgh-label .required {
  color: var(--lgh-accent-warm);
  margin-left: 2px;
}

.lgh-input,
.lgh-select,
.lgh-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--lgh-border);
  border-radius: var(--lgh-radius-btn);
  font-family: var(--lgh-font-body);
  font-size: 0.9375rem;
  color: var(--lgh-text-body);
  background: var(--lgh-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.lgh-input:focus,
.lgh-select:focus,
.lgh-textarea:focus {
  outline: none;
  border-color: var(--lgh-primary);
  box-shadow: 0 0 0 3px rgba(30, 110, 110, 0.12);
}

.lgh-textarea {
  resize: vertical;
  min-height: 120px;
}

.lgh-form-hint {
  font-size: 0.8125rem;
  color: var(--lgh-text-muted);
}

/* ============================================================
   Cards — Generic Feature Grid
   ============================================================ */
.lgh-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lgh-feature-card {
  background: var(--lgh-white);
  border-radius: var(--lgh-radius-card);
  padding: 28px 20px;
  box-shadow: var(--lgh-shadow);
  text-align: center;
}

.lgh-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--lgh-primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lgh-feature-card__icon i {
  font-size: 1.375rem;
  color: var(--lgh-primary);
}

.lgh-feature-card__title {
  font-family: var(--lgh-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
  margin-bottom: 10px;
}

.lgh-feature-card__desc {
  font-size: 0.9rem;
  color: var(--lgh-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Feature grid on dark */
.lgh-feature-card--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lgh-feature-card--dark .lgh-feature-card__icon {
  background: rgba(255, 255, 255, 0.1);
}

.lgh-feature-card--dark .lgh-feature-card__icon i {
  color: var(--lgh-accent);
}

.lgh-feature-card--dark .lgh-feature-card__title {
  color: var(--lgh-white);
}

.lgh-feature-card--dark .lgh-feature-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   Alternating Two-Column Layout
   ============================================================ */
.lgh-alternating {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.lgh-alternating__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lgh-alternating__item--flip .lgh-alternating__visual {
  order: -1;
}

.lgh-alternating__step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--lgh-primary-pale);
  border-radius: var(--lgh-radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lgh-primary);
  margin-bottom: 16px;
}

.lgh-alternating__headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--lgh-neutral-dark);
  margin-bottom: 14px;
}

.lgh-alternating__desc {
  font-size: 1.0625rem;
  color: var(--lgh-text-muted);
  line-height: 1.7;
  margin: 0;
}

.lgh-alternating__img {
  width: 100%;
  border-radius: var(--lgh-radius-card);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--lgh-shadow-md);
}

/* ============================================================
   Accordion FAQ
   ============================================================ */
.lgh-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lgh-accordion-item {
  border: 1.5px solid var(--lgh-border);
  border-radius: var(--lgh-radius-card);
  overflow: hidden;
  background: var(--lgh-white);
}

.lgh-accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--lgh-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
  transition: background 0.2s ease;
}

.lgh-accordion-trigger:hover {
  background: var(--lgh-sage);
}

.lgh-accordion-trigger[aria-expanded="true"] {
  background: var(--lgh-primary-pale);
  color: var(--lgh-primary);
}

.lgh-accordion-trigger[aria-expanded="true"] .lgh-accordion-icon {
  transform: rotate(45deg);
}

.lgh-accordion-icon {
  font-size: 1.125rem;
  color: var(--lgh-primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.lgh-accordion-panel {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--lgh-text-muted);
  line-height: 1.7;
}

.lgh-accordion-panel.lgh-accordion-panel--open {
  display: block;
}

/* ============================================================
   Disclaimer / Crisis Banner
   ============================================================ */
.lgh-crisis-banner {
  background: rgba(224, 123, 84, 0.08);
  border: 2px solid var(--lgh-accent-warm);
  border-radius: var(--lgh-radius-card);
  padding: 24px 28px;
}

.lgh-crisis-banner__icon {
  font-size: 1.25rem;
  color: var(--lgh-accent-warm);
  margin-right: 10px;
}

.lgh-crisis-banner__headline {
  font-family: var(--lgh-font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--lgh-neutral-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.lgh-crisis-banner__text {
  font-size: 0.9375rem;
  color: var(--lgh-text-body);
  line-height: 1.7;
  margin: 0;
}

.lgh-crisis-banner__text strong {
  color: var(--lgh-accent-warm);
}

.lgh-disclaimer-box {
  background: var(--lgh-primary-pale);
  border-left: 4px solid var(--lgh-primary);
  border-radius: 0 var(--lgh-radius-card) var(--lgh-radius-card) 0;
  padding: 20px 24px;
}

.lgh-disclaimer-box p {
  font-size: 0.9375rem;
  color: var(--lgh-neutral-mid);
  margin: 0;
}

.lgh-disclaimer-box strong {
  color: var(--lgh-primary);
}

/* ============================================================
   Mission Values
   ============================================================ */
.lgh-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lgh-value-card {
  background: var(--lgh-white);
  border-radius: var(--lgh-radius-card);
  padding: 32px 24px;
  box-shadow: var(--lgh-shadow);
  border-top: 3px solid var(--lgh-primary);
}

.lgh-value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--lgh-primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.lgh-value-card__icon i {
  font-size: 1.25rem;
  color: var(--lgh-primary);
}

.lgh-value-card__title {
  font-family: var(--lgh-font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
  margin-bottom: 10px;
}

.lgh-value-card__desc {
  font-size: 0.9rem;
  color: var(--lgh-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   Cost Explainer
   ============================================================ */
.lgh-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lgh-cost-card {
  background: var(--lgh-white);
  border-radius: var(--lgh-radius-card);
  padding: 32px 24px;
  box-shadow: var(--lgh-shadow);
  text-align: center;
  border-top: 3px solid var(--lgh-primary);
}

.lgh-cost-card__icon {
  font-size: 2rem;
  color: var(--lgh-primary);
  margin-bottom: 16px;
}

.lgh-cost-card__label {
  font-family: var(--lgh-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lgh-neutral-dark);
  margin-bottom: 8px;
}

.lgh-cost-card__range {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--lgh-primary);
  margin-bottom: 8px;
  font-family: var(--lgh-font-head);
}

.lgh-cost-card__desc {
  font-size: 0.875rem;
  color: var(--lgh-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   States page — list
   ============================================================ */
.lgh-states-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lgh-state-item {
  background: var(--lgh-white);
  border: 1.5px solid var(--lgh-border);
  border-radius: var(--lgh-radius-btn);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--lgh-text-body);
}

.lgh-state-item i {
  color: var(--lgh-primary);
  font-size: 0.875rem;
}

/* ============================================================
   What Happens Next (Numbered Steps)
   ============================================================ */
.lgh-next-steps {
  max-width: 560px;
  margin: 0 auto;
}

.lgh-next-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--lgh-border);
}

.lgh-next-step:last-child {
  border-bottom: none;
}

.lgh-next-step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lgh-primary-pale);
  color: var(--lgh-primary);
  font-family: var(--lgh-font-head);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lgh-next-step__title {
  font-family: var(--lgh-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
  margin-bottom: 4px;
}

.lgh-next-step__desc {
  font-size: 0.875rem;
  color: var(--lgh-text-muted);
  margin: 0;
}

/* ============================================================
   Legal Pages
   ============================================================ */
.lgh-legal-content {
  padding: 64px 24px 80px;
}

.lgh-legal-content__inner {
  max-width: 760px;
  margin: 0 auto;
}

.lgh-legal-content h2 {
  font-size: 1.375rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--lgh-primary);
}

.lgh-legal-content h3 {
  font-size: 1.125rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--lgh-neutral-dark);
}

.lgh-legal-content p {
  font-size: 0.9375rem;
  color: var(--lgh-text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.lgh-legal-content ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 16px;
}

.lgh-legal-content ul li {
  font-size: 0.9375rem;
  color: var(--lgh-text-body);
  line-height: 1.75;
  margin-bottom: 6px;
}

.lgh-legal-content a {
  color: var(--lgh-primary);
}

/* ============================================================
   404 Page
   ============================================================ */
.lgh-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background: var(--lgh-cream);
}

.lgh-404__inner {
  max-width: 520px;
}

.lgh-404__code {
  font-family: var(--lgh-font-head);
  font-size: 6rem;
  font-weight: 700;
  color: var(--lgh-primary-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.lgh-404__headline {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--lgh-neutral-dark);
  margin-bottom: 12px;
}

.lgh-404__sub {
  font-size: 1.0625rem;
  color: var(--lgh-text-muted);
  margin-bottom: 32px;
}

/* ============================================================
   Contact page specific
   ============================================================ */
.lgh-contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.lgh-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lgh-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lgh-contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--lgh-primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lgh-contact-info__icon i {
  color: var(--lgh-primary);
  font-size: 1rem;
}

.lgh-contact-info__label {
  font-family: var(--lgh-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lgh-neutral-mid);
  margin-bottom: 2px;
}

.lgh-contact-info__value {
  font-size: 0.9375rem;
  color: var(--lgh-neutral-dark);
  margin: 0;
}

.lgh-contact-info__value a {
  color: var(--lgh-primary);
}

/* ============================================================
   Fade-in animation
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Utility
   ============================================================ */
.lgh-text-center { text-align: center; }
.lgh-mt-8 { margin-top: 8px; }
.lgh-mt-16 { margin-top: 16px; }
.lgh-mt-24 { margin-top: 24px; }
.lgh-mt-32 { margin-top: 32px; }
.lgh-mt-48 { margin-top: 48px; }
.lgh-mb-8 { margin-bottom: 8px; }
.lgh-mb-16 { margin-bottom: 16px; }
.lgh-mb-24 { margin-bottom: 24px; }
.lgh-mb-40 { margin-bottom: 40px; }

.lgh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   Insurance badges grid
   ============================================================ */
.lgh-insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 24px;
}

/* ============================================================
   Conditions Detail Cards
   ============================================================ */
.lgh-conditions-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lgh-condition-detail-card {
  background: var(--lgh-white);
  border-radius: var(--lgh-radius-card);
  padding: 32px 28px;
  box-shadow: var(--lgh-shadow);
  border-left: 4px solid var(--lgh-primary);
}

.lgh-condition-detail-card__title {
  font-family: var(--lgh-font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--lgh-neutral-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lgh-condition-detail-card__title i {
  color: var(--lgh-primary);
}

.lgh-condition-detail-card__body {
  font-size: 0.9375rem;
  color: var(--lgh-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.lgh-condition-detail-card__treatment {
  font-size: 0.875rem;
  color: var(--lgh-primary);
  font-weight: 600;
}

/* ============================================================
   Angel note
   ============================================================ */
.lgh-angel-note {
  background: var(--lgh-primary-pale);
  border-radius: var(--lgh-radius-card);
  padding: 28px 32px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.lgh-angel-note__text {
  font-size: 1rem;
  color: var(--lgh-neutral-mid);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .lgh-nav__links {
    display: none;
  }

  .lgh-nav__actions .lgh-btn {
    display: none;
  }

  .lgh-nav__hamburger {
    display: flex;
  }

  .lgh-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lgh-hero__subhead {
    max-width: 100%;
  }

  .lgh-hero__visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .lgh-subhero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lgh-subhero__inner--centered {
    grid-template-columns: 1fr;
  }

  .lgh-insurance-callout__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lgh-provider-teaser__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lgh-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .lgh-conditions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lgh-steps__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lgh-steps__grid::before {
    display: none;
  }

  .lgh-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lgh-alternating__item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lgh-alternating__item--flip .lgh-alternating__visual {
    order: 0;
  }

  .lgh-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lgh-values-grid {
    grid-template-columns: 1fr;
  }

  .lgh-cost-grid {
    grid-template-columns: 1fr;
  }

  .lgh-contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lgh-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lgh-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lgh-conditions-detail-grid {
    grid-template-columns: 1fr;
  }

  .lgh-states-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --lgh-section-pad: var(--lgh-section-pad-mobile);
  }

  .lgh-hero {
    padding: 56px 20px 64px;
  }

  .lgh-subhero {
    padding: 52px 20px 60px;
  }

  .lgh-container {
    padding: 0 20px;
  }

  .lgh-form-group--row {
    grid-template-columns: 1fr;
  }

  .lgh-trust-bar__inner {
    gap: 16px;
  }

  .lgh-trust-bar__item {
    font-size: 0.8125rem;
  }

  .lgh-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lgh-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .lgh-conditions__grid {
    grid-template-columns: 1fr;
  }

  .lgh-team-grid {
    grid-template-columns: 1fr;
  }

  .lgh-feature-grid {
    grid-template-columns: 1fr;
  }

  .lgh-blog-grid {
    grid-template-columns: 1fr;
  }

  .lgh-states-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .lgh-subhero__stat-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .lgh-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .lgh-cta-band {
    padding: 60px 20px;
  }

  .lgh-cookie__inner {
    flex-direction: column;
    gap: 16px;
  }

  .lgh-cookie__actions {
    width: 100%;
    justify-content: center;
  }

  .lgh-404__code {
    font-size: 4rem;
  }
}
