    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    .skip-link { position: absolute; top: -100px; left: 16px; background: var(--teal-dark); color: white; padding: 12px 24px; border-radius: 0 0 8px 8px; z-index: 9999; font-weight: 600; font-size: 14px; text-decoration: none; transition: top 0.2s; }
    .skip-link:focus { top: 0; }
    :root {
      --teal: #2C4A5A; --teal-dark: #1a3545; --teal-light: #3d6478;
      --gold: #D4A855; --gold-light: #e8c882; --gold-bg: #faf5eb;
      --sage: #4a7c6f; --sage-light: #e8f5f0;
      --slate: #64748b; --light: #f8fafb; --white: #ffffff;
      --warm-gray: #f5f3f0;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1e293b; line-height: 1.6; }

    /* ─── HEADER ─── */
    .header { background: var(--white); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #e2e8f0; backdrop-filter: blur(12px); background: rgba(255,255,255,0.95); }
    .header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-mark { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .logo-mark img { width: 100%; height: 100%; object-fit: contain; }
    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-name { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--teal); }
    .logo-sub { font-size: 10px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
    .nav { display: flex; align-items: center; gap: 28px; }
    .nav a { color: var(--slate); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav a:hover { color: var(--teal); }
    .nav-phone { display: flex; align-items: center; gap: 6px; color: var(--teal) !important; font-weight: 600 !important; }
    .nav-cta { background: var(--teal) !important; color: var(--white) !important; padding: 10px 24px; border-radius: 8px; font-weight: 600 !important; transition: all 0.2s !important; }
    .nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(44,74,90,0.25); }

    /* ─── HERO ─── */
    .hero { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 40%, #1a3040 100%); color: white; padding: 80px 24px 100px; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; top: -40%; right: -15%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(212,168,85,0.1) 0%, transparent 70%); border-radius: 50%; }
    .hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(74,124,111,0.12) 0%, transparent 70%); border-radius: 50%; }
    .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,168,85,0.12); border: 1px solid rgba(212,168,85,0.25); color: var(--gold-light); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
    .hero h1 { font-family: 'Playfair Display', Georgia, serif; font-size: 3rem; font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
    .hero h1 span { color: var(--gold); }
    .hero p { font-size: 1.1rem; color: #b0c4ce; line-height: 1.7; margin-bottom: 28px; max-width: 520px; }
    .hero-ctas { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--teal-dark); padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px; transition: all 0.2s; border: none; cursor: pointer; }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,168,85,0.3); }
    .btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s; }
    .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }
    .hero-stats { display: flex; gap: 40px; }
    .hero-stat .number { font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
    .hero-stat .label { font-size: 13px; color: #8ba8b5; margin-top: 2px; }

    .hero-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 28px; }
    .hero-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
    .hero-card > p { font-size: 14px; color: #8ba8b5; margin-bottom: 20px; }
    .appt-slots { display: flex; flex-direction: column; gap: 10px; }
    .appt-slot { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px 16px; }
    .appt-slot-info { display: flex; align-items: center; gap: 12px; }
    .appt-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
    .appt-dot.gold { background: var(--gold); }
    .appt-name { font-size: 14px; font-weight: 600; }
    .appt-detail { font-size: 12px; color: #8ba8b5; }
    .appt-book { background: var(--gold); color: var(--teal-dark); border: none; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
    .appt-book:hover { background: var(--gold-light); }

    /* ─── TRUST BAR ─── */
    .trust { background: var(--white); border-bottom: 1px solid #e2e8f0; padding: 32px 24px; }
    .trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--teal); }
    .trust-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
    .trust-icon.teal { background: rgba(44,74,90,0.08); }
    .trust-icon.gold { background: rgba(212,168,85,0.12); }
    .trust-icon.sage { background: rgba(74,124,111,0.1); }

    /* ─── SECTION BASICS ─── */
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header .badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(44,74,90,0.06); border: 1px solid rgba(44,74,90,0.12); color: var(--teal); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
    .section-header h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 2.4rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 14px; line-height: 1.2; }
    .section-header p { font-size: 1.1rem; color: var(--slate); max-width: 580px; margin: 0 auto; line-height: 1.7; }

    /* ─── SERVICES ─── */
    .services { padding: 100px 24px; background: var(--light); }
    .services-inner { max-width: 1200px; margin: 0 auto; }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .service-card { background: white; border: 1px solid #e8ecef; border-radius: 16px; padding: 28px; transition: all 0.3s; position: relative; overflow: hidden; }
    .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44,74,90,0.1); border-color: rgba(44,74,90,0.15); }
    .service-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 22px; }
    .service-card h3 { font-size: 16px; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
    .service-card p { font-size: 13px; color: var(--slate); line-height: 1.65; }
    .service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
    .service-tag { background: var(--light); color: var(--teal); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
    .icon-psych { background: #eff6ff; } .icon-med { background: #fef3c7; }
    .icon-therapy { background: #f0fdf4; } .icon-group { background: #fce7f3; }
    .icon-adhd { background: #f5f3ff; } .icon-anxiety { background: #ecfeff; }
    .icon-ptsd { background: #fff1f2; } .icon-sub { background: #fef9c3; }

    /* ─── FACILITY & ER SERVICES ─── */
    .facility { padding: 100px 24px; background: var(--white); }
    .facility-inner { max-width: 1200px; margin: 0 auto; }
    .facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
    .facility-card { background: white; border: 1px solid #e2e8f0; border-radius: 20px; padding: 36px; position: relative; overflow: hidden; transition: all 0.3s; }
    .facility-card:hover { box-shadow: 0 12px 36px rgba(44,74,90,0.1); transform: translateY(-4px); }
    .facility-card.onsite { border-top: 4px solid var(--sage); }
    .facility-card.er { border-top: 4px solid #dc2626; }
    .facility-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
    .facility-label.onsite { color: var(--sage); }
    .facility-label.er { color: #dc2626; }
    .facility-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--teal-dark); margin-bottom: 10px; }
    .facility-card > p { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 20px; }
    .facility-features { list-style: none; margin-bottom: 24px; }
    .facility-features li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 14px; color: #334155; }
    .facility-features li::before { content: '\2713'; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .facility-card.onsite .facility-features li::before { background: var(--sage-light); color: var(--sage); }
    .facility-card.er .facility-features li::before { background: #fef2f2; color: #dc2626; }
    .facility-types { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
    .facility-type { background: var(--light); border: 1px solid #e2e8f0; padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--teal); }
    .facility-area { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--light); border-radius: 10px; margin-bottom: 20px; font-size: 13px; color: var(--slate); }
    .facility-area strong { color: var(--teal-dark); }
    .facility-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; }
    .facility-cta.sage { background: var(--sage); color: white; }
    .facility-cta.sage:hover { background: #3d6a5e; transform: translateY(-1px); }
    .facility-cta.red { background: #dc2626; color: white; }
    .facility-cta.red:hover { background: #b91c1c; transform: translateY(-1px); }
    /* ─── HOW IT WORKS ─── */
    .how { padding: 100px 24px; background: var(--white); }
    .how-inner { max-width: 1000px; margin: 0 auto; }
    .how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
    .how-steps::before { content: ''; position: absolute; top: 32px; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--teal), var(--sage), var(--gold)); opacity: 0.3; }
    .how-step { text-align: center; position: relative; }
    .step-num { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700; position: relative; z-index: 1; }
    .step-1 .step-num { background: linear-gradient(135deg, var(--gold-bg), #f5ecd5); color: var(--gold); border: 2px solid rgba(212,168,85,0.3); }
    .step-2 .step-num { background: linear-gradient(135deg, rgba(44,74,90,0.06), rgba(44,74,90,0.12)); color: var(--teal); border: 2px solid rgba(44,74,90,0.2); }
    .step-3 .step-num { background: linear-gradient(135deg, var(--sage-light), #d5ece4); color: var(--sage); border: 2px solid rgba(74,124,111,0.2); }
    .step-4 .step-num { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #be185d; border: 2px solid rgba(190,24,93,0.15); }
    .how-step h3 { font-size: 16px; font-weight: 700; color: var(--teal-dark); margin-bottom: 6px; }
    .how-step p { font-size: 13px; color: var(--slate); line-height: 1.6; }

    /* ─── PAYMENT / PRICING ─── */
    .payment { padding: 100px 24px; background: linear-gradient(180deg, var(--light) 0%, var(--warm-gray) 100%); }
    .payment-inner { max-width: 1200px; margin: 0 auto; }
    .payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .payment-col { background: white; border: 1px solid #e2e8f0; border-radius: 20px; padding: 36px; }
    .payment-col.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(212,168,85,0.12); position: relative; overflow: hidden; }
    .payment-col.featured::before { content: 'MOST POPULAR'; position: absolute; top: 16px; right: -32px; background: var(--gold); color: var(--teal-dark); font-size: 10px; font-weight: 700; padding: 4px 40px; transform: rotate(45deg); letter-spacing: 1px; }
    .payment-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
    .payment-label.insurance { color: var(--teal); }
    .payment-label.dpc { color: var(--gold); }
    .payment-title { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700; color: var(--teal-dark); margin-bottom: 8px; }
    .payment-desc { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 24px; }
    .insurance-logos { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
    .ins-logo { background: var(--light); border: 1px solid #e2e8f0; padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--slate); }
    .payment-features { list-style: none; margin-bottom: 28px; }
    .payment-features li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; color: #334155; }
    .payment-features li::before { content: '\2713'; width: 22px; height: 22px; background: var(--sage-light); color: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .dpc-plans { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
    .dpc-plan { background: var(--light); border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .dpc-plan-name { font-weight: 600; color: var(--teal-dark); font-size: 15px; }
    .dpc-plan-desc { font-size: 12px; color: var(--slate); margin-top: 2px; }
    .dpc-plan-price { text-align: right; white-space: nowrap; }
    .dpc-plan-btn { display: inline-block; padding: 8px 18px; background: var(--gold); color: var(--teal-dark); border-radius: 8px; font-weight: 600; font-size: 13px; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
    .dpc-plan-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
    .dpc-price { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 700; color: var(--gold); }
    .dpc-period { font-size: 12px; color: var(--slate); }
    .payment-btn { display: block; width: 100%; text-align: center; padding: 14px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
    .payment-btn.teal { background: var(--teal); color: white; }
    .payment-btn.teal:hover { background: var(--teal-dark); }
    .payment-btn.gold { background: var(--gold); color: var(--teal-dark); }
    .payment-btn.gold:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* ─── COVERAGE MAP ─── */
    .coverage { padding: 100px 24px; background: var(--white); }
    .coverage-inner { max-width: 1200px; margin: 0 auto; }
    .states-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 32px; }
    .state-card { background: var(--light); border: 1px solid #e2e8f0; border-radius: 10px; padding: 12px 8px; text-align: center; transition: all 0.2s; }
    .state-card:hover { background: rgba(44,74,90,0.06); border-color: var(--teal); }
    .state-abbr { font-size: 18px; font-weight: 700; color: var(--teal); }
    .state-name { font-size: 11px; color: var(--slate); margin-top: 2px; }
    .coverage-note { text-align: center; font-size: 14px; color: var(--slate); }
    .coverage-note strong { color: var(--teal-dark); }

    /* ─── PROVIDERS / TEAM ─── */
    .team { padding: 100px 24px; background: var(--light); }
    .team-inner { max-width: 1200px; margin: 0 auto; }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .provider-card { background: white; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; transition: all 0.3s; }
    .provider-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44,74,90,0.1); }
    .provider-photo { height: 200px; background: linear-gradient(135deg, var(--teal), var(--teal-light)); display: flex; align-items: center; justify-content: center; }
    .provider-avatar { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 700; color: white; border: 3px solid rgba(255,255,255,0.2); }
    .provider-info { padding: 20px; }
    .provider-name { font-size: 16px; font-weight: 700; color: var(--teal-dark); margin-bottom: 2px; }
    .provider-title { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
    .provider-specialties { font-size: 12px; color: var(--slate); line-height: 1.5; margin-bottom: 12px; }
    .provider-meta { display: flex; align-items: center; justify-content: space-between; }
    .provider-states { font-size: 11px; color: var(--sage); font-weight: 600; }
    .provider-avail { display: flex; align-items: center; gap: 4px; font-size: 11px; color: #16a34a; font-weight: 600; }
    .provider-avail::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }

    /* ─── TESTIMONIALS ─── */
    .testimonials { padding: 100px 24px; background: var(--teal-dark); color: white; }
    .testimonials-inner { max-width: 1200px; margin: 0 auto; }
    .testimonials .section-header h2 { color: white; }
    .testimonials .section-header p { color: #8ba8b5; }
    .testimonials .section-header .badge { background: rgba(212,168,85,0.12); border-color: rgba(212,168,85,0.2); color: var(--gold-light); }
    .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .test-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px; }
    .test-stars { color: var(--gold); margin-bottom: 14px; font-size: 15px; letter-spacing: 2px; }
    .test-card blockquote { font-size: 15px; color: #b0c4ce; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .test-author { display: flex; align-items: center; gap: 12px; }
    .test-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(212,168,85,0.15); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gold); font-size: 14px; }
    .test-name { font-weight: 600; color: white; font-size: 14px; }
    .test-role { font-size: 12px; color: #8ba8b5; }

    /* ─── ELIGIBILITY CHECKER ─── */
    .eligibility-form { margin-top: 20px; background: var(--light); border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; animation: eligFadeIn 0.3s ease; }
    @keyframes eligFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
    .eligibility-form-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
    .eligibility-shield { width: 40px; height: 40px; border-radius: 10px; background: rgba(44,74,90,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--teal); }
    .eligibility-form-title { font-weight: 700; color: var(--teal-dark); font-size: 15px; margin-bottom: 2px; }
    .eligibility-form-sub { font-size: 13px; color: var(--slate); line-height: 1.5; }
    .eligibility-fields { display: flex; flex-direction: column; gap: 14px; }
    .eligibility-fields .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .eligibility-fields .form-group { margin-bottom: 0; }

    /* Eligibility results */
    .elig-result { border-radius: 14px; padding: 24px; margin-top: 20px; }
    .elig-active { background: var(--sage-light); border: 1px solid rgba(74,124,111,0.25); }
    .elig-inactive { background: #faf5eb; border: 1px solid rgba(212,168,85,0.4); }
    .elig-error { background: var(--light); border: 1px solid #e2e8f0; }
    .elig-result-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
    .elig-status-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
    .elig-status-icon.active { background: rgba(74,124,111,0.15); color: var(--sage); }
    .elig-status-icon.inactive { background: rgba(212,168,85,0.15); color: #b45309; }
    .elig-status-icon.error { background: rgba(100,116,139,0.1); color: var(--slate); }
    .elig-status-text { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--sage); }
    .elig-plan-name { font-size: 13px; color: var(--slate); margin-top: 2px; }
    .elig-network { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
    .elig-network.in { background: rgba(74,124,111,0.1); color: var(--sage); }
    .elig-network.out { background: rgba(212,168,85,0.12); color: #b45309; }
    .elig-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
    .elig-benefit { background: white; border: 1px solid rgba(74,124,111,0.15); border-radius: 10px; padding: 14px; }
    .elig-benefit-label { font-size: 12px; color: var(--slate); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
    .elig-benefit-value { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--teal-dark); }
    .elig-disclaimer { font-size: 11px; color: #94a3b8; line-height: 1.5; margin-top: 8px; }

    /* Booking flow inline eligibility */
    .eligibility-inline-prompt { display: flex; align-items: flex-start; gap: 12px; background: rgba(44,74,90,0.04); border: 1px solid rgba(44,74,90,0.1); border-radius: 10px; padding: 14px; margin-bottom: 12px; }
    .booking-verify-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--teal); color: white; border: none; padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; }
    .booking-verify-btn:hover { background: var(--teal-dark); }
    .booking-verify-btn:disabled { opacity: 0.6; cursor: not-allowed; }
    .elig-booking-badge { padding: 12px 16px; border-radius: 10px; font-size: 13px; line-height: 1.5; margin-top: 12px; }
    .elig-booking-badge.active { background: var(--sage-light); color: var(--sage); border: 1px solid rgba(74,124,111,0.2); }
    .elig-booking-badge.inactive { background: #faf5eb; color: #92400e; border: 1px solid rgba(212,168,85,0.3); }
    .elig-inline-error { padding: 12px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; font-size: 13px; color: #991b1b; margin-top: 12px; }

    /* ─── FAQ ─── */
    .faq { padding: 100px 24px; background: var(--white); }
    .faq-inner { max-width: 800px; margin: 0 auto; }
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
    .faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; cursor: pointer; background: var(--white); font-size: 15px; font-weight: 600; color: var(--teal-dark); transition: background 0.2s; width: 100%; border: none; text-align: left; font-family: inherit; }
    .faq-q:hover { background: var(--light); }
    .faq-q:focus-visible { outline: 2px solid var(--teal); outline-offset: -2px; border-radius: 12px; }
    .faq-q .arrow { font-size: 18px; color: var(--gold); transition: transform 0.3s; }
    .faq-item.open .faq-q .arrow { transform: rotate(180deg); }
    .faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
    .faq-item.open .faq-a { padding: 0 24px 18px; max-height: 300px; }
    .faq-a p { font-size: 14px; color: var(--slate); line-height: 1.7; }

    /* ─── CTA ─── */
    .cta { padding: 80px 24px; background: linear-gradient(135deg, var(--gold) 0%, #c49940 100%); text-align: center; }
    .cta h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 2.2rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 12px; }
    .cta p { font-size: 1.05rem; color: #5a4520; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
    .cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-dark); color: white; padding: 16px 36px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 16px; transition: all 0.2s; }
    .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,53,69,0.3); }

    /* ─── FOOTER ─── */
    .footer { background: var(--teal-dark); color: #8ba8b5; padding: 64px 24px 32px; }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
    .footer-brand .logo { margin-bottom: 16px; }
    .footer-brand .logo-name { color: white; }
    .footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
    .footer h4 { color: white; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.5px; }
    .footer ul { list-style: none; }
    .footer ul li { margin-bottom: 10px; }
    .footer ul a { color: #8ba8b5; text-decoration: none; font-size: 13px; transition: color 0.2s; }
    .footer ul a:hover { color: var(--gold); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; flex-wrap: wrap; gap: 12px; align-items: center; }
    .footer-badges { display: flex; gap: 12px; }
    .footer-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 6px 12px; border-radius: 6px; font-size: 11px; font-weight: 600; color: #8ba8b5; }
    .footer-disclaimer { font-size: 11px; color: #5e8090; line-height: 1.6; max-width: 800px; margin: 16px auto 0; text-align: center; }
    .footer-disclaimer a { color: #8ba8b5; text-decoration: underline; }
    .powered { text-align: center; padding: 12px; background: #132a36; }
    .powered span { font-size: 11px; color: #4a7080; }
    .powered a { color: #5e8898; text-decoration: none; font-weight: 600; }
    .powered a:hover { color: var(--gold); }

    /* ─── INQUIRY FORM MODAL ─── */
    .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
    .modal-overlay.active { display: flex; }
    .modal { background: white; border-radius: 20px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,0.2); }
    .modal-header { padding: 28px 32px 0; }
    .modal-header .facility-label { margin-bottom: 8px; }
    .modal-header h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--teal-dark); margin-bottom: 6px; }
    .modal-header p { font-size: 14px; color: var(--slate); line-height: 1.6; }
    .modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid #e2e8f0; background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--slate); transition: all 0.2s; }
    .modal-close:hover { background: var(--light); color: var(--teal-dark); }
    .modal-form { padding: 24px 32px 32px; display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group label { font-size: 13px; font-weight: 600; color: var(--teal-dark); }
    .form-group label .required { color: #dc2626; }
    .form-group input, .form-group select, .form-group textarea {
      padding: 11px 14px; border: 1px solid #d1d5db; border-radius: 10px; font-size: 14px;
      font-family: 'Inter', sans-serif; color: #1e293b; transition: border-color 0.2s, box-shadow 0.2s;
      background: white; width: 100%;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(44,74,90,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
    .form-submit { background: var(--teal); color: white; border: none; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(44,74,90,0.25); }
    .form-submit.er-btn { background: #dc2626; }
    .form-submit.er-btn:hover { background: #b91c1c; box-shadow: 0 4px 12px rgba(220,38,38,0.25); }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .form-success { text-align: center; padding: 48px 32px; }
    .form-success .success-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; }
    .form-success h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; color: var(--teal-dark); margin-bottom: 8px; }
    .form-success p { font-size: 14px; color: var(--slate); line-height: 1.6; }

    /* ─── CUSTOM BOOKING CALENDAR ─── */
    .booking-section { padding: 100px 24px; background: var(--light); }
    .booking-inner { max-width: 900px; margin: 0 auto; }
    .booking-card { background: white; border: 1px solid #e2e8f0; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(44,74,90,0.08); }
    .booking-card-header { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .booking-card-header h3 { color: white; font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700; }
    .booking-card-header p { color: #b0c4ce; font-size: 13px; }
    .booking-live-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; }
    .booking-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse-dot 2s infinite; }
    @keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
    @keyframes spin { to { transform: rotate(360deg); } }
    .booking-spinner { width: 40px; height: 40px; border: 3px solid #e2e8f0; border-top-color: var(--teal); border-radius: 50%; animation: spin 0.8s linear infinite; }

    /* Step indicator */
    .booking-steps { display: flex; align-items: center; justify-content: center; gap: 0; padding: 24px 32px 0; }
    .booking-step-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #94a3b8; transition: color 0.3s; }
    .booking-step-item.active { color: var(--teal); }
    .booking-step-item.done { color: var(--sage); }
    .booking-step-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; border: 2px solid #d1d5db; transition: all 0.3s; }
    .booking-step-item.active .booking-step-num { border-color: var(--teal); background: var(--teal); color: white; }
    .booking-step-item.done .booking-step-num { border-color: var(--sage); background: var(--sage); color: white; }
    .booking-step-line { width: 40px; height: 2px; background: #d1d5db; margin: 0 8px; transition: background 0.3s; }
    .booking-step-line.done { background: var(--sage); }

    /* Appointment type selector */
    .booking-body { padding: 24px 32px 32px; }
    .booking-panel { display: none; }
    .booking-panel.active { display: block; }
    .appt-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .appt-type-card { border: 2px solid #e2e8f0; border-radius: 14px; padding: 20px; cursor: pointer; transition: all 0.2s; position: relative; }
    .appt-type-card:hover { border-color: var(--teal-light); background: rgba(44,74,90,0.02); }
    .appt-type-card.selected { border-color: var(--teal); background: rgba(44,74,90,0.04); }
    .appt-type-card.selected::after { content: '\2713'; position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
    .appt-type-icon { font-size: 24px; margin-bottom: 8px; }
    .appt-type-name { font-size: 15px; font-weight: 700; color: var(--teal-dark); margin-bottom: 4px; }
    .appt-type-meta { font-size: 12px; color: var(--slate); }
    .appt-type-desc { font-size: 12px; color: #94a3b8; margin-top: 6px; line-height: 1.5; }

    /* Calendar date picker */
    .cal-container { margin-bottom: 24px; }
    .cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .cal-title { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--teal-dark); }
    .cal-nav { display: flex; gap: 8px; }
    .cal-nav-btn { width: 36px; height: 36px; border-radius: 10px; border: 1px solid #e2e8f0; background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 16px; transition: all 0.2s; }
    .cal-nav-btn:hover { background: var(--light); border-color: var(--teal); }
    .cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
    .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
    .cal-dow { text-align: center; font-size: 11px; font-weight: 600; color: #94a3b8; text-transform: uppercase; padding: 8px 0; }
    .cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.15s; color: var(--teal-dark); border: 2px solid transparent; }
    .cal-day:hover:not(.disabled):not(.empty) { background: rgba(44,74,90,0.06); }
    .cal-day.today { border-color: var(--gold); color: var(--gold); font-weight: 700; }
    .cal-day.selected { background: var(--teal); color: white; font-weight: 700; }
    .cal-day.disabled { color: #cbd5e1; cursor: not-allowed; }
    .cal-day.empty { cursor: default; }

    /* Time slots */
    .time-slots-label { font-size: 14px; font-weight: 600; color: var(--teal-dark); margin-bottom: 12px; }
    .time-slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .time-slot { padding: 12px 8px; border: 2px solid #e2e8f0; border-radius: 10px; text-align: center; cursor: pointer; transition: all 0.15s; font-size: 14px; font-weight: 600; color: var(--teal); background: white; }
    .time-slot:hover { border-color: var(--teal); background: rgba(44,74,90,0.04); }
    .time-slot.selected { border-color: var(--teal); background: var(--teal); color: white; }
    .time-slots-empty { text-align: center; padding: 24px; color: var(--slate); font-size: 14px; }
    .time-slots-loading { text-align: center; padding: 24px; }

    /* Patient form */
    .patient-form { display: flex; flex-direction: column; gap: 16px; }
    .booking-summary { background: var(--light); border: 1px solid #e2e8f0; border-radius: 14px; padding: 20px; margin-bottom: 8px; }
    .booking-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
    .booking-summary-row .label { color: var(--slate); }
    .booking-summary-row .value { font-weight: 600; color: var(--teal-dark); }

    /* Navigation buttons */
    .booking-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
    .booking-back { display: inline-flex; align-items: center; gap: 6px; background: none; border: 1px solid #e2e8f0; padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--slate); cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
    .booking-back:hover { border-color: var(--teal); color: var(--teal); }
    .booking-next { display: inline-flex; align-items: center; gap: 6px; background: var(--teal); color: white; border: none; padding: 12px 24px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
    .booking-next:hover { background: var(--teal-dark); transform: translateY(-1px); }
    .booking-next:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
    .booking-next.gold { background: var(--gold); color: var(--teal-dark); }
    .booking-next.gold:hover { background: var(--gold-light); }

    /* Confirmation */
    .booking-confirmed { text-align: center; padding: 20px 0; }
    .booking-confirmed-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--sage-light); color: var(--sage); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 20px; }
    .booking-confirmed h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--teal-dark); margin-bottom: 8px; }
    .booking-confirmed p { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 4px; }

    /* Info bar */
    .booking-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px 32px 28px; border-top: 1px solid #e2e8f0; }
    .booking-info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--slate); }
    .booking-info-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
    .booking-info-icon.teal-bg { background: rgba(44,74,90,0.08); }
    .booking-info-icon.gold-bg { background: rgba(212,168,85,0.12); }
    .booking-info-icon.sage-bg { background: rgba(74,124,111,0.1); }

    /* ─── MOBILE MENU ─── */
    .mobile-menu-btn { display: none; background: none; border: 1px solid #e2e8f0; border-radius: 8px; padding: 8px; cursor: pointer; color: var(--teal); z-index: 201; position: relative; }
    .mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 150; opacity: 0; transition: opacity 0.3s; }
    .mobile-overlay.active { display: block; opacity: 1; }

    /* ─── TABLET (1024px) ─── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .states-grid { grid-template-columns: repeat(5, 1fr); }
      .hero-inner { gap: 40px; }
      .hero h1 { font-size: 2.5rem; }
    }

    /* ─── MOBILE (768px) ─── */
    @media (max-width: 768px) {
      /* Eligibility mobile */
      .elig-benefits { grid-template-columns: 1fr; }
      .eligibility-form { padding: 18px; }
      .elig-result { padding: 18px; }
      .eligibility-fields .form-row { grid-template-columns: 1fr; }
      .eligibility-inline-prompt { flex-direction: column; gap: 8px; }

      /* Mobile Nav */
      .nav {
        display: none; position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
        background: white; flex-direction: column; align-items: stretch; gap: 0;
        padding: 80px 24px 32px; z-index: 200; box-shadow: -4px 0 24px rgba(0,0,0,0.15);
        overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease;
      }
      .nav.open { display: flex; transform: translateX(0); }
      .nav a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid #f1f5f9; color: var(--teal-dark); }
      .nav a:last-child { border-bottom: none; }
      .nav .nav-cta { text-align: center; margin-top: 16px; padding: 14px 24px; border-radius: 10px; }
      .nav .nav-phone { justify-content: flex-start; padding: 14px 0; }
      .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }

      /* Header */
      .header-inner { height: 64px; }
      .logo-mark { width: 36px; height: 36px; }
      .logo-name { font-size: 18px; }

      /* Hero */
      .hero { padding: 48px 20px 64px; }
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .hero h1 { font-size: 1.85rem; }
      .hero p { font-size: 1rem; }
      .hero-ctas { flex-direction: column; }
      .hero-ctas a, .hero-ctas button { width: 100%; justify-content: center; text-align: center; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .hero-stat .number { font-size: 1.5rem; }
      .hero-card { padding: 20px; }

      /* Trust bar */
      .trust { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .trust-inner { gap: 20px; justify-content: flex-start; flex-wrap: nowrap; min-width: max-content; }
      .trust-item { font-size: 13px; white-space: nowrap; }

      /* Sections general */
      .section-header h2 { font-size: 1.6rem; }
      .section-header p { font-size: 0.95rem; }
      .services, .facility, .how, .payment, .coverage, .team, .testimonials, .faq { padding: 60px 20px; }
      .section-header { margin-bottom: 36px; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card { padding: 24px; }

      /* Facility */
      .facility-grid { grid-template-columns: 1fr; }
      .facility-card { padding: 28px; }
      .facility-card h3 { font-size: 20px; }

      /* How it works */
      .how-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
      .how-steps::before { display: none; }

      /* Payment/Pricing */
      .payment-grid { grid-template-columns: 1fr; }
      .dpc-plan { flex-direction: column; align-items: flex-start; gap: 8px; }
      .dpc-plan-price { text-align: left; }
      .dpc-plan-btn { width: 100%; text-align: center; }

      /* Coverage */
      .states-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
      .state-card { padding: 10px 6px; }

      /* Team */
      .team-grid { grid-template-columns: 1fr; gap: 16px; }

      /* Testimonials */
      .test-grid { grid-template-columns: 1fr; gap: 16px; }
      .test-card { padding: 24px; }

      /* FAQ */
      .faq-q { padding: 16px 18px; font-size: 14px; }

      /* CTA */
      .cta { padding: 60px 20px; }
      .cta h2 { font-size: 1.7rem; }
      .cta-btn { width: 100%; justify-content: center; text-align: center; }

      /* Forms */
      .modal { max-width: 100%; border-radius: 16px; }
      .modal-header { padding: 24px 20px 0; }
      .modal-header h3 { font-size: 19px; }
      .modal-form { padding: 20px 20px 24px; }
      .form-row { grid-template-columns: 1fr; }

      /* Booking */
      .booking-section { padding: 60px 20px; }
      .booking-card-header { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
      .booking-card-header h3 { font-size: 18px; }
      .booking-body { padding: 20px 20px 24px; }
      .booking-steps { padding: 20px 20px 0; gap: 0; }
      .booking-step-item span:not(.booking-step-num) { display: none; }
      .booking-step-line { width: 28px; }
      .appt-type-grid { grid-template-columns: 1fr; }
      .time-slots-grid { grid-template-columns: repeat(3, 1fr); }
      .booking-info { grid-template-columns: 1fr; gap: 12px; padding: 20px 24px; }
      .booking-summary-row { flex-direction: column; gap: 2px; }

      /* Footer */
      .footer { padding: 48px 20px 24px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-badges { justify-content: center; flex-wrap: wrap; }
    }

    /* ─── SMALL PHONE (480px) ─── */
    @media (max-width: 480px) {
      .hero h1 { font-size: 1.55rem; }
      .hero-badge { font-size: 11px; padding: 5px 12px; }
      .hero-stats { gap: 16px; }
      .hero-stat .number { font-size: 1.3rem; }
      .hero-stat .label { font-size: 11px; }
      .section-header h2 { font-size: 1.4rem; }
      .how-steps { grid-template-columns: 1fr; }
      .states-grid { grid-template-columns: repeat(3, 1fr); }
      .payment-col { padding: 24px; }
      .cta h2 { font-size: 1.4rem; }
      .btn-primary, .btn-outline { padding: 12px 20px; font-size: 14px; }
      .facility-types { gap: 6px; }
      .facility-type { font-size: 11px; padding: 5px 10px; }
      .appt-slot { flex-direction: column; align-items: flex-start; gap: 10px; }
      .appt-book { width: 100%; text-align: center; }
    }