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

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

:root {
  --navy: #142850;
  --teal: #00A8A8;
  --gold: #C6A350;
  --light-gray: #F7F8FA;
  --dark-gray: #4A5568;
  --white: #ffffff;
  --border: #E2E8F0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ─── Utilities ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 1024px; margin: 0 auto; padding: 0 1rem; }
.container-lg { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }

@media (min-width: 640px) { .container, .container-sm, .container-md, .container-lg { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container, .container-sm, .container-md, .container-lg { padding: 0 2rem; } }

/* ─── Scroll Animations ─── */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Top Bar ─── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  padding: 0.625rem 0;
  display: none;
}
@media (min-width: 768px) { .top-bar { display: block; } }
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar a { transition: color 0.3s; }
.top-bar a:hover { color: var(--teal); }
.top-bar .flex-gap { display: flex; align-items: center; gap: 1.5rem; }
.top-bar .flex-item { display: flex; align-items: center; gap: 0.375rem; }
.top-bar svg { width: 1rem; height: 1rem; }
.top-bar .icon-5 { width: 1.25rem; height: 1.25rem; }

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 3.5rem; width: 3.5rem; object-fit: contain; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.nav-logo-sub { color: var(--dark-gray); font-size: 0.75rem; letter-spacing: 0.1em; }
.nav-links { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.875rem; font-weight: 600; color: rgba(20,40,80,0.8); transition: color 0.3s; }
.nav-links a:hover { color: var(--teal); }
.btn-teal {
  background: var(--teal);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0,168,168,0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.btn-teal:hover { background: rgba(0,168,168,0.9); box-shadow: 0 4px 6px rgba(0,168,168,0.4); }
.hamburger { display: block; padding: 0.5rem; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger svg { width: 1.75rem; height: 1.75rem; color: var(--navy); }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid #f3f4f6; padding: 1rem 0 1.5rem; }
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  display: block;
  color: var(--navy);
  font-weight: 600;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn-mobile {
  display: block;
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  margin-top: 1rem;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,40,80,0.95), rgba(20,40,80,0.8), transparent);
}
.hero-content {
  position: relative;
  max-width: 42rem;
  padding: 6rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,168,168,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,168,168,0.3);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-badge span:last-child { color: var(--teal); font-size: 0.875rem; font-weight: 600; }
.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.5rem; } }
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  line-height: 1.7;
}
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--teal);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(0,168,168,0.3);
}
.btn-hero-primary:hover { background: rgba(0,168,168,0.9); box-shadow: 0 10px 25px rgba(0,168,168,0.5); transform: translateY(-2px); }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-hero-secondary:hover { border-color: rgba(255,255,255,0.7); }
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-wave svg { width: 100%; display: block; }
.hero-buttons svg { width: 1.25rem; height: 1.25rem; }

/* ─── Trust Badges ─── */
.trust-badges { padding: 1.5rem 0; margin-top: -2rem; position: relative; z-index: 10; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(20,40,80,0.05);
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}
.trust-card:hover { box-shadow: 0 10px 25px rgba(20,40,80,0.08); transform: translateY(-4px); }
.trust-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(0,168,168,0.1), rgba(0,168,168,0.05));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.trust-icon svg { width: 2rem; height: 2rem; }
.trust-title { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 0.875rem; line-height: 1.3; }
.trust-sub { color: var(--dark-gray); font-size: 0.875rem; }

/* ─── Stats Bar ─── */
.stats-bar { background: var(--navy); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.stat-item { text-align: center; position: relative; }
.stat-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--teal); margin-bottom: 0.25rem; }
@media (min-width: 640px) { .stat-value { font-size: 3rem; } }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; }
.stat-divider {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3rem;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
@media (min-width: 1024px) { .stat-divider { display: block; } }

/* ─── Section Styles ─── */
.section { padding: 6rem 0; }
.section-badge {
  display: inline-block;
  background: rgba(0,168,168,0.1);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.section-badge-navy {
  background: rgba(0,168,168,0.2);
}
.section-badge-gold {
  background: rgba(198,163,80,0.2);
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
.section-title-white { color: var(--white); }
.section-divider { width: 4rem; height: 0.25rem; background: var(--gold); margin-bottom: 1rem; }
.section-divider-center { margin-left: auto; margin-right: auto; }
.section-desc { color: var(--dark-gray); max-width: 42rem; }
.section-desc-center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

/* ─── About ─── */
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img-wrap { position: relative; }
.about-img-bg { position: absolute; top: -1rem; left: -1rem; width: 100%; height: 100%; background: rgba(0,168,168,0.05); border-radius: 1.5rem; }
.about-img {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-stat-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.about-stat-badge .value { font-family: var(--font-display); font-weight: 700; font-size: 1.875rem; color: var(--gold); }
.about-stat-badge .label { color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-item { display: flex; align-items: center; gap: 0.75rem; }
.check-circle {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-circle svg { width: 0.875rem; height: 0.875rem; color: var(--white); }
.check-text { color: var(--navy); font-weight: 500; font-size: 0.875rem; }
.about-text { color: var(--dark-gray); line-height: 1.7; margin-bottom: 1.5rem; }

/* ─── Services ─── */
.services-section { position: relative; overflow: hidden; }
.services-wave { position: absolute; top: 0; left: 0; right: 0; transform: rotate(180deg); }
.services-wave svg { width: 100%; display: block; }
.services-grid { display: grid; gap: 1.25rem; position: relative; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}
.service-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(0,168,168,0.1), rgba(0,168,168,0.05));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s;
  color: var(--teal);
}
.service-card:hover .service-icon-wrap { background: var(--teal); color: var(--white); }
.service-icon-wrap svg { width: 1.75rem; height: 1.75rem; }
.service-card h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 0.375rem; }
.service-card p { color: var(--dark-gray); font-size: 0.875rem; line-height: 1.6; }

/* ─── Physicians Order ─── */
.po-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .po-grid { grid-template-columns: 1fr 1fr; } }
.po-img-wrap { position: relative; order: 2; }
@media (min-width: 1024px) { .po-img-wrap { order: 1; } }
.po-img-bg { position: absolute; top: -1rem; right: -1rem; width: 100%; height: 100%; background: rgba(198,163,80,0.05); border-radius: 1.5rem; }
.po-img { position: relative; border-radius: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.po-content { order: 1; }
@media (min-width: 1024px) { .po-content { order: 2; } }
.po-items { display: flex; flex-direction: column; gap: 1.5rem; }
.po-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.po-num {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--navy);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.po-item:hover .po-num { background: var(--teal); }
.po-num span { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--gold); transition: color 0.3s; }
.po-item:hover .po-num span { color: var(--white); }
.po-item h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.125rem; margin-bottom: 0.25rem; }
.po-item p { color: var(--dark-gray); line-height: 1.6; }

/* ─── Benefits ─── */
.benefits-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 6rem 0;
}
.benefits-wave { position: absolute; top: 0; left: 0; right: 0; }
.benefits-wave svg { width: 100%; display: block; }
.benefits-blur-1 { position: absolute; top: 5rem; right: 5rem; width: 16rem; height: 16rem; background: rgba(0,168,168,0.05); border-radius: 50%; filter: blur(48px); }
.benefits-blur-2 { position: absolute; bottom: 5rem; left: 2.5rem; width: 12rem; height: 12rem; background: rgba(198,163,80,0.05); border-radius: 50%; filter: blur(48px); }
.benefits-list { display: flex; flex-direction: column; gap: 1rem; position: relative; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.25rem 2rem;
  transition: background 0.3s;
}
.benefit-item:hover { background: rgba(255,255,255,0.1); }
.benefit-check {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-check svg { width: 1.25rem; height: 1.25rem; color: var(--white); }
.benefit-item p { color: rgba(255,255,255,0.9); font-size: 1.125rem; }

/* ─── Qualify ─── */
.qualify-timeline { position: relative; max-width: 64rem; margin: 0 auto; }
.qualify-line {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--gold), var(--teal));
}
@media (min-width: 768px) { .qualify-line { display: block; } }
.qualify-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .qualify-grid { grid-template-columns: repeat(3, 1fr); } }
.qualify-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.qualify-circle {
  position: relative;
  z-index: 10;
  width: 5rem;
  height: 5rem;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0,168,168,0.1);
  color: var(--teal);
}
.qualify-step:hover .qualify-circle { background: var(--teal); border-color: var(--teal); color: var(--white); }
.qualify-circle svg { width: 1.75rem; height: 1.75rem; }
.qualify-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.qualify-card {
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
  width: 100%;
}
.qualify-step:hover .qualify-card { border-color: rgba(0,168,168,0.2); box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.qualify-card h3 { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.125rem; margin-bottom: 0.5rem; }
.qualify-card p { color: var(--dark-gray); font-size: 0.875rem; line-height: 1.6; }

/* ─── Service Areas ─── */
.areas-section { position: relative; overflow: hidden; }
.areas-wave { position: absolute; top: 0; left: 0; right: 0; transform: rotate(180deg); }
.areas-wave svg { width: 100%; display: block; }
.counties-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; position: relative; }
@media (min-width: 640px) { .counties-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .counties-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .counties-grid { grid-template-columns: repeat(5, 1fr); } }
.county-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}
.county-card:hover { border-color: var(--teal); box-shadow: 0 4px 6px rgba(0,0,0,0.05); transform: translateY(-2px); }
.county-inner { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.county-icon { color: var(--teal); opacity: 0; transition: opacity 0.3s; }
.county-card:hover .county-icon { opacity: 1; }
.county-icon svg { width: 1.25rem; height: 1.25rem; }
.county-name { color: var(--navy); font-weight: 600; font-size: 0.875rem; }

/* ─── Payment ─── */
.payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 640px) { .payment-grid { grid-template-columns: repeat(4, 1fr); } }
.payment-card {
  background: var(--light-gray);
  border: 1px solid #f3f4f6;
  color: var(--navy);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}
.payment-card:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.05); transform: translateY(-4px); }
.payment-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  background: rgba(20,40,80,0.05);
}
.payment-icon svg { width: 1.5rem; height: 1.5rem; color: var(--navy); }
.payment-card p { font-weight: 600; font-size: 0.875rem; }

/* CLASS Waiver */
.class-waiver {
  margin-top: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, rgba(20,40,80,0.03), rgba(0,168,168,0.06));
  border: 1px solid rgba(0,168,168,0.2);
  border-radius: 1.5rem;
  padding: 2rem;
}
@media (min-width: 640px) { .class-waiver { padding: 2.5rem; } }
.class-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.class-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(0,168,168,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.class-icon svg { width: 1.5rem; height: 1.5rem; color: var(--teal); }
.class-header h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.class-header p { color: var(--dark-gray); font-size: 0.875rem; }
.class-waiver > p { color: var(--dark-gray); line-height: 1.7; margin-bottom: 1.5rem; }
.class-waiver h4 { font-family: var(--font-display); font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
.class-qualify-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; color: var(--dark-gray); font-size: 0.875rem; margin-bottom: 1.5rem; }
.class-qualify-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.class-qualify-list li span { color: var(--teal); margin-top: 0.125rem; }
.class-callout {
  background: rgba(198,163,80,0.1);
  border: 1px solid rgba(198,163,80,0.2);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .class-callout { flex-direction: row; align-items: center; } }
.class-callout-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(198,163,80,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.class-callout-icon svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }
.class-callout .title { color: var(--navy); font-size: 0.875rem; font-weight: 600; }
.class-callout .desc { color: var(--dark-gray); font-size: 0.875rem; }
.class-callout a { color: var(--teal); font-weight: 700; }
.class-callout a:hover { text-decoration: underline; }

/* ─── Promise/CTA ─── */
.promise-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy), #1a3366, var(--navy));
  position: relative;
  overflow: hidden;
}
.promise-wave { position: absolute; top: 0; left: 0; right: 0; }
.promise-wave svg { width: 100%; display: block; }
.promise-top-line { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--teal), var(--gold), var(--teal)); }
.promise-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .promise-values { grid-template-columns: repeat(4, 1fr); } }
.promise-value {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: background 0.3s;
}
.promise-value:hover { background: rgba(255,255,255,0.15); }
.promise-value p { color: var(--white); font-family: var(--font-display); font-weight: 600; }
.promise-text { color: rgba(255,255,255,0.8); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn-gold:hover { background: rgba(198,163,80,0.9); transform: translateY(-2px); }
.btn-gold svg { width: 1.25rem; height: 1.25rem; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--white); border-radius: 1rem; border: 1px solid #f3f4f6; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-chevron {
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-chevron svg { width: 1.25rem; height: 1.25rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.25rem; }
.faq-answer p { padding: 0 1.75rem; color: var(--dark-gray); line-height: 1.7; }

/* ─── Contact ─── */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-circle svg { width: 1.5rem; height: 1.5rem; }
.contact-icon-navy { background: rgba(20,40,80,0.05); color: var(--navy); }
.contact-icon-teal { background: rgba(0,168,168,0.1); color: var(--teal); }
.contact-icon-red { background: #fef2f2; color: #ef4444; }
.contact-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark-gray); margin-bottom: 0.25rem; }
.contact-value { color: var(--navy); font-weight: 700; font-size: 1.125rem; transition: color 0.3s; }
a.contact-value:hover { color: var(--teal); }
.contact-sub { color: var(--dark-gray); font-size: 0.875rem; }
.referral-box {
  background: rgba(0,168,168,0.05);
  border: 1px solid rgba(0,168,168,0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1rem;
}
.referral-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; color: var(--teal); }
.referral-header svg { width: 1.5rem; height: 1.5rem; }
.referral-header h4 { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.125rem; }
.referral-box p { color: var(--dark-gray); font-size: 0.875rem; line-height: 1.6; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-input::placeholder { color: #9ca3af; }
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,168,168,0.1); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234A5568' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
textarea.form-input { resize: none; }
.btn-submit {
  background: var(--teal);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0,168,168,0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}
.btn-submit:hover { background: rgba(0,168,168,0.9); box-shadow: 0 4px 6px rgba(0,168,168,0.4); transform: translateY(-2px); }
.btn-submit svg { width: 1.25rem; height: 1.25rem; }
.btn-submit:disabled { cursor: not-allowed; }
.form-status {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: rgba(0,168,168,0.1);
  border: 1px solid rgba(0,168,168,0.3);
  border-radius: 0.5rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* ─── Footer ─── */
.footer { background: var(--navy); padding-top: 4rem; padding-bottom: 2rem; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-logo img { height: 3.5rem; width: 3.5rem; object-fit: contain; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); }
.footer-logo-sub { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; max-width: 24rem; margin-bottom: 1.5rem; }
.footer-tags { display: flex; gap: 0.75rem; }
.footer-tag { font-size: 0.75rem; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); padding: 0.375rem 0.75rem; border-radius: 9999px; }
.footer h4 { font-family: var(--font-display); font-weight: 700; color: var(--white); margin-bottom: 1.25rem; font-size: 1.125rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--teal); }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.625rem; color: rgba(255,255,255,0.6); }
.footer-contact-item .icon { color: var(--teal); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-item .icon svg { width: 1.25rem; height: 1.25rem; }
.footer-contact-item a { transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p:first-child { color: rgba(255,255,255,0.4); font-size: 0.875rem; }
.footer-bottom p:last-child { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
