/* =============================================
   GREATER ATL HEALTH — Solo Practice Site
   ============================================= */

:root {
  --bg:           #f7f6f4;
  --white:        #ffffff;
  --text:         #131313;
  --text-2:       #4b5563;
  --text-3:       #9ca3af;
  --accent:       #0e8c77;
  --accent-dark:  #09705f;
  --accent-light: #e6f4f1;
  --accent-mid:   #b3dfd8;
  --border:       #e5e5e2;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06);
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --radius:       12px;
  --radius-lg:    20px;
  --nav-h:        70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,140,119,.3);
}
.btn-primary.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: 10px; }

.btn-outline-dark {
  display: inline-flex; align-items: center;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  color: var(--text);
  border: 2px solid var(--border);
  transition: border-color .2s;
  cursor: pointer;
}
.btn-outline-dark:hover { border-color: var(--text); }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow .3s;
}
.nav-inner {
  display: flex; align-items: center;
  gap: 32px; height: var(--nav-h);
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 1.05rem;
  color: var(--text); white-space: nowrap; flex-shrink: 0;
}
.logo-cross {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--accent); color: #fff;
  border-radius: 8px; font-size: 1.3rem; font-weight: 800; line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; flex: 1;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-2);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
/* Hide the mobile-only Book button in nav on desktop */
.nav-book-mobile { display: none !important; }
/* Join Video Visit — secondary nav button */
.btn-join-visit {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 18px; border-radius: 8px; font-size: 0.88rem; font-weight: 600;
  color: var(--accent); border: 1.5px solid var(--accent-mid);
  background: var(--accent-light);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.btn-join-visit:hover { background: var(--accent-mid); border-color: var(--accent); }
.nav-actions {
  display: flex; align-items: center; gap: 16px; margin-left: auto;
}
.nav-phone {
  font-size: 0.85rem; font-weight: 600; color: var(--text-2);
  transition: color .2s;
}
.nav-phone:hover { color: var(--accent); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: linear-gradient(160deg, #f0fdf9 0%, var(--white) 60%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-light); color: var(--accent-dark);
  font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.035em;
  margin-bottom: 20px;
}
.hero-text h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.75;
  margin-bottom: 32px; max-width: 500px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.hours-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(14,140,119,.08);
  border: 1px solid var(--accent-mid);
  color: var(--accent-dark);
  font-size: 0.82rem; font-weight: 600;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 500; color: var(--text-2); }
.trust-icon { font-size: 0.85rem; }

/* Provider Card */
.provider-card {
  background: var(--white);
  border-radius: var(--radius-lg);
}
.provider-photo { position: relative; }
.provider-photo-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 0;
  box-shadow: var(--shadow-lg);
}
.online-badge {
  position: absolute; top: 14px; right: 14px;
  background: #fff; color: #16a34a;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.provider-info { padding: 14px 18px; }
.provider-info h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 3px; }
.provider-title { font-size: 0.83rem; color: var(--accent); font-weight: 700; margin-bottom: 4px; }
.provider-location { font-size: 0.72rem; color: var(--text-3); margin-bottom: 12px; }
.provider-stats { display: flex; gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 0; }
.pstat {
  flex: 1; text-align: center; padding: 9px 6px;
  border-right: 1px solid var(--border);
}
.pstat:last-child { border-right: none; }
.pstat strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--text); }
.pstat span { font-size: 0.62rem; color: var(--text-3); }
.next-avail {
  margin-top: 10px;
  display: flex; align-items: center; gap: 8px;
  background: var(--accent-light); border-radius: 8px;
  padding: 8px 12px; font-size: 0.75rem; color: var(--text-2);
}
.avail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(22,163,74,.05); }
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 22px; border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon { font-size: 2rem; margin-bottom: 14px; color: var(--accent); }
.why-icon i { font-size: inherit; color: var(--accent); }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 0.87rem; color: var(--text-2); line-height: 1.7; }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header { text-align: center; max-width: 580px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  background: var(--accent-light); color: var(--accent-dark);
  font-size: 0.73rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-tag.light { background: rgba(255,255,255,.2); color: rgba(255,255,255,.9); }
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -.025em; margin-bottom: 14px;
}
.section-sub { font-size: .97rem; color: var(--text-2); line-height: 1.75; }

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1.5px solid var(--border);
  position: relative; transition: box-shadow .25s, transform .25s, border-color .2s;
}
.service-card:hover {
  box-shadow: var(--shadow); transform: translateY(-3px);
  border-color: var(--accent-mid);
}
.service-card.featured-service {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,140,119,.1), var(--shadow);
}
.svc-icon { font-size: 2.4rem; margin-bottom: 10px; line-height: 1; }
.svc-icon i { font-size: inherit; color: var(--accent); }
.svc-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: #fff;
  font-size: 0.67rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .05em;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.svc-price {
  font-size: 1.05rem; font-weight: 800; color: var(--accent);
  margin-bottom: 10px;
}
.svc-price span { font-size: 0.72rem; font-weight: 500; color: var(--text-3); }
.svc-platform {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.73rem; color: var(--accent-dark); font-weight: 500;
  background: var(--accent-light); border: 1px solid var(--accent-mid);
  border-radius: 6px; padding: 4px 10px; margin-bottom: 12px;
}
.service-card p  { font-size: 0.86rem; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.svc-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.svc-list li { font-size: 0.82rem; color: var(--text-2); }
.svc-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.85rem; font-weight: 700; color: var(--accent);
  transition: gap .15s;
}
.svc-link:hover { gap: 8px; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how { background: var(--bg); }
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.step-item {
  text-align: center;
  padding: 0 16px 0;
  position: relative;
}
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 18px;
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(14,140,119,.3);
}
.step-connector {
  position: absolute;
  top: 28px; left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: var(--accent-mid);
  z-index: 0;
}
.step-connector.last { display: none; }

/* Lottie step animation */
.step-lottie {
  width: 88px; height: 88px;
  margin: 0 auto 18px;
  position: relative; z-index: 1;
}
.step-lottie lottie-player {
  width: 100%; height: 100%;
}
.step-item h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.step-item p  { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }
.steps-cta {
  text-align: center; margin-top: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.steps-cta p { font-size: 0.88rem; color: var(--text-2); }
.steps-cta strong { color: var(--text); }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 72px; align-items: start;
}
.about-photo-wrap { position: sticky; top: calc(var(--nav-h) + 24px); }
.about-photo-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 16px;
}
.about-credential-strip { display: flex; flex-direction: column; gap: 10px; }
.cred-item {
  display: flex; flex-direction: column;
  background: var(--bg); border-radius: 8px;
  padding: 12px 14px; border: 1px solid var(--border);
}
.cred-item strong { font-size: 0.88rem; font-weight: 700; }
.cred-item span   { font-size: 0.78rem; color: var(--text-3); }
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 20px;
}
.about-text p {
  font-size: 0.95rem; color: var(--text-2); line-height: 1.8; margin-bottom: 16px;
}
.about-text p strong { color: var(--text); }
.about-creds {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.cred-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-light); color: var(--accent-dark);
  font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 8px;
}


/* =============================================
   REVIEWS
   ============================================= */
.reviews { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 26px 22px; border: 1px solid var(--border);
}
.review-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card > p {
  font-size: 0.88rem; color: var(--text-2); line-height: 1.75;
  font-style: italic; margin-bottom: 18px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.88rem; }
.reviewer span   { font-size: 0.75rem; color: var(--text-3); }
.verified-badge  {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--accent-dark); background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  padding: 2px 8px; border-radius: 100px; margin-top: 4px;
}

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 22px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 0.97rem; font-weight: 600; color: var(--text);
  transition: background .15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-arrow {
  font-size: 1.2rem; color: var(--text-3); flex-shrink: 0;
  transition: transform .3s, color .2s;
  display: inline-flex; align-items: center;
}
.faq-arrow i { font-size: inherit; color: inherit; transition: inherit; }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 22px;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 320px; padding: 0 22px 18px; }
.faq-a p { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; }

/* =============================================
   BOOK / CTA
   ============================================= */
.book-cta {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  padding: 96px 0; color: #fff;
}
.book-inner {
  display: grid; grid-template-columns: 1fr 460px;
  gap: 64px; align-items: start;
}
.book-text .section-tag { margin-bottom: 14px; }
.book-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; letter-spacing: -.025em; margin-bottom: 14px;
}
.book-text p { font-size: 1rem; opacity: .85; line-height: 1.75; margin-bottom: 28px; }
.book-features { display: flex; flex-direction: column; gap: 10px; }
.book-features li { font-size: 0.9rem; opacity: .9; }

/* Booking widget */
.book-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-lg); color: var(--text);
}
.book-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.book-card > p { font-size: 0.83rem; color: var(--text-2); margin-bottom: 16px; }
.visit-type-list { display: flex; flex-direction: column; gap: 8px; }
.visit-type-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 8px;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: border-color .15s, background .15s;
}
.visit-type-option:hover { border-color: var(--accent-mid); background: var(--accent-light); }
.visit-type-option input { accent-color: var(--accent); }
.visit-type-option span { display: flex; flex-direction: column; gap: 2px; }
.visit-type-option strong { font-size: 0.85rem; font-weight: 700; }
.visit-type-option em { font-size: 0.74rem; color: var(--text-3); font-style: normal; }
.book-card-note {
  text-align: center; font-size: 0.74rem; color: var(--text-3); margin-top: 10px;
}
.join-appt-note {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  margin-top: 14px; padding: 11px 14px;
  background: var(--accent-light); border: 1px solid var(--accent-mid);
  border-radius: 8px; font-size: 0.78rem; color: var(--text-2);
}
.join-appt-link {
  color: var(--accent); font-weight: 700; white-space: nowrap;
}
.join-appt-link:hover { text-decoration: underline; }
.book-phone-alt {
  text-align: center; margin-top: 12px; font-size: 0.85rem; color: rgba(255,255,255,.75);
}
.book-phone-alt a { color: #fff; font-weight: 700; }
.book-phone-alt a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #0d1117; color: #fff; padding-top: 64px; }
.footer-inner {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.logo-light { color: #fff; }
.footer-brand p {
  font-size: 0.83rem; color: rgba(255,255,255,.45);
  line-height: 1.75; margin-top: 12px; margin-bottom: 14px;
}
.footer-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 700; color: var(--accent);
}
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 0.82rem; color: rgba(255,255,255,.6);
  margin-bottom: 9px; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.emergency-bar {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  text-align: center;
}
.emergency-bar strong { color: #fbbf24; }

.footer-bottom { padding: 18px 0; }
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.77rem; color: rgba(255,255,255,.28);
  flex-wrap: wrap; gap: 8px;
}

/* =============================================
   EMAIL CAPTURE
   ============================================= */
.email-capture-section { background: var(--bg); }
.email-capture-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  background: var(--white); border-radius: 20px;
  border: 1.5px solid var(--border);
  padding: 40px 48px;
}
.email-capture-text h2 {
  font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px;
}
.email-capture-text p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; margin: 0; }
.email-capture-form {
  display: flex; gap: 10px; align-items: center;
}
.email-input {
  padding: 12px 18px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.9rem; font-family: inherit;
  width: 260px; transition: border-color .2s;
  outline: none;
}
.email-input:focus { border-color: var(--accent); }
.email-capture-note {
  font-size: 0.75rem; color: var(--text-3);
  margin-top: 12px; text-align: right;
}
.form-success {
  display: none;
  align-items: center; gap: 10px;
  background: var(--accent-light);
  border: 1.5px solid var(--accent-mid);
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 600; font-size: 0.9rem;
  color: var(--accent-dark);
  margin-top: 8px;
}

/* =============================================
   MOBILE STICKY CTA BAR
   ============================================= */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 96;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}
.mobile-cta-call {
  flex: 1; text-align: center;
  padding: 13px 10px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-weight: 700; font-size: 0.92rem; color: var(--text);
  transition: border-color .2s, color .2s;
}
.mobile-cta-call:hover { border-color: var(--accent); color: var(--accent); }
.mobile-cta-book {
  flex: 2; justify-content: center; text-align: center;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 98;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  border: none; cursor: pointer; font-size: 1.15rem; font-weight: 700;
  box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s, background .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* =============================================
   MOBILE PROVIDER STRIP
   ============================================= */
.provider-mini {
  display: none;
  align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 20px; margin-bottom: 8px;
}
.provider-mini-info { flex: 1; }
.provider-mini-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.provider-mini-info span  { font-size: 0.75rem; color: var(--text-3); }

/* =============================================
   SCROLL REVEAL (fallback — GSAP preferred)
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Trust icon color for Phosphor icons */
.trust-icon { display: inline-flex; align-items: center; }
.trust-icon i { font-size: 1.1rem; color: var(--accent); }

/* =============================================
   #9 HAMBURGER → X ANIMATION
   ============================================= */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   #10 SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--accent); width: 0%; z-index: 9999;
  transition: width 0.08s linear; pointer-events: none;
}

/* =============================================
   #4 STICKY BOOKING BAR
   ============================================= */
.sticky-book-bar {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 89;
  background: var(--white); border-bottom: 1.5px solid var(--border);
  padding: 10px 20px; display: flex; align-items: center; justify-content: center;
  gap: 20px; transform: translateY(-110%); transition: transform 0.35s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.sticky-book-bar.visible { transform: translateY(0); }
.sticky-book-text { font-size: 0.9rem; color: var(--text-2); }
.sticky-book-btn { font-size: 0.85rem; padding: 8px 18px; }

/* =============================================
   #5 TOAST NOTIFICATIONS
   ============================================= */
.toast-container {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 9999; display: flex; flex-direction: column; gap: 10px;
  align-items: center; pointer-events: none;
}
.toast {
  background: #1a1a1a; color: #fff; padding: 13px 22px;
  border-radius: 10px; font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22); opacity: 0;
  transform: translateY(16px); transition: opacity 0.3s, transform 0.3s;
  pointer-events: auto; max-width: 380px; text-align: center;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: var(--accent-dark); }
.toast.error { background: #dc2626; }

/* =============================================
   #3 REVIEW CAROUSEL — always single-slide slider
   ============================================= */
.reviews-carousel { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide { min-width: 100%; box-sizing: border-box; padding: 0 2px; }
/* Desktop: larger, centered card */
@media (min-width: 769px) {
  .carousel-slide { padding: 0 10%; }
  .review-card {
    padding: 40px 48px;
  }
  .review-card > p {
    font-size: 1.05rem;
    line-height: 1.85;
  }
  .rev-avatar {
    width: 52px; height: 52px; font-size: 0.85rem;
  }
  .reviewer strong { font-size: 1rem; }
}
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 28px;
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: var(--border); cursor: pointer;
  transition: background 0.2s, transform 0.2s; padding: 0;
}
.carousel-dot.active { background: var(--accent); transform: scale(1.35); }
.carousel-prev, .carousel-next {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text); font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s; flex-shrink: 0;
}
.carousel-prev:hover, .carousel-next:hover {
  background: var(--accent-light); border-color: var(--accent); color: var(--accent);
}

/* =============================================
   BADGE TICKER STRIP
   ============================================= */
.badge-ticker {
  overflow: hidden;
  background: var(--accent);
  padding: 11px 0;
}
.badge-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.badge-ticker-track:hover { animation-play-state: paused; }
.badge-ticker-item {
  display: inline-flex; align-items: center; gap: 7px;
  color: #fff; font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; padding: 0 28px;
  letter-spacing: .01em;
}
.badge-ticker-item i { font-size: 0.95rem; opacity: .85; }
.badge-ticker-sep {
  color: rgba(255,255,255,.3); padding: 0 4px;
  font-size: 1.1rem; line-height: 1; align-self: center;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   FAQ CATEGORY LABELS
   ============================================= */
.faq-category-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent-dark);
  padding: 20px 0 4px;
  margin-top: 8px;
}
.faq-category-label:first-child { padding-top: 0; margin-top: 0; }
.faq-category-label .faq-cat-bar {
  display: block; width: 3px; height: 14px;
  background: var(--accent); border-radius: 2px; flex-shrink: 0;
}
.faq-category-label .faq-cat-line {
  flex: 1; height: 1px; background: var(--accent-mid);
}

/* =============================================
   FEATURED SERVICE CARD ENHANCEMENT
   ============================================= */
.service-card.featured-service {
  background: linear-gradient(135deg, rgba(14,140,119,.07) 0%, rgba(14,140,119,.02) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,140,119,.08), 0 8px 32px rgba(14,140,119,.1);
  position: relative;
  overflow: hidden;
}
.service-card.featured-service::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 50%, #34d399 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* =============================================
   STEP CONNECTOR ENHANCEMENT
   ============================================= */
.step-connector {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-mid) 100%);
}

/* =============================================
   #6 FAQ SEARCH
   ============================================= */
.faq-search-wrap { position: relative; margin-bottom: 28px; }
.faq-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); pointer-events: none; font-size: 1rem;
}
.faq-search {
  width: 100%; padding: 12px 16px 12px 42px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; color: var(--text);
  background: var(--white); transition: border-color 0.2s; box-sizing: border-box;
}
.faq-search:focus { outline: none; border-color: var(--accent); }
.faq-item.faq-hidden { display: none; }
.faq-no-results {
  display: none; text-align: center; color: var(--text-3);
  padding: 32px 0; font-size: 0.93rem;
}
.faq-no-results.show { display: block; }

/* =============================================
   #8 SERVICE CARD EXPAND
   ============================================= */
.svc-list {
  overflow: hidden; max-height: 400px;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 1; margin-top: 12px;
}
.service-card.collapsed .svc-list { max-height: 0; opacity: 0; margin-top: 0; }
.svc-expand-btn {
  background: none; border: none; cursor: pointer;
  color: var(--accent); font-size: 0.84rem; font-weight: 600;
  padding: 8px 0 0; display: inline-flex; align-items: center; gap: 5px;
  font-family: inherit; transition: color 0.15s;
}
.svc-expand-btn:hover { color: var(--accent-dark); }
.svc-expand-arrow { transition: transform 0.25s; display: inline-block; transform: rotate(180deg); }
.service-card.collapsed .svc-expand-arrow { transform: rotate(0deg); }

/* =============================================
   #2 FORM FIELD VALIDATION
   ============================================= */
.form-group .field-error {
  font-size: 0.78rem; color: #dc2626;
  margin-top: 4px; display: none; line-height: 1.4;
}
.form-group.field-invalid input,
.form-group.field-invalid select,
.form-group.field-invalid textarea { border-color: #dc2626; }
.form-group.field-invalid .field-error { display: block; }
.form-group.field-valid input,
.form-group.field-valid select,
.form-group.field-valid textarea { border-color: #16a34a; }

/* =============================================
   #7 CLICK-TO-COPY PHONE
   ============================================= */
.copy-phone-wrap { display: inline-flex; align-items: center; gap: 8px; }
.copy-hint {
  font-size: 0.72rem; color: var(--text-3); cursor: pointer;
  border: 1px solid var(--border); border-radius: 4px;
  padding: 2px 7px; transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.copy-hint:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent); }
.copy-hint.copied { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =============================================
   #1 INTERACTIVE CHECKLIST
   ============================================= */
.checklist-progress { margin-bottom: 20px; }
.checklist-progress-label {
  font-size: 0.82rem; color: var(--text-2); font-weight: 600;
  display: flex; justify-content: space-between; margin-bottom: 6px;
}
.checklist-progress-bar-wrap {
  height: 6px; background: var(--border); border-radius: 3px; overflow: hidden;
}
.checklist-progress-bar {
  height: 100%; background: var(--accent); border-radius: 3px;
  transition: width 0.35s ease; width: 0%;
}
.prepare-checklist li { cursor: pointer; user-select: none; transition: color 0.2s; }
.prepare-checklist li.checked { color: var(--text-3); }
.prepare-checklist li.checked .check-box { background: var(--accent); border-color: var(--accent); }
.prepare-checklist li.checked .check-mark { opacity: 1; }
.prepare-checklist li.checked .check-label { text-decoration: line-through; }
.check-box {
  width: 18px; height: 18px; border-radius: 4px;
  border: 2px solid var(--accent-mid); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s; margin-top: 1px;
}
.check-mark { color: #fff; font-size: 0.65rem; font-weight: 800; opacity: 0; transition: opacity 0.2s; }

/* === SERVICE FINDER QUIZ === */
.btn-quiz-trigger {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.85rem; font-weight: 600;
  color: var(--accent); text-decoration: underline; padding: 0;
  transition: color .2s;
}
.btn-quiz-trigger:hover { color: var(--accent-dark); }
.quiz-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.quiz-overlay[hidden] { display: none; }
.quiz-modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; max-width: 520px; width: 100%;
  position: relative; box-shadow: var(--shadow-lg);
  max-height: 90vh; overflow-y: auto;
}
.quiz-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.6rem; cursor: pointer;
  color: var(--text-3); line-height: 1; padding: 4px;
}
.quiz-close:hover { color: var(--text); }
.quiz-progress {
  height: 4px; background: var(--border); border-radius: 2px;
  margin-bottom: 28px; overflow: hidden;
}
.quiz-progress-bar {
  height: 100%; background: var(--accent); border-radius: 2px;
  transition: width .4s ease; width: 33%;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-3); margin-bottom: 8px;
}
.quiz-step h3 {
  font-size: 1.25rem; font-weight: 800; margin-bottom: 20px;
  letter-spacing: -.02em;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg);
  cursor: pointer; text-align: left; font-family: inherit;
  font-size: 0.92rem; font-weight: 600; color: var(--text);
  transition: border-color .15s, background .15s, transform .1s;
}
.quiz-opt:hover {
  border-color: var(--accent); background: var(--accent-light);
  transform: translateX(3px);
}
.quiz-opt i { font-size: 1.3rem; color: var(--accent); flex-shrink: 0; }
.quiz-result {
  background: var(--accent-light); border: 1.5px solid var(--accent-mid);
  border-radius: var(--radius-lg); padding: 24px 22px; margin-bottom: 20px;
}
.quiz-result-tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent-dark); margin-bottom: 8px;
}
.quiz-result h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.quiz-result .quiz-result-price {
  font-size: 1.3rem; font-weight: 800; color: var(--accent); margin-bottom: 12px;
}
.quiz-result p { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; margin-bottom: 18px; }
.quiz-result .btn-primary { width: 100%; justify-content: center; }
.quiz-restart {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 0.83rem; color: var(--text-3); padding: 0;
  transition: color .2s;
}
.quiz-restart:hover { color: var(--accent); }

/* === DOT READINESS CHECKLIST === */
.dot-checklist-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-light); border: 1.5px solid var(--accent-mid);
  border-radius: 8px; padding: 8px 14px;
  font-size: 0.82rem; font-weight: 600; color: var(--accent-dark);
  cursor: pointer; font-family: inherit;
  transition: background .15s, border-color .15s;
  margin-bottom: 12px;
}
.dot-checklist-btn:hover { background: var(--accent-mid); border-color: var(--accent); }
.dot-check-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; font-size: 0.88rem; color: var(--text-2); line-height: 1.5;
  transition: color .15s;
}
.dot-check-item:last-child { border-bottom: none; }
.dot-check-item input[type="checkbox"] {
  accent-color: var(--accent); width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 1px; cursor: pointer;
}
.dot-check-item:has(input:checked) { color: var(--accent-dark); font-weight: 500; }
.dot-ready-msg { margin-top: 20px; }
.dot-ready-inner {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--accent-light); border: 1.5px solid var(--accent-mid);
  border-radius: var(--radius); padding: 16px 18px;
  color: var(--accent-dark);
}
.dot-ready-inner strong { display: block; font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.dot-ready-inner p { font-size: 0.83rem; margin: 0; color: var(--accent-dark); }

/* === SYMPTOM FINDER === */
/* === SYMPTOM FINDER === */
.symptom-finder { background: var(--accent-light); }
.sf-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}

/* Body diagram */
.sf-diagram-col { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.sf-diagram-hint {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-2);
  display: flex; align-items: center; gap: 5px;
}
.sf-body-svg { width: 100%; max-width: 180px; }
.sf-zone {
  fill: #dde3ec; stroke: #b8c4d4; stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.18s, stroke 0.18s;
}
.sf-zone[data-cat="head"]:hover   { fill: #dbeafe; stroke: #93c5fd; }
.sf-zone[data-cat="head"].active  { fill: #bfdbfe; stroke: #3b82f6; }
.sf-zone[data-cat="chest"]:hover  { fill: #d1fae5; stroke: #6ee7b7; }
.sf-zone[data-cat="chest"].active { fill: #a7f3d0; stroke: #10b981; }
.sf-zone[data-cat="skin"]:hover   { fill: #fef3c7; stroke: #fcd34d; }
.sf-zone[data-cat="skin"].active  { fill: #fde68a; stroke: #f59e0b; }
.sf-zone[data-cat="chronic"]:hover  { fill: #ede9fe; stroke: #c4b5fd; }
.sf-zone[data-cat="chronic"].active { fill: #ddd6fe; stroke: #8b5cf6; }
.sf-zone[data-cat="injury"]:hover   { fill: #fee2e2; stroke: #fca5a5; }
.sf-zone[data-cat="injury"].active  { fill: #fecaca; stroke: #ef4444; }
.sf-legend {
  display: flex; flex-wrap: wrap; gap: 6px 10px; justify-content: center;
  font-size: 0.72rem; color: var(--text-2);
}
.sf-legend span { display: flex; align-items: center; gap: 4px; }
.sf-legend-dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--c); flex-shrink: 0;
}

/* Category cards */
.sf-cards { display: flex; flex-direction: column; gap: 10px; }
.sf-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px 14px 20px;
  border-radius: 12px; border: 1.5px solid var(--border);
  background: var(--white); cursor: pointer; font-family: inherit;
  text-align: left; position: relative; overflow: hidden;
  transition: border-color .2s, background .2s, transform .15s, box-shadow .2s;
}
.sf-card-bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--sf-c); border-radius: 12px 0 0 12px;
}
.sf-card-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.sf-card-body { flex: 1; min-width: 0; }
.sf-card-body strong {
  display: block; font-size: 0.88rem; font-weight: 700;
  color: var(--text); line-height: 1.3;
}
.sf-card-body span {
  display: block; font-size: 0.75rem; color: var(--text-2);
  margin-top: 2px; line-height: 1.4;
}
.sf-card-arrow { font-size: 0.95rem; color: var(--text-3); flex-shrink: 0; transition: transform .2s, color .2s; }
.sf-card:hover, .sf-card.active {
  border-color: var(--accent); background: #f0faf8;
  transform: translateX(4px); box-shadow: 0 2px 12px rgba(14,140,119,.10);
}
.sf-card:hover .sf-card-arrow,
.sf-card.active .sf-card-arrow { transform: translateX(4px); color: var(--accent); }

/* Result panel */
.symptom-result { animation: sfSlideIn 0.22s ease; }
@keyframes sfSlideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.symptom-result[hidden] { display: none; }
.symptom-result-inner {
  background: var(--white); border: 1.5px solid var(--accent-mid);
  border-radius: var(--radius-lg); padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(14,140,119,.08);
}
.symptom-result-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1.5px solid var(--accent-light);
}
.symptom-result-head strong { font-size: 1rem; font-weight: 800; }
.symptom-result-close {
  background: none; border: none; font-size: 1.4rem; cursor: pointer;
  color: var(--text-3); line-height: 1; padding: 2px 6px;
}
.symptom-result-list {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0;
}
.symptom-result-list li {
  background: var(--accent-light); color: var(--accent-dark);
  border: 1px solid var(--accent-mid); border-radius: 20px;
  padding: 5px 14px; font-size: 0.8rem; font-weight: 600;
}

/* Responsive */
@media (max-width: 860px) {
  .sf-layout { grid-template-columns: 1fr; gap: 20px; }
  .sf-diagram-col { display: none; }
  .sf-cards { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .sf-cards { grid-template-columns: 1fr; }
  .symptom-result-inner { padding: 18px 16px; }
}

/* === CREDENTIAL TOOLTIPS === */
.cred-badge.has-tooltip {
  position: relative; cursor: help;
}
.cred-badge.has-tooltip::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: #1a1a1a; color: #fff; font-size: 0.78rem; font-weight: 400;
  line-height: 1.55; padding: 10px 14px; border-radius: 8px;
  width: 240px; text-align: left; pointer-events: none;
  opacity: 0; visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 50;
  white-space: normal;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.cred-badge.has-tooltip::before {
  content: '';
  position: absolute; bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #1a1a1a;
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
  pointer-events: none; z-index: 51;
}
.cred-badge.has-tooltip:hover::after,
.cred-badge.has-tooltip:focus::after,
.cred-badge.has-tooltip.tip-open::after { opacity: 1; visibility: visible; }
.cred-badge.has-tooltip:hover::before,
.cred-badge.has-tooltip:focus::before,
.cred-badge.has-tooltip.tip-open::before { opacity: 1; visibility: visible; }

/* === SMS FLOATING BUBBLE === */
.sms-bubble {
  position: fixed; bottom: 28px; left: 24px; z-index: 97;
  display: flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.sms-bubble:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.sms-bubble i { font-size: 1.3rem; }
@media (max-width: 768px) {
  .sms-bubble {
    bottom: 84px;
    padding: 10px 14px;
  }
  .sms-bubble-label { display: none; }
  .back-to-top { right: 16px; }
}

/* === TECH-CHECK LINK === */
.tech-check-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.75);
  transition: color .2s;
}
.tech-check-link:hover { color: #fff; }
.tech-check-link i { font-size: 0.95rem; }

/* === SERVICE AREA & LABS === */
.service-area { background: var(--bg); }
.service-area-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.service-area-map {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 340px; box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.service-area-info { display: flex; flex-direction: column; gap: 32px; }
.area-cities h4, .lab-partners h4 {
  font-size: 0.88rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-3); margin-bottom: 14px;
}
.city-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tag {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-2);
}
.lab-note { font-size: 0.83rem; color: var(--text-2); margin-bottom: 14px; }
.lab-list { display: flex; flex-direction: column; gap: 12px; }
.lab-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.lab-item i { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.lab-item strong { display: block; font-size: 0.9rem; font-weight: 700; }
.lab-item span { font-size: 0.78rem; color: var(--text-3); }
@media (max-width: 860px) {
  .service-area-inner { grid-template-columns: 1fr; }
  .service-area-map { height: 280px; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1060px) {
  .hero-inner          { grid-template-columns: 1fr 360px; gap: 40px; }
  .about-inner         { grid-template-columns: 320px 1fr; gap: 48px; }
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .steps-row           { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .step-connector      { display: none; }
}
@media (max-width: 860px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-card           { display: none; }
  .provider-mini       { display: flex; }
  .about-inner         { grid-template-columns: 1fr; }
  .about-photo-wrap    { position: static; }
  .book-inner          { grid-template-columns: 1fr; }
  .footer-inner        { grid-template-columns: 1fr; }
  .footer-cols         { grid-template-columns: repeat(2, 1fr); }
  .reviews-carousel    { max-width: 600px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px; z-index: 99; box-shadow: var(--shadow);
  }
  .nav-links.open a { font-size: 1rem; color: var(--text); }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  /* Hide desktop-only nav join button */
  .nav-join-wrap { display: none; }
  /* Show mobile sticky CTA */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  /* Sticky booking bar is desktop-only — mobile already has bottom CTA bar */
  .sticky-book-bar { display: none !important; }
  /* Show Book button inside open mobile nav */
  .nav-links.open .nav-book-mobile { display: flex !important; }
  /* Raise back-to-top above mobile bar */
  .back-to-top { bottom: 88px; }
  /* Email capture stacks on mobile */
  .email-capture-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .email-capture-form { justify-content: center; }
}
@media (max-width: 540px) {
  .section-pad { padding: 60px 0; }
  .hero        { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 48px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-row   { gap: 12px; }
  .why-grid    { grid-template-columns: 1fr; }
  .steps-row   { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* =============================================
   THREE-WAY ENTRY
   ============================================= */
.three-way-entry {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.twe-label {
  text-align: center;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-3);
  font-weight: 700;
  margin-bottom: 18px;
}
.twe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.twe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  color: var(--text);
  text-decoration: none;
  font-family: inherit;
}
.twe-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.twe-icon {
  width: 50px; height: 50px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
}
.twe-card strong { font-size: .95rem; font-weight: 700; }
.twe-cta { font-size: .82rem; color: var(--accent); font-weight: 600; }

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow .2s, transform .15s;
}
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.price-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}
.price-card-featured:hover { box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg); }
.price-badge {
  position: absolute;
  top: -11px; left: 20px;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 11px;
  border-radius: 20px;
}
.price-icon { font-size: 1.5rem; color: var(--accent); }
.price-card h4 { font-size: 1rem; font-weight: 700; }
.price-amount { font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.price-note { font-size: .82rem; color: var(--text-2); flex: 1; }
.price-card-note { background: var(--accent-light); border-color: var(--accent-mid); }
.price-compare-text { font-size: .85rem; color: var(--text-2); flex: 1; line-height: 1.6; }
.pricing-superbill-note {
  text-align: center;
  font-size: .85rem;
  color: var(--text-2);
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* =============================================
   VIDEO INTRO BUTTON
   ============================================= */
.btn-video-intro {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600; font-size: 0.88rem;
  color: var(--text);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  background: var(--white);
}
.btn-video-intro:hover { border-color: var(--accent); color: var(--accent); }
.play-circle {
  width: 26px; height: 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .twe-grid { grid-template-columns: 1fr; gap: 10px; }
  .twe-card { flex-direction: row; text-align: left; padding: 18px 20px; gap: 16px; }
  .twe-icon { flex-shrink: 0; width: 44px; height: 44px; }
  .twe-card strong, .twe-cta { display: block; }
}
@media (max-width: 620px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .nav, .mobile-cta-bar, .back-to-top, .book, .email-capture-section { display: none !important; }
  body { color: #000; background: #fff; padding: 0; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.75em; color: #555; }
  .hero { padding-top: 24px; }
  .hero-card { display: none; }
}
