/* Quick Physio — shared site styles */
:root {
  --teal: #00ae97;
  --teal-deep: #008f7c;
  --teal-soft: #e6f7f4;
  --teal-mid: #b3e8df;
  --navy: #1b2e3e;
  --navy-soft: #2a4256;
  --ink: #1b2e3e;
  --muted: #5a6d7c;
  --line: rgba(27, 46, 62, 0.12);
  --white: #fff;
  --bg: #f7fbfa;
  --danger-soft: #f3ebe6;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal-deep);
}

button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 2000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 250, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text strong span {
  color: var(--teal);
}

.brand-text small {
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.nav-cta {
  display: none;
  text-decoration: none;
  background: var(--teal);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 1.125rem 1rem;
  max-height: min(80vh, 640px);
  overflow: auto;
}

.nav-links.is-open {
  display: flex;
}

.nav-links > li > a,
.nav-drop > summary {
  display: block;
  text-decoration: none;
  color: var(--navy-soft);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 0.25rem;
  cursor: pointer;
  list-style: none;
}

.nav-drop > summary::-webkit-details-marker {
  display: none;
}

.nav-drop > summary::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-drop[open] > summary {
  color: var(--teal);
}

.nav-drop-panel {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  animation: dropIn 0.28s var(--ease);
}

.nav-drop-panel a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  padding: 0.4rem 0.25rem;
}

.nav-drop-panel a:hover {
  color: var(--teal);
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem 1.1rem;
    background: transparent;
    border: 0;
    padding: 0;
    max-height: none;
    overflow: visible;
  }

  .nav-links > li {
    position: relative;
  }

  .nav-links > li > a,
  .nav-drop > summary {
    padding: 0.4rem 0;
    font-size: 0.86rem;
  }

  .nav-drop-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.55rem;
    box-shadow: 0 18px 40px rgba(27, 46, 62, 0.12);
    display: none;
  }

  .nav-drop[open] .nav-drop-panel {
    display: flex;
  }

  .nav-drop-panel a {
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
  }

  .nav-drop-panel a:hover {
    background: var(--teal-soft);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
}

/* Sections */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  color: var(--navy);
}

.section-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.02rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Banner hero */
.banner-hero {
  position: relative;
  min-height: min(88vh, 720px);
  overflow: hidden;
  background: var(--navy);
}

.banner-track {
  position: relative;
  min-height: min(88vh, 720px);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.banner-slide.is-active img {
  transform: scale(1);
}

.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 46, 62, 0.88) 0%,
    rgba(27, 46, 62, 0.55) 48%,
    rgba(0, 174, 151, 0.25) 100%
  );
}

.banner-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 6vw, 4.5rem) 0 5.5rem;
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
  color: #fff;
}

.banner-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

.banner-copy h1,
.banner-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.12;
  margin: 0 0 0.85rem;
  max-width: 14ch;
  font-weight: 600;
}

.banner-copy p {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.banner-controls {
  position: absolute;
  z-index: 3;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.banner-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(27, 46, 62, 0.35);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.banner-dots {
  display: flex;
  gap: 0.4rem;
}

.banner-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.banner-dot.is-active {
  background: var(--teal);
  transform: scale(1.15);
}

/* Pain section — distinct medical feel */
.pain-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0, 174, 151, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(27, 46, 62, 0.08), transparent 50%),
    linear-gradient(180deg, #eef6f4 0%, var(--bg) 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .pain-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.pain-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  isolation: isolate;
  transition: transform 0.4s var(--ease);
}

.pain-card:hover {
  transform: translateY(-4px);
}

.pain-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.pain-card:hover img {
  transform: scale(1.06);
}

.pain-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(27, 46, 62, 0.88) 100%);
}

.pain-card span {
  position: absolute;
  z-index: 1;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.pain-card small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.2rem;
}

.pain-pulse {
  position: absolute;
  z-index: 1;
  top: 0.85rem;
  right: 0.85rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e85d4c;
  box-shadow: 0 0 0 0 rgba(232, 93, 76, 0.5);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(232, 93, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 93, 76, 0);
  }
}

/* Problems list section */
.problems-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.problem-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .problem-list {
    grid-template-columns: 1fr 1fr;
  }
}

.problem-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.problem-row:hover {
  border-color: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 46, 62, 0.06);
}

.problem-row img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.problem-row h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}

.problem-row p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.problem-row .link-arrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-deep);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .problem-row {
    grid-template-columns: 72px 1fr;
  }
  .problem-row .link-arrow {
    display: none;
  }
  .problem-row img {
    width: 72px;
    height: 72px;
  }
}

/* Categories */
.categories-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, #e8f4f1 100%);
}

.cat-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(27, 46, 62, 0.1);
}

.cat-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.cat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.cat-card:hover .cat-card-media img {
  transform: scale(1.05);
}

.cat-card-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cat-card-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}

.cat-card-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}

.cat-card-body .more {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--teal-deep);
}

/* Promo / clinics / reviews */
.promo-strip {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    linear-gradient(120deg, rgba(27, 46, 62, 0.82), rgba(0, 174, 151, 0.75)),
    url("../assets/photos/home-visit.jpg") center / cover;
  color: #fff;
}

.promo-strip .section-label {
  color: var(--teal-mid);
}

.promo-strip .section-title,
.promo-strip .section-lead {
  color: #fff;
}

.promo-strip .section-lead {
  opacity: 0.9;
}

.clinics {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

#clinics-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  #clinics-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.clinic-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
}

.clinic-card h3 {
  margin: 0 0 0.35rem;
}

.clinic-city {
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 0.65rem !important;
}

.reviews {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.review-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid var(--line);
}

.stars {
  color: #d4a017;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.review-card blockquote {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.review-card cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.service-area {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

#service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

#service-areas li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.cta-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.85;
}

.cta-band .btn-ghost {
  margin-left: 0.5rem;
}

/* Footer */
.site-footer {
  background: #152532;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-brand strong span {
  color: var(--teal);
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal-mid);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27, 46, 62, 0.9) 0%, rgba(27, 46, 62, 0.45) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0 2.75rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: var(--teal-mid);
  text-decoration: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  margin: 0 0 0.65rem;
  max-width: 16ch;
  line-height: 1.15;
}

.page-hero .lead {
  max-width: 36rem;
  margin: 0 0 1.25rem;
  opacity: 0.9;
}

.page-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.content-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .content-grid {
    grid-template-columns: 1.5fr 0.9fr;
    align-items: start;
  }
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 1.75rem 0 0.65rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.15rem;
}

.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  position: sticky;
  top: 5.5rem;
}

.side-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.side-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.related-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 700px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .related-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.related-card:hover {
  transform: translateY(-3px);
}

.related-card img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.related-card div {
  padding: 0.95rem 1rem 1.1rem;
}

.related-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.related-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.journey-steps {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.journey-steps li {
  counter-increment: step;
  position: relative;
  padding: 0.85rem 0.85rem 0.85rem 3rem;
  background: var(--teal-soft);
  border-radius: 12px;
  color: var(--navy) !important;
  font-weight: 500;
  font-size: 0.92rem;
}

.journey-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
  background: #fff;
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
}

.faq-list p {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
}

.tag-row a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-deep);
}

/* Deep problem pages */
.page-toc {
  background: var(--teal-soft);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  margin: 0 0 1.75rem;
}

.page-toc p {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
}

.page-toc ol {
  margin: 0;
  padding-left: 1.15rem;
  columns: 1;
}

@media (min-width: 560px) {
  .page-toc ol {
    columns: 2;
  }
}

.page-toc a {
  text-decoration: none;
  font-size: 0.86rem;
  color: var(--teal-deep);
}

.page-toc a:hover {
  text-decoration: underline;
}

.type-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 640px) {
  .type-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.type-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem;
}

.type-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
}

.type-card p {
  margin: 0;
  font-size: 0.88rem;
}

.cause-list li {
  margin-bottom: 0.35rem;
}

.content-figure {
  margin: 1.75rem 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.content-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-figure figcaption {
  padding: 0.75rem 1rem 0.95rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(120deg, rgba(0, 174, 151, 0.12), rgba(27, 46, 62, 0.06));
  border-radius: 16px;
  border: 1px solid var(--teal-mid);
}

.inline-cta p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: var(--navy) !important;
}

.disclaimer {
  margin-top: 2rem !important;
  font-size: 0.8rem !important;
  opacity: 0.85;
}

.problem-deep .prose h2 {
  scroll-margin-top: 5.5rem;
}

/* Care pathway — timeline */
.pathway-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(0, 174, 151, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(27, 46, 62, 0.06), transparent 50%),
    linear-gradient(180deg, #f0f7f5 0%, #ffffff 100%);
  overflow: hidden;
}

.pathway-intro {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.pathway-intro .section-title {
  background: none;
  -webkit-text-fill-color: unset;
}

.pathway-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: none;
  position: relative;
}

@media (min-width: 900px) {
  .pathway-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .pathway-track::before {
    content: "";
    position: absolute;
    top: 2.35rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-mid), var(--teal), var(--teal-mid));
    opacity: 0.7;
    z-index: 0;
  }
}

.pathway-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem 1.25rem 1.4rem;
  border: 1px solid rgba(27, 46, 62, 0.08);
  box-shadow: 0 12px 32px rgba(27, 46, 62, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pathway-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(27, 46, 62, 0.12);
}

@media (min-width: 900px) {
  .pathway-step {
    margin: 0 0.55rem;
  }
}

.pathway-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal-soft), #fff);
  border: 2px solid var(--teal-mid);
  color: var(--navy);
  margin-bottom: 1rem;
  box-shadow: 0 0 0 6px rgba(0, 174, 151, 0.08);
}

.pathway-icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.pathway-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal-deep);
  margin-bottom: 0.35rem;
}

.pathway-step h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}

.pathway-sub {
  margin: 0 0 0.75rem !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  color: var(--teal-deep) !important;
}

.pathway-step > p:last-child {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.modes-section,
.symptoms-section,
.therapies-section,
.faq-section {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}

.modes-section {
  background: linear-gradient(180deg, var(--bg), #e8f4f1);
}

.mode-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 800px) {
  .mode-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mode-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.mode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(27, 46, 62, 0.1);
}

.mode-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.mode-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mode-body {
  padding: 1.1rem 1.15rem 1.3rem;
}

.mode-body h3 {
  margin: 0 0 0.4rem;
}

.mode-body p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.mode-body .more {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--teal-deep);
}

.symptoms-section {
  background: #fff;
}

.symptom-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.symptom-chip {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--navy);
  border: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.symptom-chip:hover {
  border-color: var(--teal);
  background: #fff;
  color: var(--teal-deep);
}

.therapies-section {
  background: var(--bg);
}

.therapy-carousel {
  margin-top: 0.35rem;
}

.therapy-carousel-viewport {
  overflow: hidden;
}

.therapy-carousel-track {
  display: flex;
  gap: 0.85rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.therapy-chip {
  flex: 0 0 auto;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  box-sizing: border-box;
}

.therapy-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.therapy-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.therapy-nav:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: var(--teal-soft);
}

.therapy-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.therapy-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--teal-mid);
  cursor: pointer;
  transition: width 0.25s var(--ease), background 0.25s var(--ease);
}

.therapy-dot.is-active {
  width: 1.35rem;
  background: var(--teal);
}

@media (prefers-reduced-motion: reduce) {
  .therapy-carousel-track {
    transition: none;
  }
}

.therapy-chip-icon {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 0 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--teal-soft);
}

.therapy-chip-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapy-chip h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.therapy-chip p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.faq-section {
  background: #fff;
}

.faq-section .faq-list {
  max-width: 800px;
}

.pain-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) {
  .pain-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1100px) {
  .pain-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.view-more-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.view-more-wrap p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.listing-hero {
  background: linear-gradient(120deg, var(--navy) 0%, #234459 100%);
  color: #fff;
  padding: clamp(2.75rem, 6vw, 4rem) 0 3rem;
}

.listing-hero .section-label {
  color: var(--teal-mid);
}

.listing-hero .section-title,
.listing-hero .section-lead {
  color: #fff;
}

.listing-hero .section-lead {
  opacity: 0.88;
  max-width: 40rem;
}

.breadcrumb-dark {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-dark a {
  color: var(--teal-mid);
}

.search-box {
  margin-top: 1.5rem;
  max-width: 32rem;
}

.search-box input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.95rem;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box input:focus {
  outline: 2px solid var(--teal-mid);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.search-meta {
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
  opacity: 0.8;
}

.search-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
}

.search-empty a {
  color: var(--teal-deep);
  font-weight: 600;
}

/* ---------- Deep listing pages: Problems / Treatments / Categories index ---------- */
.index-stat-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  max-width: 34rem;
}

@media (min-width: 640px) {
  .index-stat-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.index-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  text-align: center;
}

.index-stat strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
}

.index-stat span {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
}

.filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.filter-chip:hover {
  border-color: var(--teal-mid);
  transform: translateY(-1px);
}

.filter-chip.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* Rich problem cards */
.problem-card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 620px) {
  .problem-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .problem-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.problem-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(27, 46, 62, 0.09);
}

.problem-card .problem-card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.problem-card .problem-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.problem-card:hover .problem-card-media img {
  transform: scale(1.06);
}

.problem-card .pain-zone-pill {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(27, 46, 62, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.problem-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.problem-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}

.problem-card-body p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--muted);
  flex: 1;
}

.problem-card-body .link-arrow {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-deep);
}

/* Category index cards */
.category-index-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .category-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .category-index-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-index-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.category-index-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(27, 46, 62, 0.1);
}

.category-index-card .cat-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.category-index-card .cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.category-index-card:hover .cat-media img {
  transform: scale(1.06);
}

.category-index-card .cat-count {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}

.category-index-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.category-index-body p.kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.category-index-body h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy);
}

.category-index-body p.lead-line {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}

.category-index-body .link-arrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-top: 0.3rem;
}

/* Treatment groups + rich cards */
.treatment-group {
  margin-bottom: 2.5rem;
}

.treatment-group:last-child {
  margin-bottom: 0;
}

.treatment-group-heading {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.treatment-group-heading h2 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--navy);
}

.treatment-group-heading span {
  font-size: 0.8rem;
  color: var(--muted);
}

.treatment-index-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .treatment-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .treatment-index-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.treatment-index-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.treatment-index-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(27, 46, 62, 0.08);
}

.treatment-index-card .tc-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.treatment-index-card .tc-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.treatment-index-card:hover .tc-media > img {
  transform: scale(1.06);
}

.treatment-index-card .tc-icon {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(27, 46, 62, 0.18);
}

.treatment-index-card .tc-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-index-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.treatment-index-body h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--navy);
}

.treatment-index-body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  flex: 1;
}

.tc-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tc-tag-row span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.index-note {
  background: var(--teal-soft);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--navy);
}

.index-note strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.index-note-block {
  max-width: 68ch;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line, #e5e9ea);
}

.index-note-block h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.index-note-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.section-divider-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2.5rem 0 1rem;
}

/* ---------- ₹49 consult popup + inline promo band ---------- */
.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.consult-modal[hidden] {
  display: none;
}

.consult-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 34, 0.62);
  backdrop-filter: blur(2px);
}

.consult-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.6rem 1.5rem;
  box-shadow: 0 30px 60px rgba(15, 26, 34, 0.35);
  animation: consultPop 0.28s var(--ease);
}

@keyframes consultPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.consult-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.consult-modal-close:hover {
  background: var(--teal-soft);
}

.consult-modal-badge {
  display: inline-block;
  background: #fde68a;
  color: #92400e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin: 0 0 0.7rem;
}

.consult-modal-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--navy);
  max-width: 22ch;
}

.consult-modal-price {
  margin: 0 0 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.consult-modal-price .strike {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.95rem;
}

.consult-modal-price strong {
  font-size: 1.9rem;
  color: var(--teal-deep);
  font-family: var(--font-display);
}

.consult-modal-price span:last-child {
  font-size: 0.82rem;
  color: var(--muted);
}

.consult-modal-sub {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

#consult-form {
  display: grid;
  gap: 0.65rem;
}

#consult-form input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
}

#consult-form input:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(0, 174, 151, 0.15);
}

.consult-form-error {
  margin: 0;
  font-size: 0.82rem;
  color: #b91c1c;
  display: none;
}

.consult-form-error.is-visible {
  display: block;
}

.consult-modal-success {
  margin: 0.9rem 0 0;
  padding: 0.75rem 0.9rem;
  background: var(--teal-soft);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--navy);
}

.consult-modal-success code {
  font-size: 0.78rem;
  word-break: break-all;
}

.consult-modal-disclaimer {
  margin: 0.9rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}

body.consult-modal-open {
  overflow: hidden;
}

/* Inline "₹49 book slot" promo band, sprinkled mid-page */
.consult-promo-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(120deg, var(--navy) 0%, #234459 100%);
  color: #fff;
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
}

.consult-promo-band .cpb-text p.kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

.consult-promo-band .cpb-text h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: #fff;
}

.consult-promo-band .cpb-text p.cpb-price {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
}

.consult-promo-band .cpb-text p.cpb-price .strike {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 0.3rem;
}

.consult-promo-band .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ---------- Clinics index + detail pages ---------- */
.clinic-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.clinic-index-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.clinic-index-card .cic-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.clinic-index-card .cic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-index-card .cic-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: rgba(15, 26, 34, 0.75);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.clinic-index-card .cic-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.clinic-index-card .kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.clinic-index-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy);
}

.clinic-index-card .cic-address {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.clinic-index-card .cic-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.2rem 0;
}

.clinic-index-card .cic-areas span {
  font-size: 0.72rem;
  background: var(--bg);
  color: var(--navy);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}

.clinic-index-card .cic-price {
  margin: 0.2rem 0 0.3rem;
  font-size: 0.9rem;
}

.clinic-index-card .cic-price .strike {
  text-decoration: line-through;
  color: var(--muted);
  margin-right: 0.35rem;
}

.clinic-index-card .cic-price strong {
  color: var(--teal-deep);
}

.clinic-index-card .cic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.clinic-real-photo {
  margin: 1.5rem 0;
  max-width: 420px;
}

.clinic-real-photo img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.clinic-real-photo figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.clinic-problem-group {
  margin: 1rem 0 1.4rem;
}

.clinic-problem-group h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--navy);
}

.clinic-map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 1rem 0;
}

.clinic-map-embed iframe {
  display: block;
}

/* ---------- Locations index + detail pages ---------- */
.loc-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin: 1rem 0 2rem;
}

.loc-index-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.loc-index-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-2px);
}

.loc-index-card .kicker {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.loc-index-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.loc-index-card p {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.loc-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--navy);
}

.loc-badge-clinic {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.loc-clinic-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  margin: 1rem 0;
}

.loc-clinic-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--navy);
}

.loc-clinic-card p {
  margin: 0 0 0.5rem;
}

.treatment-used-grid {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 640px) {
  .treatment-used-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.treatment-used-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.treatment-used-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-2px);
}

.treatment-used-card strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.treatment-used-card span {
  font-size: 0.82rem;
  color: var(--muted);
}

.therapy-chip {
  display: block;
  text-decoration: none;
  color: inherit;
}

.therapy-chip .more {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-deep);
}

/* Deep content: exercises, prevention, timeline, why-choose */
.exercise-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 700px) {
  .exercise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.exercise-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
}

.exercise-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--navy);
}

.exercise-card dl {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.exercise-card dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 0.4rem;
}

.exercise-card dd {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.prevention-grid {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 700px) {
  .prevention-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prevention-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: var(--teal-soft);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.prevention-item .tick {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.prevention-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--navy) !important;
}

.timeline-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-phase {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--teal-deep);
}

.timeline-item p {
  margin: 0;
  font-size: 0.9rem;
}

.why-us-grid {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 700px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-us-item {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.why-us-item::before {
  content: "✔";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.local-keywords-line {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.approach-steps {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
  counter-reset: astep;
}

.approach-step {
  position: relative;
  padding-left: 2.75rem;
}

.approach-step::before {
  counter-increment: astep;
  content: counter(astep);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.approach-step h4 {
  margin: 0 0 0.25rem;
  font-size: 0.96rem;
}

.approach-step p {
  margin: 0;
  font-size: 0.88rem;
}


/* Floating WhatsApp CTA */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.25rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.95rem 0.7rem 0.75rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.wa-float-icon {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
}

.wa-float-icon svg {
  display: block;
}

.wa-float-label {
  padding-right: 0.15rem;
}

body.has-sticky-offer .wa-float {
  bottom: 5.75rem;
}


/* ——— Mobile polish (aggressive compact) ——— */
@media (max-width: 699px) {
  html {
    font-size: 15px;
  }

  body {
    line-height: 1.5;
  }

  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .site-header .nav {
    gap: 0.5rem;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text small {
    font-size: 0.58rem;
  }

  .nav-toggle {
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
  }

  .section-label {
    font-size: 0.68rem;
    margin-bottom: 0.3rem;
  }

  .section-title {
    font-size: 1.28rem !important;
    line-height: 1.2;
    margin-bottom: 0.35rem;
  }

  .section-lead {
    font-size: 0.82rem !important;
    margin-bottom: 0.85rem;
    line-height: 1.45;
  }

  /* Hero banner — much shorter */
  .banner-hero,
  .banner-track {
    min-height: 340px !important;
  }

  .banner-copy {
    padding: 1.35rem 0 4rem !important;
  }

  .banner-copy h1,
  .banner-copy h2 {
    font-size: 1.4rem !important;
    line-height: 1.15;
    margin-bottom: 0.4rem;
  }

  .banner-copy p {
    font-size: 0.82rem !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
  }

  .banner-actions .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
  }

  .banner-controls {
    bottom: 0.85rem;
    gap: 0.5rem;
  }

  .banner-nav {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .modes-section,
  .symptoms-section,
  .therapies-section,
  .faq-section,
  .problems-section,
  .categories-section,
  .pain-section,
  .clinics,
  .reviews,
  .promo-strip,
  .service-area {
    padding: 1.75rem 0 !important;
  }

  /* Horizontal compact cards — image left, text right */
  .mode-card,
  .cat-card,
  .problem-card,
  .treatment-index-card,
  .related-card,
  .category-index-card {
    display: grid !important;
    grid-template-columns: 76px 1fr;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    min-height: 0;
  }

  .mode-media,
  .cat-card-media,
  .problem-card .problem-card-media,
  .treatment-index-card .tc-media,
  .category-index-card .cat-media {
    aspect-ratio: auto !important;
    height: 100%;
    min-height: 72px;
    max-height: 86px;
  }

  .related-card img {
    aspect-ratio: auto !important;
    width: 76px;
    height: 100%;
    min-height: 72px;
    max-height: 86px;
    object-fit: cover;
  }

  .mode-body,
  .cat-card-body,
  .problem-card-body,
  .treatment-index-body,
  .related-card div {
    padding: 0.45rem 0.55rem 0.5rem !important;
    gap: 0.1rem;
    justify-content: center;
  }

  .mode-body h3,
  .cat-card-body h3,
  .problem-card-body h3,
  .treatment-index-body h3,
  .related-card h3 {
    font-size: 0.8rem !important;
    margin: 0 0 0.1rem !important;
    line-height: 1.2;
  }

  .mode-body p,
  .cat-card-body p,
  .problem-card-body p,
  .treatment-index-body p,
  .related-card p {
    font-size: 0.68rem !important;
    line-height: 1.3;
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mode-body .more,
  .cat-card-body .more,
  .problem-card-body .link-arrow {
    font-size: 0.66rem !important;
    margin-top: 0.15rem;
  }

  .cat-grid,
  .mode-grid,
  .problem-card-grid,
  .treatment-index-grid,
  .related-grid {
    gap: 0.45rem !important;
  }

  .treatment-index-card .tc-icon,
  .problem-card .pain-zone-pill {
    display: none;
  }

  .tc-tag-row {
    display: none;
  }

  /* Therapy chips — tighter */
  .therapy-carousel-track {
    gap: 0.5rem;
  }

  .therapy-chip {
    display: grid !important;
    grid-template-columns: 2.35rem 1fr;
    column-gap: 0.55rem;
    row-gap: 0.05rem;
    padding: 0.55rem 0.6rem !important;
    border-radius: 10px;
  }

  .therapy-chip-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 2.35rem !important;
    height: 2.35rem !important;
    margin: 0 !important;
    border-radius: 8px;
  }

  .therapy-chip h3 {
    grid-column: 2;
    margin: 0 !important;
    font-size: 0.82rem !important;
  }

  .therapy-chip p {
    grid-column: 2;
    font-size: 0.7rem !important;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .therapy-chip .more {
    grid-column: 2;
    margin-top: 0 !important;
    font-size: 0.68rem !important;
  }

  .therapy-carousel-controls {
    margin-top: 0.65rem;
    gap: 0.5rem;
  }

  .therapy-nav {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1rem;
  }

  .therapy-dot {
    width: 0.4rem;
    height: 0.4rem;
  }

  .therapy-dot.is-active {
    width: 1rem;
  }

  /* Pain zones — flatter */
  .pain-grid {
    gap: 0.5rem !important;
  }

  .pain-card {
    aspect-ratio: 1 / 0.78 !important;
    border-radius: 10px;
  }

  .pain-card span {
    font-size: 0.72rem !important;
    bottom: 0.45rem;
    left: 0.45rem;
  }

  .pain-card small {
    display: none;
  }

  .pathway-step {
    padding: 0.7rem 0.75rem !important;
  }

  .pathway-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .pathway-step h3 {
    font-size: 0.86rem !important;
  }

  .pathway-step > p:last-child {
    font-size: 0.72rem !important;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .symptom-cloud {
    gap: 0.35rem;
  }

  .symptom-chip {
    padding: 0.35rem 0.6rem !important;
    font-size: 0.72rem !important;
  }

  .problem-row {
    gap: 0.55rem;
    padding: 0.5rem !important;
    border-radius: 10px;
  }

  .problem-row img {
    width: 56px !important;
    height: 44px !important;
    border-radius: 8px;
  }

  .problem-row h3 {
    font-size: 0.84rem !important;
  }

  .problem-row p {
    font-size: 0.7rem !important;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Inner page heroes */
  .page-hero {
    min-height: 0 !important;
  }

  .page-hero-inner {
    width: min(100% - 1.25rem, var(--max));
    padding: 1.15rem 0 1.1rem !important;
  }

  .page-hero h1 {
    font-size: 1.25rem !important;
    margin-bottom: 0.35rem;
  }

  .page-hero .lead {
    font-size: 0.8rem !important;
    line-height: 1.4;
    margin-bottom: 0.65rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .page-hero .btn {
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
  }

  .page-hero .tag-row a {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
  }

  .listing-hero {
    padding: 1.35rem 0 1rem !important;
  }

  .page-toc {
    padding: 0.65rem 0.75rem !important;
    margin-bottom: 0.85rem;
    border-radius: 12px;
  }

  .page-toc p {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
  }

  .page-toc ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 0.55rem;
    padding-left: 1rem;
    columns: unset !important;
  }

  .page-toc a {
    font-size: 0.72rem !important;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .side-card {
    padding: 0.8rem !important;
    border-radius: 12px;
  }

  .side-card h3 {
    font-size: 0.92rem;
  }

  .side-card p {
    font-size: 0.78rem;
  }

  .prose h2 {
    font-size: 1.05rem !important;
    margin-top: 1.25rem;
  }

  .prose p,
  .prose li {
    font-size: 0.88rem;
  }

  .content-grid {
    gap: 1rem;
  }

  .page-content {
    padding: 1.35rem 0 2rem !important;
  }

  .clinic-card,
  .review-card {
    padding: 0.85rem !important;
    border-radius: 12px;
  }

  .btn {
    padding: 0.6rem 0.95rem;
    font-size: 0.84rem;
  }

  .btn-sm {
    padding: 0.45rem 0.7rem;
    font-size: 0.76rem;
  }

  .wa-float {
    right: 0.75rem;
    bottom: 0.85rem;
    padding: 0.65rem;
    border-radius: 50%;
  }

  .wa-float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  body.has-sticky-offer .wa-float {
    bottom: 4.75rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .exercise-card,
  .prevention-item,
  .why-us-item {
    font-size: 0.82rem;
  }

  .inline-cta {
    padding: 0.85rem !important;
  }

  .cta-band {
    padding: 1.75rem 0 !important;
  }

  .cta-band h2 {
    font-size: 1.2rem !important;
  }
}
