:root {
  --bg: #FAF8F4;
  --text: #24333A;
  --link: #14657F;
  --link-hover: #6BA92E;
  --border: #E7E1D7;
  --heading: #12333F;
  --muted: #4A5B63;
  --muted2: #6A7A82;
  --green: #6BA92E;
  --green-dark: #5C9526;
  --teal: #14657F;
  --teal-dark: #0F5468;
}

html, body { margin: 0; padding: 0; background: var(--bg); }
body { font-family: Manrope, system-ui, sans-serif; color: var(--text); -webkit-font-smoothing: antialiased; }
* { box-sizing: border-box; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
input, select, textarea, button { font-family: inherit; }

@keyframes mdFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.page { min-height: 100vh; background: var(--bg); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 248, 244, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  max-width: 1400px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; gap: 28px;
}
.logo { height: 40px; width: auto; display: block; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: #fff; padding: 11px 18px; border-radius: 999px;
  font-weight: 600; text-align: center;
}
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.call-btn { margin-left: auto; gap: 9px; }
.call-btn svg { width: 17px; height: 17px; flex: 0 0 auto; }
.call-label-short { display: none; }

/* Hero / assessment section */
.hero-section {
  background:
    linear-gradient(100deg, rgba(250, 248, 244, 0.85) 0%, rgba(250, 248, 244, 0.68) 45%, rgba(250, 248, 244, 0.5) 100%),
    url("assets/hero.png") center 30% / cover no-repeat;
}
.hero {
  max-width: 1400px; margin: 0 auto; padding: 62px 28px 46px;
  display: flex; flex-wrap: wrap; gap: 54px; align-items: flex-start;
}
.hero-copy { flex: 1 1 460px; min-width: 320px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #EAF3E1; color: #4C7A1C; border-radius: 999px; padding: 7px 14px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: block; }

.hero h1 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.14; letter-spacing: -0.01em; margin: 22px 0 0; color: var(--heading);
  max-width: 15em; text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero p.lead {
  font-size: 18.5px; line-height: 1.62; color: var(--muted); margin: 22px 0 0;
  max-width: 30em; text-wrap: pretty;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 26px; border-radius: 12px; font-weight: 700; font-size: 15.5px; text-align: center;
}
.btn-solid { background: var(--teal); color: #fff; }
.btn-solid:hover { background: var(--teal-dark); color: #fff; }
.btn-outline { background: #fff; color: var(--teal); border: 1px solid #CFE0E6; }
.btn-outline:hover { border-color: var(--green); color: #4C7A1C; }

.step-grid {
  margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.step-grid .step { background: #FFFDF9; padding: 18px 16px; }
.step .step-num { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--green); letter-spacing: 0.08em; }
.step .step-title { font-weight: 600; font-size: 15px; margin-top: 8px; color: var(--heading); }

/* Lead form */
.lead-form-card {
  flex: 0 1 420px; min-width: 320px; background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; box-shadow: 0 24px 60px -34px rgba(18, 51, 63, 0.35);
}
.form-success { padding: 34px 8px; text-align: center; }
.form-success .check {
  width: 54px; height: 54px; border-radius: 50%; background: #EAF3E1; color: #4C7A1C;
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 18px;
}
.form-success h3 { font-family: Newsreader, serif; font-weight: 500; font-size: 26px; margin: 0; color: var(--heading); }
.form-success p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 12px 0 0; }
.btn-ghost {
  margin-top: 20px; background: none; border: 1px solid #CFE0E6; color: var(--teal);
  padding: 12px 20px; border-radius: 10px; font-weight: 600; cursor: pointer;
}
.form-case-id {
  margin-top: 14px !important; font-size: 13px !important; color: var(--muted) !important;
  background: #F6FAFB; border: 1px solid #E1EBEE; border-radius: 8px; padding: 10px 14px !important;
  display: inline-block;
}
.form-case-id strong { color: var(--heading); font-family: 'IBM Plex Mono', monospace; }
.form-error {
  padding: 16px; border-radius: 10px; background: #FDF1F0; border: 1px solid #F0C9C5;
  color: #8A342B; font-size: 14px; line-height: 1.6;
}
.form-error a { color: #8A342B; font-weight: 600; }

.lead-form-card h2 { font-family: Newsreader, serif; font-weight: 500; font-size: 27px; line-height: 1.2; margin: 0; color: var(--heading); }
.lead-form-card > div > p { font-size: 14.5px; color: #6A7A82; margin: 9px 0 22px; line-height: 1.55; }

#lead-form form { display: grid; gap: 14px; }
#lead-form label { display: grid; gap: 6px; }
#lead-form label span { font-size: 12.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
#lead-form .row { display: flex; gap: 12px; flex-wrap: wrap; }
#lead-form .row label { flex: 1 1 150px; }
#lead-form input,
#lead-form select {
  padding: 13px 14px; border: 1px solid #DDD6CB; border-radius: 10px; font-size: 15px;
  background: #FDFCFA; color: var(--text); width: 100%;
}
#lead-form input:focus,
#lead-form select:focus { border-color: var(--teal); outline: none; }
#lead-form input[type="file"] {
  padding: 11px 12px; border: 1px dashed #C6D7DD; border-radius: 10px; font-size: 13.5px;
  background: #F6FAFB; color: var(--muted);
}
.optional { font-weight: 400; color: #94A2A8; }
.btn-submit {
  margin-top: 4px; background: var(--green); color: #fff; border: none; padding: 16px;
  border-radius: 11px; font-size: 16px; font-weight: 700; cursor: pointer;
}
.btn-submit:hover { background: var(--green-dark); }
.form-note { font-size: 12px; color: #94A2A8; margin: 2px 0 0; line-height: 1.5; }

/* Why India */
.why-section { background: var(--heading); color: #EAF1F3; }
.why-section .inner { max-width: 1400px; margin: 0 auto; padding: 76px 28px; }
.why-section .layout { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.why-intro { flex: 1 1 380px; min-width: 300px; }
.why-section h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12; margin: 0; color: #fff;
}
.why-intro p { font-size: 17px; line-height: 1.65; color: #A9BFC7; margin: 18px 0 0; max-width: 32em; }
.why-cards { flex: 1 1 420px; min-width: 300px; display: grid; gap: 12px; }
.why-card { border: 1px solid #234956; border-radius: 14px; padding: 18px 20px; background: #173B48; }
.why-card .card-title { font-weight: 700; font-size: 16px; color: #fff; }
.why-card .card-text { font-size: 14.5px; color: #A9BFC7; margin-top: 5px; line-height: 1.55; }

/* Services */
.services-section { max-width: 1400px; margin: 0 auto; padding: 82px 28px; }
.services-section h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12; margin: 0; color: var(--heading);
}
.services-section > p { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 16px 0 40px; max-width: 44em; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 14px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.service-card:hover { border-color: var(--green); }
.service-card .num { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: #A9B4B9; }
.service-card .title { font-family: Newsreader, serif; font-size: 21px; font-weight: 500; color: var(--heading); margin-top: 10px; }
.service-card .desc { font-size: 14.5px; color: #6A7A82; line-height: 1.55; margin-top: 8px; }

/* Treatments */
.treatments-section { background: #F3EFE7; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.treatments-section .inner { max-width: 1400px; margin: 0 auto; padding: 82px 28px; }
.treatments-head { display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-end; justify-content: space-between; }
.treatments-head .title-block { flex: 1 1 420px; }
.treatments-head h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12; margin: 0; color: var(--heading);
}
.treatments-head p { flex: 0 1 380px; font-size: 15.5px; line-height: 1.6; color: #5A6B73; margin: 0; }
.treatments-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px;
}
@media (max-width: 900px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .treatments-grid { grid-template-columns: 1fr; }
}
.treatment-card {
  position: relative; aspect-ratio: 5 / 4; border-radius: 14px; overflow: hidden;
  display: block; border: 1px solid #E2DBD0;
}
.treatment-card:hover { border-color: var(--teal); }
.treatment-card-img {
  position: absolute; inset: 0; background: #F3EFE7;
  background-image: linear-gradient(135deg, #EDE7DA 25%, transparent 25%, transparent 50%, #EDE7DA 50%, #EDE7DA 75%, transparent 75%, transparent);
  background-size: 16px 16px;
}
.treatment-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.treatment-card-title {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 12px 10px;
  background: linear-gradient(to top, rgba(10, 20, 24, 0.82), rgba(10, 20, 24, 0));
  color: #fff; font-weight: 600; font-size: 13px; line-height: 1.3;
}

/* Journey */
.journey-section { max-width: 1400px; margin: 0 auto; padding: 82px 28px; }
.journey-section h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12; margin: 0 0 40px; color: var(--heading);
}
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 34px; }
@media (max-width: 900px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .journey-grid { grid-template-columns: 1fr; }
}
.journey-step { border-top: 2px solid var(--teal); padding-top: 16px; }
.journey-step.accent { border-top-color: var(--green); }
.journey-step .step-index { font-family: Newsreader, serif; font-size: 34px; color: var(--teal); line-height: 1; }
.journey-step.accent .step-index { color: var(--green); }
.journey-step .step-title { font-weight: 700; font-size: 16.5px; color: var(--heading); margin-top: 8px; }
.journey-step .step-desc { font-size: 14.5px; color: #6A7A82; line-height: 1.55; margin-top: 6px; }

/* Trust */
.trust-section { background: #FFFDF9; border-top: 1px solid var(--border); }
.trust-section .inner { max-width: 1400px; margin: 0 auto; padding: 82px 28px; display: flex; flex-wrap: wrap; gap: 54px; }
.trust-intro { flex: 1 1 400px; min-width: 300px; }
.trust-section h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12; margin: 0; color: var(--heading);
}
.trust-intro > p { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 18px 0 0; }
.coordinator-card { margin-top: 28px; background: #F6FAFB; border: 1px solid #DCEAEE; border-radius: 16px; padding: 22px; }
.coordinator-card .heading { font-weight: 700; color: var(--heading); font-size: 16px; }
.coordinator-row { display: flex; gap: 14px; align-items: center; margin-top: 14px; }
.coordinator-avatar {
  width: 58px; height: 58px; border-radius: 50%; flex: 0 0 auto;
  background: repeating-linear-gradient(45deg, #E4EEF1 0 6px, #F4F9FA 6px 12px);
  border: 1px solid #CFE0E6;
}
.coordinator-meta { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: #6A7A82; line-height: 1.5; }
.lang-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.lang-tag {
  background: #fff; border: 1px solid #DCEAEE; border-radius: 999px; padding: 7px 13px;
  font-size: 13px; font-weight: 600; color: var(--teal);
}
.trust-list {
  flex: 1 1 400px; min-width: 300px; display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden; align-content: start;
}
.trust-item { background: #fff; padding: 17px 20px; display: flex; gap: 12px; align-items: baseline; }
.trust-item .tick { color: var(--green); font-weight: 700; }
.trust-item span:last-child { font-size: 15.5px; color: var(--text); }

/* Country desks */
.markets-section { background: #F3EFE7; border-top: 1px solid var(--border); }
.markets-section .inner { max-width: 1400px; margin: 0 auto; padding: 66px 28px; }
.markets-section h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15; margin: 0 0 26px; color: var(--heading);
}
.market-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.market-tag {
  background: #fff; border: 1px solid #E2DBD0; border-radius: 999px; padding: 10px 18px;
  font-size: 14.5px; font-weight: 600; color: var(--heading);
}
.market-tag.more {
  background: #F3EFE7; border: 1px dashed #C9C0B2; color: #6A7A82; font-family: 'IBM Plex Mono', monospace; font-weight: 400;
}

/* SEO Architecture — internal search interlinking */
.seo-section { max-width: 1400px; margin: 0 auto; padding: 76px 28px; }
.seo-section h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15; margin: 0 0 12px; color: var(--heading);
}
.seo-section > .inner > p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 30px; max-width: 44em; }
.keyword-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; }
.keyword-link {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 15px 17px;
  display: block; font-weight: 600; font-size: 14.5px; color: var(--heading);
}
.keyword-link:hover { border-color: var(--teal); color: var(--teal); }

/* Search result (SERP) preview */
.serp-section { background: #F3EFE7; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.serp-section .inner { max-width: 1400px; margin: 0 auto; padding: 76px 28px; }
.serp-section h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15; margin: 0 0 12px; color: var(--heading);
}
.serp-section > .inner > p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 26px; max-width: 44em; }
.serp-card { background: #fff; border: 1px solid #E2DBD0; border-radius: 16px; padding: 24px 26px; max-width: 620px; }
.serp-url { font-size: 14px; color: #202124; }
.serp-breadcrumb { color: #5F6368; }
.serp-title { font-family: Arial, sans-serif; font-size: 20px; color: #1a0dab; margin-top: 4px; line-height: 1.3; }
.serp-desc { font-family: Arial, sans-serif; font-size: 14px; color: #4d5156; line-height: 1.58; margin-top: 6px; }

/* Our Partners */
.partners-section { max-width: 1400px; margin: 0 auto; padding: 76px 28px; }
.partners-section h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12; margin: 0; color: var(--heading);
}
.partners-section > .inner > p { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 16px 0 40px; max-width: 44em; }
.hospital-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 24px; align-items: start; }
@media (max-width: 1100px) {
  .hospital-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hospital-grid { grid-template-columns: 1fr; }
}
.hospital-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px;
  display: flex; flex-direction: column; height: 250px; overflow: hidden;
}
.hospital-card.expanded { height: auto; overflow: visible; }
.hospital-name {
  font-family: Newsreader, serif; font-weight: 500; font-size: 19px; line-height: 1.3;
  color: var(--heading); margin-bottom: 14px; min-height: 2.6em;
}
.doctor-list { display: grid; gap: 10px; }
.doctor-item {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.doctor-item:last-child { border-bottom: none; padding-bottom: 0; }
.doctor-name { font-weight: 700; font-size: 14.5px; color: var(--heading); }
.doctor-specialty { font-size: 13px; color: #6A7A82; text-align: right; }
.doctor-list-extra {
  display: none; grid-template-columns: 1fr; gap: 10px; margin-top: 10px; padding-top: 10px;
}
.hospital-card.expanded .doctor-list-extra { display: grid; }
.view-more-btn {
  margin-top: auto; width: 100%; background: none; border: 1px solid #DCEAEE; color: var(--teal);
  padding: 11px; border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.view-more-btn:hover { background: #F6FAFB; }
.view-more-btn .chevron { transition: transform 0.2s ease; }
.hospital-card.expanded .view-more-btn .chevron { transform: rotate(180deg); }

/* CTA */
.cta-section { background: var(--teal); color: #fff; }
.cta-section .inner { max-width: 1400px; margin: 0 auto; padding: 82px 28px; text-align: center; }
.cta-section h2 {
  font-family: Newsreader, serif; font-weight: 500; font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.1; margin: 0 auto; max-width: 22em; color: #fff;
}
.cta-section > .inner > p { font-size: 18px; line-height: 1.6; color: #C7DFE7; margin: 20px auto 0; max-width: 34em; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.btn-cta-solid { background: var(--green); color: #fff; padding: 15px 24px; border-radius: 11px; font-weight: 700; font-size: 15.5px; }
.btn-cta-solid:hover { background: var(--green-dark); color: #fff; }
.btn-cta-outline {
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff; padding: 15px 24px; border-radius: 11px; font-weight: 700; font-size: 15.5px;
}
.btn-cta-outline:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.cta-actions a { display: inline-flex; align-items: center; justify-content: center; text-align: center; }

/* Footer */
.site-footer { background: #0E2A34; color: #93AAB3; }
.site-footer .inner { max-width: 1400px; margin: 0 auto; padding: 54px 28px 34px; display: flex; flex-wrap: wrap; gap: 40px; }
.footer-brand { flex: 1 1 320px; }
.footer-logo { height: 38px; width: auto; display: block; background: #fff; padding: 8px 12px; border-radius: 8px; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; margin: 16px 0 0; max-width: 30em; }
.footer-col { flex: 0 1 240px; font-size: 14.5px; line-height: 2; }
.footer-col .heading { color: #fff; font-weight: 700; margin-bottom: 6px; }
.footer-col a { color: #93AAB3; }
.footer-legal { border-top: 1px solid #1C3D48; }
.footer-legal .inner { max-width: 1400px; margin: 0 auto; padding: 22px 28px 40px; font-size: 12.5px; line-height: 1.65; color: #7B939C; }
.footer-legal p { margin: 0 0 8px; }
.footer-legal p:last-child { margin: 0; }
.footer-legal strong { color: #A9BFC7; }
.footer-meta { border-top: 1px solid #1C3D48; }
.footer-meta .inner {
  max-width: 1400px; margin: 0 auto; padding: 16px 28px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 12.5px; color: #7B939C;
}
.footer-meta p { margin: 0; }
.footer-credit a { font-weight: 700; color: #A9BFC7; }
.footer-credit a:hover { color: var(--green); }

/* Sticky action bar */
.sticky-bar {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; display: none; flex-direction: column; gap: 14px;
}
.sticky-bar.visible { display: flex; }
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(18, 51, 63, 0.5); transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 26px; height: 26px; }
.fab-call { background: var(--teal); }
.fab-call:hover { background: var(--teal-dark); }
.fab-whatsapp { background: var(--green); }
.fab-whatsapp:hover { background: var(--green-dark); }
.fab-opinion { background: #fff; border: 1px solid #DCEAEE; }
.fab-opinion:hover { background: #EAF3E1; }

/* ============================================================
   Responsive
   ============================================================ */

html { overflow-x: hidden; }
body { overflow-x: hidden; }
img { max-width: 100%; }

/* Tablet */
@media (max-width: 900px) {
  .hero { padding: 40px 20px 34px; gap: 32px; }
  .hero h1 { max-width: none; }
  .why-section .inner,
  .services-section,
  .treatments-section .inner,
  .journey-section,
  .trust-section .inner,
  .markets-section .inner,
  .seo-section,
  .serp-section .inner,
  .partners-section,
  .cta-section .inner {
    padding-top: 56px; padding-bottom: 56px;
  }
  .treatments-head { align-items: flex-start; }
}

/* Mobile */
@media (max-width: 640px) {
  .site-header .inner { padding: 12px 16px; gap: 0px; }
  .logo { height: 32px; }
  .call-label-full { display: none; }
  .call-label-short { display: inline; }
  .call-btn { padding: 7px 13px; gap: 6px; font-size: 13px; }
  .call-btn svg { width: 13px; height: 13px; }

  .hero-section { background: var(--bg); }
  .hero { padding: 0 0 22px; gap: 0; }
  .hero-copy { flex: 1 1 100%; min-width: 0; }

  .hero-visual {
    padding: 20px 16px 18px;
    background:
      linear-gradient(100deg, rgba(250, 248, 244, 0.92) 0%, rgba(250, 248, 244, 0.82) 48%, rgba(250, 248, 244, 0.6) 100%),
      url("assets/hero.png") center 28% / cover no-repeat;
  }
  .hero-visual .badge { font-size: 11px; padding: 6px 12px; }
  .hero-visual h1 { margin-top: 14px; }
  .hero h1 { font-size: clamp(21px, 7vw, 27px); max-width: none; color: var(--heading); }
  .hero h1 em { color: var(--teal); }
  .hero p.lead { font-size: 13.5px; line-height: 1.55; margin-top: 10px; max-width: none; color: var(--muted); }

  .hero-actions { flex-direction: column; margin: 18px 16px 0; }
  .hero-actions .btn { width: 100%; padding: 12px 18px; font-size: 14px; }
  .step-grid { grid-template-columns: repeat(2, 1fr); margin: 18px 16px 0; }
  .step-grid .step { padding: 12px 10px; }
  .step .step-num { font-size: 10px; }
  .step .step-title { font-size: 13px; margin-top: 5px; }
  .lead-form-card { padding: 20px; border-radius: 16px; flex: 1 1 100%; min-width: 0; margin: 22px 16px 0; }

  .why-intro, .why-cards,
  .trust-intro, .trust-list {
    min-width: 0; flex-basis: 100%;
  }

  .why-section .inner,
  .services-section,
  .treatments-section .inner,
  .journey-section,
  .trust-section .inner,
  .markets-section .inner,
  .seo-section,
  .serp-section .inner,
  .partners-section,
  .cta-section .inner,
  .site-footer .inner,
  .footer-legal .inner {
    padding-left: 18px; padding-right: 18px;
  }
  .why-section .inner,
  .services-section,
  .treatments-section .inner,
  .journey-section,
  .trust-section .inner,
  .seo-section,
  .serp-section .inner,
  .partners-section,
  .cta-section .inner {
    padding-top: 46px; padding-bottom: 46px;
  }
  .markets-section .inner { padding-top: 40px; padding-bottom: 40px; }

  .why-section h2,
  .services-section h2,
  .treatments-head h2,
  .journey-section h2,
  .trust-section h2,
  .partners-section h2 {
    font-size: clamp(24px, 7.5vw, 30px);
  }
  .services-section > p,
  .why-intro p,
  .trust-intro > p,
  .partners-section > .inner > p { font-size: 15.5px; }

  .services-grid { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: 1fr; }
  .journey-grid { gap: 20px 24px; }
  .hospital-grid { grid-template-columns: 1fr; }
  .doctor-item { flex-direction: column; align-items: flex-start; gap: 2px; }
  .doctor-specialty { text-align: left; }

  .serp-card { padding: 18px 16px; }
  .serp-title { font-size: 17px; }

  .cta-section h2 { font-size: clamp(26px, 8vw, 36px); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions a { width: 100%; }

  .site-footer .inner {
    display: grid; grid-template-columns: 1fr 1fr; column-gap: 16px; row-gap: 24px;
    padding: 32px 18px 18px;
  }
  .footer-brand { grid-column: 1 / -1; flex: none; }
  .footer-logo { height: 30px; padding: 6px 10px; }
  .footer-brand p { font-size: 13px; margin-top: 10px; }
  .footer-col { flex: none; font-size: 13px; line-height: 1.7; }
  .footer-col .heading { font-size: 13px; margin-bottom: 4px; }
  .footer-legal { display: none; }
}

/* Small phones */
@media (max-width: 400px) {
  .step-grid { grid-template-columns: 1fr; }
  .keyword-links { grid-template-columns: 1fr; }
  .sticky-bar { right: 14px; bottom: 14px; gap: 10px; }
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 22px; height: 22px; }
}
