:root {
  --green: #126b4f;
  --green-dark: #073f30;
  --mint: #e9f7f1;
  --cream: #fff7e8;
  --orange: #f4a640;
  --red: #bd4d43;
  --ink: #162720;
  --muted: #60706a;
  --line: #dbe7df;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: #fff;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 58px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 260px; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand strong { color: var(--green); display: block; font-size: 17px; }
.brand small { color: var(--muted); font-weight: 700; font-size: 12px; }
.nav { display: flex; gap: clamp(12px, 1.4vw, 22px); margin-left: auto; font-weight: 800; color: #263a32; font-size: 15px; white-space: nowrap; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--green); }
.call-pill { background: var(--green); color: #fff; padding: 12px 18px; border-radius: 999px; font-weight: 900; white-space: nowrap; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: var(--mint); color: var(--green); width: 44px; height: 44px; border-radius: 50%; font-size: 24px; }

.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 860px);
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--mint);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 42%, rgba(7,63,48,.48)),
    linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,0) 35%, rgba(255,255,255,0));
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  animation: heroFade 24s infinite;
}
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide img { animation: heroDrift 24s ease-in-out infinite; }
.hero-overlay-actions {
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  bottom: clamp(28px, 6vw, 70px);
  z-index: 3;
}
.eyebrow { margin: 0 0 12px; color: var(--red); letter-spacing: .18em; text-transform: uppercase; font-weight: 900; font-size: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.btn { border: 0; border-radius: 999px; padding: 14px 22px; font-weight: 900; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; }
.btn:disabled { cursor: not-allowed; opacity: .68; }
.btn.primary { background: var(--green); color: #fff; }
.btn.ghost { background: rgba(255,255,255,.94); color: var(--green); border: 1px solid #b7cec3; }
.btn.dark { background: var(--green-dark); color: #fff; }
.btn.full { width: 100%; border-radius: 12px; }

@keyframes heroFade {
  0%, 16% { opacity: 1; }
  22%, 94% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes heroDrift {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

.api-form {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(10,64,48,.16);
}
.api-form h2 { margin: 0 0 6px; color: var(--green-dark); }
.api-form p { color: var(--muted); }
label { display: grid; gap: 7px; margin: 13px 0; font-weight: 800; font-size: 14px; }
input, textarea, select { width: 100%; border: 1px solid #cfded6; border-radius: 12px; padding: 13px 14px; font: 16px Arial, sans-serif; outline: none; }
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(18,107,79,.1); }
.form-status { min-height: 22px; font-weight: 800; }
.optional { color: var(--muted); font-weight: 700; font-size: 12px; }
.privacy-note { font-size: 13px; line-height: 1.5; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 63, 48, .62);
  backdrop-filter: blur(6px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.appointment-form { padding-top: 30px; }
.appointment-wizard .appointment-step { display: none; }
.appointment-wizard .appointment-step.active { display: grid; animation: stepIn .22s ease; }
.wizard-progress {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 8px 0 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}
.wizard-controls { display: flex; gap: 12px; margin-top: 18px; }
.wizard-controls .btn { flex: 1; border-radius: 12px; }
.appointment-wizard button[type="submit"] { margin-top: 18px; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.stats div { background: var(--green-dark); color: #fff; padding: 28px; }
.stats strong { display: block; font-size: 22px; }
.stats span { color: #cfe7dc; }

.section, .split, .contact-section { padding: 78px clamp(18px, 5vw, 70px); }
.section-head { max-width: 820px; margin-bottom: 34px; }
.section h2, .split h2, .contact-section h2 { margin: 0 0 12px; color: var(--green-dark); font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.section-head p:not(.eyebrow), .split-text p, .contact-section p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.soft { background: var(--mint); }

.treatment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.treatment-grid article { background: #fff; border: 1px solid var(--line); border-radius: 18px; min-height: 210px; overflow: hidden; transition: .2s ease; }
.treatment-grid article:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(10,64,48,.12); }
.treatment-grid span { color: var(--orange); font-weight: 900; }
.treatment-grid h3 { color: var(--green); font-size: 22px; }
.treatment-grid p { color: var(--muted); line-height: 1.6; }
.service-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--mint);
}
.service-card-body { padding: 20px 22px 24px; }

.split { display: grid; grid-template-columns: 390px minmax(0, 1fr); gap: 54px; align-items: center; background: linear-gradient(135deg, #fff, var(--cream)); }
.doctor-card { border-radius: 28px; overflow: hidden; background: var(--mint); box-shadow: 0 22px 60px rgba(10,64,48,.16); }
.doctor-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.split h3 { color: var(--red); margin-top: -4px; }
.check-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.check-list li { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; font-weight: 800; }
.check-list li::before { content: "✓"; color: var(--green); margin-right: 8px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps div { background: #fff; padding: 24px; border-radius: 18px; border: 1px solid var(--line); }
.steps b { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; }
.steps p, .reviews p, .faq p { color: var(--muted); line-height: 1.6; }

.video-section {
  padding-top: 42px;
  padding-bottom: 48px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff, var(--cream));
}
.video-section .section-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.video-section .section-head .eyebrow { grid-column: 1 / -1; margin-bottom: -14px; }
.video-section .section-head h2 { margin-bottom: 0; font-size: clamp(32px, 4vw, 54px); }
.video-section .section-head p { margin: 0; max-width: 760px; }
.video-carousel {
  position: relative;
  overflow: hidden;
  padding: 2px 0 10px;
}
.video-carousel::before,
.video-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(34px, 8vw, 120px);
  pointer-events: none;
}
.video-carousel::before { left: 0; background: linear-gradient(90deg, #fffdf8, rgba(255,253,248,0)); }
.video-carousel::after { right: 0; background: linear-gradient(270deg, #fff8e8, rgba(255,248,232,0)); }
.video-track {
  --video-gap: 26px;
  --video-card-width: calc((100% - var(--video-gap)) / 2);
  display: flex;
  gap: var(--video-gap);
  width: max-content;
  animation: videoMarquee 34s linear infinite;
  will-change: transform;
}
.video-carousel:hover .video-track,
.video-carousel:focus-within .video-track { animation-play-state: paused; }
.video-card {
  flex: 0 0 var(--video-card-width);
  width: var(--video-card-width);
  max-width: 520px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(10,64,48,.12);
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: min(58vh, 560px);
  background: #0f241d;
  object-fit: cover;
}
.video-card h3 {
  min-height: 68px;
  margin: 0;
  padding: 16px 20px 20px;
  color: var(--green-dark);
  font-size: 19px;
  line-height: 1.3;
}

@keyframes videoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - (var(--video-gap) / 2))); }
}

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reviews article { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: 0 12px 34px rgba(10,64,48,.08); }
.reviews b { color: var(--orange); }
.reviews span { color: var(--green); font-weight: 900; }

.contact-section { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 34px; background: #fff; }
.contact-locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.contact-locations article {
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.contact-locations h3 { margin: 0 0 8px; color: var(--green-dark); }
.contact-locations p { margin: 0; font-size: 16px; line-height: 1.6; }
.map { overflow: hidden; border-radius: 20px; border: 1px solid var(--line); margin-top: 22px; height: 340px; }
.map iframe { width: 100%; height: 100%; border: 0; }
.map-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; }

.faq { display: grid; gap: 12px; max-width: 920px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; }
.faq summary { cursor: pointer; font-weight: 900; color: var(--green-dark); }

.footer { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; padding: 28px clamp(18px, 5vw, 70px); background: var(--green-dark); color: #fff; }
.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(180px, .8fr) minmax(220px, .8fr);
  gap: 28px;
  align-items: start;
}
.site-footer p { max-width: 520px; margin: 10px 0 0; color: #cfe7dc; line-height: 1.6; }
.footer-brand strong { font-size: 22px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-contact a { color: #fff; font-weight: 800; }
.footer-links a:hover, .footer-contact a:hover { color: #f6c56f; }
.footer-contact { display: grid; gap: 10px; color: #d8efe6; }
.footer-contact a { font-size: 22px; }
.footer-contact small { color: #a9c9bd; line-height: 1.5; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px !important;
}
.footer-social img { width: 24px; height: 24px; border-radius: 7px; object-fit: cover; }
.instagram-float {
  position: fixed;
  right: 20px;
  bottom: 94px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  overflow: hidden;
}
.instagram-float img { width: 62px; height: 62px; object-fit: cover; }
.whatsapp { position: fixed; right: 20px; bottom: 20px; width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: #16b85f; box-shadow: 0 16px 34px rgba(0,0,0,.18); overflow: hidden; }
.whatsapp img { width: 62px; height: 62px; object-fit: cover; }
.mobile-call { display: none; }

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: 82px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.82) 54%, rgba(255,255,255,.22)),
    url("images/hero/natural-homeopathy-care-dr-devendra-jawale-ahilyanagar.webp") center/cover;
}
.page-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 1;
}
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #334840;
  font-size: 20px;
  line-height: 1.65;
}
.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.82) 54%, rgba(255,255,255,.22)),
    url("images/hero/healing-naturally-homeopathy-clinic-ahilyanagar.webp") center/cover;
}
.shirur-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.82) 54%, rgba(255,255,255,.22)),
    url("images/hero/healing-naturally-homeopathy-clinic-ahilyanagar.webp") center/cover;
}
.services-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.82) 54%, rgba(255,255,255,.22)),
    url("images/hero/advanced-homeopathy-treatment-ahilyanagar-dr-devendra-jawale.webp") center/cover;
}
.faq-page-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.82) 54%, rgba(255,255,255,.22)),
    url("images/hero/gold-medalist-homeopathy-doctor-dr-devendra-jawale.webp") center/cover;
}
.contact-page-section { align-items: start; }
.single-map { height: 420px; }
.faq-page-list { max-width: 1100px; }
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-detail-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 220px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(10,64,48,.08);
}
.service-detail-grid span { color: var(--orange); font-weight: 900; }
.service-detail-grid h3 { color: var(--green-dark); font-size: 22px; }
.service-detail-grid p { color: var(--muted); line-height: 1.65; }

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 52px;
  align-items: center;
  padding: 86px clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 12% 15%, rgba(244, 166, 64, .18), transparent 28rem),
    linear-gradient(135deg, #fff, var(--mint));
}
.about-hero h1 { margin: 0; color: var(--green-dark); font-size: clamp(44px, 6vw, 82px); line-height: .95; letter-spacing: -1px; }
.about-hero h2 { margin: 18px 0; color: var(--red); font-size: clamp(23px, 3vw, 34px); line-height: 1.25; }
.about-hero p { max-width: 760px; color: var(--muted); font-size: 20px; line-height: 1.75; }
.about-hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(10,64,48,.18);
}
.about-hero-photo::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(18,107,79,.18); border-radius: 26px; pointer-events: none; }
.about-hero-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.about-badges span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 14px; color: var(--green); font-weight: 900; box-shadow: 0 10px 26px rgba(10,64,48,.08); }
.about-badges span::before { content: "✓"; margin-right: 8px; color: var(--orange); }

.about-section { padding: 78px clamp(18px, 5vw, 70px); }
.about-section h2 { margin: 0 0 18px; color: var(--green-dark); font-size: clamp(32px, 4.4vw, 54px); line-height: 1.05; }
.about-section p { color: var(--muted); font-size: 18px; line-height: 1.75; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 42px; align-items: start; }
.profile-card, .award-card, .language-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(10,64,48,.09);
}
.profile-card dl { margin: 0; display: grid; gap: 14px; }
.profile-card div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.profile-card div:last-child { border-bottom: 0; padding-bottom: 0; }
.profile-card dt { color: var(--muted); font-weight: 800; }
.profile-card dd { margin: 0; color: var(--green-dark); font-weight: 900; }
.timeline, .process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline article, .process-line article {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.timeline strong, .process-line b { color: var(--orange); font-size: 28px; }
.timeline h3, .process-line h3 { color: var(--green-dark); }
.philosophy { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 40px; align-items: center; background: linear-gradient(135deg, #fff, var(--cream)); }
.pill-grid, .condition-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-grid span, .condition-cloud span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--green);
  font-weight: 900;
}
.premium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.premium-grid article {
  min-height: 108px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  color: var(--green-dark);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(10,64,48,.08);
}
.premium-grid article::before { content: "✓"; color: var(--orange); margin-right: 10px; }
.premium-grid.compact article { min-height: 82px; }
.condition-cloud span { background: var(--green-dark); color: #fff; border-color: transparent; }
.process-line { grid-template-columns: repeat(5, 1fr); }
.process-line b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 18px;
}
.locations { background: #fff; }
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 22px; }
.location-grid article {
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}
.location-grid h3 { margin-top: 0; color: var(--green-dark); font-size: 25px; }
.two-maps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; height: 360px; }
.awards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.award-card h2, .language-card h2 { color: var(--green-dark); }
.about-cta {
  padding: 80px clamp(18px, 5vw, 70px);
  text-align: center;
  background:
    linear-gradient(rgba(7,63,48,.88), rgba(7,63,48,.88)),
    url("images/hero/natural-homeopathy-care-dr-devendra-jawale-ahilyanagar.webp") center/cover;
  color: #fff;
}
.about-cta .eyebrow, .about-cta p { color: #d8efe6; }
.about-cta h2 { margin: 0; font-size: clamp(34px, 5vw, 58px); }
.about-cta .hero-actions { justify-content: center; }
.about-cta .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }

@media (max-width: 1050px) {
  .nav, .call-pill { display: none; }
  .menu-toggle { display: block; }
  .nav.open { position: absolute; left: 0; right: 0; top: 87px; display: grid; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 14px 18px; }
  .nav { font-size: 16px; white-space: normal; }
  .split, .contact-section { grid-template-columns: 1fr; }
  .hero { min-height: clamp(520px, 72vh, 760px); }
  .hero-form, .contact-form { max-width: 560px; }
  .stats, .treatment-grid, .steps, .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .about-hero, .intro-grid, .philosophy, .location-grid, .awards { grid-template-columns: 1fr; }
  .timeline, .process-line, .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-photo { max-width: 420px; }
}

@media (max-width: 640px) {
  .topbar { padding: 10px 14px; }
  .brand { min-width: 0; }
  .brand img { width: 46px; height: 46px; }
  .brand small { display: none; }
  .hero { min-height: 560px; }
  .hero-media img { object-position: center top; }
  .hero-overlay-actions { left: 16px; right: 16px; bottom: 24px; }
  .hero-actions { margin: 0; }
  .hero-actions .btn { flex: 1 1 150px; }
  .stats, .treatment-grid, .steps, .check-list, .service-detail-grid { grid-template-columns: 1fr; }
  .video-section .section-head { grid-template-columns: 1fr; gap: 12px; }
  .video-section .section-head .eyebrow { grid-column: auto; margin-bottom: 0; }
  .video-track { --video-gap: 16px; --video-card-width: min(82vw, 380px); animation-duration: 30s; }
  .video-card video { height: min(62vh, 520px); }
  .page-hero { min-height: 390px; padding: 56px 18px; }
  .page-hero p:not(.eyebrow) { font-size: 17px; }
  .contact-locations, .map-grid, .two-maps { grid-template-columns: 1fr; }
  .map-grid, .two-maps { height: 560px; }
  .site-footer { grid-template-columns: 1fr; }
  .about-hero, .about-section, .about-cta { padding-left: 18px; padding-right: 18px; }
  .timeline, .process-line, .premium-grid { grid-template-columns: 1fr; }
  .profile-card div { grid-template-columns: 1fr; gap: 4px; }
  .mobile-call {
    position: fixed;
    left: 18px;
    bottom: 84px;
    z-index: 60;
    display: grid;
    place-items: center;
    height: 48px;
    min-width: 70px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--green-dark);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
  }
}
