:root{
  --blue:#0d4f86;
  --blue-dark:#07345f;
  --blue-strong:#006fb3;
  --teal:#109aaa;
  --teal-2:#23c4c0;
  --aqua:#e8f8fb;
  --aqua-2:#d8f2f4;
  --ink:#12284a;
  --muted:#6f7f91;
  --line:#dbe7ef;
  --bg:#f6fafb;
  --white:#fff;
  --shadow:0 18px 48px rgba(13,79,134,.13);
  --font-body:"Inter","Segoe UI",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
}

body{
  color:var(--ink);
  background:#fff;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(13,79,134,.1);
  backdrop-filter:blur(16px);
}

.nav{
  min-height:98px;
  display:grid;
  grid-template-columns:230px 1fr auto;
  align-items:center;
  gap:26px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--blue);
}

.logo-brand img{
  width:210px;
  height:auto;
  object-fit:contain;
}

.brand-mark{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  color:var(--blue-strong);
}

.brand strong{
  display:block;
  font-size:2rem;
  line-height:.9;
  letter-spacing:-.03em;
}

.brand small{
  display:block;
  color:var(--blue-dark);
  font-size:.68rem;
  font-weight:800;
  margin-top:4px;
}

.nav-menu{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
  font-size:.95rem;
  font-weight:700;
}

.nav-menu a{
  position:relative;
  color:#1b2942;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-17px;
  height:4px;
  border-radius:999px;
  background:var(--blue-strong);
  transform:scaleX(0);
  transform-origin:left;
  transition:.22s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{transform:scaleX(1)}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--teal),#0278a7);
  box-shadow:0 14px 26px rgba(16,154,170,.22);
}

.btn-outline{
  color:var(--blue);
  background:#f7fdff;
  border:2px solid var(--teal);
  box-shadow:none;
}

.btn-whatsapp{
  color:#fff;
  background:#18b85e;
  box-shadow:0 12px 24px rgba(24,184,94,.18);
}

.btn-sm{padding:12px 20px;font-size:.92rem}
.btn-icon{font-size:1.05rem}
.btn-svg{
  width:19px;
  height:19px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  margin:5px auto;
  background:var(--blue);
  border-radius:999px;
}

.hero{
  position:relative;
  overflow:hidden;
  min-height:545px;
  background:
    linear-gradient(90deg,rgba(219,247,249,.98) 0%,rgba(219,247,249,.88) 44%,rgba(219,247,249,.18) 62%,rgba(255,255,255,0) 78%),
    linear-gradient(180deg,#eefbfc 0%,#e2f5f7 100%);
}

.hero-slider{
  position:relative;
  min-height:545px;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:translateX(24px);
  transition:opacity .55s ease,transform .55s ease,visibility .55s ease;
}

.hero-slide.is-active{
  position:relative;
  opacity:1;
  visibility:visible;
  transform:none;
  z-index:2;
}

.hero-grid{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  align-items:center;
  min-height:545px;
  gap:20px;
}

.hero-copy{
  position:relative;
  z-index:2;
  padding:50px 0 90px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  color:var(--teal);
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hero-kicker::before{
  content:"";
  width:34px;
  height:3px;
  border-radius:999px;
  background:var(--teal);
}

.hero h1{
  max-width:560px;
  margin:0;
  color:#112a5a;
  font-size:clamp(2.8rem,5.2vw,3rem);
  line-height:1.03;
  letter-spacing:-.045em;
  font-weight:900;
}

.hero h1 span{color:var(--teal)}
.hero p{
  max-width:465px;
  margin:28px 0 0;
  color:#36516b;
  font-size:1.28rem;
  line-height:1.55;
}

.hero-actions{
  display:flex;
  gap:18px;
  margin-top:32px;
  flex-wrap:wrap;
}

.hero-photo{
  position:relative;
  align-self:stretch;
  min-height:545px;
  margin-right:calc((1180px - 100vw) / 2);
}

.hero-photo::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,rgba(232,248,251,.8),rgba(255,255,255,0) 34%);
  pointer-events:none;
}

.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.hero-slide:not(:first-child) .hero-photo{
  display:grid;
  place-items:center;
  padding:72px 0 84px 70px;
}

.hero-slide:not(:first-child) .hero-photo::before{
  inset:0 auto 0 0;
  width:42%;
}

.hero-slide:not(:first-child) .hero-photo img{
  width:min(620px,92%);
  height:360px;
  border:14px solid #fff;
  border-radius:28px;
  box-shadow:0 28px 60px rgba(13,79,134,.18);
}

.hero-controls{
  position:absolute;
  left:50%;
  bottom:24px;
  z-index:6;
  display:flex;
  align-items:center;
  gap:13px;
  transform:translateX(-50%);
}

.hero-arrow{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border:1px solid rgba(13,79,134,.14);
  border-radius:50%;
  background:rgba(255,255,255,.9);
  color:var(--blue);
  box-shadow:0 12px 28px rgba(13,79,134,.12);
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  transition:.2s ease;
}

.hero-arrow:hover{
  color:#fff;
  background:var(--teal);
  transform:translateY(-2px);
}

.hero-dots{
  display:flex;
  gap:9px;
  padding:11px 14px;
  border:1px solid rgba(13,79,134,.1);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(12px);
}

.hero-dots button{
  width:10px;
  height:10px;
  padding:0;
  border:0;
  border-radius:50%;
  background:#a9cfda;
  cursor:pointer;
}

.hero-dots button.is-active{
  width:26px;
  border-radius:999px;
  background:var(--teal);
}

.hero-modern{
  min-height:640px;
  background:
    radial-gradient(circle at 72% 24%,rgba(35,196,192,.18),transparent 28%),
    linear-gradient(135deg,#f8fdff 0%,#e5f8fa 46%,#ffffff 100%);
}

.hero-modern-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(440px,1.08fr);
  align-items:center;
  gap:58px;
  min-height:640px;
  padding:42px 0 72px;
}

.hero-modern .hero-copy{
  padding:0;
}

.hero-modern .hero h1,
.hero-modern h1{
  max-width:610px;
}

.hero-trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:610px;
  margin-top:34px;
}

.hero-trust article{
  padding:18px 16px;
  border:1px solid rgba(13,79,134,.12);
  border-radius:16px;
  background:rgba(255,255,255,.76);
  box-shadow:0 12px 26px rgba(13,79,134,.08);
}

.hero-trust strong{
  display:block;
  color:var(--teal);
  font-size:1.75rem;
  line-height:1;
}

.hero-trust span{
  display:block;
  margin-top:8px;
  color:#52697c;
  font-size:.82rem;
  line-height:1.35;
  font-weight:700;
}

.hero-showcase{
  position:relative;
  min-height:500px;
  isolation:isolate;
}

.hero-showcase-bg{
  position:absolute;
  inset:34px 0 22px 72px;
  z-index:-1;
  border-radius:38px;
  background:linear-gradient(135deg,var(--blue),var(--teal));
  box-shadow:0 34px 70px rgba(13,79,134,.18);
}

.hero-showcase-bg::after{
  content:"";
  position:absolute;
  inset:22px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
}

.hero-visual-slider{
  position:relative;
  width:min(590px,100%);
  height:430px;
  margin:22px 0 0 auto;
}

.hero-visual-slide{
  position:absolute;
  inset:0;
  margin:0;
  opacity:0;
  visibility:hidden;
  transform:translateX(20px) scale(.985);
  transition:opacity .5s ease,transform .5s ease,visibility .5s ease;
}

.hero-visual-slide.is-active{
  opacity:1;
  visibility:visible;
  transform:none;
}

.hero-visual-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  border:14px solid #fff;
  border-radius:34px;
  box-shadow:0 28px 60px rgba(13,79,134,.2);
}

.hero-visual-slide figcaption{
  position:absolute;
  left:32px;
  right:32px;
  bottom:28px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:18px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(12px);
  box-shadow:0 14px 30px rgba(13,79,134,.14);
}

.hero-visual-slide figcaption strong{
  display:block;
  color:#102758;
  font-size:1rem;
}

.hero-visual-slide figcaption span{
  display:block;
  color:#587082;
  font-size:.86rem;
  font-weight:700;
}

.hero-floating-card{
  position:absolute;
  left:8px;
  bottom:72px;
  z-index:5;
  display:flex;
  align-items:center;
  gap:14px;
  width:286px;
  padding:18px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 22px 44px rgba(13,79,134,.16);
}

.hero-floating-card img{
  width:48px;
  height:48px;
  object-fit:contain;
}

.hero-floating-card strong{
  display:block;
  color:#102758;
}

.hero-floating-card span{
  display:block;
  margin-top:3px;
  color:#60768a;
  font-size:.82rem;
  line-height:1.35;
}

.hero-modern .hero-controls{
  position:absolute;
  left:auto;
  right:26px;
  bottom:0;
  transform:none;
}

.benefits{
  position:relative;
  z-index:5;
  margin-top:-58px;
}

.benefits-card{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
}

.benefits-card article{
  min-height:150px;
  padding:30px 34px;
  text-align:center;
  border-right:1px solid var(--line);
}

.benefits-card article:last-child{border-right:0}
.benefits-card article>img{
  width:58px;
  height:58px;
  object-fit:contain;
  margin:0 auto 18px;
}

.benefits-card h3{
  margin:0 0 8px;
  color:#132b55;
  font-size:1.08rem;
}

.benefits-card p{
  max-width:210px;
  margin:0 auto;
  color:var(--muted);
  font-size:.88rem;
  line-height:1.55;
}

.section-title{
  text-align:center;
  margin-bottom:38px;
}

.section-title span,
.section-kicker{
  display:block;
  color:var(--teal);
  font-size:.83rem;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:6px;
}

.section-title h2,
.team-copy h2{
  position:relative;
  display:inline-block;
  margin:0;
  color:#102758;
  font-size:clamp(2.15rem,3vw,3.15rem);
  line-height:1.08;
  letter-spacing:-.035em;
  font-weight:900;
}

.section-title h2::after,
.team-copy h2::after{
  content:"";
  display:block;
  width:46px;
  height:4px;
  margin:14px auto 0;
  border-radius:999px;
  background:var(--teal);
}

.team-copy h2::after{margin-left:0}

.services{
  background:#fff;
  padding-top:72px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.service-card{
  padding:26px 16px 16px;
  border:1px solid rgba(13,79,134,.12);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 34px rgba(13,79,134,.09);
}

.service-head{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:14px;
  align-items:start;
  min-height:140px;
  padding:0 8px;
}

.service-head span{
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.service-head img{
  width:54px;
  height:54px;
  object-fit:contain;
}

.service-head h3{
  margin:4px 0 8px;
  color:#172b55;
  font-size:1.08rem;
}

.service-head p{
  margin:0;
  color:var(--muted);
  font-size:.83rem;
  line-height:1.55;
}

.service-photo{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:14px;
}

.team{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#edf9fb 0%,#f8fdff 52%,#fff 100%);
}

.team::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  left:-180px;
  top:-160px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(35,196,192,.18),transparent 68%);
}

.team-grid{
  position:relative;
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:58px;
  align-items:center;
  min-height:520px;
  padding:70px 0;
}

.doctor-card{
  position:relative;
  align-self:center;
  min-height:430px;
  border-radius:34px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.7),rgba(255,255,255,.96)),
    linear-gradient(135deg,#dff7fb,#ffffff);
  box-shadow:0 30px 70px rgba(13,79,134,.14);
  overflow:hidden;
}

.doctor-card::before{
  content:"";
  position:absolute;
  left:28px;
  right:28px;
  bottom:22px;
  height:58%;
  border-radius:32px;
  background:linear-gradient(135deg,var(--blue-strong),var(--teal));
  opacity:.12;
}

.doctor-photo{
  position:absolute;
  inset:0 0 0 0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.doctor-photo img{
  width:92%;
  height:100%;
  max-height:none;
  object-fit:cover;
  object-position:bottom center;
  border-radius:28px;
}

.doctor-badge{
  position:absolute;
  left:24px;
  bottom:24px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.7);
  border-radius:18px;
  background:rgba(255,255,255,.9);
  box-shadow:0 16px 34px rgba(13,79,134,.14);
  backdrop-filter:blur(12px);
}

.doctor-badge strong{
  color:var(--teal);
  font-size:1.8rem;
  line-height:1;
}

.doctor-badge span{
  max-width:92px;
  color:#52697c;
  font-size:.78rem;
  font-weight:800;
  line-height:1.2;
}

.team-copy{
  padding:0;
}

.team-copy h3{
  margin:28px 0 12px;
  color:#111b2f;
  font-size:1.35rem;
}

.team-copy p{
  max-width:650px;
  color:#5d6f81;
  line-height:1.72;
}

.team-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 28px;
}

.team-highlights span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:8px 13px;
  border:1px solid rgba(16,154,170,.18);
  border-radius:999px;
  color:var(--blue);
  background:#fff;
  font-size:.86rem;
  font-weight:800;
}

.results{
  padding-top:82px;
  padding-bottom:68px;
  background:#fff;
}

.result-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:42px;
}

.result-card{
  position:relative;
}

.result-card img{
  width:100%;
  height:126px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 10px 24px rgba(13,79,134,.1);
}

.result-card span{
  position:static;
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:10px;
  padding:0;
  border-radius:999px;
  color:#4e6375;
  background:transparent;
  font-size:.8rem;
  font-weight:800;
}

.result-card span::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue-strong),var(--teal-2));
}

.testimonials{
  color:#fff;
  background:
    radial-gradient(circle at 92% 86%,rgba(255,255,255,.1),transparent 22%),
    linear-gradient(135deg,#084a7e,#00609d 62%,#0c7e9f);
}

.section-title.light h2,
.section-title.light span{color:#fff}
.section-title.light h2::after{background:var(--teal-2)}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.testimonial-card{
  min-height:170px;
  padding:28px;
  border-radius:14px;
  background:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,.16);
  color:var(--ink);
}

.testimonial-card strong{
  display:block;
  height:22px;
  color:var(--teal);
  font-size:3rem;
  line-height:.4;
}

.testimonial-card p{
  margin:8px 0 24px;
  color:#46596c;
  font-size:.98rem;
  font-style:italic;
  line-height:1.6;
}

.patient{
  display:flex;
  align-items:center;
  gap:13px;
}

.patient span{
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,#d8e6ee,#91a7b4);
}

.patient b{display:block;color:#16284b}
.patient small{
  display:inline-flex;
  margin-top:3px;
  color:#f8b21a;
  font-size:1.08rem;
  letter-spacing:2px;
  line-height:1;
  text-shadow:0 1px 0 rgba(255,255,255,.45);
}

.contact{
  background:#fff;
}

.contact .section-title{margin-bottom:26px}

.contact-grid{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:45px;
  align-items:start;
}

.contact-info{
  padding-top:8px;
}

.contact-info h3{
  margin:0 0 16px;
  color:var(--blue-strong);
  font-size:1rem;
  letter-spacing:.03em;
}

.contact-info p{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:0 0 12px;
  color:#526779;
}

.contact-info p img{
  width:20px;
  height:20px;
  object-fit:contain;
  margin-top:2px;
}

.contact-info .btn{width:auto;margin-top:4px}

.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #d7e1e8;
  border-radius:7px;
  padding:15px 18px;
  color:#21394d;
  outline:none;
  background:#fff;
}

.contact-form textarea,
.contact-form button{
  grid-column:1 / -1;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--teal);
  box-shadow:0 0 0 4px rgba(16,154,170,.1);
}

.location{
  margin-top:52px;
}

.location .section-title{
  margin-bottom:22px;
}

.map-grid{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:30px;
  align-items:stretch;
}

.map-img,
.map-frame{
  width:100%;
  min-height:288px;
  height:100%;
  object-fit:cover;
  border:0;
  border-radius:12px;
  box-shadow:0 14px 32px rgba(13,79,134,.1);
}

.map-card{
  padding:24px;
  border:1px solid rgba(13,79,134,.12);
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 30px rgba(13,79,134,.09);
}

.map-card h3{
  margin:0 0 8px;
  color:#123164;
}

.map-card p{
  margin:0 0 13px;
  color:#5b6d7a;
  line-height:1.45;
}

.float-whatsapp{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:60;
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:50%;
  background:#20c86a;
  color:#fff;
  font-weight:900;
  box-shadow:0 14px 26px rgba(32,200,106,.32);
}

.float-whatsapp img{
  width:30px;
  height:30px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.footer{
  padding:28px 0;
  color:#fff;
  background:linear-gradient(90deg,#063b67,#004d83);
}

.footer-inner{
  display:grid;
  grid-template-columns:220px 1fr auto;
  align-items:center;
  gap:24px;
}

.footer .brand{color:#fff}
.footer .brand small{color:#d5f6ff}
.footer .brand-mark,
.footer .brand strong,
.footer .brand small{color:#fff}
.footer .brand-mark{
  width:42px;
  height:42px;
}
.footer .brand strong{
  font-size:1.7rem;
  font-weight:700;
}
.footer .brand small{
  font-weight:500;
  opacity:.86;
}
.footer p{margin:0;text-align:center}
.footer-copy p + p{
  margin-top:10px;
  color:#b9ddec;
  font-size:.78rem;
}
.footer-copy strong{
  color:#d7eef8;
  font-weight:500;
}
.footer-socials{display:flex;gap:12px}
.footer-socials a{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  background:rgba(255,255,255,.1);
}
.footer-socials img{
  width:23px;
  height:23px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.footer .logo-brand img{
  width:160px;
  filter:brightness(0) invert(1);
  opacity:.95;
}

.reveal{opacity:0;transform:translateY(22px);transition:.65s ease}
.reveal.is-visible{opacity:1;transform:none}
.delay-1{transition-delay:.1s}
.delay-2{transition-delay:.18s}

@media(max-width:1040px){
  .nav{grid-template-columns:1fr auto}
  .menu-toggle{display:block;justify-self:end}
  .nav-menu{
    position:absolute;
    left:16px;
    right:16px;
    top:88px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:22px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    box-shadow:var(--shadow);
  }
  .nav-menu.is-open{display:flex}
  .nav-cta{display:none}
  .hero-grid,.team-grid,.contact-grid,.map-grid{grid-template-columns:1fr}
  .hero-modern-grid{
    grid-template-columns:1fr;
    min-height:auto;
    padding:46px 0 86px;
  }
  .hero-showcase{min-height:450px}
  .hero-visual-slider{
    width:100%;
    height:390px;
    margin:0;
  }
  .hero-showcase-bg{inset:34px 0 18px 50px}
  .hero-floating-card{left:22px;bottom:56px}
  .hero-modern .hero-controls{right:22px;bottom:0}
  .hero-slider{min-height:auto}
  .hero-slide{min-height:auto}
  .hero-photo{margin-right:0;min-height:340px}
  .hero-slide:not(:first-child) .hero-photo{
    padding:0 0 88px;
  }
  .hero-slide:not(:first-child) .hero-photo img{
    width:min(680px,100%);
    height:340px;
  }
  .benefits-card,.service-grid,.testimonial-grid,.result-grid{grid-template-columns:repeat(2,1fr)}
  .team-grid{padding:56px 0;gap:34px}
  .doctor-card{min-height:420px}
  .map-grid{grid-template-columns:1fr}
  .map-frame{height:320px}
}

@media(max-width:680px){
  .brand strong{font-size:1.55rem}
  .logo-brand img{width:166px}
  .brand-mark{width:40px;height:40px}
  .hero-grid{min-height:auto}
  .hero-copy{padding:44px 0 28px}
  .hero-modern{min-height:auto}
  .hero-modern-grid{padding:38px 0 34px;gap:28px}
  .hero-modern .hero-copy{padding:0}
  .hero h1{font-size:2.75rem}
  .hero p{font-size:1.05rem}
  .hero-trust{grid-template-columns:1fr;gap:10px;margin-top:24px}
  .hero-trust article{padding:14px}
  .hero-showcase{min-height:420px}
  .hero-showcase-bg{inset:36px 0 56px 26px;border-radius:26px}
  .hero-visual-slider{height:310px}
  .hero-visual-slide img{border-width:8px;border-radius:22px}
  .hero-visual-slide figcaption{
    left:16px;
    right:16px;
    bottom:16px;
    display:block;
    padding:14px;
  }
  .hero-floating-card{
    position:relative;
    left:auto;
    bottom:auto;
    width:100%;
    margin-top:14px;
  }
  .hero-modern .hero-controls{
    position:relative;
    right:auto;
    bottom:auto;
    justify-content:center;
    margin-top:16px;
  }
  .hero-photo{min-height:280px}
  .hero-slide:not(:first-child) .hero-photo{padding-bottom:78px}
  .hero-slide:not(:first-child) .hero-photo img{height:260px;border-width:8px;border-radius:18px}
  .hero-controls{bottom:18px}
  .hero-arrow{width:38px;height:38px}
  .benefits{margin-top:0;padding:22px 0}
  .benefits-card,.service-grid,.testimonial-grid,.result-grid,.contact-form,.footer-inner{grid-template-columns:1fr}
  .benefits-card article{border-right:0;border-bottom:1px solid var(--line)}
  .benefits-card article:last-child{border-bottom:0}
  .service-head{min-height:auto}
  .team-grid{padding:44px 0}
  .doctor-card{min-height:380px}
  .doctor-photo img{width:100%}
  .doctor-badge{left:16px;right:16px;bottom:16px}
  .team-copy{padding:0}
  .team-highlights{display:grid}
  .result-grid{gap:16px}
  .result-card img{height:116px}
  .map-img,.map-frame{height:300px;min-height:300px}
  .footer p{text-align:left}
  .footer-socials{justify-content:flex-start}
}
