/* ===================================================================
   SpineX Injury Centers — Design System
   Brand palette: deep indigo + lime green. Static site, no build step.
   =================================================================== */

:root {
  /* Brand palette — SpineX royal blue + lime green (matches logo) */
  --navy:        #2e3192;  /* brand blue (primary) — logo "SpineX" */
  --navy-deep:   #20226b;  /* darkest blue — footer / hovers */
  --blue:        #3b46c4;  /* blue accent (secondary icon/buttons) */
  --blue-700:    #2a2f88;
  --teal:        #8bc63f;  /* brand lime green (accent / CTA) — logo spine */
  --teal-600:    #5b8a1e;  /* dark lime — readable for text/icons/links */
  --teal-soft:   #eef6dd;  /* pale lime tint */
  --blue-soft:   #e9eaf8;  /* pale blue tint */
  --lime-hover:  #7ab02f;  /* lime button hover */

  /* Neutrals */
  --ink:         #14283b;
  --slate:       #4a5d70;
  --slate-light: #6b7d8f;
  --line:        #e2e8f0;
  --bg:          #ffffff;
  --bg-soft:     #f6f9fc;
  --bg-tint:     #f0f6fb;
  --white:       #ffffff;

  /* Type */
  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shape & depth */
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(32, 34, 107, 0.07);
  --shadow:    0 12px 30px rgba(32, 34, 107, 0.10);
  --shadow-lg: 0 24px 60px rgba(32, 34, 107, 0.15);

  /* Layout */
  --maxw: 1200px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; color: var(--navy); letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ----------------------------- Buttons ---------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  padding: 14px 30px; border-radius: 100px; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal); color: var(--navy); font-weight: 600; box-shadow: 0 8px 20px rgba(139,198,63, 0.35); }
.btn-primary:hover { background: var(--lime-hover); color: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(139,198,63, 0.45); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(59,70,196, 0.28); }
.btn-blue:hover { background: var(--blue-700); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-600); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 38px; font-size: 1rem; }

/* --------------------------- Top utility bar ---------------------- */
.topbar {
  background: var(--navy); color: rgba(255,255,255,0.85);
  font-size: 0.82rem; letter-spacing: 0.02em;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 24px; max-width: var(--maxw); margin: 0 auto; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.85); font-weight: 500; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--teal); }
.topbar-left { display: flex; align-items: center; gap: 26px; }
.topbar-note { display: inline-flex; align-items: center; gap: 7px; }

/* ----------------------------- Navbar ----------------------------- */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo .logo-img { height: 56px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: block; padding: 10px 16px; font-family: var(--font-head); font-weight: 500;
  font-size: 0.92rem; color: var(--slate); border-radius: 8px; position: relative;
}
.nav-links > li > a:hover { color: var(--navy); background: var(--bg-soft); }
.nav-links > li > a.active { color: var(--teal-600); }
.nav-cta { margin-left: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.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 {
  position: fixed; inset: 0; top: 0; z-index: 99;
  background: #fff; transform: translateX(100%); transition: transform 0.4s var(--ease);
  padding: calc(var(--nav-h) + 30px) 28px 40px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul a { display: block; padding: 15px 8px; font-family: var(--font-head); font-weight: 500; font-size: 1.15rem; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-menu .mobile-cta { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mobile-cta .btn { width: 100%; }

/* ------------------------- Section helpers ------------------------ */
section { position: relative; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

.section-header { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-header.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head);
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--teal); border-radius: 2px; }
.section-header.center .eyebrow { justify-content: center; }
.eyebrow.light { color: var(--teal); }
h1.display { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 700; }
h2.title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; }
.section-header p { margin-top: 18px; color: var(--slate); font-size: 1.08rem; }

/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, #2b3470 55%, #353f8c 100%);
  color: #fff; padding: 96px 0 100px;
}
.hero::after {
  content: ''; position: absolute; right: -180px; top: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(139,198,63,0.32) 0%, rgba(139,198,63,0) 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(139,198,63,0.25); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 3.7rem); font-weight: 700; line-height: 1.08; }
.hero h1 .accent { color: var(--teal); }
.hero-sub { margin-top: 22px; font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 520px; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 30px; }
.hero-trust .ht-item { display: flex; align-items: center; gap: 11px; }
.hero-trust .ht-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); display: grid; place-items: center; color: var(--teal); flex-shrink: 0; }
.hero-trust .ht-icon svg { width: 21px; height: 21px; }
.hero-trust strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: #fff; }
.hero-trust span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-visual .hero-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background: linear-gradient(150deg, var(--blue), var(--navy-deep));
  position: relative;
}
.hero-visual .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .photo-fallback {
  position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.45);
  flex-direction: column; gap: 12px; text-align: center; font-family: var(--font-head); font-size: 0.9rem;
}
.hero-visual .photo-fallback svg { width: 64px; height: 64px; opacity: 0.5; }
.hero-card {
  position: absolute; bottom: -26px; left: -26px; background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px; max-width: 280px;
}
.hero-card .hc-icon { width: 46px; height: 46px; border-radius: 11px; background: var(--teal-soft); color: var(--teal-600); display: grid; place-items: center; flex-shrink: 0; }
.hero-card .hc-icon svg { width: 24px; height: 24px; }
.hero-card strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1rem; }
.hero-card span { font-size: 0.84rem; color: var(--slate); }

/* --------------------------- Stat strip --------------------------- */
.stat-strip { background: #fff; border-bottom: 1px solid var(--line); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 44px 0; text-align: center; }
.stat-grid .stat .num { font-family: var(--font-head); font-weight: 700; font-size: 2.5rem; color: var(--navy); line-height: 1; }
.stat-grid .stat .num .unit { color: var(--teal); }
.stat-grid .stat .lbl { margin-top: 8px; font-size: 0.92rem; color: var(--slate); }
.stat-grid .stat { border-right: 1px solid var(--line); }
.stat-grid .stat:last-child { border-right: none; }

/* ---------------------------- Card grids -------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .card-icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--teal-soft); color: var(--teal-600);
}
.card .card-icon.blue { background: var(--blue-soft); color: var(--blue); }
.card .card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--slate); font-size: 0.98rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--teal-600); }
.card .card-link svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service card with top accent */
.service-card { position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.service-card:hover::before { transform: scaleX(1); }

/* ------------------------- Feature / split ------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .media-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4;
  background: linear-gradient(150deg, var(--blue-soft), var(--teal-soft)); position: relative;
}
.split-media .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.split-media .photo-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: var(--slate-light); }
.split-media .photo-fallback svg { width: 60px; height: 60px; opacity: 0.4; }
.media-badge {
  position: absolute; right: -22px; bottom: 30px; background: var(--navy); color: #fff;
  padding: 20px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center;
}
.media-badge .num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--teal); line-height: 1; }
.media-badge .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

.check-list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.check-list .ck svg { width: 15px; height: 15px; }
.check-list strong { font-family: var(--font-head); color: var(--navy); display: block; }
.check-list p { color: var(--slate); font-size: 0.95rem; margin-top: 2px; }

/* ----------------------------- Process ---------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 16px; }
.step .step-num {
  width: 54px; height: 54px; border-radius: 14px; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 20px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--slate); font-size: 0.95rem; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 43px; left: 70px; right: -13px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}

/* ---------------------------- Conditions -------------------------- */
.cond-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cond-item {
  display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 20px; transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cond-item:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cond-item .ci-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
.cond-item .ci-icon svg { width: 22px; height: 22px; }
.cond-item strong { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1rem; }
.cond-item span { display: block; font-size: 0.86rem; color: var(--slate-light); }

/* --------------------------- Testimonials ------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px;
  display: flex; flex-direction: column;
}
.testi .stars { display: flex; gap: 3px; color: #f6b40a; margin-bottom: 16px; }
.testi .stars svg { width: 18px; height: 18px; }
.testi .quote { color: var(--ink); font-size: 1rem; line-height: 1.7; flex: 1; }
.testi .person { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--blue)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; }
.testi .person strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 0.96rem; }
.testi .person span { font-size: 0.83rem; color: var(--slate-light); }

/* ------------------------------- CTA ------------------------------ */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, #353f8c 100%); color: #fff;
  border-radius: var(--radius-lg); padding: 64px 56px; text-align: center; position: relative; overflow: hidden;
}
.cta::after { content: ''; position: absolute; left: -120px; bottom: -120px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(139,198,63,0.3), transparent 70%); }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta p { margin-top: 16px; color: rgba(255,255,255,0.82); font-size: 1.1rem; }
.cta-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-phone { margin-top: 22px; font-family: var(--font-head); font-size: 1.1rem; }
.cta-phone a { color: var(--teal); font-weight: 600; }

/* ----------------------------- Page hero -------------------------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #2b3470 100%); color: #fff;
  padding: 70px 0 76px; position: relative; overflow: hidden; text-align: center;
}
.page-hero::after { content: ''; position: absolute; right: -150px; top: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(139,198,63,0.28), transparent 70%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.5vw, 3.1rem); }
.page-hero p { margin-top: 16px; color: rgba(255,255,255,0.82); font-size: 1.12rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ------------------------- Accordion / FAQ ------------------------ */
.accordion { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.acc-item.open { box-shadow: var(--shadow-sm); border-color: var(--teal); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.acc-head .acc-toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; flex-shrink: 0; transition: background 0.25s ease, transform 0.3s ease; color: var(--teal-600); }
.acc-item.open .acc-head .acc-toggle { background: var(--teal); color: #fff; transform: rotate(45deg); }
.acc-head .acc-toggle svg { width: 18px; height: 18px; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.acc-body-inner { padding: 0 26px 24px; color: var(--slate); }

/* ------------------------------ Forms ----------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.88rem; color: var(--navy); margin-bottom: 7px; }
.field label .req { color: var(--teal-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.96rem; color: var(--ink); background: var(--bg-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(139,198,63,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--slate-light); margin-top: 6px; }
.form-success { display: none; padding: 16px 20px; border-radius: var(--radius-sm); background: var(--teal-soft); color: var(--teal-600); font-weight: 500; margin-bottom: 20px; }
.form-success.show { display: block; }

/* ------------------------ Info / contact tiles -------------------- */
.info-tiles { display: flex; flex-direction: column; gap: 18px; }
.info-tile { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.info-tile .it-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-600); display: grid; place-items: center; flex-shrink: 0; }
.info-tile .it-icon svg { width: 24px; height: 24px; }
.info-tile h4 { font-size: 1.05rem; margin-bottom: 4px; }
.info-tile p, .info-tile a { color: var(--slate); font-size: 0.96rem; }
.info-tile a:hover { color: var(--teal-600); }

/* ----------------------------- Pills ------------------------------ */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 100px; background: var(--bg-soft); border: 1px solid var(--line); font-size: 0.86rem; font-weight: 500; color: var(--slate); }
.pill svg { width: 15px; height: 15px; color: var(--teal-600); }

/* --------------------------- Insurance bar ------------------------ */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.logo-chip { padding: 12px 22px; background: #fff; border: 1px solid var(--line); border-radius: 100px; font-family: var(--font-head); font-weight: 600; color: var(--slate); font-size: 0.92rem; }

/* ------------------------------ Footer ---------------------------- */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.72); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .nav-logo { display: inline-flex; }
.footer-brand .footer-logo-img { height: 50px; width: auto; background: #fff; padding: 12px 18px; border-radius: 14px; box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.footer-brand p { margin-top: 20px; font-size: 0.95rem; max-width: 320px; line-height: 1.7; }
.footer-brand .foot-contact { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.footer-brand .foot-contact a { display: inline-flex; align-items: center; gap: 11px; color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.footer-brand .foot-contact a:hover { color: var(--teal); }
.footer-brand .foot-contact svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; }
footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.footer-col ul a:hover { color: var(--teal); padding-left: 3px; }
.footer-hours li { display: flex; justify-content: space-between; gap: 14px; font-size: 0.92rem; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-hours li span:last-child { color: #fff; font-weight: 500; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: rgba(255,255,255,0.8); transition: background 0.25s ease, transform 0.25s ease; }
.footer-social a:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 26px 0 40px; }
.footer-disclaimer { font-size: 0.82rem; color: rgba(255,255,255,0.5); max-width: 880px; margin: 0 auto 18px; text-align: center; line-height: 1.6; }
.footer-legal { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; font-size: 0.86rem; }
.footer-legal a:hover { color: var(--teal); }
.footer-legal span { color: rgba(255,255,255,0.3); }
.footer-copy { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* ----------------------- Scroll reveal anim ----------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* --------------------------- Sticky call --------------------------- */
.mobile-call-bar { display: none; }

/* ----------------------------- Utilities -------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.lead { font-size: 1.12rem; color: var(--slate); }
.prose p { color: var(--slate); margin-bottom: 18px; }
.prose h2 { margin: 36px 0 16px; font-size: 1.6rem; }
.prose h3 { margin: 28px 0 12px; font-size: 1.25rem; }
.prose ul.bullets { margin: 0 0 18px; padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.prose ul.bullets li { display: flex; gap: 12px; color: var(--slate); }
.prose ul.bullets li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-top: 9px; flex-shrink: 0; }

/* ============================ Responsive =========================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid .stat:nth-child(2) { border-right: none; }
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }
  .topbar-left .topbar-note { display: none; }
  .grid-3, .grid-2, .testi-grid, .cond-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .media-badge { right: 16px; }
  .mobile-call-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(10,42,67,0.08);
  }
  .mobile-call-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; }
  .mobile-call-bar a.mcb-call { color: var(--navy); }
  .mobile-call-bar a.mcb-book { background: var(--teal); color: #fff; }
  .mobile-call-bar svg { width: 18px; height: 18px; }
  body { padding-bottom: 54px; }
  .section { padding: 68px 0; }
  .cta { padding: 48px 26px; }
  .form-card { padding: 28px 22px; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px; }
  .nav-logo .logo-img { height: 44px; }
  .topbar-left { gap: 16px; }
}
