:root{
  --bg:#f4f3f5;
  --white:#ffffff;
  --card:#ffffff;
  --line:#e8e5e8;
  --soft:#f7f6f7;
  --soft-2:#f3f2f4;
  --text:#202127;
  --muted:#6f7178;
  --pink:#ec3f8d;
  --pink-dark:#db2d7b;
  --dark:#252932;
  --shadow:0 10px 28px rgba(17, 17, 17, .05);
  --radius:18px;
  --radius-lg:22px;
  --pill:999px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 36px), var(--container));margin:0 auto}

.site-header{
  background:rgba(255,255,255,.95);
  border-bottom:1px solid #eceaec;
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(12px);
}

.logo-only img{
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header-inner{
  min-height:76px;
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:26px;
}
.brand{display:flex;align-items:center;gap:10px}
.brand-icon{
  width:42px;height:42px;border-radius:12px;
  display:grid;place-items:center;
}
.brand-icon img{width:32px;height:32px}
.brand-text strong{display:block;font-size:1rem;line-height:1.05}
.brand-text span{display:block;font-size:.68rem;letter-spacing:.08em;color:#777;text-transform:uppercase;margin-top:4px}
.main-nav{display:flex;justify-content:center;gap:28px}
.main-nav a{
  position:relative;
  color:#4c4f56;
  font-size:.98rem;
  font-weight:600;
  padding:26px 0;
}
.main-nav a.active,
.main-nav a:hover{color:var(--pink)}
.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:3px;border-radius:4px;background:var(--pink);
}
.menu-toggle{
  display:none;
  width:46px;height:46px;border-radius:14px;
  background:#fff;border:1px solid var(--line);font-size:1.2rem;
}

.btn{
  min-height:52px;
  padding:0 24px;
  border-radius:var(--pill);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1rem;
  border:1px solid transparent;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}

.btn-primary{
  color:#fff;
  background:linear-gradient(180deg, #f04b94 0%, var(--pink) 100%);
  box-shadow:0 10px 20px rgba(236,63,141,.22);
}
.btn-white{background:#fff;border-color:#e7e5e8;color:#363840}
.btn-dark{background:#2d313a;color:#fff}
.desktop-cta{justify-self:end}

.hero{padding:0;background:#fff}
.hero-shell{
  display:grid;
  grid-template-columns:48% 52%;
  align-items:stretch;
  min-height:360px;
}
.hero-copy{
  padding:56px 20px 44px 10px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-copy h1{
  font-size:clamp(2.4rem, 4vw, 4.15rem);
  line-height:1.04;
  letter-spacing:-.04em;
  margin:0 0 22px;
}
.hero-copy em{
  font-family:Georgia, "Times New Roman", serif;
  font-style:italic;
  font-weight:400;
  color:#3f4047;
}
.hero-copy p{
  margin:0 0 30px;
  font-size:1.18rem;
  color:#4c4f56;
  line-height:1.5;
  max-width:420px;
}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.hero-media{position:relative;min-height:360px}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.93) 10%, rgba(255,255,255,.75) 22%, rgba(255,255,255,.45) 30%, rgba(255,255,255,0) 44%);
  pointer-events:none;
}

.features-wrap{margin-top:-30px;position:relative;z-index:2}
.features-bar{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:18px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  padding:12px 22px;
}
.feature-item{
  display:flex;align-items:center;gap:16px;
  padding:14px 10px;
}
.feature-item img{width:46px;height:46px;object-fit:contain}
.feature-item h3{
  margin:0 0 5px;
  font-size:1rem;
  line-height:1.12;
}
.feature-item p{
  margin:0;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.35;
}

.section{padding:54px 0}
.section-gray{background:var(--soft-2)}
.section-about{padding-top:46px}
.section-head{margin:0 auto 26px}
.section-head.centered{text-align:center}
.section-head h2{
  margin:0 0 10px;
  font-size:clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing:-.03em;
}
.section-head p{
  margin:0 auto;
  max-width:860px;
  color:var(--muted);
  line-height:1.6;
}
.section-head.compact p{max-width:680px}

.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
}

.studies-layout{
  display:grid;
  grid-template-columns:1.55fr 1fr 1fr 1fr;
  gap:16px;
}
.study-image{
  grid-row:span 2;
  overflow:hidden;
  min-height:300px;
}
.study-image img{
  width:100%;height:100%;object-fit:cover;
}
.study-card{
  min-height:142px;
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.study-card img{
  width:38px;height:38px;object-fit:contain;margin-bottom:14px;
}
.study-card h3{
  margin:0 0 8px;
  font-size:1rem;
}
.study-card p{
  margin:0;color:var(--muted);font-size:.95rem;line-height:1.45;
}

.symptoms-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.symptom-card{
  padding:20px 18px 18px;
  min-height:250px;
}
.symptom-card img{
  width:42px;height:42px;object-fit:contain;margin-bottom:16px;
}
.symptom-card h3{
  margin:0 0 10px;
  font-size:1rem;
  line-height:1.28;
}
.symptom-card p{
  margin:0;
  font-size:.93rem;
  color:var(--muted);
  line-height:1.52;
}
.symptom-card a{
  margin-top:16px;
  display:inline-block;
  color:var(--pink);
  font-weight:700;
  font-size:.95rem;
}

.about-layout{
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:28px;
  align-items:center;
}
.about-copy h2{
  margin:0 0 14px;
  font-size:clamp(2rem, 3.4vw, 3.2rem);
  letter-spacing:-.04em;
  line-height:1.05;
}
.about-copy p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
}
.about-copy ul{
  list-style:none;padding:0;margin:0 0 28px;
}
.about-copy li{
  position:relative;
  padding-left:24px;
  margin:0 0 11px;
  color:#44464d;
}
.about-copy li::before{
  content:"✓";
  position:absolute;left:0;top:0;
  color:var(--pink);font-weight:800;
}
.about-photo img{
  width:100%;height:auto;border-radius:18px;border:1px solid var(--line);box-shadow:var(--shadow)
}

.coverage-box{
  border-radius:18px;
  padding:18px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.coverage-box span{
  color:#7a7c82;
  font-weight:700;
  font-size:clamp(1rem, 1.8vw, 1.75rem);
}
.centered-button{text-align:center;margin-top:18px}

.locations-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.location-card{
  padding:12px;
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:14px;
  align-items:stretch;
}
.location-preview{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.location-preview img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:14px;
}
.location-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.location-info h3{
  margin:0 0 10px;
  font-size:1.08rem;
}
.location-info p{
  margin:0 0 8px;
  color:var(--muted);
  line-height:1.5;
}
.location-info a{
  color:var(--pink);
  font-weight:700;
  margin-top:6px;
}

.cta-section{padding:10px 0 28px}
.cta-band{
  background:linear-gradient(90deg, #c52768 0%, #f03f8c 100%);
  color:#fff;
  border-radius:18px;
  padding:24px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.cta-band h2{
  margin:0 0 6px;
  font-size:2rem;
}
.cta-band p{
  margin:0;
  color:rgba(255,255,255,.92);
}

.site-footer{
  background:#f8f7f8;
  border-top:1px solid var(--line);
  padding:26px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:24px;
}
.footer-brand-col p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.6;
}
.site-footer h4{
  margin:8px 0 14px;
  font-size:1rem;
}
.site-footer a,
.site-footer p{
  display:block;
  margin:0 0 10px;
  color:#6d7077;
}
.footer-copy{
  padding-top:18px;
  margin-top:18px;
  border-top:1px solid var(--line);
  text-align:center;
  color:#8a8c91;
  font-size:.92rem;
}

/* responsive */
@media (max-width: 1140px){
  .symptoms-grid{grid-template-columns:repeat(3,1fr)}
  .studies-layout{
    grid-template-columns:1fr 1fr 1fr;
  }
  .study-image{
    grid-column:1 / -1;
    grid-row:auto;
    min-height:260px;
  }
  .location-card{grid-template-columns:1fr}
}

@media (max-width: 680px){
  .logo-only img{
    height: 36px;
  }
}

@media (max-width: 920px){
  .header-inner{
    grid-template-columns:auto auto auto;
  }
  .main-nav{
    display:none;
    position:absolute;
    left:16px; right:16px; top:76px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    border-radius:18px;
    padding:14px 18px;
    flex-direction:column;
    gap:0;
    justify-content:flex-start;
  }
  .main-nav.open{display:flex}
  .main-nav a{
    padding:14px 0;
    border-bottom:1px solid #f0eef0;
  }
  .main-nav a:last-child{border-bottom:0}
  .main-nav a.active::after{display:none}
  .desktop-cta{display:none}
  .menu-toggle{display:block}
  .hero-shell{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .hero-copy{
    padding:36px 0 10px;
  }
  .hero-media{min-height:340px}
  .features-wrap{margin-top:14px}
  .features-bar{grid-template-columns:1fr 1fr}
  .about-layout{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 680px){
  .container{width:min(calc(100% - 20px), var(--container))}
  .header-inner{
    min-height:68px;
    gap:14px;
  }
  .brand-text strong{font-size:.93rem}
  .brand-text span{font-size:.62rem}
  .hero-copy h1{
    font-size:2.15rem;
  }
  .hero-copy p{
    font-size:1rem;
    max-width:100%;
  }
  .hero-actions{
    flex-direction:column;
  }
  .hero-actions .btn,
  .cta-band .btn{width:100%}
  .hero-media{min-height:255px}
  .hero-overlay{
    background:linear-gradient(180deg, rgba(255,255,255,.3) 0%, rgba(255,255,255,0) 26%), linear-gradient(90deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.22) 22%, rgba(255,255,255,0) 46%);
  }
  .features-bar,
  .symptoms-grid,
  .locations-grid,
  .footer-grid,
  .studies-layout{
    grid-template-columns:1fr;
  }
  .feature-item{
    padding:10px 2px;
  }
  .study-image{min-height:220px}
  .coverage-box{
    justify-content:center;
    padding:18px;
  }
  .cta-band{
    flex-direction:column;
    align-items:flex-start;
    padding:22px 18px;
  }
  .cta-band h2{font-size:1.55rem}
}


.coverage-carousel{
  border-radius:18px;
  padding:14px 16px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
  overflow:hidden;
}
.coverage-track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:6px 2px;
}
.coverage-track::-webkit-scrollbar{
  display:none;
}
.coverage-pill{
  flex:0 0 auto;
  width:142px;
  height:76px;
  padding:10px 16px;
  border-radius:18px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(31,43,63,.06);
}
.coverage-pill img{
  display:block;
  width:auto;
  max-width:100%;
  max-height:36px;
  object-fit:contain;
  filter:grayscale(0);
}
.coverage-arrow{
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:#434750;
  font-size:1.5rem;
  line-height:1;
  cursor:pointer;
  box-shadow:var(--shadow);
  flex:0 0 auto;
}
.coverage-arrow:hover{
  border-color:#d8d4d8;
}

@media (max-width: 680px){
  .coverage-carousel{
    grid-template-columns:1fr;
    padding:14px;
  }
  .coverage-arrow{
    display:none;
  }
  .coverage-pill{
    width:128px;
    height:70px;
    padding:10px 14px;
    border-radius:16px;
  }
  .coverage-pill img{
    max-height:32px;
  }
}


/* ===== V6 Mobile optimization ===== */
@media (max-width: 920px){
  .container{
    width:min(calc(100% - 28px), var(--container));
  }

  .section{
    padding:42px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section-head h2{
    line-height:1.08;
  }

  .section-head p{
    font-size:.98rem;
    line-height:1.5;
  }

  .features-bar{
    gap:10px;
    padding:12px;
    border-radius:16px;
  }

  .feature-item{
    align-items:flex-start;
    padding:10px 6px;
  }

  .feature-item img{
    width:40px;
    height:40px;
  }

  .study-card,
  .symptom-card{
    min-height:auto;
  }

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

  .symptom-card{
    padding:16px 14px;
  }

  .symptom-card p{
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .symptom-card a{
    margin-top:12px;
    font-size:.9rem;
  }

  .locations-grid{
    gap:14px;
  }

  .location-card{
    padding:10px;
  }

  .location-preview{
    gap:10px;
  }

  .location-preview img{
    height:145px;
  }

  .coverage-pill{
    min-height:48px;
    padding:0 16px;
  }

  .cta-section{
    padding:6px 0 20px;
  }

  .cta-band{
    border-radius:16px;
  }

  .footer-grid{
    gap:16px;
  }
}

@media (max-width: 680px){
  .container{
    width:min(calc(100% - 24px), var(--container));
  }

  .site-header{
    position:sticky;
  }

  .header-inner{
    min-height:64px;
    gap:12px;
  }

  .brand{
    gap:8px;
    min-width:0;
  }

  .brand-icon{
    width:36px;
    height:36px;
  }

  .brand-icon img{
    width:28px;
    height:28px;
  }

  .brand-text strong{
    font-size:.88rem;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:180px;
  }

  .brand-text span{
    font-size:.58rem;
  }

  .menu-toggle{
    width:42px;
    height:42px;
    border-radius:12px;
  }

  .main-nav{
    left:12px;
    right:12px;
    top:64px;
    border-radius:16px;
    padding:10px 14px;
  }

  .main-nav a{
    padding:12px 0;
    font-size:.96rem;
  }

  .hero-shell{
    gap:0;
  }

  .hero-copy{
    padding:26px 0 8px;
  }

  .hero-copy h1{
    font-size:2rem;
    line-height:1.02;
    margin-bottom:14px;
  }

  .hero-copy p{
    font-size:.98rem;
    line-height:1.45;
    margin-bottom:18px;
    max-width:92%;
  }

  .hero-actions{
    gap:10px;
  }

  .hero-actions .btn{
    min-height:50px;
  }

  .hero-media{
    min-height:220px;
    border-radius:16px;
    overflow:hidden;
  }

  .features-wrap{
    margin-top:12px;
  }

  .features-bar{
    grid-template-columns:1fr;
    padding:8px 10px;
  }

  .feature-item{
    padding:10px 4px;
    gap:12px;
  }

  .feature-item h3{
    font-size:.96rem;
    margin-bottom:4px;
  }

  .feature-item p{
    font-size:.88rem;
    line-height:1.3;
  }

  .section{
    padding:34px 0;
  }

  .section-head{
    margin-bottom:16px;
  }

  .section-head h2{
    font-size:1.65rem;
    margin-bottom:8px;
  }

  .section-head p{
    font-size:.94rem;
    line-height:1.45;
    max-width:100%;
  }

  .studies-layout,
  .symptoms-grid,
  .locations-grid,
  .footer-grid{
    gap:12px;
  }

  .study-image{
    min-height:190px;
  }

  .study-card{
    padding:16px 14px;
  }

  .study-card img,
  .symptom-card img{
    width:36px;
    height:36px;
    margin-bottom:12px;
  }

  .study-card h3,
  .symptom-card h3{
    font-size:.96rem;
    margin-bottom:8px;
  }

  .study-card p,
  .symptom-card p{
    font-size:.9rem;
    line-height:1.42;
  }

  .symptoms-grid{
    grid-template-columns:1fr 1fr;
  }

  .symptom-card{
    padding:14px 12px;
    min-height:190px;
  }

  .symptom-card a{
    font-size:.88rem;
  }

  .about-layout{
    gap:16px;
  }

  .about-copy h2{
    font-size:1.9rem;
    margin-bottom:10px;
  }

  .about-copy p{
    font-size:.94rem;
    line-height:1.55;
    margin-bottom:12px;
  }

  .about-copy ul{
    margin-bottom:18px;
  }

  .about-copy li{
    margin-bottom:8px;
    font-size:.93rem;
  }

  .about-copy .btn{
    width:100%;
    min-height:50px;
  }

  .coverage-carousel{
    padding:10px;
    border-radius:16px;
  }

  .coverage-track{
    gap:10px;
    padding:2px 0;
  }

  .coverage-pill{
    min-height:44px;
    padding:0 14px;
    font-size:.9rem;
  }

  .centered-button{
    margin-top:14px;
  }

  .centered-button .btn{
    width:100%;
    min-height:50px;
  }

  .location-preview{
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .location-preview img{
    height:110px;
    border-radius:12px;
  }

  .location-info h3{
    font-size:1rem;
    margin-bottom:8px;
  }

  .location-info p{
    font-size:.7rem;
    margin-bottom:6px;
    line-height:1.4;
  }

  .location-info a{
    font-size:.70rem;
  }

  .cta-band{
    padding:18px 16px;
    border-radius:16px;
    gap:12px;
  }

  .cta-band h2{
    font-size:1.4rem;
    line-height:1.1;
  }

  .cta-band p{
    font-size:.93rem;
    line-height:1.4;
  }

  .site-footer{
    padding:22px 0 14px;
  }

  .site-footer h4{
    margin:4px 0 10px;
    font-size:.96rem;
  }

  .site-footer a,
  .site-footer p,
  .footer-copy{
    font-size:.9rem;
    line-height:1.45;
  }
}

@media (max-width: 420px){
  .container{
    width:min(calc(100% - 20px), var(--container));
  }

  .hero-copy h1{
    font-size:1.82rem;
  }

  .hero-copy p{
    max-width:100%;
  }

  .symptoms-grid{
    grid-template-columns:1fr;
  }

  .symptom-card{
    min-height:auto;
  }

  .location-preview{
    grid-template-columns:1fr;
  }

  .location-preview img{
    height:140px;
  }
}


/* ===== V7 Mobile spacing and button fit ===== */
@media (max-width: 680px){
  .container{
    width:min(calc(100% - 32px), var(--container));
  }

  .hero{
    padding-top:8px;
  }

  .hero-shell{
    padding-inline:2px;
  }

  .hero-copy{
    padding:24px 2px 10px;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
  }

  .btn,
  .hero-actions .btn,
  .centered-button .btn,
  .about-copy .btn,
  .cta-band .btn{
    width:100%;
    max-width:100%;
    min-width:0;
    padding-left:18px;
    padding-right:18px;
    font-size:.95rem;
    line-height:1.2;
  }

  .btn-white,
  .btn-primary,
  .btn-dark{
    white-space:normal;
    text-align:center;
  }

  .features-wrap{
    padding-inline:2px;
  }

  .section{
    padding:32px 0;
  }

  .section-head{
    padding-inline:2px;
    margin-bottom:18px;
  }

  .studies-layout,
  .symptoms-grid,
  .locations-grid{
    padding-inline:2px;
  }

  .panel,
  .coverage-carousel,
  .cta-band{
    border-radius:18px;
  }

  .study-card,
  .symptom-card,
  .location-card{
    padding-left:14px;
    padding-right:14px;
  }

  .coverage-carousel{
    margin-inline:2px;
    padding:10px 12px;
  }

  .centered-button{
    padding-inline:2px;
  }

  .cta-section .container{
    width:min(calc(100% - 32px), var(--container));
  }

  .site-footer .container{
    width:min(calc(100% - 32px), var(--container));
  }
}

@media (max-width: 420px){
  .container{
    width:min(calc(100% - 36px), var(--container));
  }

  .hero-shell,
  .features-wrap,
  .section-head,
  .studies-layout,
  .symptoms-grid,
  .locations-grid,
  .centered-button{
    padding-inline:0;
  }

  .btn,
  .hero-actions .btn,
  .centered-button .btn,
  .about-copy .btn,
  .cta-band .btn{
    min-height:48px;
    padding-left:16px;
    padding-right:16px;
    font-size:.92rem;
  }

  .hero-copy{
    padding-top:22px;
  }

  .hero-copy h1{
    font-size:1.74rem;
  }

  .hero-copy p{
    font-size:.95rem;
  }

  .coverage-pill{
    font-size:.88rem;
    padding:0 13px;
  }
}


/* ===== V8 Real mobile refinement ===== */
@media (max-width: 680px){
  body{
    overflow-x:hidden;
  }

  .container,
  .cta-section .container,
  .site-footer .container{
    width:min(calc(100% - 40px), var(--container));
  }

  .header-inner{
    grid-template-columns:1fr auto;
    min-height:72px;
    gap:10px;
  }

  .brand{
    min-width:0;
    max-width:100%;
  }

  .brand-text{
    min-width:0;
  }

  .brand-text strong{
    max-width:none;
    white-space:normal;
    line-height:1.05;
    font-size:.82rem;
  }

  .brand-text span{
    font-size:.56rem;
    line-height:1.2;
  }

  .hero{
    background:#fff;
    padding-top:0;
  }

  .hero-shell{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-copy{
    padding:28px 0 14px;
  }

  .hero-copy h1{
    font-size:1.62rem;
    line-height:1.02;
    letter-spacing:-.05em;
    margin:0 0 14px;
    max-width:100%;
    word-break:normal;
    overflow-wrap:break-word;
  }

  .hero-copy p{
    font-size:.92rem;
    line-height:1.42;
    margin:0 0 16px;
    max-width:100%;
  }

  .hero-actions{
    gap:10px;
  }

  .btn,
  .hero-actions .btn,
  .centered-button .btn,
  .about-copy .btn,
  .cta-band .btn{
    min-height:46px;
    padding:0 14px;
    font-size:.92rem;
    border-radius:999px;
  }

  .hero-media{
    min-height:180px;
    margin-top:4px;
    border-radius:14px;
  }

  .hero-overlay{
    background:linear-gradient(90deg, rgba(255,255,255,.80) 0%, rgba(255,255,255,.22) 30%, rgba(255,255,255,0) 52%);
  }

  .features-wrap{
    margin-top:10px;
  }

  .features-bar{
    padding:8px 12px;
    gap:0;
  }

  .feature-item{
    padding:12px 2px;
    gap:10px;
    align-items:flex-start;
  }

  .feature-item:not(:last-child){
    border-bottom:1px solid #f1eef1;
  }

  .feature-item img{
    width:34px;
    height:34px;
    margin-top:2px;
  }

  .feature-item h3{
    font-size:.9rem;
    line-height:1.12;
    margin:0 0 4px;
  }

  .feature-item p{
    font-size:.82rem;
    line-height:1.28;
  }

  .section{
    padding:28px 0;
  }

  .section-head h2{
    font-size:1.42rem;
    line-height:1.08;
  }

  .section-head p{
    font-size:.9rem;
  }

  .study-image{
    min-height:165px;
  }

  .study-card{
    padding:14px 12px;
    min-height:auto;
  }

  .study-card img,
  .symptom-card img{
    width:32px;
    height:32px;
    margin-bottom:10px;
  }

  .study-card h3,
  .symptom-card h3{
    font-size:.9rem;
    line-height:1.2;
  }

  .study-card p,
  .symptom-card p{
    font-size:.84rem;
    line-height:1.36;
  }

  .symptoms-grid{
    grid-template-columns:1fr;
  }

  .symptom-card{
    min-height:auto;
    padding:14px 12px;
  }

  .symptom-card a{
    font-size:.84rem;
    margin-top:10px;
  }

  .about-layout{
    gap:14px;
  }

  .about-copy h2{
    font-size:1.55rem;
    line-height:1.08;
  }

  .about-copy p,
  .about-copy li{
    font-size:.9rem;
  }

  .coverage-carousel{
    padding:10px;
  }

  .coverage-pill{
    min-height:42px;
    padding:0 12px;
    font-size:.84rem;
  }

  .location-card{
    padding:10px;
    gap:10px;
  }

  .location-preview{
    grid-template-columns:1fr 1fr;
  }

  .location-preview img{
    height:96px;
  }

  .location-info h3{
    font-size:.92rem;
  }

  .location-info p,
  .location-info a{
    font-size:.70rem;
  }

  .cta-band{
    padding:16px 14px;
  }

  .cta-band h2{
    font-size:1.22rem;
  }

  .cta-band p{
    font-size:.88rem;
  }

  .site-footer{
    padding:20px 0 14px;
  }

  .footer-grid{
    gap:10px;
  }

  .site-footer a,
  .site-footer p,
  .footer-copy{
    font-size:.84rem;
  }
}

@media (max-width: 420px){
  .container,
  .cta-section .container,
  .site-footer .container{
    width:min(calc(100% - 44px), var(--container));
  }

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

  .hero-copy h1{
    font-size:1.48rem;
  }

  .hero-copy p{
    font-size:.88rem;
  }

  .btn,
  .hero-actions .btn,
  .centered-button .btn,
  .about-copy .btn,
  .cta-band .btn{
    font-size:.88rem;
    min-height:44px;
  }

  .hero-media{
    min-height:165px;
  }

  .feature-item h3{
    font-size:.86rem;
  }

  .feature-item p{
    font-size:.8rem;
  }

  .section-head h2{
    font-size:1.32rem;
  }

  .about-copy h2{
    font-size:1.45rem;
  }
}


/* ===== V9 Google Maps embed in sede cards ===== */
.location-preview iframe{
  width:100%;
  height:170px;
  border:0;
  border-radius:14px;
  display:block;
}

@media (max-width: 680px){
  .location-preview iframe{
    height:96px;
  }
}

@media (max-width: 420px){
  .location-preview iframe{
    height:140px;
  }
}


/* ===== V10 sedes only map + simplified footer ===== */
.location-card{
  padding:16px;
  display:grid;
  grid-template-columns:240px 1fr;
  gap:18px;
  align-items:center;
}

.location-map-only iframe{
  width:100%;
  height:190px;
  border:0;
  border-radius:16px;
  display:block;
}

.footer-simple{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:28px;
  align-items:start;
}

.footer-contact h4{
  margin:8px 0 14px;
  font-size:1rem;
}

@media (max-width: 920px){
  .location-card{
    grid-template-columns:220px 1fr;
  }

  .footer-simple{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 680px){
  .location-card{
    grid-template-columns:1fr;
    padding:12px;
    gap:12px;
  }

  .location-map-only iframe{
    height:150px;
  }

  .footer-simple{
    grid-template-columns:1fr;
    gap:18px;
  }
}


/* ===== V11 footer social ===== */
.footer-simple{
  grid-template-columns:1.2fr 1fr 1fr;
}

.footer-social h4{
  margin:8px 0 14px;
  font-size:1rem;
}

.social-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.social-links a{
  color:#6d7077;
  font-weight:600;
}

.social-links a:hover{
  color:var(--pink);
}

@media (max-width: 920px){
  .footer-simple{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 680px){
  .footer-simple{
    grid-template-columns:1fr;
  }
}
.footer-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-right {
  display: flex;
  gap: 14px;
}

.footer-right a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.2s;
}

.footer-right a:hover {
  transform: translateY(-2px);
  border-color: #ddd;
}

.footer-right img {
  width: 20px;
  height: 20px;
}

/* Turnos dropdown */
.turno-dropdown{
  position:relative;
  display:inline-block;
}

.turno-toggle{
  cursor:pointer;
}

.turno-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:220px;
  background:#fff;
  border:1px solid #e8e5e8;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  padding:8px;
  display:none;
  z-index:90;
}

.turno-menu-right{
  right:0;
  left:auto;
}

.turno-dropdown.open .turno-menu{
  display:block;
}

.turno-menu a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  color:#202127;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}

.turno-menu a:hover{
  background:#f7f4f6;
  color:#ec3f8d;
}

.coverage-dropdown .turno-toggle{
  min-width:260px;
}

.coverage-menu{
  min-width:280px;
}

@media (max-width: 680px){
  .turno-dropdown{
    width:100%;
  }

  .turno-toggle{
    width:100%;
  }

  .turno-menu,
  .turno-menu-right{
    left:0;
    right:auto;
    width:100%;
    min-width:100%;
  }

  .turno-menu a{
    white-space:normal;
  }
}


/* ===== V13 global spacing + footer logo smaller ===== */
.container{
  width:min(calc(100% - 72px), var(--container));
  margin:0 auto;
}

#sedes .container,
.section .container,
.site-footer .container,
.cta-section .container{
  width:min(calc(100% - 72px), var(--container));
  margin:0 auto;
}

.locations-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.location-card{
  width:100%;
  min-width:0;
  box-sizing:border-box;
  overflow:hidden;
}

.location-map-only,
.location-info,
.location-preview{
  min-width:0;
}

.site-footer .brand-icon img,
.footer-brand-col .brand-icon img,
.footer-minimal .brand-icon img,
.footer-simple .brand-icon img{
  width:22px !important;
  height:22px !important;
}

.site-footer .brand-icon{
  width:34px !important;
  height:34px !important;
}

@media (max-width: 920px){
  .container,
  #sedes .container,
  .section .container,
  .site-footer .container,
  .cta-section .container{
    width:min(calc(100% - 44px), var(--container));
  }

  .locations-grid{
    grid-template-columns:1fr;
    gap:16px;
  }
}

@media (max-width: 680px){
  .container,
  #sedes .container,
  .section .container,
  .site-footer .container,
  .cta-section .container{
    width:min(calc(100% - 36px), var(--container)) !important;
  }

  .locations-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .site-footer .brand-icon img,
  .footer-brand-col .brand-icon img,
  .footer-minimal .brand-icon img,
  .footer-simple .brand-icon img{
    width:18px !important;
    height:18px !important;
  }

  .site-footer .brand-icon{
    width:28px !important;
    height:28px !important;
  }
}


/* ===== V14 sedes cards text fix ===== */
.locations-grid{
  align-items: stretch;
}

.location-card{
  display: grid;
  grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
}

.location-preview,
.location-map-only{
  width: 100%;
  min-width: 0;
}

.location-preview img,
.location-map-only iframe{
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.location-info{
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding-right: 8px;
}

.location-info h3{
  margin: 0 0 6px;
  line-height: 1.15;
}

.location-info p,
.location-info a,
.location-info span{
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
}

.location-info .location-email{
  font-size: .98em;
}

.location-info .location-extra{
  color: var(--muted);
}

@media (max-width: 1180px){
  .location-card{
    grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
  }

  .location-preview img,
  .location-map-only iframe{
    min-height: 200px;
  }
}

@media (max-width: 920px){
  .location-card{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .location-preview img,
  .location-map-only iframe{
    min-height: 180px;
  }

  .location-info{
    padding-right: 0;
  }
}

@media (max-width: 680px){
  .location-card{
    padding: 14px;
    gap: 12px;
  }

  .location-preview img,
  .location-map-only iframe{
    min-height: 150px;
    border-radius: 14px;
  }

  .location-info{
    gap: 8px;
  }

  .location-info p,
  .location-info a,
  .location-info span{
    font-size: .9rem;
    line-height: 1.42;
  }
}

article p em {
    font-style: italic;
font-size: 10px;
}

/* ===== V15 ajustar mapa más angosto + mail en una línea ===== */

.location-card{
  grid-template-columns: minmax(180px, 30%) minmax(0, 1fr);
}

/* mapa más angosto */
.location-map-only iframe,
.location-preview img{
  min-height: 200px;
}

/* evitar que el mail se corte */
.location-info .location-email{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* si querés que nunca corte y permita scroll horizontal (opcional) */
/*
.location-info .location-email{
  white-space: nowrap;
  overflow-x: auto;
}
*/

@media (max-width: 920px){
  .location-card{
    grid-template-columns: 1fr;
  }

  .location-info .location-email{
    white-space: normal;
  }
}



/* ===== V16 glass effect symptoms section ===== */

.symptoms-section{
  background: linear-gradient(
    180deg,
    #fafafa 0%,
    #fff5f9 100%
  );
}

.symptom-card{
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
}

.symptom-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);
}

.symptom-card svg,
.symptom-card img{
  opacity: 0.9;
}

@media (max-width: 680px){
  .symptom-card{
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}



/* ===== V17 REAL glass section ===== */

.symptoms-section{
  position: relative;
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    #fff7fa 0%,
    #fdfdfd 40%,
    #fff0f5 100%
  );
  overflow: hidden;
}

/* fondo blur tipo mockup */
.symptoms-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(236,63,141,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(236,63,141,0.06), transparent 40%);
  filter: blur(40px);
  z-index:0;
}

.symptoms-grid{
  position: relative;
  z-index:1;
}

/* glass real */
.symptom-card{
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;

  box-shadow:
    0 8px 30px rgba(0,0,0,0.06);

  transition: all .3s ease;
}

/* borde brillante tipo glass */
.symptom-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  padding:1px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.1)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

.symptom-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.7);
}

/* mobile suavizado */
@media (max-width:680px){
  .symptom-card{
    backdrop-filter: blur(8px);
  }
}



/* ===== V18 FIX REAL GLASS ===== */

.symptoms-section{
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(236,63,141,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(236,63,141,0.12), transparent 40%),
    linear-gradient(135deg, #fff7fa 0%, #ffffff 100%);
}

.symptom-card{
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;

  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* evitar fondo sólido que rompe el glass */
.symptom-card *{
  background: transparent !important;
}



/* ===== V19 glass visible for symptoms section ===== */
.glass-symptoms{
  position: relative;
  overflow: hidden;
  background:
   
    linear-gradient(135deg, #fff7fa 0%, #ffffff 60%, #fff2f7 100%);
}

.glass-symptoms::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(20rem 12rem at 25% 35%, rgba(255,255,255,.55), transparent 65%),
    radial-gradient(24rem 14rem at 75% 60%, rgba(255,255,255,.38), transparent 65%);
  filter: blur(28px);
  pointer-events:none;
}

.glass-symptoms .container,
.glass-symptoms .section-head,
.glass-symptoms .symptoms-grid{
  position:relative;
  z-index:1;
}

.glass-symptoms .symptom-card{
  position: relative;
  background: rgba(255,255,255,.34) !important;
  border: 1px solid rgba(255,255,255,.58) !important;
  box-shadow:
    0 10px 28px rgba(32,33,39,.06),
    inset 0 1px 0 rgba(255,255,255,.55) !important;
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.glass-symptoms .symptom-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,0) 38%);
  pointer-events:none;
}

.glass-symptoms .symptom-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.42) !important;
  box-shadow:
    0 18px 38px rgba(32,33,39,.09),
    inset 0 1px 0 rgba(255,255,255,.62) !important;
}

.glass-symptoms .symptom-card img{
  opacity:.98;
  filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}

@media (max-width: 680px){
  .glass-symptoms{
    background:
      radial-gradient(22rem 12rem at 18% 22%, rgba(236,63,141,.12), transparent 58%),
      radial-gradient(18rem 10rem at 82% 72%, rgba(236,63,141,.08), transparent 58%),
      linear-gradient(135deg, #fff8fb 0%, #ffffff 55%, #fff4f8 100%);
  }

  .glass-symptoms .symptom-card{
    backdrop-filter: blur(10px) saturate(125%);
    -webkit-backdrop-filter: blur(10px) saturate(125%);
  }
}


/* ===== V20 stronger frosted glass like mockup ===== */
.glass-symptoms{
  position: relative;
  overflow: hidden;

}

.glass-symptoms::before{
  content:"";
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(18rem 10rem at 18% 20%, rgba(255,255,255,.38), transparent 62%),
    radial-gradient(22rem 12rem at 82% 30%, rgba(255,255,255,.24), transparent 60%),
    radial-gradient(18rem 10rem at 70% 82%, rgba(255,255,255,.18), transparent 60%);
  filter: blur(34px);
  pointer-events:none;
}

.glass-symptoms .symptom-card{
  position: relative;
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.36) !important;
  box-shadow:
    0 12px 30px rgba(17, 24, 39, .08),
    inset 0 1px 0 rgba(255,255,255,.42),
    inset 0 -1px 0 rgba(255,255,255,.08) !important;
  backdrop-filter: blur(22px) saturate(155%) contrast(1.02);
  -webkit-backdrop-filter: blur(22px) saturate(155%) contrast(1.02);
}

.glass-symptoms .symptom-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,.06) 34%, rgba(255,255,255,.02) 100%);
  pointer-events:none;
}

.glass-symptoms .symptom-card::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events:none;
}

.glass-symptoms .symptom-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.20) !important;
  box-shadow:
    0 18px 40px rgba(17,24,39,.10),
    inset 0 1px 0 rgba(255,255,255,.48),
    inset 0 -1px 0 rgba(255,255,255,.10) !important;
}

.glass-symptoms .symptom-card h3,
.glass-symptoms .symptom-card p{
  position: relative;
  z-index: 1;
}

.glass-symptoms .symptom-card img{
  position: relative;
  z-index: 1;
  opacity: 1;
}

@media (max-width: 680px){
  .glass-symptoms .symptom-card{
    background: rgba(255,255,255,.18) !important;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  }
}


/* ===== V21 ocultar sacar turno del header en mobile ===== */
@media (max-width: 768px){
  header .header-cta,
  header .turno-dropdown,
  .site-header .header-cta,
  .site-header .turno-dropdown,
  .header-inner > .btn,
  .header-inner > .turno-dropdown{
    display: none !important;
  }

  .header-inner{
    grid-template-columns: 1fr auto !important;
  }
}


/* ===== V22 ocultar bloque features (+20 años, etc) en mobile ===== */
@media (max-width: 768px){
  .features,
  .features-section,
  .stats,
  .highlights,
  .benefits{
    display: none !important;
  }
}


/* ===== V23 footer credit ===== */
.footer-bottom{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  color: #888;
}

.footer-bottom a{
  color: #ec3f8d;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover{
  text-decoration: underline;
}

@media (max-width: 680px){
  .footer-bottom{
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}


/* ===== V24 footer fit / no overflow ===== */
.site-footer{
  overflow-x: hidden;
}

.footer-bottom{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
  flex-wrap: wrap;
}

.footer-bottom p{
  margin: 0;
  min-width: 0;
}

.footer-credit{
  text-align: right;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 920px){
  .footer-bottom{
    gap: 12px;
  }

  .footer-credit{
    text-align: left;
  }
}

@media (max-width: 680px){
  .footer-bottom{
    width: 100%;
    max-width: 100%;
    padding-top: 16px;
  }

  .footer-bottom p,
  .footer-credit{
    width: 100%;
    text-align: center;
  }
}


/* ===== V25 footer bottom inside container fix ===== */
.site-footer .container{
  width:min(calc(100% - 72px), var(--container));
  margin:0 auto;
}

.footer-bottom{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-top:0;
  padding:22px 0 0;
  border-top:1px solid rgba(0,0,0,0.08);
  box-sizing:border-box;
}

.footer-bottom p{
  margin:0;
}

.footer-credit{
  margin-left:auto;
  text-align:right;
}

@media (max-width: 920px){
  .site-footer .container{
    width:min(calc(100% - 44px), var(--container));
  }
}

@media (max-width: 680px){
  .site-footer .container{
    width:min(calc(100% - 36px), var(--container));
  }

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:8px;
  }

  .footer-credit{
    margin-left:0;
    text-align:center;
  }
}


/* ===== V26 ocultar bloque de highlights/features en mobile ===== */
@media (max-width: 768px){
  .highlights,
  .features-wrap,
  .features-bar,
  .features,
  .features-section,
  .benefits,
  .stats{
    display: none !important;
  }
}


/* ===== V27 ocultar imagen hero en mobile ===== */
@media (max-width: 768px){
  .hero-image,
  .hero-media,
  .hero img{
    display:none !important;
  }
}


/* surgeries accordion section */
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(236,63,141,.10);
  color:var(--pink-dark);
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.02em;
  margin-bottom:18px;
}

.section-surgeries{
  background:linear-gradient(180deg, #f8f7f9 0%, #f3f2f4 100%);
}
.surgeries-layout{
  display:grid;
  grid-template-columns:minmax(280px, .88fr) minmax(0, 1.12fr);
  gap:22px;
  align-items:start;
}
.surgeries-intro,
.surgery-item{
  border-radius:20px;
}
.surgeries-intro{
  padding:28px;
  position:sticky;
  top:98px;
}
.surgeries-intro h2{
  margin:0 0 14px;
  font-size:clamp(2rem, 3vw, 2.85rem);
  letter-spacing:-.03em;
  line-height:1.08;
}
.surgeries-intro > p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.surgery-feature{
  margin-top:22px;
  padding:18px;
  border-radius:18px;
  background:linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  border:1px solid #ece7eb;
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.surgery-feature-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#f7edf3;
  color:var(--pink-dark);
  font-size:1.1rem;
  flex:0 0 auto;
}
.surgery-feature h3{
  margin:0 0 6px;
  font-size:1.05rem;
}
.surgery-feature p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}
.surgeries-accordion{
  display:grid;
  gap:14px;
}
.surgery-item{
  overflow:hidden;
}
.surgery-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 22px;
}
.surgery-item summary::-webkit-details-marker{display:none}
.surgery-item summary h3{
  margin:4px 0 0;
  font-size:1.1rem;
  line-height:1.25;
}
.surgery-label{
  display:inline-block;
  color:var(--pink-dark);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.surgery-toggle{
  width:34px;
  height:34px;
  border-radius:999px;
  background:#f5f2f5;
  border:1px solid #ebe6ea;
  position:relative;
  flex:0 0 auto;
}
.surgery-toggle::before,
.surgery-toggle::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:14px;
  height:2px;
  background:#5e6168;
  border-radius:2px;
  transform:translate(-50%, -50%);
  transition:.22s ease;
}
.surgery-toggle::after{
  transform:translate(-50%, -50%) rotate(90deg);
}
.surgery-item[open] .surgery-toggle::after{
  transform:translate(-50%, -50%) rotate(0deg);
  opacity:0;
}
.surgery-content{
  padding:0 22px 22px;
  border-top:1px solid #efebee;
}
.surgery-content ul{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.surgery-content li{
  position:relative;
  padding-left:18px;
  color:#4d5057;
  line-height:1.55;
}
.surgery-content li::before{
  content:"";
  position:absolute;
  left:0;
  top:.68em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--pink);
}
.surgery-content li span{
  color:var(--muted);
}

@media (max-width: 920px){
  .surgeries-layout{
    grid-template-columns:1fr;
  }
  .surgeries-intro{
    position:static;
  }
}

@media (max-width: 680px){
  .surgeries-layout{
    gap:14px;
  }
  .surgeries-intro{
    padding:20px 18px;
    border-radius:18px;
  }
  .surgeries-intro h2{
    font-size:1.72rem;
    margin-bottom:10px;
  }
  .surgeries-intro > p{
    font-size:.94rem;
    line-height:1.55;
  }
  .surgery-feature{
    margin-top:16px;
    padding:14px;
    border-radius:16px;
  }
  .surgery-feature h3{
    font-size:1rem;
  }
  .surgery-feature p{
    font-size:.92rem;
  }
  .surgery-item summary{
    padding:16px 16px;
    gap:12px;
  }
  .surgery-item summary h3{
    font-size:1rem;
  }
  .surgery-content{
    padding:0 16px 16px;
  }
  .surgery-content ul{
    gap:8px;
  }
  .surgery-content li{
    font-size:.92rem;
    line-height:1.5;
  }
}


/* surgeries section - updated layout */
.surgeries-intro{
  padding:12px 4px 0 4px;
  background:transparent;
  border:0;
  box-shadow:none;
}
.surgeries-intro h2{
  max-width:560px;
}
.surgeries-intro > p{
  max-width:520px;
  font-size:1.04rem;
}
.surgeries-accordion{
  display:grid;
  gap:16px;
}
.surgery-item{
  background:#fff;
}

@media (min-width: 921px){
  .surgeries-layout{
    grid-template-columns:minmax(280px, .9fr) minmax(0, 1.1fr);
    gap:30px;
  }
}

@media (max-width: 920px){
  .surgeries-intro{
    padding:0;
  }
}

@media (max-width: 680px){
  .surgeries-intro{
    padding:0;
  }
  .surgeries-intro h2{
    font-size:1.9rem;
    max-width:100%;
  }
  .surgeries-intro > p{
    max-width:100%;
    font-size:.96rem;
  }
  .surgeries-accordion{
    gap:12px;
  }
}


/* ===== Studies redesign inspired by reference ===== */
.section-studies-featured{
  background:#f5f7fa;
}

.studies-head{
  max-width:780px;
}

.studies-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(236,63,141,.10);
  color:var(--pink-dark);
  font-size:.86rem;
  font-weight:700;
  margin-bottom:14px;
}

.studies-featured{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  margin-top:28px;
  margin-bottom:18px;
  min-height:360px;
}

.studies-featured img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
}

.studies-featured-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(17,24,39,.18) 100%);
}

.studies-featured-badge{
  position:absolute;
  left:24px;
  bottom:24px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.7);
  border-radius:18px;
  padding:14px 16px;
  max-width:320px;
}

.studies-featured-badge span{
  display:block;
  font-size:.8rem;
  font-weight:700;
  color:var(--pink-dark);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:5px;
}

.studies-featured-badge strong{
  display:block;
  font-size:1rem;
  line-height:1.35;
}

.studies-grid-alt{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:20px;
}

.study-mini-card{
  padding:22px 18px;
  border-radius:20px;
  min-height:190px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.study-mini-card img{
  width:42px;
  height:42px;
  object-fit:contain;
  margin-bottom:16px;
}

.study-mini-card h3{
  margin:0 0 8px;
  font-size:1rem;
  line-height:1.25;
}

.study-mini-card p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.5;
  font-size:.95rem;
}

.study-mini-card small{
  margin-top:auto;
  color:#545861;
  font-size:.88rem;
  font-weight:600;
}

@media (max-width: 1140px){
  .studies-grid-alt{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 920px){
  .studies-featured{
    min-height:300px;
  }

  .studies-featured img{
    min-height:300px;
  }
}

@media (max-width: 680px){
  .studies-featured{
    min-height:220px;
    border-radius:20px;
    margin-top:22px;
  }

  .studies-featured img{
    min-height:220px;
  }

  .studies-featured-badge{
    left:14px;
    right:14px;
    bottom:14px;
    max-width:none;
    padding:12px 14px;
    border-radius:16px;
  }

  .studies-grid-alt{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .study-mini-card{
    min-height:170px;
    padding:16px 14px;
    border-radius:16px;
  }

  .study-mini-card img{
    width:38px;
    height:38px;
    margin-bottom:12px;
  }

  .study-mini-card h3{
    font-size:.96rem;
  }

  .study-mini-card p{
    font-size:.9rem;
    margin-bottom:10px;
  }

  .study-mini-card small{
    font-size:.82rem;
  }
}


/* ===== Compact studies refinement ===== */
.section-studies-featured .studies-featured{
  min-height:280px;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}

.section-studies-featured .studies-featured img{
  min-height:280px;
  max-height:280px;
}

.section-studies-featured .studies-grid-alt{
  gap:12px;
  max-width:980px;
  margin:16px auto 0;
}

.section-studies-featured .study-mini-card{
  min-height:120px;
  padding:16px 14px;
  border-radius:16px;
}

.section-studies-featured .study-mini-card img{
  width:34px;
  height:34px;
  margin-bottom:12px;
}

.section-studies-featured .study-mini-card h3{
  font-size:.96rem;
  margin-bottom:6px;
}

.section-studies-featured .study-mini-card p{
  font-size:.9rem;
  line-height:1.42;
  margin-bottom:8px;
}

.section-studies-featured .study-mini-card small{
  font-size:.8rem;
}

.section-studies-featured .studies-featured-badge{
  left:18px;
  bottom:18px;
  padding:12px 14px;
  max-width:280px;
}

.section-studies-featured .studies-featured-badge strong{
  font-size:.92rem;
}

@media (max-width: 920px){
  .section-studies-featured .studies-featured{
    min-height:240px;
  }

  .section-studies-featured .studies-featured img{
    min-height:240px;
    max-height:240px;
  }

  .section-studies-featured .studies-grid-alt{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 680px){
  .section-studies-featured .studies-featured{
    min-height:190px;
    max-width:100%;
  }

  .section-studies-featured .studies-featured img{
    min-height:190px;
    max-height:190px;
  }

  .section-studies-featured .studies-grid-alt{
    gap:10px;
    margin-top:12px;
  }

  .section-studies-featured .study-mini-card{
    min-height:145px;
    padding:14px 12px;
  }

  .section-studies-featured .study-mini-card img{
    width:30px;
    height:30px;
    margin-bottom:10px;
  }

  .section-studies-featured .study-mini-card h3{
    font-size:.92rem;
  }

  .section-studies-featured .study-mini-card p{
    font-size:.85rem;
    margin-bottom:6px;
  }

  .section-studies-featured .study-mini-card small{
    font-size:.76rem;
  }

  .section-studies-featured .studies-featured-badge{
    left:12px;
    right:12px;
    bottom:12px;
    max-width:none;
    padding:10px 12px;
  }
}


/* ===== Studies: icon next to title ===== */
.study-mini-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  width:100%;
}

.study-mini-head img{
  flex:0 0 auto;
  margin:0 !important;
}

.study-mini-head h3{
  margin:0 !important;
}

.study-mini-card > img{
  display:none;
}

@media (max-width: 680px){
  .study-mini-head{
    gap:8px;
    margin-bottom:8px;
  }
}


/* ===== Cirugías background color ===== */
.section-surgeries{
  background:#fdf2f7;
}

/* ===== Botón flotante mobile WhatsApp / turnos ===== */
.mobile-wa-fab{display:none;}
@media (max-width:768px){
  .mobile-wa-fab{position:fixed;right:16px;bottom:calc(18px + env(safe-area-inset-bottom));z-index:9999;display:flex;flex-direction:column;align-items:flex-end;gap:10px;}
  .mobile-wa-main{width:58px;height:58px;border-radius:999px;border:0;background:#f04b94;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 12px 28px rgba(0,0,0,.26);cursor:pointer;-webkit-tap-highlight-color:transparent;font-weight:800;}
  .mobile-wa-icon-chat{width:28px;height:28px;display:block;object-fit:contain;}
  .mobile-wa-icon-close{display:none;font-size:34px;line-height:1;font-weight:300;transform:translateY(-1px);}
  .mobile-wa-options{display:flex;flex-direction:column;align-items:flex-end;gap:9px;opacity:0;visibility:hidden;transform:translateY(12px);pointer-events:none;transition:.22s ease;}
  .mobile-wa-options a{min-height:46px;display:flex;align-items:center;justify-content:center;padding:0 16px;border-radius:999px;background:#111;color:#fff;text-decoration:none;font-size:14px;font-weight:800;letter-spacing:-.01em;box-shadow:0 10px 24px rgba(0,0,0,.22);white-space:nowrap;}
  .mobile-wa-fab.open .mobile-wa-options{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto;}
  .mobile-wa-fab.open .mobile-wa-icon-chat{display:none;}
  .mobile-wa-fab.open .mobile-wa-icon-close{display:block;}
}


/* ===== V23 desplegable de especialidades en el menú principal ===== */
.main-nav .nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
}

.main-nav .nav-dropdown-toggle{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:26px 0;
  border:0;
  background:transparent;
  color:#4c4f56;
  font-family:inherit;
  font-size:.98rem;
  font-weight:600;
  cursor:pointer;
}

.main-nav .nav-dropdown-toggle:hover,
.main-nav .nav-dropdown.open .nav-dropdown-toggle{
  color:var(--pink);
}

.nav-dropdown-chevron{
  display:inline-block;
  font-size:.95rem;
  line-height:1;
  transition:transform .2s ease;
}

.nav-dropdown.open .nav-dropdown-chevron{
  transform:rotate(180deg);
}

.main-nav .nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  width:270px;
  max-height:min(70vh, 520px);
  overflow:auto;
  padding:8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 16px 34px rgba(17,17,17,.12);
  display:none;
  z-index:120;
}

.main-nav .nav-dropdown.open .nav-dropdown-menu{
  display:block;
}

.main-nav .nav-dropdown-menu a{
  display:block;
  padding:11px 13px;
  border:0;
  border-radius:12px;
  color:#333740;
  font-size:.92rem;
  font-weight:700;
  line-height:1.2;
  white-space:normal;
}

.main-nav .nav-dropdown-menu a::after{
  display:none !important;
}

.main-nav .nav-dropdown-menu a:hover{
  background:#f7f4f6;
  color:var(--pink);
}

@media (max-width: 920px){
  .main-nav .nav-dropdown{
    display:block;
    border-bottom:1px solid #f0eef0;
  }

  .main-nav .nav-dropdown-toggle{
    width:100%;
    justify-content:space-between;
    padding:14px 0;
    font-size:.98rem;
  }

  .main-nav .nav-dropdown-menu{
    position:static;
    transform:none;
    width:100%;
    max-height:none;
    margin:0 0 10px;
    padding:6px;
    border-radius:14px;
    box-shadow:none;
    background:#faf8fa;
  }

  .main-nav .nav-dropdown-menu a{
    padding:10px 12px;
    font-size:.92rem;
  }
}


/* ===== Logo original SVG: ajuste responsive sin cambiar tipografía ===== */
.logo-only{
  display:flex !important;
  align-items:center !important;
  min-width:0 !important;
  flex:0 1 auto !important;
}

.logo-only img{
  display:block !important;
  width:min(330px, 100%) !important;
  max-width:330px !important;
  height:auto !important;
  max-height:49px !important;
  object-fit:contain !important;
}

.site-header .logo-only{
  max-width:360px !important;
}

.site-header .logo-only img{
  width:min(330px, 100%) !important;
}

.site-footer .logo-only img,
.footer-minimal .logo-only img{
  width:min(310px, 100%) !important;
  max-height:46px !important;
}

@media (max-width: 920px){
  .site-header .header-inner{
    grid-template-columns:minmax(0, 1fr) auto !important;
  }

  .site-header .logo-only{
    max-width:calc(100vw - 112px) !important;
  }

  .site-header .logo-only img{
    width:min(285px, 100%) !important;
    max-height:42px !important;
  }
}

@media (max-width: 680px){
  .site-header .header-inner{
    min-height:72px !important;
    gap:10px !important;
  }

  .site-header .logo-only{
    max-width:calc(100vw - 112px) !important;
  }

  .site-header .logo-only img{
    width:min(245px, 100%) !important;
    max-height:36px !important;
  }

  .site-footer .logo-only,
  .footer-minimal .logo-only{
    max-width:calc(100vw - 120px) !important;
  }

  .site-footer .logo-only img,
  .footer-minimal .logo-only img{
    width:min(245px, 100%) !important;
    max-height:36px !important;
  }
}

@media (max-width: 390px){
  .site-header .logo-only img{
    width:min(225px, 100%) !important;
    max-height:34px !important;
  }

  .site-footer .logo-only img,
  .footer-minimal .logo-only img{
    width:min(225px, 100%) !important;
    max-height:34px !important;
  }
}



/* FIX LOGO HEADER */
.navbar,
.header {
  min-height: 95px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  overflow: visible;
}

.navbar-brand img,
.logo img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-brand,
.logo {
  overflow: visible;
}
