:root {
  --primary: #0ab7ee;
  --primary-dark: #0789cc;
  --primary-deep: #0b71ae;
  --text: #2d2d2d;
  --muted: #6d7580;
  --bg: #f2f4f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(13, 69, 102, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f4f4f4;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, textarea { font: inherit; }
body.menu-open { overflow: hidden; }

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #0caee4, #0c8ac7);
  color: #fff;
  font-size: 13px;
}
.topbar-inner,
.nav-wrap,
.topbar-left,
.social-mini,
.hero-actions,
.strip-grid,
.stats,
.price-grid,
.why-grid,
.footer-grid,
.contact-grid,
.about-grid,
.hero-grid,
.promo-inner,
.service-grid,
.gallery-grid {
  display: flex;
}
.topbar-inner {
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left {
  flex-wrap: wrap;
  gap: 18px;
}
.social-mini {
  gap: 8px;
}
.social-mini a,
.social-rail a,
.social-rounds a,
.float-wa {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 113, 174, 0.08);
}
.nav-wrap {
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #11bdf1, #0486ca);
  box-shadow: 0 10px 24px rgba(5, 129, 193, 0.25);
}
.brand-icon span {
  position: absolute;
  background: #fff;
  border-radius: 2px;
}
.brand-icon span:nth-child(1) {
  width: 24px; height: 18px; left: 15px; top: 18px; border-radius: 6px;
}
.brand-icon span:nth-child(2) {
  width: 4px; height: 24px; left: 25px; top: 13px;
}
.brand-icon span:nth-child(3) {
  width: 24px; height: 4px; left: 15px; top: 23px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.brand-copy strong {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand-copy small {
  color: var(--primary-dark);
  font-size: 0.75rem;
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}
.nav .btn {
  white-space: nowrap;
}
.nav a:not(.btn) {
  position: relative;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
  color: var(--primary-deep);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(10, 183, 238, 0.28);
}
.btn-outline {
  border: 1.5px solid var(--primary-dark);
  color: var(--primary-dark);
}
.btn.small {
  padding: 11px 18px;
  font-size: 14px;
}
.pulse {
  animation: pulseGlow 2.2s infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 183, 238, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(10, 183, 238, 0); }
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.12), transparent 20%),
    linear-gradient(125deg, #049cd8 0%, #09b5ef 45%, #0b8dcc 100%);
  color: #fff;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  animation: drift 16s linear infinite;
}
.hero::before { width: 280px; height: 280px; right: -80px; top: 80px; }
.hero::after { width: 160px; height: 160px; left: -60px; bottom: 40px; animation-duration: 11s; }
@keyframes drift {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(15deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,114,173,0.18), transparent 55%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  min-height: 650px;
  gap: 34px;
}
.hero-copy,
.hero-visual { flex: 1 1 0; }
.hero-copy,
.hero-visual,
.about-copy,
.contact-panel,
.form-panel {
  min-width: 0;
}
.hero-copy { max-width: 560px; padding: 64px 0; }
.hero-dots {
  display: flex; gap: 10px; margin-bottom: 26px;
}
.hero-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.9);
  animation: blink 1.6s infinite;
}
.hero-dots span:nth-child(2){ animation-delay: .2s; }
.hero-dots span:nth-child(3){ animation-delay: .4s; }
.hero-dots span:nth-child(4){ animation-delay: .6s; }
@keyframes blink { 50% { opacity: .35; transform: translateY(-3px); } }
.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: .95;
  letter-spacing: -0.045em;
}
.hero-subtitle {
  margin: 12px 0 20px;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 600;
}
.hero-subtitle span {
  color: #dff8ff;
  text-decoration: underline 3px rgba(255,255,255,.5);
  text-underline-offset: 7px;
}
.hero-text {
  max-width: 520px;
  color: rgba(255,255,255,.92);
  line-height: 1.75;
}
.hero-actions {
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.wa-box {
  display: grid;
  gap: 4px;
}
.wa-box small { text-transform: uppercase; opacity: .78; letter-spacing: .16em; }
.wa-box strong { font-size: 1.25rem; }
.hero-meta {
  margin-top: 26px;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}
.hero-visual {
  position: relative;
  min-height: 540px;
}
.badge-stack {
  position: absolute;
  left: 10px;
  top: 110px;
  z-index: 3;
  display: grid;
  gap: 16px;
}
.hero-badge {
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: var(--primary-deep);
  font-size: 1.7rem;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(2, 76, 121, .15);
  animation: slideX .9s ease both;
}
.hero-badge span {
  width: 16px; height: 16px; border-radius: 50%; background: var(--primary);
}
.delay-1 { animation-delay: .12s !important; transition-delay: .12s; }
.delay-2 { animation-delay: .24s !important; transition-delay: .24s; }
.delay-3 { animation-delay: .36s !important; transition-delay: .36s; }
@keyframes slideX {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.doctor-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  filter: drop-shadow(0 28px 40px rgba(0, 47, 78, 0.22));
}
.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  mix-blend-mode: screen;
}
.floaty { animation: floatY 4.5s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.social-rail {
  position: absolute;
  right: 16px;
  top: 160px;
  z-index: 3;
  display: grid;
  gap: 12px;
}
.social-rail a { background: rgba(255,255,255, .26); }

.contact-strip {
  margin-top: -24px;
  position: relative;
  z-index: 3;
}
.strip-grid {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  gap: 12px;
  padding: 14px;
  align-items: stretch;
  justify-content: space-between;
}
.strip-item {
  flex: 1 1 0;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f9fdff);
}
.strip-item b {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(10,183,238,.12); color: var(--primary-deep);
}
.strip-item p { margin: 3px 0 0; color: var(--muted); font-size: .95rem; }

.section { padding: 90px 0; }
.sky-bg {
  background: linear-gradient(135deg, #08b9ee, #0b8fcc);
}
.soft-bg { background: #f3f3f3; }
.section-head {
  text-align: center;
  margin-bottom: 42px;
}
.eyebrow {
  display: inline-block;
  color: var(--primary-dark);
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.section-head h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.03em;
}

.service-grid {
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.service-card {
  flex: 1 1 160px;
  max-width: 175px;
  min-height: 182px;
  background: var(--white);
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover,
.price-card:hover,
.why-card:hover,
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(5, 74, 114, .16);
}
.service-icon {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; font-size: 1.45rem;
  border: 6px solid rgba(10, 183, 238, 0.18); background: #fff; color: var(--primary-dark);
}
.service-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }

.price-grid {
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.price-card {
  position: relative;
  width: min(340px, 100%);
  background: rgba(255,255,255,.97);
  border-radius: 24px;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 24px 45px rgba(0, 53, 88, 0.16);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card.featured {
  transform: translateY(-14px);
}
.coin {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: -66px auto 18px;
  border: 7px solid rgba(255,255,255,.55);
  box-shadow: inset 0 8px 18px rgba(255,255,255,.35), 0 12px 18px rgba(5, 86, 129, .12);
}
.silver { background: radial-gradient(circle at 30% 30%, #f6f6f6, #9ca4af 65%, #dfe4e9); }
.gold { background: radial-gradient(circle at 30% 30%, #fff6c7, #d4a629 65%, #f2d35e); }
.platinum { background: radial-gradient(circle at 30% 30%, #ffffff, #bcc7d6 60%, #edf1f6); }
.price-card h3 { margin: 0 0 16px; font-size: 2rem; color: #20345c; }
.price-feature {
  min-height: 60px;
  border: 1px solid rgba(11,113,174,.22);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--muted);
  margin-bottom: 16px;
}
.price {
  font-size: 1.45rem;
  font-weight: 800;
  color: #15365b;
  margin-bottom: 18px;
}

.promo-banner {
  background: linear-gradient(120deg, #0a95d5, #08b7ee);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 55%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 60%);
}
.promo-inner {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 190px;
}
.promo-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -.03em;
}
.promo-inner p { margin: 0; font-size: 1.25rem; }
.promo-mark {
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-size: 1.25rem;
  backdrop-filter: blur(8px);
}

.about-grid {
  align-items: center;
  gap: 40px;
}
.about-photo {
  flex: 0 0 min(490px, 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { flex: 1 1 0; }
.about-copy p {
  color: var(--muted);
  line-height: 1.85;
}
.stats {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.stat-box {
  flex: 1 1 160px;
  background: #fff;
  padding: 18px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.stat-box strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.stat-box span { color: var(--muted); font-size: .95rem; }

.why-grid {
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.why-card {
  width: min(340px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.why-icon {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(10,183,238,.12); color: var(--primary-dark); font-size: 1.5rem;
}

.gallery-grid {
  gap: 16px;
  flex-wrap: wrap;
}
.gallery-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 180px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  min-height: 170px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  transition: transform .55s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-copy-card {
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #e8f9ff, #ffffff);
}
.gallery-copy-card h3 { margin: 0 0 10px; color: #17355a; }
.gallery-copy-card p { margin: 0; color: var(--muted); }

.contact-grid {
  align-items: start;
  gap: 28px;
}
.contact-panel,
.form-panel {
  flex: 1 1 0;
}
.panel-title {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #08b6ee, #0c8dcc);
  color: #fff;
  font-size: .9rem;
  letter-spacing: .08em;
}
.contact-box,
.contact-form {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 26px;
  border-radius: 0 18px 18px 18px;
}
.social-card {
  min-height: 360px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.social-rounds {
  display: flex;
  gap: 10px;
}
.social-rounds a {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  width: 38px; height: 38px;
}
.contact-line {
  flex: 1 1 240px;
  display: grid;
  place-items: center;
  min-height: 42px;
  padding-left: 24px;
  border-left: 1px solid rgba(0,0,0,.12);
  font-size: 1.1rem;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea,
.footer-search input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d5dde6;
  border-radius: 10px;
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.footer-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10,183,238,.12);
}
.contact-form textarea { resize: vertical; }

.footer {
  background: #2f3246;
  color: rgba(255,255,255,.9);
  padding-top: 36px;
}
.footer-grid {
  gap: 26px;
  align-items: start;
  flex-wrap: wrap;
}
.footer-grid > div {
  flex: 1 1 220px;
}
.footer .brand-copy small { color: #85dfff; }
.footer p,
.footer li {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 6px;
}
.footer-search input {
  border: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.footer-search button {
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.copyright {
  padding: 18px 16px 24px;
  margin-top: 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
  color: rgba(255,255,255,.72);
}

.float-wa {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #28cc63, #08a94a);
  box-shadow: 0 18px 30px rgba(6, 133, 54, .25);
  font-size: 1.5rem;
}
.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: #20345c;
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.left { transform: translateX(-38px); }
.reveal.right { transform: translateX(38px); }
.reveal.zoom { transform: scale(.92); }
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .promo-inner {
    flex-direction: column;
  }
  .hero-grid {
    min-height: auto;
    padding: 48px 0 24px;
    justify-content: center;
  }
  .hero-copy {
    max-width: 100%;
    padding: 0;
  }
  .hero-visual { width: 100%; min-height: 500px; }
  .doctor-card { left: auto; right: 0; }
  .badge-stack { left: 0; top: 60px; }
  .promo-inner { text-align: center; }
  .contact-strip { margin-top: -12px; }
  .social-rail { display: none; }
}

@media (max-width: 860px) {
  .section { padding: 74px 0; }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .social-mini {
    width: 100%;
    justify-content: flex-start;
  }
  .nav-wrap {
    position: relative;
    min-height: 72px;
    gap: 14px;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(10, 183, 238, 0.1);
    font-size: 28px;
  }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    background: rgba(255,255,255,.98);
    border-radius: 22px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a,
  .nav .btn {
    width: 100%;
    justify-content: flex-start;
  }
  .nav a:not(.btn)::after { display: none; }
  .hero-visual { min-height: 430px; }
  .doctor-card {
    width: min(330px, 100%);
    height: 400px;
    margin-inline: auto;
  }
  .hero-badge {
    width: min(180px, 100%);
    font-size: 1.35rem;
  }
  .strip-grid { flex-direction: column; }
  .gallery-item { flex-basis: calc(50% - 16px); }
  .topbar-left { gap: 10px; }
  .contact-box,
  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 580px) {
  html { scroll-padding-top: 88px; }
  .container { width: min(100% - 24px, 1140px); }
  .section { padding: 62px 0; }
  .topbar {
    font-size: 12px;
  }
  .topbar-inner {
    align-items: flex-start;
    padding: 8px 0;
    gap: 10px;
  }
  .topbar-left { flex-direction: column; gap: 6px; }
  .social-mini {
    gap: 6px;
    flex-wrap: wrap;
  }
  .brand-copy strong { font-size: 1.05rem; }
  .nav-wrap { min-height: 68px; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding: 24px 0 0; }
  .hero-text,
  .hero-meta {
    max-width: none;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .wa-box {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
  }
  .hero-visual {
    min-height: 360px;
    display: grid;
    align-items: end;
  }
  .badge-stack { position: static; margin: 0 0 18px; }
  .hero-badge { width: min(100%, 210px); }
  .doctor-card {
    position: relative;
    width: 100%;
    height: 300px;
    justify-content: center;
  }
  .doctor-card img { width: min(100%, 300px); }
  .contact-strip {
    margin-top: 0;
    padding-top: 18px;
  }
  .strip-grid { padding: 12px; }
  .service-grid,
  .price-grid,
  .why-grid,
  .gallery-grid,
  .footer-grid {
    gap: 18px;
  }
  .service-card {
    max-width: 100%;
    flex-basis: 100%;
    min-height: auto;
  }
  .price-card {
    padding: 28px 20px 24px;
  }
  .price-card.featured { transform: none; }
  .price-card h3 { font-size: 1.7rem; }
  .promo-inner {
    min-height: auto;
    padding: 48px 0;
    align-items: flex-start;
    text-align: left;
  }
  .promo-mark {
    font-size: 1rem;
    padding: 12px 18px;
  }
  .gallery-item { flex-basis: 100%; }
  .contact-box,
  .contact-form {
    padding: 18px;
    border-radius: 0 16px 16px 16px;
  }
  .social-card {
    min-height: 0;
  }
  .contact-line {
    width: 100%;
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,.12);
    padding: 16px 0 0;
    place-items: start;
    font-size: 1rem;
  }
  .stats { flex-direction: column; }
  .footer-search { width: 100%; }
  .footer-search button {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
  .float-wa {
    width: 54px;
    height: 54px;
    left: 14px;
    bottom: 14px;
  }
  .toast { left: 12px; right: 12px; bottom: 84px; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 0.98rem; }
  .hero h1 {
    font-size: clamp(2.3rem, 14vw, 3.2rem);
  }
  .hero-subtitle { font-size: 1rem; }
  .hero-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .hero-badge {
    font-size: 1.08rem;
    padding: 11px 14px;
  }
  .wa-box strong { font-size: 1.05rem; }
  .promo-inner h2 { font-size: 1.9rem; }
}
