/* =============================================
   METRIC HEALTH SOLUTIONS — SPA Stylesheet
   Colors: Navy #1d2040 | Teal #00b0b9 | Orange #f26c21 | Purple #8b8fc0
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1d2040;
  --navy-light: #2a3060;
  --teal:   #00b0b9;
  --teal-light: #e0f7f8;
  --orange: #f26c21;
  --orange-light: #fef0e6;
  --purple: #8b8fc0;
  --purple-light: #f0f0f8;
  --gray:   #6b7280;
  --gray-light: #f6f8fc;
  --border: #e5e7eb;
  --white:  #ffffff;
  --text:   #1a1f3c;
  --text-muted: #6b7280;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(29,32,64,.08);
  --shadow-lg: 0 12px 48px rgba(29,32,64,.14);
  --transition: all .25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .6s; }

/* Slide-from-left/right variants */
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* Scale-in variant */
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-scale.visible { opacity: 1; transform: none; }

/* ---- FLOATING DECORATIVE ORBS ---- */
.deco-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.deco-orb-teal { background: rgba(0,176,185,.08); filter: blur(60px); }
.deco-orb-orange { background: rgba(242,108,33,.06); filter: blur(60px); }
.deco-orb-purple { background: rgba(139,143,192,.08); filter: blur(60px); }

/* ---- PULSING DOTS ---- */
.deco-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.deco-dot-teal { background: rgba(0,176,185,.35); }
.deco-dot-orange { background: rgba(242,108,33,.3); }
.deco-dot-purple { background: rgba(139,143,192,.3); }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-14px); opacity: 1; }
}
@keyframes floatDown {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(14px); opacity: 1; }
}
.deco-dot-float-up { animation: floatUp 3s ease-in-out infinite; }
.deco-dot-float-down { animation: floatDown 4s ease-in-out infinite 1s; }

/* ---- ANIMATED UNDERLINE BAR ---- */
.section-bar {
  width: 0;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
  margin-top: 12px;
  transition: width 1s cubic-bezier(.16,1,.3,1) .5s;
}
.section-bar.visible { width: 64px; }

/* ---- ICON HOVER EFFECTS ---- */
.service-icon, .why-icon, .ci-icon {
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.why-item:hover .why-icon { transform: scale(1.1) rotate(5deg); }

/* ---- SECTION LAYOUTS ---- */
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-h2 em { color: var(--teal); font-style: normal; }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 56px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: #009aa2; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(0,176,185,.4), 0 0 60px rgba(0,176,185,.15); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  padding: 11px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 11px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 2px 16px rgba(29,32,64,.06); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo image */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-logo-icon {
  height: 42px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 36px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}
.nav-link {
  display: block;
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--navy); background: var(--gray-light); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-phone:hover { color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(29,32,64,.1);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open { transform: none; opacity: 1; }
.mobile-menu ul { list-style: none; margin-bottom: 20px; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-phone {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 16px;
}
.mobile-cta { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
}
.blob-1 { width: 600px; height: 600px; background: var(--teal); top: -200px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--orange); bottom: -100px; left: -100px; }
.blob-3 { width: 300px; height: 300px; background: var(--purple); top: 30%; left: 40%; }

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,176,185,.15);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-h1 em { color: var(--teal); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* Hero visual with image + glow */
.hero-visual {
  display: flex;
  align-items: center;
  position: relative;
}
.hero-glow {
  position: absolute;
  inset: -60px;
  z-index: 0;
  pointer-events: none;
}
.glow-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.glow-outer {
  width: 130%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(0,176,185,.35) 10%, transparent 60%);
  animation: glowPulse 4s ease-in-out infinite;
}
.glow-inner {
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(242,108,33,.2) 10%, transparent 60%);
  animation: glowPulse 4s ease-in-out infinite 1s;
}
@keyframes glowPulse {
  0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.hero-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  position: relative;
  z-index: 1;
}

.hcard-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hcard-icon.teal { background: rgba(0,176,185,.15); }
.hcard-icon.orange { background: rgba(242,108,33,.15); }
.hcard-icon.purple { background: rgba(139,143,192,.15); }
.hcard-label { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.hcard-sub { font-size: .8rem; color: rgba(255,255,255,.55); }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
}
.hero-wave svg { width: 100%; height: 100%; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--gray-light);
  padding: 0;
}
.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item { text-align: center; transition: transform .3s ease; }
.trust-item:hover { transform: translateY(-3px); }
.trust-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.trust-num span { color: var(--teal); }
.trust-label { font-size: .82rem; color: var(--gray); margin-top: 4px; }
.trust-divider { width: 1px; height: 50px; background: var(--border); }
.trust-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 4px; }
.badge {
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-blue { background: #dbeafe; color: #1d4ed8; }
.badge-teal { background: var(--teal-light); color: #00787f; }
.badge-purple { background: var(--purple-light); color: #5b5f9c; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.services-text .section-sub { margin-bottom: 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,176,185,.12), transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { border-color: var(--teal); box-shadow: 0 20px 60px rgba(0,176,185,.15); transform: translateY(-6px); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-teal { background: var(--teal-light); }
.icon-orange { background: var(--orange-light); }
.icon-purple { background: var(--purple-light); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.service-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-features {
  list-style: none;
  margin-bottom: 28px;
}
.service-features li {
  font-size: .88rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before { content: '✓'; font-weight: 700; color: var(--teal); font-size: .85rem; }
.service-link {
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.teal-link { color: var(--teal); }
.orange-link { color: var(--orange); }
.purple-link { color: var(--purple); }
.service-link:hover { opacity: .75; }

/* ============================================================
   HEALTHCARE GAPS
   ============================================================ */
.care-gaps { background: var(--white); padding-top: 0; }
.care-gaps-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.care-gaps-left p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.gaps-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.gaps-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.gaps-card > p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.gaps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gaps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.gaps-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--gray-light); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal);
  opacity: .25;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step-content p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.step-checklist {
  list-style: none;
  margin-bottom: 16px;
  text-align: left;
  display: inline-block;
}
.step-checklist li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-checklist li::before { content: '✓'; font-weight: 700; color: var(--teal); font-size: .8rem; }
.step-link { font-size: .88rem; font-weight: 600; color: var(--teal); text-decoration: none; }
.step-link:hover { opacity: .75; }
.step-connector {
  flex-shrink: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  margin-top: 32px;
  border-radius: 2px;
}

/* ============================================================
   WHY METRIC HEALTH
   ============================================================ */
.why-us { background: var(--white); }
.why-us .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 18px; }
.why-h2 em { color: var(--teal); font-style: normal; }
.why-p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.why-right { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.why-item:hover { transform: translateX(6px); }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-icon.teal { background: var(--teal-light); }
.why-icon.orange { background: var(--orange-light); }
.why-icon.purple { background: var(--purple-light); }
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-item p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--navy); padding: 96px 0; }
.testimonials .section-tag { background: rgba(0,176,185,.2); color: var(--teal); }
.testimonials .section-h2 { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s ease, box-shadow .4s ease;
}
.testimonial-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.2); }
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-title { font-size: 1rem; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.testimonial-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.teal-av { background: var(--teal); }
.orange-av { background: var(--orange); }
.purple-av { background: var(--purple); }
.testimonial-author strong { display: block; font-size: .92rem; color: var(--white); }
.testimonial-author span { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--gray-light); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 18px; }
.about-h2 em { color: var(--teal); font-style: normal; }
.about-p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-value { display: flex; align-items: flex-start; gap: 14px; }
.value-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
  margin-top: 2px;
}
.teal-label { background: var(--teal-light); color: #00787f; }
.orange-label { background: var(--orange-light); color: #c04e0d; }
.purple-label { background: var(--purple-light); color: #5b5f9c; }
.value-text { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

.about-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
.about-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.stat-row:last-child { margin-bottom: 0; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.stat-num.teal { color: var(--teal); }
.stat-num.orange { color: var(--orange); }
.stat-num.purple { color: var(--purple); }
.stat-desc { font-size: .82rem; color: var(--text-muted); }

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.comp-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.comp-badge:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(29,32,64,.1); }

.service-area {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.service-area h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-area p { font-size: .88rem; color: var(--text-muted); margin-bottom: 14px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tags span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============================================================
   SCHEDULE CTA
   ============================================================ */
.schedule-cta { background: var(--gray-light); }
.schedule-box {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3470 100%);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.schedule-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--teal);
  border-radius: 50%;
  opacity: .08;
}
.schedule-left h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.schedule-left h2 em { color: var(--teal); font-style: normal; }
.schedule-left p { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 28px; }
.schedule-options { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.schedule-hours { font-size: .82rem; color: rgba(255,255,255,.45); }
.schedule-info-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px;
}
.schedule-info-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.schedule-info-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.schedule-info-card li { display: flex; align-items: center; gap: 14px; font-size: .9rem; color: rgba(255,255,255,.75); }
.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.teal-dot { background: var(--teal); }
.orange-dot { background: var(--orange); }
.purple-dot { background: var(--purple); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto 32px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-chevron { flex-shrink: 0; transition: transform .3s ease; color: var(--gray); }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--teal); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a.open { max-height: 500px; }
.faq-a p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; padding-bottom: 10px; }
.faq-a p:last-child { padding-bottom: 20px; }
.faq-a ul {
  list-style: none;
  padding-bottom: 10px;
}
.faq-a ul li {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 4px 0 4px 20px;
  position: relative;
}
.faq-a ul li::before { content: '•'; position: absolute; left: 4px; color: var(--teal); font-weight: 700; }
.faq-cta { text-align: center; font-size: .95rem; color: var(--text-muted); }
.faq-cta a { color: var(--teal); font-weight: 600; text-decoration: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
.contact-h2 em { color: var(--teal); font-style: normal; }
.contact-p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
a.contact-info-item:hover { color: var(--teal); }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon.teal { background: var(--teal-light); }
.ci-icon.orange { background: var(--orange-light); }
.ci-icon.purple { background: var(--purple-light); }
.ci-label { display: block; font-size: .75rem; color: var(--gray); font-weight: 500; margin-bottom: 2px; }
.ci-val { font-size: .95rem; font-weight: 600; color: var(--navy); }

/* Contact form */
.contact-form {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,176,185,.12); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.form-select option { color: var(--text); background: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; border-radius: var(--radius-sm); }
.form-success {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--teal-light);
  color: #00787f;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
}
.form-note { font-size: .78rem; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-note a { color: var(--teal); text-decoration: none; }

/* Contact Blue variant */
.contact-blue {
  background: var(--navy);
}
.contact-blue .contact-h2 { color: var(--white); }
.contact-blue .contact-h2 em { color: var(--teal); }
.contact-blue .contact-p { color: rgba(255,255,255,.7); }
.contact-blue .section-tag { background: rgba(0,176,185,.2); color: var(--teal); }
.contact-blue .ci-label { color: rgba(255,255,255,.5); }
.contact-blue .ci-val { color: var(--white); }
.contact-blue .contact-info-item { color: var(--white); }
.contact-blue a.contact-info-item:hover { color: var(--teal); }
.contact-blue .contact-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.contact-blue .form-label { color: rgba(255,255,255,.8); }
.contact-blue .form-input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: var(--white); }
.contact-blue .form-input::placeholder { color: rgba(255,255,255,.35); }
.contact-blue .form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,176,185,.2); }
.contact-blue .form-note { color: rgba(255,255,255,.4); }
.contact-blue .form-note a { color: var(--teal); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-wrap { margin-bottom: 16px; }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact-links a,
.footer-contact-links span {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-links a:hover { color: var(--teal); }
.footer-col h5 { font-size: .85rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.5); text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-disclaimer {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-disclaimer p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  font-style: italic;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .why-us .section-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .care-gaps-inner { grid-template-columns: 1fr; gap: 40px; }
  .schedule-box { grid-template-columns: 1fr; gap: 40px; padding: 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; transform: none; }
  .trust-inner { justify-content: center; }
  .trust-divider { display: none; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .schedule-box { padding: 32px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .contact-form { padding: 24px; }
  .trust-badges { flex-direction: column; }
  .compliance-badges { flex-direction: column; }
}
