:root {
  --navy: #0d2742;
  --navy-2: #173d64;
  --blue: #4f6bdd;
  --blue-dark: #3552c2;
  --teal: #55b9ae;
  --teal-soft: #dff5f1;
  --sky: #dceafb;
  --paper: #f6f8fb;
  --warm: #fff8f1;
  --white: #fff;
  --ink: #0c1c30;
  --muted: #5f6e81;
  --line: #dfe6ef;
  --success: #1f8f71;
  --danger: #b73737;
  --shadow-sm: 0 8px 28px rgba(13, 39, 66, .08);
  --shadow-md: 0 20px 60px rgba(13, 39, 66, .14);
  --shadow-lg: 0 30px 90px rgba(13, 39, 66, .22);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.dialog-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; image-rendering: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: #d7e2ff; color: var(--navy); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--navy);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 36px), 820px); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-soft { background: var(--paper); }
.section-navy { background: var(--navy); color: #fff; }
.section-warm { background: var(--warm); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; border-radius: 99px; }
.section-navy .eyebrow { color: #9fd8d2; }
.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.section-navy .section-title { color: #fff; }
.section-lead { max-width: 700px; margin: 1.15rem 0 0; color: var(--muted); font-size: 1.12rem; }
.section-navy .section-lead { color: #c8d6e4; }
.section-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 46px; }
.section-head > div:first-child { max-width: 760px; }

.topbar {
  background: var(--navy);
  color: #dfeaf3;
  font-size: .82rem;
  font-weight: 700;
}
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-group { display: flex; align-items: center; gap: 24px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .dot { color: #88d0c7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223,230,239,.7);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(13,39,66,.08); background: rgba(255,255,255,.96); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; width: min(360px, 36vw); }
.brand img { height: 57px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: 8px; }
.primary-nav a {
  position: relative;
  padding: .65rem .78rem;
  color: var(--navy);
  font-size: .94rem;
  font-weight: 780;
  text-decoration: none;
  border-radius: 10px;
}
.primary-nav a:not(.btn):hover, .primary-nav a.active { background: #edf2fb; color: var(--blue-dark); }
.primary-nav .btn { margin-left: .35rem; }
.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
}
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-toggle[aria-expanded="true"] span { opacity: 0; }
.mobile-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(79,107,221,.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(79,107,221,.3); }
.btn:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--navy); border-color: #bcc8d7; box-shadow: none; }
.btn-outline:hover { background: #fff; border-color: var(--blue); color: var(--blue-dark); box-shadow: var(--shadow-sm); }
.btn-white { background: #fff; color: var(--navy); box-shadow: none; }
.btn-teal { background: linear-gradient(135deg, var(--teal), #2b9c91); box-shadow: 0 10px 24px rgba(85,185,174,.2); }
.btn-sm { min-height: 42px; padding: .65rem .95rem; border-radius: 12px; font-size: .9rem; }
.btn-block { width: 100%; }
.icon-inline { width: 1.05em; height: 1.05em; flex: 0 0 auto; }

.hero {
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 74px 0 102px;
  background:
    radial-gradient(circle at 90% 20%, rgba(85,185,174,.24), transparent 25%),
    radial-gradient(circle at 20% 12%, rgba(79,107,221,.19), transparent 30%),
    linear-gradient(180deg, #f7f9ff 0%, #fff 80%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  background: url('../images/mountain-lines.svg') bottom center / cover no-repeat;
  opacity: .8;
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.hero-copy h1 {
  max-width: 770px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  line-height: .96;
  letter-spacing: -.065em;
}
.hero-copy h1 span { color: var(--blue); }
.hero-copy .lead { max-width: 680px; margin: 1.4rem 0 0; color: #4e5f75; font-size: clamp(1.1rem, 2vw, 1.32rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--muted); font-size: .93rem; font-weight: 700; }
.hero-proof .avatars { display: flex; }
.hero-proof .avatar {
  width: 38px; height: 38px; margin-left: -8px; display: grid; place-items: center;
  border: 3px solid #fff; border-radius: 50%; background: var(--sky); color: var(--navy); font-size: .72rem; font-weight: 900;
}
.hero-proof .avatar:first-child { margin-left: 0; }
.hero-visual { position: relative; min-height: 560px; }
.hero-photo-shell {
  position: absolute;
  inset: 34px 16px 42px 72px;
  overflow: hidden;
  border-radius: 42% 18% 32% 22% / 24% 28% 18% 36%;
  box-shadow: var(--shadow-lg);
  border: 10px solid rgba(255,255,255,.9);
}
.hero-photo-shell img { height: 100%; object-fit: cover; object-position: center; transform: none; }
.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}
.hero-badge strong { display: block; color: var(--navy); font-size: 1rem; line-height: 1.15; }
.hero-badge span { display: block; color: var(--muted); font-size: .8rem; }
.hero-badge .badge-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--teal-soft); color: #218a7f; }
.hero-badge.top { top: 4px; right: -8px; }
.hero-badge.bottom { left: 16px; bottom: 16px; }
.location-switch {
  position: absolute;
  z-index: 3;
  right: -4px;
  bottom: 92px;
  width: 238px;
  padding: 8px;
  border: 1px solid #fff;
  border-radius: 18px;
  background: rgba(13,39,66,.94);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.location-switch button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: .7rem .8rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #cfe0ee;
  text-align: left;
}
.location-switch button.active { background: #fff; color: var(--navy); }
.location-switch small { opacity: .78; }

.trust-strip { position: relative; z-index: 3; margin-top: -52px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.trust-item { padding: 26px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.13rem; }
.trust-item span { color: var(--muted); font-size: .89rem; }

.locations-showcase { overflow: hidden; }
.location-tabs { display: inline-flex; padding: 6px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }
.location-tab { padding: .74rem 1.1rem; border: 0; border-radius: 11px; background: transparent; color: var(--muted); font-weight: 850; }
.location-tab.active { background: var(--navy); color: #fff; }
.location-panel { display: none; }
.location-panel.active { display: grid; animation: fadeUp .35s ease; }
.location-card {
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.location-image { position: relative; min-height: 420px; background: var(--sky); }
.location-image img { height: 100%; object-fit: cover; }
.location-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,39,66,.75)); }
.location-image-label { position: absolute; z-index: 2; left: 28px; bottom: 26px; color: #fff; }
.location-image-label strong { display: block; font-size: 1.6rem; }
.location-image-label span { color: #dbe8f1; }
.location-content { padding: clamp(34px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.location-content h3 { margin: 0 0 .65rem; color: var(--navy); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.04em; }
.location-content > p { color: var(--muted); }
.location-meta { display: grid; gap: 14px; margin: 24px 0 28px; }
.location-meta-item { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: start; }
.location-meta-item .icon-box { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #eef2ff; color: var(--blue-dark); }
.location-meta-item strong { display: block; color: var(--navy); }
.location-meta-item span, .location-meta-item a { color: var(--muted); text-decoration: none; }
.location-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.map-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.55) 50%, transparent 50.5%) 0 0 / 88px 88px,
    linear-gradient(transparent 49.5%, rgba(255,255,255,.55) 50%, transparent 50.5%) 0 0 / 88px 88px,
    radial-gradient(circle at 62% 42%, rgba(79,107,221,.7), rgba(79,107,221,.22) 10%, transparent 11%),
    linear-gradient(145deg, #d9e9e5, #dbe7f6);
}
.map-art::before {
  content: "";
  position: absolute;
  inset: 12% -10% 10% 18%;
  border: 7px solid rgba(255,255,255,.88);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 48%;
  transform: rotate(-14deg);
}
.map-pin {
  position: absolute;
  z-index: 2;
  top: 39%; left: 58%;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border: 6px solid rgba(255,255,255,.9);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(13,39,66,.25);
}
.map-pin svg { transform: rotate(45deg); color: #fff; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.service-media { height: 220px; overflow: hidden; background: var(--sky); }
.service-media img { height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-media img { transform: none; }
.service-body { padding: 24px; }
.service-kicker { color: var(--blue-dark); font-size: .77rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin: .48rem 0 .55rem; color: var(--navy); font-size: 1.42rem; line-height: 1.18; }
.service-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.service-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 18px; padding: 0; border: 0; background: transparent; color: var(--blue-dark); font-weight: 850; }
.service-link:hover { color: var(--navy); }
.service-card.icon-card { min-height: 390px; padding: 28px; background: linear-gradient(145deg, #f5f8ff, #edf8f5); }
.service-card.icon-card .service-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 20px; background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }

.story-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 78px; align-items: center; }
.story-visual { position: relative; min-height: 590px; }
.story-photo-main { position: absolute; inset: 0 80px 80px 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.story-photo-main img { height: 100%; object-fit: cover; }
.story-photo-small { position: absolute; right: 0; bottom: 0; width: 48%; overflow: hidden; border: 8px solid #fff; border-radius: 25px; box-shadow: var(--shadow-md); }
.story-photo-small img { aspect-ratio: 4 / 3; object-fit: cover; }
.stat-card { position: absolute; left: 24px; bottom: 24px; z-index: 3; width: 205px; padding: 20px; border-radius: 18px; background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.stat-card strong { display: block; font-size: 2.4rem; line-height: 1; }
.stat-card span { color: #c9d9e6; font-size: .82rem; }
.check-list { display: grid; gap: 14px; margin: 28px 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.check-list .check { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); color: var(--success); font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.process-step {
  position: relative;
  padding: 30px 24px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  transition: transform .2s ease, background .2s ease;
}
.process-step:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); }
.process-step .num { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; background: var(--blue); color: #fff; font-weight: 900; }
.process-step h3 { margin: 1.2rem 0 .6rem; font-size: 1.25rem; }
.process-step p { margin: 0; color: #c8d6e4; font-size: .92rem; }

.review-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.review-track { display: flex; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.review-slide { min-width: 100%; display: grid; grid-template-columns: .78fr 1.22fr; min-height: 510px; }
.review-photo { position: relative; overflow: hidden; background: var(--navy); }
.review-photo img { height: 100%; object-fit: cover; }
.review-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(13,39,66,.74)); }
.review-copy { padding: clamp(40px, 7vw, 84px); display: flex; flex-direction: column; justify-content: center; }
.review-stars { color: #f4b83f; letter-spacing: .18em; }
.review-copy blockquote { margin: 1rem 0 1.5rem; color: var(--navy); font-size: clamp(1.5rem, 2.5vw, 2.35rem); line-height: 1.35; letter-spacing: -.025em; }
.review-copy .review-note { color: var(--muted); font-size: .92rem; }
.review-nav { position: absolute; right: 28px; bottom: 26px; display: flex; gap: 10px; }
.icon-button { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--navy); }
.icon-button:hover { border-color: var(--blue); color: var(--blue-dark); }

.faq-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.faq-media { position: sticky; top: 130px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.faq-media img { aspect-ratio: 1.2 / 1; object-fit: cover; }
.accordion { display: grid; gap: 12px; }
.accordion-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 22px; border: 0; background: #fff; color: var(--navy); font-weight: 850; text-align: left; }
.accordion-trigger .plus { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.accordion-trigger .plus::before, .accordion-trigger .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 15px; height: 2px; border-radius: 99px; background: currentColor; transform: translate(-50%,-50%); }
.accordion-trigger .plus::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
.accordion-trigger[aria-expanded="true"] .plus::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-panel p { margin: 0; padding: 0 22px 22px; color: var(--muted); }
.accordion-trigger[aria-expanded="true"] + .accordion-panel { grid-template-rows: 1fr; }

.cta-band {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 30%, rgba(85,185,174,.3), transparent 35%),
    linear-gradient(135deg, var(--navy), #173f68);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; padding: clamp(38px, 7vw, 76px); }
.cta-band h2 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.04em; }
.cta-band p { max-width: 680px; margin: 1rem 0 0; color: #cbdbe8; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 235px; }

.page-hero {
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at 85% 10%, rgba(85,185,174,.22), transparent 30%),
    linear-gradient(180deg, #f5f8ff, #fff);
}
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.page-hero h1 { margin: 0; color: var(--navy); font-size: clamp(3rem, 6vw, 6rem); line-height: .98; letter-spacing: -.06em; }
.page-hero p { max-width: 700px; color: var(--muted); font-size: 1.16rem; }
.page-hero-card { position: relative; overflow: hidden; min-height: 380px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.page-hero-card img { height: 100%; object-fit: cover; }
.page-hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,39,66,.72)); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; color: var(--muted); font-size: .86rem; font-weight: 720; }
.breadcrumbs a { color: var(--blue-dark); text-decoration: none; }

.doctor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.doctor-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); }
.doctor-image { height: 360px; background: var(--sky); }
.doctor-image img { height: 100%; object-fit: cover; }
.doctor-body { padding: 30px; }
.doctor-body h2 { margin: 0; color: var(--navy); font-size: 1.8rem; }
.doctor-body .credentials { color: var(--blue-dark); font-weight: 800; }
.doctor-body p { color: var(--muted); }

.values-grid, .condition-grid, .blog-grid, .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card, .condition-card, .blog-card, .review-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.value-card .icon-box, .condition-card .icon-box { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 17px; background: #eef2ff; color: var(--blue-dark); }
.value-card h3, .condition-card h3 { margin: 0 0 .5rem; color: var(--navy); }
.value-card p, .condition-card p { margin: 0; color: var(--muted); }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-detail {
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.service-detail img { height: 100%; object-fit: cover; }
.service-detail-body { padding: 26px; }
.service-detail h2 { margin: 0; color: var(--navy); font-size: 1.45rem; }
.service-detail p { color: var(--muted); font-size: .94rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tag { padding: .38rem .65rem; border-radius: 999px; background: #eef2ff; color: var(--blue-dark); font-size: .76rem; font-weight: 800; }

.review-card .review-stars { font-size: .92rem; }
.review-card blockquote { margin: 1rem 0; color: var(--navy); font-size: 1.04rem; }
.review-card footer { color: var(--muted); font-size: .87rem; }
.review-placeholder { border-style: dashed; background: #fbfcfe; }
.review-placeholder strong { color: var(--navy); }

.blog-card { padding: 0; overflow: hidden; }
.blog-thumb { min-height: 210px; display: grid; place-items: end start; padding: 24px; background: linear-gradient(135deg, #dfe8ff, #dff5f1); }
.blog-thumb .blog-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 20px; background: rgba(255,255,255,.86); color: var(--blue-dark); box-shadow: var(--shadow-sm); }
.blog-body { padding: 26px; }
.blog-meta { color: var(--blue-dark); font-size: .79rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.blog-card h2 { margin: .55rem 0; color: var(--navy); font-size: 1.36rem; line-height: 1.25; }
.blog-card p { color: var(--muted); font-size: .92rem; }
.blog-card a { color: var(--blue-dark); font-weight: 850; text-decoration: none; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.contact-panel { padding: 34px; border-radius: 24px; background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.contact-panel h2 { margin-top: 0; }
.contact-panel p { color: #c9d8e4; }
.contact-links { display: grid; gap: 14px; margin-top: 26px; }
.contact-link { display: grid; grid-template-columns: 46px 1fr; gap: 13px; align-items: center; padding: 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; text-decoration: none; }
.contact-link:hover { background: rgba(255,255,255,.07); }
.contact-link .icon-box { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.1); }
.contact-link strong { display: block; }
.contact-link span { color: #c9d8e4; font-size: .86rem; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .89rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: .78rem .9rem;
  border: 1px solid #cfd8e4;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(79,107,221,.12); }
.form-note { color: var(--muted); font-size: .8rem; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 12px; background: var(--teal-soft); color: #176c61; font-weight: 750; }
.form-status.show { display: block; }

.site-footer { background: #071b2e; color: #dce7f0; }
.footer-main { display: grid; grid-template-columns: 1.3fr .7fr .85fr .85fr; gap: 50px; padding: 78px 0 48px; }
.footer-brand img { width: 315px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 440px; color: #aebfce; }
.footer-title { margin: 0 0 18px; color: #fff; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #b9c8d5; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: #94a8b8; font-size: .82rem; }
.footer-bottom a { color: inherit; }

.sticky-mobile-bar { display: none; }

.dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(90vh, 850px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.dialog::backdrop { background: rgba(5,19,33,.68); backdrop-filter: blur(6px); }
.dialog-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; padding: 26px 28px 20px; border-bottom: 1px solid var(--line); }
.dialog-head h2 { margin: 0; color: var(--navy); font-size: 1.7rem; }
.dialog-close { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--navy); }
.dialog-body { padding: 28px; overflow-y: auto; }
.service-modal-layout { display: grid; grid-template-columns: 190px 1fr; gap: 26px; }
.service-modal-layout img { height: 230px; object-fit: cover; border-radius: 18px; }
.service-modal-layout h3 { margin-top: 0; color: var(--navy); }

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  .brand { width: 300px; }
  .primary-nav a { padding-inline: .55rem; font-size: .88rem; }
  .hero-grid { gap: 34px; }
  .hero-photo-shell { left: 28px; }
  .services-grid, .values-grid, .condition-grid, .blog-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.25fr .75fr .9fr; }
  .footer-main > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .topbar-group:first-child { display: none; }
  .brand { width: 285px; max-width: calc(100% - 65px); }
  .primary-nav {
    position: fixed;
    inset: calc(var(--header-h) + 42px) 12px auto;
    display: grid;
    max-height: calc(100vh - 130px);
    overflow: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav a { padding: .9rem 1rem; }
  .primary-nav .btn { margin: .4rem 0 0; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-grid, .page-hero-grid, .story-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 760px; }
  .hero-visual { min-height: 560px; margin-top: 10px; }
  .hero-photo-shell { inset: 35px 10% 35px 10%; }
  .hero-badge.top { right: 2%; }
  .location-switch { right: 4%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .location-card { grid-template-columns: 1fr; }
  .location-image { min-height: 340px; }
  .story-grid { gap: 45px; }
  .story-visual { min-height: 540px; }
  .review-slide { grid-template-columns: 1fr; }
  .review-photo { min-height: 340px; }
  .faq-media { position: relative; top: 0; }
  .page-hero-card { min-height: 340px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  body { font-size: 16px; padding-bottom: 72px; }
  .container, .narrow { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 74px 0; }
  .section-sm { padding: 54px 0; }
  .section-head { display: grid; align-items: start; gap: 22px; }
  .topbar-inner { min-height: 38px; justify-content: center; }
  .topbar-group { gap: 12px; }
  .topbar .hours { display: none; }
  .brand { width: 235px; }
  .brand img { height: 49px; }
  .primary-nav { top: calc(var(--header-h) + 38px); }
  .hero { padding: 42px 0 72px; }
  .hero-copy h1 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .hero-actions .btn { width: 100%; }
  .hero-proof { align-items: flex-start; }
  .hero-visual { min-height: 470px; }
  .hero-photo-shell { inset: 36px 8px 42px 34px; border-radius: 34px; }
  .hero-badge { padding: 11px 12px; }
  .hero-badge.top { right: 0; }
  .hero-badge.bottom { left: 0; bottom: 9px; }
  .hero-badge .badge-icon { width: 38px; height: 38px; }
  .location-switch { display: none; }
  .trust-strip { margin-top: -26px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .location-tabs { width: 100%; }
  .location-tab { flex: 1; padding-inline: .6rem; }
  .location-content { padding: 30px 24px; }
  .location-actions .btn { width: 100%; }
  .services-grid, .values-grid, .condition-grid, .blog-grid, .review-grid, .doctor-grid, .process-grid { grid-template-columns: 1fr; }
  .story-visual { min-height: 455px; }
  .story-photo-main { inset: 0 34px 65px 0; }
  .story-photo-small { width: 50%; border-width: 5px; }
  .stat-card { left: 12px; bottom: 14px; width: 165px; padding: 14px; }
  .stat-card strong { font-size: 1.9rem; }
  .review-photo { min-height: 300px; }
  .review-copy { padding: 32px 24px 84px; }
  .review-nav { right: 20px; bottom: 20px; }
  .cta-band-inner { grid-template-columns: 1fr; padding: 38px 24px; }
  .cta-actions { min-width: 0; }
  .page-hero { padding: 64px 0 58px; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail img { height: 240px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-card, .contact-panel { padding: 24px; }
  .footer-main { grid-template-columns: 1fr; padding: 58px 0 36px; gap: 34px; }
  .footer-bottom { display: grid; }
  .sticky-mobile-bar {
    position: fixed;
    z-index: 45;
    left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8px;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(16px);
  }
  .sticky-mobile-bar .btn { min-height: 48px; padding: .65rem; }
  .service-modal-layout { grid-template-columns: 1fr; }
  .service-modal-layout img { height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: .35rem; padding: .65rem .78rem;
  border: 0; border-radius: 10px; background: transparent; color: var(--navy);
  font-size: .94rem; font-weight: 780;
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active, .nav-dropdown.open .nav-dropdown-toggle { background: #edf2fb; color: var(--blue-dark); }
.nav-chevron { width: 17px; height: 17px; transition: transform .2s ease; }
.nav-dropdown:hover .nav-chevron, .nav-dropdown:focus-within .nav-chevron, .nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; z-index: 70; top: calc(100% + 12px); left: 50%; width: 310px;
  max-height: min(72vh, 650px); overflow-y: auto;
  padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; pointer-events: none;
  transform: translate(-50%, -8px); transition: .2s ease;
}
.nav-dropdown-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 16px; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.primary-nav .nav-dropdown-menu a { display: grid; gap: 1px; padding: .8rem .9rem; }
.nav-dropdown-menu a span { font-weight: 850; }
.nav-dropdown-menu a small { color: var(--muted); font-size: .76rem; font-weight: 650; }
.nav-dropdown-menu a.active small, .nav-dropdown-menu a:hover small { color: inherit; opacity: .75; }

/* Decompression service page */
.service-hero {
  position: relative; isolation: isolate; overflow: hidden; min-height: 735px; display: grid; align-items: center;
  padding: 82px 0 104px; background: radial-gradient(circle at 82% 22%, rgba(85,185,174,.24), transparent 25%), radial-gradient(circle at 16% 8%, rgba(79,107,221,.18), transparent 29%), linear-gradient(145deg, #f9fbff 0%, #f2f6ff 52%, #fff 100%);
}
.service-hero::before { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; right: -170px; bottom: -245px; border: 80px solid rgba(79,107,221,.08); border-radius: 50%; }
.service-hero::after { content: ""; position: absolute; z-index: -1; inset: auto 0 0; height: 160px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.9)); }
.service-orbit { position: absolute; z-index: -1; border: 1px solid rgba(79,107,221,.18); border-radius: 50%; animation: serviceFloat 8s ease-in-out infinite; }
.orbit-one { width: 260px; height: 260px; left: -110px; top: 90px; }
.orbit-two { width: 150px; height: 150px; right: 42%; bottom: -70px; animation-delay: -3s; }
.service-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 74px; align-items: center; }
.service-breadcrumbs { margin-bottom: 26px; }
.service-hero h1 { max-width: 760px; margin: 0; color: var(--navy); font-size: clamp(3.3rem, 6.25vw, 6.6rem); line-height: .95; letter-spacing: -.065em; }
.service-hero h1 span { display: block; color: var(--blue); }
.service-hero-lead { max-width: 700px; margin: 1.45rem 0 0; color: #4f6074; font-size: clamp(1.08rem, 1.65vw, 1.3rem); }
.service-call-btn { min-height: 57px; padding-inline: 1.45rem; }
.service-proof-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.service-proof-row span { display: inline-flex; align-items: center; gap: .45rem; padding: .52rem .75rem; border: 1px solid rgba(79,107,221,.18); border-radius: 999px; background: rgba(255,255,255,.76); color: var(--navy); font-size: .85rem; font-weight: 780; box-shadow: var(--shadow-sm); }
.service-proof-row svg { width: 17px; height: 17px; fill: none; stroke: var(--teal); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.decompression-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.decompression-card { position: relative; width: min(100%, 480px); padding: 24px; border: 1px solid rgba(255,255,255,.85); border-radius: 34px; background: rgba(255,255,255,.72); backdrop-filter: blur(20px); box-shadow: 0 36px 90px rgba(13,39,66,.18); }
.decompression-card::before { content: ""; position: absolute; inset: 12px; z-index: -1; border-radius: 26px; background: linear-gradient(145deg, rgba(79,107,221,.08), rgba(85,185,174,.12)); }
.decompression-card-head { display: flex; justify-content: space-between; gap: 14px; align-items: center; color: var(--navy); font-size: .82rem; font-weight: 850; }
.live-dot { display: inline-flex; align-items: center; gap: .45rem; color: var(--success); }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 6px rgba(31,143,113,.12); animation: servicePulse 2s ease-out infinite; }
.spine-visual { min-height: 285px; display: grid; place-items: center; align-content: center; gap: 8px; }
.disc-stack { display: grid; justify-items: center; gap: 4px; animation: stackBreathe 3.2s ease-in-out infinite; }
.disc-stack span { display: block; width: 108px; height: 27px; border-radius: 50%; background: linear-gradient(180deg, #6f86e8, #3552c2); box-shadow: inset 0 4px 8px rgba(255,255,255,.28), 0 7px 14px rgba(53,82,194,.16); }
.disc-stack span:nth-of-type(2), .disc-stack span:nth-of-type(4) { width: 98px; }
.disc-stack i { display: block; width: 76px; height: 12px; border: 3px solid #62c5ba; border-left-width: 9px; border-right-width: 9px; border-radius: 50%; background: #e9faf7; animation: discExpand 3.2s ease-in-out infinite; }
.traction-arrow { color: var(--teal); font-size: 2rem; font-weight: 900; line-height: 1; animation: arrowPull 1.6s ease-in-out infinite; }
.arrow-down { animation-direction: reverse; }
.decompression-meter { height: 8px; overflow: hidden; border-radius: 99px; background: #e4eaf3; }
.decompression-meter span { display: block; width: 64%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal), var(--blue)); animation: meterMove 4s ease-in-out infinite; }
.decompression-card-foot { display: grid; gap: 3px; margin-top: 17px; }
.decompression-card-foot strong { color: var(--navy); font-size: 1.05rem; }
.decompression-card-foot small { color: var(--muted); line-height: 1.45; }
.floating-service-note { position: absolute; display: grid; min-width: 172px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.8); border-radius: 17px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-md); animation: serviceFloat 5s ease-in-out infinite; }
.floating-service-note strong { color: var(--navy); font-size: .87rem; }
.floating-service-note span { color: var(--muted); font-size: .74rem; }
.note-one { top: 49px; right: -19px; }
.note-two { left: -27px; bottom: 50px; animation-delay: -2s; }
.service-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 92px; align-items: start; }
.service-intro-copy { max-width: 660px; }
.lead-copy { margin-top: 0; color: var(--navy); font-size: clamp(1.25rem, 2vw, 1.62rem); line-height: 1.45; font-weight: 650; }
.service-inline-call { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 30px; padding: 18px 20px; border-left: 4px solid var(--teal); border-radius: 0 15px 15px 0; background: var(--teal-soft); }
.service-inline-call span { color: var(--navy); font-weight: 720; }
.service-inline-call a { color: var(--blue-dark); font-weight: 850; text-decoration: none; white-space: nowrap; }
.service-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-feature-card { position: relative; overflow: hidden; min-height: 440px; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-feature-card:hover { transform: translateY(-8px); border-color: rgba(79,107,221,.34); box-shadow: var(--shadow-md); }
.service-feature-card.featured { background: linear-gradient(150deg, var(--navy), #173d64); color: #fff; }
.feature-number { position: absolute; right: 22px; top: 11px; color: rgba(79,107,221,.12); font-size: 5.3rem; font-weight: 950; line-height: 1; letter-spacing: -.08em; }
.featured .feature-number { color: rgba(255,255,255,.08); }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: #edf2ff; color: var(--blue); }
.featured .service-icon { background: rgba(255,255,255,.12); color: #9fd8d2; }
.service-icon svg { width: 30px; height: 30px; }
.service-feature-card h3 { position: relative; margin: 1.5rem 0 .7rem; color: var(--navy); font-size: 1.55rem; line-height: 1.18; }
.featured h3 { color: #fff; }
.service-feature-card p { color: var(--muted); }
.featured p { color: #c9d6e3; }
.service-checks { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.service-checks li { position: relative; padding-left: 28px; color: var(--navy); font-size: .92rem; font-weight: 740; }
.featured .service-checks li { color: #fff; }
.service-checks li::before { content: "✓"; position: absolute; left: 0; top: -.05rem; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); color: var(--success); font-size: .72rem; font-weight: 950; }
.featured .service-checks li::before { background: rgba(85,185,174,.18); color: #a8eee6; }
.service-condition-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.service-condition-grid .btn { margin-top: 26px; }
.condition-cloud { display: flex; flex-wrap: wrap; gap: 12px; align-content: center; }
.condition-cloud span { position: relative; padding: .83rem 1.05rem .83rem 2.2rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--navy); font-weight: 780; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease; }
.condition-cloud span:hover { transform: translateY(-3px); border-color: var(--teal); }
.condition-cloud span::before { content: ""; position: absolute; left: 1rem; top: 50%; width: 8px; height: 8px; transform: translateY(-50%); border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px var(--teal-soft); }
.service-stat-band { position: relative; z-index: 3; padding: 0 0 1px; background: linear-gradient(180deg, #fff 50%, var(--navy) 50%); }
.service-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-md); }
.service-stat-grid > div { min-height: 145px; display: grid; align-content: center; justify-items: center; padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.service-stat-grid > div:last-child { border-right: 0; }
.service-stat-grid strong { color: var(--blue); font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.15; }
.service-stat-grid span { margin-top: 6px; color: var(--muted); font-size: .84rem; font-weight: 720; }
.service-process { padding-top: 130px; }
.service-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-process-card { position: relative; padding: 34px 25px 28px; border: 1px solid rgba(255,255,255,.24); border-radius: 22px; background: rgba(255,255,255,.05); transition: transform .25s ease, background .25s ease; }
.service-process-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.09); }
.service-process-card > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 15px; background: linear-gradient(135deg, var(--blue), #6f85e8); color: #fff; font-size: 1.1rem; font-weight: 900; box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.service-process-card h3 { margin: 0 0 .6rem; color: #fff; font-size: 1.25rem; }
.service-process-card p { margin: 0; color: #c8d6e4; font-size: .93rem; }
.process-call { display: flex; justify-content: center; align-items: center; gap: 22px; margin-top: 42px; }
.process-call p { color: #dfeaf3; font-weight: 750; }
.service-review-shell { background: linear-gradient(145deg, #f6f8ff, #fff); }
.service-review-slide { grid-template-columns: 1fr; min-height: 430px; }
.service-review-slide .review-copy { max-width: 950px; margin-inline: auto; text-align: center; padding-inline: clamp(28px, 8vw, 100px); }
.no-media-faq { grid-template-columns: .76fr 1.24fr; gap: 80px; align-items: start; }
.faq-call-card { display: grid; gap: 4px; margin-top: 30px; padding: 22px; border-radius: 20px; background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.faq-call-card span { color: #c8d6e4; font-size: .9rem; }
.faq-call-card a { margin-top: 10px; color: #a8eee6; font-weight: 850; text-decoration: none; }
@keyframes serviceFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes servicePulse { 0% { box-shadow: 0 0 0 0 rgba(31,143,113,.28); } 70%,100% { box-shadow: 0 0 0 11px rgba(31,143,113,0); } }
@keyframes stackBreathe { 0%,100% { transform: scaleY(.96); } 50% { transform: scaleY(1.05); } }
@keyframes discExpand { 0%,100% { height: 9px; opacity: .82; } 50% { height: 17px; opacity: 1; } }
@keyframes arrowPull { 0%,100% { transform: translateY(3px); opacity: .55; } 50% { transform: translateY(-4px); opacity: 1; } }
@keyframes meterMove { 0%,100% { width: 42%; } 50% { width: 86%; } }

@media (max-width: 1100px) {
  .nav-dropdown-toggle { padding-inline: .55rem; font-size: .88rem; }
  .service-hero-grid { gap: 38px; }
  .note-one { right: 0; }
  .note-two { left: 0; }
  .service-feature-card { padding: 28px; }
}
@media (max-width: 900px) {
  .nav-dropdown { display: grid; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: .9rem 1rem; }
  .nav-dropdown-menu { position: static; width: auto; display: none; margin: 4px 8px 8px; padding: 7px; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; background: var(--paper); }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: none; transform: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; transform: none; }
  .nav-dropdown-menu::before { display: none; }
  .service-hero { min-height: auto; padding: 62px 0 86px; }
  .service-hero-grid, .service-intro-grid, .service-condition-grid, .no-media-faq { grid-template-columns: 1fr; gap: 48px; }
  .decompression-visual { min-height: 480px; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .service-feature-card { min-height: 0; }
  .service-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .service-stat-grid > div:nth-child(2) { border-right: 0; }
  .service-stat-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .service-hero { padding-top: 44px; }
  .service-hero h1 { font-size: clamp(3rem, 14vw, 4.75rem); }
  .service-hero h1 span { display: inline; }
  .service-hero .hero-actions .btn { width: 100%; }
  .service-proof-row span { flex: 1 1 calc(50% - 8px); justify-content: center; }
  .decompression-visual { min-height: 430px; }
  .decompression-card { padding: 19px; border-radius: 26px; }
  .spine-visual { min-height: 260px; }
  .floating-service-note { min-width: 145px; padding: 10px 12px; }
  .note-one { top: 18px; }
  .note-two { bottom: 18px; }
  .service-inline-call { display: grid; }
  .service-inline-call a { white-space: normal; }
  .service-stat-grid { grid-template-columns: 1fr; }
  .service-stat-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-stat-grid > div:last-child { border-bottom: 0; }
  .service-process-grid { grid-template-columns: 1fr; }
  .process-call { display: grid; text-align: center; }
  .service-review-slide { min-height: 455px; }
  .condition-cloud span { width: 100%; }
}

/* Final service-page polish */
.primary-nav a.btn { color: #fff; }
.service-link { text-decoration: none; }
.note-one { top: 72px; right: -42px; }
.note-two { left: -34px; bottom: -8px; }
@media (max-width: 1100px) {
  .note-one { right: -12px; }
  .note-two { left: -8px; }
}
@media (max-width: 680px) {
  .note-one { top: 4px; right: 0; }
  .note-two { left: 0; bottom: -2px; }
}


/* Shockwave service page */
.shockwave-service-hero { background: radial-gradient(circle at 82% 22%, rgba(85,185,174,.2), transparent 28%), radial-gradient(circle at 18% 12%, rgba(79,107,221,.18), transparent 31%), linear-gradient(180deg, #f7f9ff 0%, #fff 86%); }
.shockwave-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.shockwave-card { position: relative; width: min(100%, 480px); padding: 24px; border: 1px solid rgba(255,255,255,.9); border-radius: 34px; background: rgba(255,255,255,.76); backdrop-filter: blur(20px); box-shadow: 0 36px 90px rgba(13,39,66,.18); }
.shockwave-card::before { content: ""; position: absolute; inset: 12px; z-index: -1; border-radius: 26px; background: linear-gradient(145deg, rgba(85,185,174,.12), rgba(79,107,221,.09)); }
.wave-stage { position: relative; min-height: 285px; display: grid; place-items: center; overflow: hidden; border-radius: 24px; }
.wave-source { position: absolute; left: 38px; top: 50%; width: 52px; height: 90px; transform: translateY(-50%); border-radius: 18px 25px 25px 18px; background: linear-gradient(160deg, var(--navy), var(--blue-dark)); box-shadow: 0 14px 28px rgba(13,39,66,.22); }
.wave-source::after { content: ""; position: absolute; right: -20px; top: 27px; width: 28px; height: 36px; border-radius: 0 15px 15px 0; background: linear-gradient(160deg, #5f77e2, var(--blue)); }
.wave-source span { position: absolute; left: 15px; top: 18px; width: 22px; height: 7px; border-radius: 99px; background: rgba(255,255,255,.72); box-shadow: 0 17px 0 rgba(255,255,255,.36), 0 34px 0 rgba(255,255,255,.18); }
.wave-ring { position: absolute; left: 108px; top: 50%; width: 42px; height: 110px; transform: translateY(-50%) scale(.35); border: 4px solid var(--teal); border-left-color: transparent; border-radius: 50%; opacity: 0; animation: shockwaveTravel 2.8s ease-out infinite; }
.ring-two { animation-delay: .65s; }
.ring-three { animation-delay: 1.3s; }
.ring-four { animation-delay: 1.95s; }
.wave-target { position: absolute; right: 39px; top: 50%; width: 126px; height: 126px; transform: translateY(-50%); display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at center, #fff 0 23%, #dff5f1 24% 43%, #cbd8ff 44% 62%, rgba(79,107,221,.12) 63% 100%); box-shadow: inset 0 0 0 1px rgba(79,107,221,.16), 0 18px 38px rgba(13,39,66,.12); animation: targetBreathe 2.8s ease-in-out infinite; }
.wave-target span { width: 34px; height: 34px; border: 7px solid var(--blue); border-radius: 50%; background: #fff; box-shadow: 0 0 0 9px rgba(79,107,221,.1); }
.wave-target i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(85,185,174,.38); animation: targetPulse 1.4s ease-out infinite; }
.waveform { height: 44px; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 7px 12px; border-radius: 14px; background: #eef2f8; }
.waveform span { width: 6px; height: 12px; border-radius: 99px; background: linear-gradient(180deg, var(--teal), var(--blue)); animation: waveformBounce 1.1s ease-in-out infinite; }
.waveform span:nth-child(2), .waveform span:nth-child(8) { animation-delay: -.15s; }
.waveform span:nth-child(3), .waveform span:nth-child(7) { animation-delay: -.3s; }
.waveform span:nth-child(4), .waveform span:nth-child(6) { animation-delay: -.45s; }
.waveform span:nth-child(5) { animation-delay: -.6s; }
@keyframes shockwaveTravel { 0% { transform: translateY(-50%) translateX(0) scale(.35); opacity: 0; } 15% { opacity: .9; } 100% { transform: translateY(-50%) translateX(205px) scale(1.65); opacity: 0; } }
@keyframes targetBreathe { 0%,100% { transform: translateY(-50%) scale(.98); } 50% { transform: translateY(-50%) scale(1.04); } }
@keyframes targetPulse { 0% { box-shadow: 0 0 0 0 rgba(85,185,174,.45); } 75%,100% { box-shadow: 0 0 0 24px rgba(85,185,174,0); } }
@keyframes waveformBounce { 0%,100% { height: 11px; opacity: .58; } 50% { height: 30px; opacity: 1; } }
@media (max-width: 900px) { .shockwave-visual { min-height: 480px; } }
@media (max-width: 680px) {
  .shockwave-visual { min-height: 430px; }
  .shockwave-card { padding: 19px; border-radius: 26px; }
  .wave-stage { min-height: 260px; }
  .wave-source { left: 22px; transform: translateY(-50%) scale(.88); }
  .wave-ring { left: 83px; }
  .wave-target { right: 20px; width: 108px; height: 108px; }
  @keyframes shockwaveTravel { 0% { transform: translateY(-50%) translateX(0) scale(.3); opacity: 0; } 15% { opacity: .9; } 100% { transform: translateY(-50%) translateX(145px) scale(1.35); opacity: 0; } }
}


/* Digital X-ray service page */
.xray-service-hero { background: radial-gradient(circle at 84% 18%, rgba(85,185,174,.18), transparent 29%), radial-gradient(circle at 14% 12%, rgba(79,107,221,.2), transparent 31%), linear-gradient(180deg, #f7f9ff 0%, #fff 86%); }
.xray-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.xray-console { position: relative; width: min(100%, 500px); padding: 24px; border: 1px solid rgba(255,255,255,.9); border-radius: 34px; background: rgba(255,255,255,.78); backdrop-filter: blur(20px); box-shadow: 0 36px 90px rgba(13,39,66,.18); }
.xray-console::before { content: ""; position: absolute; inset: 12px; z-index: -1; border-radius: 26px; background: linear-gradient(145deg, rgba(79,107,221,.1), rgba(85,185,174,.11)); }
.xray-console-head { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:16px; color:var(--navy); font-size:.86rem; font-weight:850; }
.xray-screen { position:relative; min-height:340px; overflow:hidden; border-radius:24px; background:radial-gradient(circle at 50% 42%, rgba(85,185,174,.18), transparent 37%), linear-gradient(160deg, #112e4c, #071b31); box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); color:#d8f6ff; }
.xray-grid { position:absolute; inset:0; opacity:.13; background-image:linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size:32px 32px; mask-image:linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); }
.xray-spine { position:absolute; left:50%; top:50%; width:210px; height:286px; transform:translate(-50%,-50%); filter:drop-shadow(0 0 12px rgba(147,235,255,.4)); animation:xrayFloat 4.5s ease-in-out infinite; }
.xray-scan-line { position:absolute; z-index:3; left:5%; right:5%; height:3px; top:10%; background:linear-gradient(90deg, transparent, #83f2df 20%, #fff 50%, #83f2df 80%, transparent); box-shadow:0 0 18px #6fe7d4; animation:xrayScan 3.8s ease-in-out infinite; }
.xray-focus { position:absolute; width:58px; height:58px; border:2px solid rgba(131,242,223,.7); border-radius:12px; box-shadow:0 0 0 8px rgba(131,242,223,.06); animation:xrayFocus 2.8s ease-in-out infinite; }
.xray-focus::before,.xray-focus::after { content:""; position:absolute; background:#83f2df; }
.xray-focus::before { left:50%; top:-8px; width:1px; height:74px; }
.xray-focus::after { top:50%; left:-8px; height:1px; width:74px; }
.focus-one { left:24%; top:31%; }
.focus-two { right:19%; bottom:24%; animation-delay:-1.4s; }
.xray-readout { position:absolute; left:18px; right:18px; bottom:15px; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:11px 13px; border:1px solid rgba(255,255,255,.16); border-radius:13px; background:rgba(6,25,44,.72); backdrop-filter:blur(8px); font-size:.75rem; color:#bcd1e4; }
.xray-readout strong { color:#fff; font-size:.78rem; }
.xray-console-foot { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.xray-console-foot span { display:flex; align-items:center; justify-content:center; gap:7px; min-height:38px; padding:8px; border-radius:12px; background:#eef2f8; color:var(--navy); font-size:.72rem; font-weight:780; text-align:center; }
.xray-console-foot i { width:7px; height:7px; flex:0 0 auto; border-radius:50%; background:var(--teal); box-shadow:0 0 0 4px rgba(85,185,174,.12); }
@keyframes xrayScan { 0%,100% { top:9%; opacity:.35; } 48%,52% { opacity:1; } 50% { top:86%; } }
@keyframes xrayFloat { 0%,100% { transform:translate(-50%,-50%) rotate(-1deg); } 50% { transform:translate(-50%,-52%) rotate(1deg); } }
@keyframes xrayFocus { 0%,100% { transform:scale(.9); opacity:.45; } 50% { transform:scale(1.08); opacity:1; } }
@media (max-width:900px) { .xray-visual { min-height:500px; } }
@media (max-width:680px) {
  .xray-visual { min-height:450px; }
  .xray-console { padding:18px; border-radius:26px; }
  .xray-screen { min-height:305px; }
  .xray-spine { width:180px; height:252px; }
  .xray-console-foot { grid-template-columns:1fr; }
  .xray-console-foot span { min-height:34px; }
  .xray-readout { align-items:flex-start; flex-direction:column; gap:2px; }
}


/* Chiropractic adjustments service page */
.adjustment-service-hero { background: radial-gradient(circle at 83% 20%, rgba(85,185,174,.2), transparent 29%), radial-gradient(circle at 14% 12%, rgba(79,107,221,.2), transparent 31%), linear-gradient(180deg, #f7f9ff 0%, #fff 86%); }
.adjustment-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.alignment-console { position: relative; width: min(100%, 500px); padding: 24px; border: 1px solid rgba(255,255,255,.9); border-radius: 34px; background: rgba(255,255,255,.78); backdrop-filter: blur(20px); box-shadow: 0 36px 90px rgba(13,39,66,.18); }
.alignment-console::before { content: ""; position: absolute; inset: 12px; z-index: -1; border-radius: 26px; background: linear-gradient(145deg, rgba(79,107,221,.1), rgba(85,185,174,.12)); }
.alignment-console-head { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:16px; color:var(--navy); font-size:.86rem; font-weight:850; }
.alignment-stage { position:relative; min-height:340px; overflow:hidden; border-radius:24px; background:radial-gradient(circle at 50% 44%, rgba(85,185,174,.19), transparent 34%), linear-gradient(160deg, #112e4c, #071b31); box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); color:#d8f6ff; }
.alignment-grid { position:absolute; inset:0; opacity:.1; background-image:linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size:34px 34px; mask-image:linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); }
.alignment-figure { position:absolute; left:50%; top:48%; width:245px; height:315px; transform:translate(-50%,-50%); filter:drop-shadow(0 0 14px rgba(147,235,255,.3)); animation:alignmentFloat 4.5s ease-in-out infinite; }
.alignment-figure .body-line,.alignment-figure .head-line { stroke:rgba(216,246,255,.42); stroke-width:3; stroke-linecap:round; }
.alignment-figure .spine-line { stroke:#8de8dc; stroke-width:7; stroke-linecap:round; opacity:.42; }
.alignment-figure .vertebrae rect { fill:rgba(216,246,255,.08); stroke:#d8f6ff; stroke-width:2.2; transform-box:fill-box; transform-origin:center; animation:vertebraShift 3.2s ease-in-out infinite; }
.alignment-figure .vertebrae rect:nth-child(even) { animation-delay:-1.6s; }
.motion-ring { position:absolute; left:50%; top:47%; width:92px; height:92px; border:2px solid rgba(131,242,223,.6); border-radius:50%; transform:translate(-50%,-50%) scale(.55); opacity:0; animation:alignmentPulse 3s ease-out infinite; }
.ring-b { animation-delay:1s; }.ring-c { animation-delay:2s; }
.alignment-axis { position:absolute; z-index:2; background:linear-gradient(90deg, transparent, rgba(131,242,223,.55), transparent); opacity:.7; }
.axis-horizontal { left:13%; right:13%; top:47%; height:1px; }
.axis-vertical { top:10%; bottom:11%; left:50%; width:1px; background:linear-gradient(180deg, transparent, rgba(131,242,223,.48), transparent); }
.motion-indicator { position:absolute; z-index:3; display:grid; place-items:center; width:38px; height:38px; border:1px solid rgba(255,255,255,.28); border-radius:12px; background:rgba(6,25,44,.72); color:#83f2df; font-size:1.25rem; font-weight:900; box-shadow:0 10px 24px rgba(0,0,0,.16); animation:indicatorMove 2.3s ease-in-out infinite; }
.indicator-left { left:17px; top:43%; }.indicator-right { right:17px; top:31%; animation-delay:-1.15s; }
.alignment-readout { position:absolute; left:18px; right:18px; bottom:15px; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:11px 13px; border:1px solid rgba(255,255,255,.16); border-radius:13px; background:rgba(6,25,44,.75); backdrop-filter:blur(8px); font-size:.75rem; color:#bcd1e4; }
.alignment-readout strong { color:#fff; font-size:.78rem; }
.alignment-console-foot { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.alignment-console-foot span { display:flex; align-items:center; justify-content:center; gap:7px; min-height:38px; padding:8px; border-radius:12px; background:#eef2f8; color:var(--navy); font-size:.72rem; font-weight:780; text-align:center; }
.alignment-console-foot i { width:7px; height:7px; flex:0 0 auto; border-radius:50%; background:var(--teal); box-shadow:0 0 0 4px rgba(85,185,174,.12); }
@keyframes alignmentFloat { 0%,100% { transform:translate(-50%,-50%) rotate(-.7deg); } 50% { transform:translate(-50%,-52%) rotate(.7deg); } }
@keyframes vertebraShift { 0%,100% { transform:translateX(-2px); } 50% { transform:translateX(2px); } }
@keyframes alignmentPulse { 0% { transform:translate(-50%,-50%) scale(.45); opacity:0; } 20% { opacity:.8; } 100% { transform:translate(-50%,-50%) scale(2.25); opacity:0; } }
@keyframes indicatorMove { 0%,100% { transform:translateY(-4px); } 50% { transform:translateY(5px); } }
@media (max-width:900px) { .adjustment-visual { min-height:500px; } }
@media (max-width:680px) {
  .adjustment-visual { min-height:450px; }
  .alignment-console { padding:18px; border-radius:26px; }
  .alignment-stage { min-height:305px; }
  .alignment-figure { width:205px; height:276px; }
  .alignment-console-foot { grid-template-columns:1fr; }
  .alignment-console-foot span { min-height:34px; }
  .alignment-readout { align-items:flex-start; flex-direction:column; gap:2px; }
}
@media (prefers-reduced-motion: reduce) {
  .alignment-figure,.alignment-figure .vertebrae rect,.motion-ring,.motion-indicator { animation:none !important; }
}


/* Prenatal chiropractic and Webster Technique service page */
.prenatal-service-hero { background: radial-gradient(circle at 83% 18%, rgba(238,181,205,.26), transparent 30%), radial-gradient(circle at 14% 12%, rgba(79,107,221,.19), transparent 31%), linear-gradient(180deg, #fbf9ff 0%, #fff 86%); }
.prenatal-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.prenatal-console { position: relative; width: min(100%, 500px); padding: 24px; border: 1px solid rgba(255,255,255,.92); border-radius: 34px; background: rgba(255,255,255,.8); backdrop-filter: blur(20px); box-shadow: 0 36px 90px rgba(13,39,66,.18); }
.prenatal-console::before { content: ""; position: absolute; inset: 12px; z-index: -1; border-radius: 26px; background: linear-gradient(145deg, rgba(238,181,205,.13), rgba(79,107,221,.1), rgba(85,185,174,.1)); }
.prenatal-console-head { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:16px; color:var(--navy); font-size:.86rem; font-weight:850; }
.prenatal-stage { position:relative; min-height:340px; overflow:hidden; border-radius:24px; background:radial-gradient(circle at 51% 48%, rgba(238,181,205,.24), transparent 30%), radial-gradient(circle at 50% 50%, rgba(85,185,174,.12), transparent 52%), linear-gradient(160deg, #112e4c, #071b31); box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); color:#d8f6ff; }
.prenatal-grid { position:absolute; inset:0; opacity:.09; background-image:linear-gradient(rgba(255,255,255,.34) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px); background-size:34px 34px; mask-image:linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent); }
.prenatal-figure { position:absolute; left:50%; top:47%; width:245px; height:300px; transform:translate(-50%,-50%); filter:drop-shadow(0 0 16px rgba(238,181,205,.28)); animation:prenatalFloat 4.8s ease-in-out infinite; }
.prenatal-figure .outline { stroke:rgba(216,246,255,.54); stroke-width:3.2; stroke-linecap:round; stroke-linejoin:round; }
.prenatal-figure .pelvis { stroke:#83f2df; stroke-width:5; stroke-linecap:round; opacity:.7; }
.prenatal-figure .belly { stroke:#f1bfd4; stroke-width:5; stroke-linecap:round; }
.prenatal-figure .heart { fill:#f1bfd4; transform-box:fill-box; transform-origin:center; animation:prenatalHeartbeat 1.8s ease-in-out infinite; }
.pelvic-ring { position:absolute; left:50%; top:62%; width:118px; height:80px; border:2px solid rgba(131,242,223,.62); border-radius:50%; transform:translate(-50%,-50%) scale(.7); opacity:0; animation:pelvicPulse 3s ease-out infinite; }
.pelvic-ring.ring-two { animation-delay:1s; }
.pelvic-ring.ring-three { animation-delay:2s; }
.comfort-wave { position:absolute; left:12%; right:12%; bottom:77px; height:34px; display:flex; align-items:center; justify-content:center; gap:7px; opacity:.9; }
.comfort-wave span { width:6px; height:12px; border-radius:99px; background:linear-gradient(180deg,#f1bfd4,#83f2df); animation:comfortWave 1.3s ease-in-out infinite; }
.comfort-wave span:nth-child(2),.comfort-wave span:nth-child(8){animation-delay:-.15s}.comfort-wave span:nth-child(3),.comfort-wave span:nth-child(7){animation-delay:-.3s}.comfort-wave span:nth-child(4),.comfort-wave span:nth-child(6){animation-delay:-.45s}.comfort-wave span:nth-child(5){animation-delay:-.6s}
.prenatal-readout { position:absolute; left:18px; right:18px; bottom:15px; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:11px 13px; border:1px solid rgba(255,255,255,.16); border-radius:13px; background:rgba(6,25,44,.75); backdrop-filter:blur(8px); font-size:.75rem; color:#bcd1e4; }
.prenatal-readout strong { color:#fff; font-size:.78rem; }
.prenatal-console-foot { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.prenatal-console-foot span { display:flex; align-items:center; justify-content:center; gap:7px; min-height:38px; padding:8px; border-radius:12px; background:#f3f1f7; color:var(--navy); font-size:.72rem; font-weight:780; text-align:center; }
.prenatal-console-foot i { width:7px; height:7px; flex:0 0 auto; border-radius:50%; background:#e7a9c4; box-shadow:0 0 0 4px rgba(231,169,196,.15); }
@keyframes prenatalFloat { 0%,100% { transform:translate(-50%,-50%) rotate(-.6deg); } 50% { transform:translate(-50%,-52%) rotate(.6deg); } }
@keyframes prenatalHeartbeat { 0%,100% { transform:scale(.94); } 20% { transform:scale(1.1); } 34% { transform:scale(.98); } 48% { transform:scale(1.06); } }
@keyframes pelvicPulse { 0% { transform:translate(-50%,-50%) scale(.58); opacity:0; } 20% { opacity:.8; } 100% { transform:translate(-50%,-50%) scale(1.65); opacity:0; } }
@keyframes comfortWave { 0%,100% { height:10px; opacity:.55; } 50% { height:28px; opacity:1; } }
@media (max-width:900px) { .prenatal-visual { min-height:500px; } }
@media (max-width:680px) {
  .prenatal-visual { min-height:450px; }
  .prenatal-console { padding:18px; border-radius:26px; }
  .prenatal-stage { min-height:305px; }
  .prenatal-figure { width:205px; height:265px; }
  .prenatal-console-foot { grid-template-columns:1fr; }
  .prenatal-console-foot span { min-height:34px; }
  .prenatal-readout { align-items:flex-start; flex-direction:column; gap:2px; }
}
@media (prefers-reduced-motion: reduce) {
  .prenatal-figure,.prenatal-figure .heart,.pelvic-ring,.comfort-wave span { animation:none !important; }
}


/* Pediatric chiropractic service page */
.pediatric-service-hero { background: radial-gradient(circle at 84% 17%, rgba(255,197,89,.22), transparent 29%), radial-gradient(circle at 15% 12%, rgba(79,107,221,.2), transparent 31%), linear-gradient(180deg, #f8fbff 0%, #fff 86%); }
.pediatric-visual { position:relative; min-height:520px; display:grid; place-items:center; }
.pediatric-console { position:relative; width:min(100%,500px); padding:24px; border:1px solid rgba(255,255,255,.94); border-radius:34px; background:rgba(255,255,255,.82); backdrop-filter:blur(20px); box-shadow:0 36px 90px rgba(13,39,66,.18); }
.pediatric-console::before { content:""; position:absolute; inset:12px; z-index:-1; border-radius:26px; background:linear-gradient(145deg,rgba(255,197,89,.14),rgba(79,107,221,.1),rgba(85,185,174,.12)); }
.pediatric-console-head { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:16px; color:var(--navy); font-size:.86rem; font-weight:850; }
.pediatric-stage { position:relative; min-height:340px; overflow:hidden; border-radius:24px; background:radial-gradient(circle at 50% 44%,rgba(255,197,89,.18),transparent 25%),radial-gradient(circle at 50% 50%,rgba(85,185,174,.13),transparent 53%),linear-gradient(160deg,#123352,#071b31); box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); }
.pediatric-grid { position:absolute; inset:0; opacity:.08; background-image:linear-gradient(rgba(255,255,255,.35) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.35) 1px,transparent 1px); background-size:34px 34px; mask-image:linear-gradient(to bottom,transparent,#000 12%,#000 88%,transparent); }
.pediatric-figure { position:absolute; left:50%; top:47%; width:230px; height:292px; transform:translate(-50%,-50%); filter:drop-shadow(0 0 16px rgba(131,242,223,.22)); animation:pediatricFloat 4.7s ease-in-out infinite; }
.pediatric-figure .kid-outline { stroke:rgba(224,246,255,.62); stroke-width:4; stroke-linecap:round; stroke-linejoin:round; }
.pediatric-figure .kid-spine { stroke:#83f2df; stroke-width:5; stroke-linecap:round; }
.pediatric-figure .care-point { fill:#ffc559; filter:drop-shadow(0 0 7px rgba(255,197,89,.9)); animation:carePulse 2.2s ease-in-out infinite; }
.pediatric-figure .p2 { animation-delay:-.7s; }.pediatric-figure .p3 { animation-delay:-1.4s; }
.pediatric-figure .smile { stroke:#ffc559; stroke-width:3; stroke-linecap:round; }
.growth-ring { position:absolute; left:50%; top:48%; border:1px solid rgba(131,242,223,.34); border-radius:50%; transform:translate(-50%,-50%); animation:growthRing 4.6s ease-out infinite; }
.growth-ring.ring-a { width:125px; height:125px; }.growth-ring.ring-b { width:205px; height:205px; animation-delay:-1.5s; }.growth-ring.ring-c { width:285px; height:285px; animation-delay:-3s; }
.play-orbit { position:absolute; border:1px dashed rgba(255,255,255,.18); border-radius:50%; animation:playSpin 10s linear infinite; }
.play-orbit span { position:absolute; width:12px; height:12px; border-radius:4px; background:#ffc559; box-shadow:0 0 13px rgba(255,197,89,.65); }
.play-orbit.orbit-a { width:245px; height:245px; left:calc(50% - 122px); top:calc(48% - 122px); }.play-orbit.orbit-a span { left:16px; top:45px; }
.play-orbit.orbit-b { width:175px; height:175px; left:calc(50% - 87px); top:calc(48% - 87px); animation-direction:reverse; animation-duration:8s; }.play-orbit.orbit-b span { right:10px; bottom:42px; background:#83f2df; }
.pediatric-readout { position:absolute; left:18px; right:18px; bottom:15px; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:11px 13px; border:1px solid rgba(255,255,255,.16); border-radius:13px; background:rgba(6,25,44,.76); backdrop-filter:blur(8px); font-size:.75rem; color:#bcd1e4; }
.pediatric-readout strong { color:#fff; font-size:.78rem; }
.pediatric-console-foot { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.pediatric-console-foot span { display:flex; align-items:center; justify-content:center; gap:7px; min-height:38px; padding:8px; border-radius:12px; background:#eef3f8; color:var(--navy); font-size:.72rem; font-weight:780; text-align:center; }
.pediatric-console-foot i { width:7px; height:7px; flex:0 0 auto; border-radius:50%; background:#ffc559; box-shadow:0 0 0 4px rgba(255,197,89,.17); }
@keyframes pediatricFloat { 0%,100% { transform:translate(-50%,-50%) rotate(-.6deg); } 50% { transform:translate(-50%,-52%) rotate(.6deg); } }
@keyframes carePulse { 0%,100% { transform:scale(.86); opacity:.65; } 50% { transform:scale(1.2); opacity:1; } }
@keyframes growthRing { 0% { opacity:0; transform:translate(-50%,-50%) scale(.72); } 38% { opacity:.7; } 100% { opacity:0; transform:translate(-50%,-50%) scale(1.18); } }
@keyframes playSpin { to { transform:rotate(360deg); } }
@media (max-width:900px) { .pediatric-visual { min-height:500px; } }
@media (max-width:680px) {
  .pediatric-visual { min-height:450px; }
  .pediatric-console { padding:18px; border-radius:26px; }
  .pediatric-stage { min-height:305px; }
  .pediatric-figure { width:205px; height:260px; }
  .pediatric-console-foot { grid-template-columns:1fr; }
  .pediatric-console-foot span { min-height:34px; }
  .pediatric-readout { align-items:flex-start; flex-direction:column; gap:2px; }
}
@media (prefers-reduced-motion:reduce) { .pediatric-figure,.pediatric-figure .care-point,.growth-ring,.play-orbit { animation:none !important; } }


/* Auto accident chiropractic service page */
.accident-service-hero { background:radial-gradient(circle at 84% 17%,rgba(245,153,77,.21),transparent 29%),radial-gradient(circle at 14% 10%,rgba(79,107,221,.2),transparent 31%),linear-gradient(180deg,#f8fbff 0%,#fff 86%); }
.accident-visual { position:relative; min-height:520px; display:grid; place-items:center; }
.accident-console { position:relative; width:min(100%,510px); padding:24px; border:1px solid rgba(255,255,255,.94); border-radius:34px; background:rgba(255,255,255,.84); backdrop-filter:blur(20px); box-shadow:0 36px 90px rgba(13,39,66,.18); }
.accident-console::before { content:""; position:absolute; inset:12px; z-index:-1; border-radius:26px; background:linear-gradient(145deg,rgba(245,153,77,.13),rgba(79,107,221,.1),rgba(85,185,174,.12)); }
.accident-console-head { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:16px; color:var(--navy); font-size:.86rem; font-weight:850; }
.accident-stage { position:relative; min-height:350px; overflow:hidden; border-radius:24px; background:radial-gradient(circle at 31% 54%,rgba(245,153,77,.16),transparent 29%),radial-gradient(circle at 75% 46%,rgba(85,185,174,.14),transparent 30%),linear-gradient(160deg,#123352,#071b31); box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); }
.accident-grid { position:absolute; inset:0; opacity:.08; background-image:linear-gradient(rgba(255,255,255,.35) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.35) 1px,transparent 1px); background-size:34px 34px; mask-image:linear-gradient(to bottom,transparent,#000 12%,#000 88%,transparent); }
.road-line { position:absolute; left:-10%; width:64%; height:3px; border-radius:99px; background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent); transform:rotate(-7deg); animation:roadMove 2.4s linear infinite; }
.road-line.road-one { bottom:105px; }.road-line.road-two { bottom:82px; animation-delay:-1.2s; }
.accident-car { position:absolute; left:7%; top:42%; width:275px; height:150px; transform:translateY(-50%); filter:drop-shadow(0 14px 18px rgba(0,0,0,.28)); animation:carSettle 4.2s ease-in-out infinite; }
.accident-car .car-body { fill:rgba(79,107,221,.9); stroke:#a7bcff; stroke-width:3; stroke-linejoin:round; }
.accident-car .car-window { fill:rgba(201,235,244,.78); stroke:rgba(255,255,255,.7); stroke-width:2; }
.accident-car .car-wheel { fill:#0a1c2e; stroke:#d9e7f4; stroke-width:4; }.accident-car .wheel-hub { fill:#83f2df; }
.impact-point { position:absolute; left:57%; top:40%; width:28px; height:28px; border:2px solid #ffb36f; border-radius:50%; transform:translate(-50%,-50%); box-shadow:0 0 18px rgba(255,179,111,.72); }
.impact-point span { position:absolute; inset:50%; width:38px; height:38px; border:1px solid rgba(255,179,111,.7); border-radius:50%; transform:translate(-50%,-50%) scale(.5); opacity:0; animation:impactRing 2.5s ease-out infinite; }
.impact-point span:nth-child(2){animation-delay:.8s}.impact-point span:nth-child(3){animation-delay:1.6s}
.accident-spine { position:absolute; right:7%; top:46%; width:110px; height:255px; transform:translateY(-50%); filter:drop-shadow(0 0 13px rgba(131,242,223,.28)); animation:spineFloat 4.6s ease-in-out infinite; }
.accident-spine .spine-guide { stroke:#83f2df; stroke-width:5; stroke-linecap:round; }
.accident-spine .vertebrae ellipse { fill:rgba(220,247,255,.58); stroke:#d8f6ff; stroke-width:2; }
.assessment-beam { position:absolute; top:18%; bottom:22%; left:65%; width:2px; background:linear-gradient(180deg,transparent,#83f2df,transparent); box-shadow:0 0 12px rgba(131,242,223,.85); animation:assessmentSweep 3.2s ease-in-out infinite; }
.accident-readout { position:absolute; left:18px; right:18px; bottom:15px; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:11px 13px; border:1px solid rgba(255,255,255,.16); border-radius:13px; background:rgba(6,25,44,.77); backdrop-filter:blur(8px); font-size:.75rem; color:#bcd1e4; }
.accident-readout strong { color:#fff; font-size:.78rem; }
.accident-console-foot { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.accident-console-foot span { display:flex; align-items:center; justify-content:center; gap:7px; min-height:38px; padding:8px; border-radius:12px; background:#eef3f8; color:var(--navy); font-size:.72rem; font-weight:780; text-align:center; }
.accident-console-foot i { width:7px; height:7px; flex:0 0 auto; border-radius:50%; background:#f5994d; box-shadow:0 0 0 4px rgba(245,153,77,.16); }
@keyframes carSettle { 0%,100% { transform:translateY(-50%) translateX(-2px) rotate(-.3deg); } 50% { transform:translateY(-52%) translateX(4px) rotate(.4deg); } }
@keyframes impactRing { 0% { transform:translate(-50%,-50%) scale(.45); opacity:0; } 20% { opacity:.85; } 100% { transform:translate(-50%,-50%) scale(2.5); opacity:0; } }
@keyframes spineFloat { 0%,100% { transform:translateY(-50%) rotate(-1deg); } 50% { transform:translateY(-52%) rotate(1deg); } }
@keyframes assessmentSweep { 0%,100% { left:62%; opacity:.3; } 50% { left:91%; opacity:1; } }
@keyframes roadMove { from { transform:translateX(0) rotate(-7deg); } to { transform:translateX(70px) rotate(-7deg); } }
@media (max-width:900px) { .accident-visual { min-height:510px; } }
@media (max-width:680px) {
  .accident-visual { min-height:455px; }
  .accident-console { padding:18px; border-radius:26px; }
  .accident-stage { min-height:310px; }
  .accident-car { left:1%; top:44%; width:215px; }
  .impact-point { left:55%; top:43%; }
  .accident-spine { right:2%; width:86px; height:220px; }
  .accident-console-foot { grid-template-columns:1fr; }
  .accident-console-foot span { min-height:34px; }
  .accident-readout { align-items:flex-start; flex-direction:column; gap:2px; }
}
@media (prefers-reduced-motion:reduce) { .accident-car,.impact-point span,.accident-spine,.assessment-beam,.road-line { animation:none !important; } }


/* Sports and work injury chiropractic service page */
.sports-work-service-hero { background:radial-gradient(circle at 84% 17%,rgba(91,205,155,.22),transparent 29%),radial-gradient(circle at 14% 10%,rgba(79,107,221,.21),transparent 31%),linear-gradient(180deg,#f8fbff 0%,#fff 86%); }
.sports-work-visual { position:relative; min-height:520px; display:grid; place-items:center; }
.sports-work-console { position:relative; width:min(100%,510px); padding:24px; border:1px solid rgba(255,255,255,.94); border-radius:34px; background:rgba(255,255,255,.84); backdrop-filter:blur(20px); box-shadow:0 36px 90px rgba(13,39,66,.18); }
.sports-work-console::before { content:""; position:absolute; inset:12px; z-index:-1; border-radius:26px; background:linear-gradient(145deg,rgba(91,205,155,.15),rgba(79,107,221,.11),rgba(255,197,89,.12)); }
.sports-work-console-head { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:16px; color:var(--navy); font-size:.86rem; font-weight:850; }
.sports-work-stage { position:relative; min-height:350px; overflow:hidden; border-radius:24px; background:radial-gradient(circle at 44% 43%,rgba(91,205,155,.16),transparent 28%),radial-gradient(circle at 78% 65%,rgba(255,197,89,.12),transparent 30%),linear-gradient(160deg,#123352,#071b31); box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); }
.sports-work-grid { position:absolute; inset:0; opacity:.08; background-image:linear-gradient(rgba(255,255,255,.35) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.35) 1px,transparent 1px); background-size:34px 34px; mask-image:linear-gradient(to bottom,transparent,#000 12%,#000 88%,transparent); }
.motion-figure { position:absolute; left:42%; top:48%; width:225px; height:300px; transform:translate(-50%,-50%); filter:drop-shadow(0 0 16px rgba(131,242,223,.24)); animation:runnerStride 4.2s ease-in-out infinite; }
.motion-figure .figure-head { fill:rgba(224,246,255,.16); stroke:#d8f6ff; stroke-width:4; }
.motion-figure .figure-body,.motion-figure .figure-limb { stroke:rgba(220,247,255,.7); stroke-width:9; stroke-linecap:round; stroke-linejoin:round; }
.motion-figure .figure-spine { stroke:#83f2df; stroke-width:5; stroke-linecap:round; }
.motion-figure .motion-point { fill:#ffc559; filter:drop-shadow(0 0 7px rgba(255,197,89,.9)); animation:workPointPulse 2.3s ease-in-out infinite; }
.motion-figure .p2 { animation-delay:-.8s; }.motion-figure .p3 { animation-delay:-1.6s; }
.motion-ring { position:absolute; left:42%; top:48%; border:1px solid rgba(131,242,223,.34); border-radius:50%; transform:translate(-50%,-50%); animation:workMotionRing 4.8s ease-out infinite; }
.motion-ring.ring-one { width:128px; height:128px; }.motion-ring.ring-two { width:215px; height:215px; animation-delay:-1.6s; }.motion-ring.ring-three { width:300px; height:300px; animation-delay:-3.2s; }
.work-crate { position:absolute; right:8%; bottom:76px; width:92px; height:78px; display:grid; place-items:center; border:2px solid rgba(255,197,89,.72); border-radius:13px; background:rgba(255,197,89,.09); color:#ffe09a; box-shadow:0 0 20px rgba(255,197,89,.14); animation:workLoadFloat 3s ease-in-out infinite; }
.work-crate::before,.work-crate::after { content:""; position:absolute; top:9px; bottom:9px; width:2px; background:rgba(255,197,89,.32); }.work-crate::before { left:29px; }.work-crate::after { right:29px; }
.work-crate span { position:absolute; left:10px; right:10px; height:2px; background:rgba(255,197,89,.32); }.work-crate span:first-child { top:28px; }.work-crate span:nth-child(2) { bottom:25px; }
.work-crate strong { position:relative; z-index:1; font-size:.68rem; letter-spacing:.12em; }
.pace-line { position:absolute; left:7%; right:7%; bottom:64px; height:24px; display:flex; align-items:flex-end; gap:7px; opacity:.82; }
.pace-line i { flex:1; height:7px; border-radius:99px; background:linear-gradient(90deg,#5bcd9b,#83f2df); animation:paceBars 1.45s ease-in-out infinite; }
.pace-line i:nth-child(2),.pace-line i:nth-child(6){animation-delay:-.2s}.pace-line i:nth-child(3),.pace-line i:nth-child(5){animation-delay:-.4s}.pace-line i:nth-child(4){animation-delay:-.6s}
.sports-work-readout { position:absolute; left:18px; right:18px; bottom:15px; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:11px 13px; border:1px solid rgba(255,255,255,.16); border-radius:13px; background:rgba(6,25,44,.77); backdrop-filter:blur(8px); font-size:.75rem; color:#bcd1e4; }
.sports-work-readout strong { color:#fff; font-size:.78rem; }
.sports-work-console-foot { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.sports-work-console-foot span { display:flex; align-items:center; justify-content:center; gap:7px; min-height:38px; padding:8px; border-radius:12px; background:#eef3f8; color:var(--navy); font-size:.72rem; font-weight:780; text-align:center; }
.sports-work-console-foot i { width:7px; height:7px; flex:0 0 auto; border-radius:50%; background:#5bcd9b; box-shadow:0 0 0 4px rgba(91,205,155,.17); }
@keyframes runnerStride { 0%,100% { transform:translate(-50%,-50%) rotate(-1deg); } 50% { transform:translate(-50%,-52%) rotate(1.2deg); } }
@keyframes workPointPulse { 0%,100% { transform:scale(.84); opacity:.62; } 50% { transform:scale(1.22); opacity:1; } }
@keyframes workMotionRing { 0% { opacity:0; transform:translate(-50%,-50%) scale(.72); } 38% { opacity:.72; } 100% { opacity:0; transform:translate(-50%,-50%) scale(1.16); } }
@keyframes workLoadFloat { 0%,100% { transform:translateY(0) rotate(-.8deg); } 50% { transform:translateY(-8px) rotate(.8deg); } }
@keyframes paceBars { 0%,100% { height:7px; opacity:.55; } 50% { height:23px; opacity:1; } }
@media (max-width:900px) { .sports-work-visual { min-height:510px; } }
@media (max-width:680px) {
  .sports-work-visual { min-height:455px; }
  .sports-work-console { padding:18px; border-radius:26px; }
  .sports-work-stage { min-height:310px; }
  .motion-figure { left:40%; width:190px; height:260px; }
  .motion-ring { left:40%; }
  .work-crate { right:3%; width:78px; height:68px; }
  .sports-work-console-foot { grid-template-columns:1fr; }
  .sports-work-console-foot span { min-height:34px; }
  .sports-work-readout { align-items:flex-start; flex-direction:column; gap:2px; }
}
@media (prefers-reduced-motion:reduce) { .motion-figure,.motion-point,.motion-ring,.work-crate,.pace-line i { animation:none !important; } }


/* Headache and migraine chiropractic service page */
.headache-service-hero { background:radial-gradient(circle at 85% 16%,rgba(170,113,255,.18),transparent 29%),radial-gradient(circle at 14% 10%,rgba(79,107,221,.21),transparent 31%),linear-gradient(180deg,#faf9ff 0%,#fff 86%); }
.headache-visual { position:relative; min-height:520px; display:grid; place-items:center; }
.headache-console { position:relative; width:min(100%,510px); padding:24px; border:1px solid rgba(255,255,255,.94); border-radius:34px; background:rgba(255,255,255,.84); backdrop-filter:blur(20px); box-shadow:0 36px 90px rgba(13,39,66,.18); }
.headache-console::before { content:""; position:absolute; inset:12px; z-index:-1; border-radius:26px; background:linear-gradient(145deg,rgba(170,113,255,.13),rgba(79,107,221,.12),rgba(85,185,174,.1)); }
.headache-console-head { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:16px; color:var(--navy); font-size:.86rem; font-weight:850; }
.headache-stage { position:relative; min-height:350px; overflow:hidden; border-radius:24px; background:radial-gradient(circle at 42% 36%,rgba(170,113,255,.18),transparent 30%),radial-gradient(circle at 75% 68%,rgba(85,185,174,.12),transparent 28%),linear-gradient(160deg,#142c4e,#07182e); box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); }
.headache-grid { position:absolute; inset:0; opacity:.075; background-image:linear-gradient(rgba(255,255,255,.35) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.35) 1px,transparent 1px); background-size:34px 34px; mask-image:linear-gradient(to bottom,transparent,#000 12%,#000 88%,transparent); }
.head-neck-figure { position:absolute; left:38%; top:49%; width:260px; height:320px; transform:translate(-50%,-50%); filter:drop-shadow(0 0 16px rgba(177,141,255,.22)); animation:headFloat 4.8s ease-in-out infinite; }
.head-neck-figure .head-outline { fill:rgba(224,236,255,.08); stroke:#d8e8ff; stroke-width:4; stroke-linejoin:round; }
.head-neck-figure .face-line,.head-neck-figure .neck-line { stroke:rgba(216,232,255,.62); stroke-width:4; stroke-linecap:round; }
.head-neck-figure .cervical-curve { stroke:#83f2df; stroke-width:5; stroke-linecap:round; }
.head-neck-figure .vertebrae ellipse { fill:rgba(220,247,255,.42); stroke:#d8f6ff; stroke-width:2; }
.head-neck-figure .symptom-node { fill:#ffb9df; filter:drop-shadow(0 0 8px rgba(255,128,196,.9)); animation:symptomPulse 2.2s ease-in-out infinite; }
.head-neck-figure .occipital-node { animation-delay:-.75s; }.head-neck-figure .neck-node { animation-delay:-1.45s; }
.headache-halo { position:absolute; left:38%; top:35%; border:1px solid rgba(190,149,255,.34); border-radius:50%; transform:translate(-50%,-50%); animation:headacheHalo 4.6s ease-out infinite; }
.headache-halo.halo-one { width:110px; height:110px; }.headache-halo.halo-two { width:190px; height:190px; animation-delay:-1.5s; }.headache-halo.halo-three { width:270px; height:270px; animation-delay:-3s; }
.tension-wave { position:absolute; width:80px; display:flex; gap:7px; align-items:center; }
.tension-wave.wave-one { left:7%; top:33%; transform:rotate(-10deg); }.tension-wave.wave-two { left:10%; top:55%; transform:rotate(8deg); }
.tension-wave i { display:block; width:100%; height:3px; border-radius:99px; background:linear-gradient(90deg,transparent,#ffb9df,transparent); box-shadow:0 0 10px rgba(255,185,223,.55); animation:tensionFlow 1.7s ease-in-out infinite; }
.tension-wave i:nth-child(2){animation-delay:-.35s}.tension-wave i:nth-child(3){animation-delay:-.7s}
.headache-meter { position:absolute; right:5%; top:19%; width:145px; display:grid; grid-template-columns:1fr; gap:7px; padding:13px; border:1px solid rgba(255,255,255,.13); border-radius:15px; background:rgba(6,25,44,.48); color:#c8d9ec; font-size:.64rem; font-weight:720; }
.headache-meter b { position:relative; display:block; height:5px; overflow:hidden; border-radius:99px; background:rgba(255,255,255,.12); }
.headache-meter b::after { content:""; position:absolute; inset:0 auto 0 0; width:var(--level); border-radius:inherit; background:linear-gradient(90deg,#a86fff,#83f2df); animation:meterBreathe 2.4s ease-in-out infinite; }
.headache-readout { position:absolute; left:18px; right:18px; bottom:15px; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:11px 13px; border:1px solid rgba(255,255,255,.16); border-radius:13px; background:rgba(6,25,44,.77); backdrop-filter:blur(8px); font-size:.75rem; color:#bcd1e4; }
.headache-readout strong { color:#fff; font-size:.78rem; }
.headache-console-foot { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.headache-console-foot span { display:flex; align-items:center; justify-content:center; gap:7px; min-height:38px; padding:8px; border-radius:12px; background:#f0eef9; color:var(--navy); font-size:.72rem; font-weight:780; text-align:center; }
.headache-console-foot i { width:7px; height:7px; flex:0 0 auto; border-radius:50%; background:#a86fff; box-shadow:0 0 0 4px rgba(168,111,255,.14); }
@keyframes headFloat { 0%,100% { transform:translate(-50%,-50%) rotate(-.7deg); } 50% { transform:translate(-50%,-52%) rotate(.8deg); } }
@keyframes symptomPulse { 0%,100% { transform:scale(.82); opacity:.58; } 50% { transform:scale(1.24); opacity:1; } }
@keyframes headacheHalo { 0% { opacity:0; transform:translate(-50%,-50%) scale(.76); } 38% { opacity:.68; } 100% { opacity:0; transform:translate(-50%,-50%) scale(1.15); } }
@keyframes tensionFlow { 0%,100% { opacity:.3; transform:scaleX(.72); } 50% { opacity:1; transform:scaleX(1); } }
@keyframes meterBreathe { 0%,100% { opacity:.6; } 50% { opacity:1; } }
@media (max-width:900px) { .headache-visual { min-height:510px; } }
@media (max-width:680px) {
  .headache-visual { min-height:455px; }
  .headache-console { padding:18px; border-radius:26px; }
  .headache-stage { min-height:310px; }
  .head-neck-figure { left:39%; width:215px; height:275px; }
  .headache-halo { left:39%; }.headache-meter { right:3%; width:120px; padding:10px; }
  .tension-wave { width:58px; }
  .headache-console-foot { grid-template-columns:1fr; }
  .headache-console-foot span { min-height:34px; }
  .headache-readout { align-items:flex-start; flex-direction:column; gap:2px; }
}
@media (prefers-reduced-motion:reduce) { .head-neck-figure,.symptom-node,.headache-halo,.tension-wave i,.headache-meter b::after { animation:none !important; } }


/* Nutrition counseling service page */
.nutrition-service-hero { background:radial-gradient(circle at 84% 17%,rgba(125,190,92,.22),transparent 29%),radial-gradient(circle at 14% 10%,rgba(79,107,221,.2),transparent 31%),linear-gradient(180deg,#f8fcf7 0%,#fff 86%); }
.nutrition-visual { position:relative; min-height:520px; display:grid; place-items:center; }
.nutrition-console { position:relative; width:min(100%,510px); padding:24px; border:1px solid rgba(255,255,255,.94); border-radius:34px; background:rgba(255,255,255,.86); backdrop-filter:blur(20px); box-shadow:0 36px 90px rgba(13,39,66,.18); }
.nutrition-console::before { content:""; position:absolute; inset:12px; z-index:-1; border-radius:26px; background:linear-gradient(145deg,rgba(125,190,92,.16),rgba(79,107,221,.11),rgba(255,190,81,.13)); }
.nutrition-console-head { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:16px; color:var(--navy); font-size:.86rem; font-weight:850; }
.nutrition-console-head strong { color:#5c8e43; font-size:.7rem; letter-spacing:.13em; }
.nutrition-stage { position:relative; min-height:350px; overflow:hidden; border-radius:24px; background:radial-gradient(circle at 45% 45%,rgba(125,190,92,.18),transparent 31%),radial-gradient(circle at 78% 68%,rgba(255,190,81,.13),transparent 29%),linear-gradient(160deg,#123552,#071b31); box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); }
.nutrition-grid { position:absolute; inset:0; opacity:.075; background-image:linear-gradient(rgba(255,255,255,.35) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.35) 1px,transparent 1px); background-size:34px 34px; mask-image:linear-gradient(to bottom,transparent,#000 12%,#000 88%,transparent); }
.nutrition-plate { position:absolute; left:42%; top:47%; width:276px; height:276px; transform:translate(-50%,-50%); filter:drop-shadow(0 15px 22px rgba(0,0,0,.28)); animation:nutritionPlateFloat 4.8s ease-in-out infinite; }
.nutrition-plate .plate-rim { fill:rgba(244,251,255,.08); stroke:#d9ecf5; stroke-width:8; }
.nutrition-plate .plate-veg { fill:rgba(125,190,92,.75); stroke:rgba(222,255,210,.55); stroke-width:2; }
.nutrition-plate .plate-protein { fill:rgba(85,185,174,.72); stroke:rgba(213,255,247,.5); stroke-width:2; }
.nutrition-plate .plate-grain { fill:rgba(255,190,81,.76); stroke:rgba(255,235,193,.55); stroke-width:2; }
.nutrition-plate .plate-fruit { fill:rgba(236,108,124,.72); stroke:rgba(255,216,222,.55); stroke-width:2; }
.nutrition-plate .plate-center { fill:#0c2944; stroke:#d9ecf5; stroke-width:3; }
.nutrition-plate .food-symbols { fill:none; stroke:#fff; stroke-width:5; stroke-linecap:round; stroke-linejoin:round; opacity:.9; }
.nutrition-orbit { position:absolute; left:42%; top:47%; border:1px solid rgba(206,245,193,.3); border-radius:50%; transform:translate(-50%,-50%); animation:nutritionOrbit 10s linear infinite; }
.nutrition-orbit.orbit-a { width:325px; height:325px; }.nutrition-orbit.orbit-b { width:375px; height:375px; animation-duration:15s; animation-direction:reverse; opacity:.62; }
.nutrition-orbit i { position:absolute; width:9px; height:9px; border-radius:50%; background:#c7f3a6; box-shadow:0 0 12px rgba(199,243,166,.85); }
.nutrition-orbit i:nth-child(1){left:14%;top:10%}.nutrition-orbit i:nth-child(2){right:5%;top:52%;background:#ffd27d}.nutrition-orbit i:nth-child(3){left:26%;bottom:2%;background:#83f2df}
.nutrition-bars { position:absolute; right:5%; top:18%; width:135px; display:grid; gap:12px; padding:14px; border:1px solid rgba(255,255,255,.13); border-radius:15px; background:rgba(6,25,44,.54); color:#d5e4ee; font-size:.64rem; font-weight:760; }
.nutrition-bars span { position:relative; display:block; padding-top:10px; }
.nutrition-bars span::before { content:""; position:absolute; left:0; right:0; top:0; height:5px; border-radius:99px; background:rgba(255,255,255,.12); }
.nutrition-bars span::after { content:""; position:absolute; left:0; top:0; width:var(--w); height:5px; border-radius:99px; background:linear-gradient(90deg,#7dbe5c,#83f2df); animation:nutritionBar 2.5s ease-in-out infinite; }
.nutrition-bars b { font-weight:740; }
.nutrition-readout { position:absolute; left:18px; right:18px; bottom:15px; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:11px 13px; border:1px solid rgba(255,255,255,.16); border-radius:13px; background:rgba(6,25,44,.77); backdrop-filter:blur(8px); font-size:.75rem; color:#bcd1e4; }
.nutrition-readout strong { color:#fff; font-size:.78rem; }
.nutrition-console-foot { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:14px; }
.nutrition-console-foot span { display:flex; align-items:center; justify-content:center; gap:7px; min-height:38px; padding:8px; border-radius:12px; background:#eff5eb; color:var(--navy); font-size:.72rem; font-weight:780; text-align:center; }
.nutrition-console-foot i { width:7px; height:7px; flex:0 0 auto; border-radius:50%; background:#7dbe5c; box-shadow:0 0 0 4px rgba(125,190,92,.17); }
@keyframes nutritionPlateFloat { 0%,100% { transform:translate(-50%,-50%) rotate(-1deg); } 50% { transform:translate(-50%,-52%) rotate(1.2deg); } }
@keyframes nutritionOrbit { to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes nutritionBar { 0%,100% { opacity:.62; transform:scaleX(.94); transform-origin:left; } 50% { opacity:1; transform:scaleX(1); } }
@media (max-width:900px) { .nutrition-visual { min-height:510px; } }
@media (max-width:680px) {
  .nutrition-visual { min-height:455px; }
  .nutrition-console { padding:18px; border-radius:26px; }
  .nutrition-stage { min-height:310px; }
  .nutrition-plate { left:39%; width:220px; height:220px; }
  .nutrition-orbit { left:39%; }.nutrition-orbit.orbit-a { width:260px; height:260px; }.nutrition-orbit.orbit-b { width:305px; height:305px; }
  .nutrition-bars { right:3%; width:116px; padding:10px; }
  .nutrition-console-foot { grid-template-columns:1fr; }
  .nutrition-console-foot span { min-height:34px; }
  .nutrition-readout { align-items:flex-start; flex-direction:column; gap:2px; }
}
@media (prefers-reduced-motion:reduce) { .nutrition-plate,.nutrition-orbit,.nutrition-bars span::after { animation:none !important; } }


/* Final production contact actions */
.contact-quick-actions { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:16px; }
.contact-quick-actions .btn { width:100%; }
@media (max-width:680px) { .contact-quick-actions { grid-template-columns:1fr; } }

/* Hero photo rendering fix — v1.0.1 */
.hero-photo-shell {
  overflow: hidden;
  border-radius: 32px;
  background: #eef3fb;
}
.hero-photo-shell img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
}
