
:root {
  --navy: #061a4f;
  --navy-2: #0a2f77;
  --blue: #0878f9;
  --cyan: #22b8ff;
  --ice: #eef7ff;
  --white: #ffffff;
  --text: #12203f;
  --muted: #5d6b86;
  --border: rgba(7, 49, 117, .12);
  --shadow: 0 24px 70px rgba(4, 28, 74, .14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--navy);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.topbar {
  background: linear-gradient(90deg, #03153e, #073c91);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__action {
  border: 0;
  background: transparent;
  color: white;
  font-weight: 800;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.87);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: .25s ease;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 14px 40px rgba(4, 28, 74, .08);
}
.header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.24rem;
  letter-spacing: .12em;
  color: var(--navy);
}
.brand__text strong span { color: var(--blue); }
.brand__text small {
  margin-top: 7px;
  font-size: .72rem;
  letter-spacing: .19em;
  color: var(--muted);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav > a:not(.button) {
  font-size: .91rem;
  font-weight: 700;
  color: #31405f;
  position: relative;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width .2s ease;
}
.main-nav > a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: .2s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button--small {
  min-height: 43px;
  padding: 0 19px;
  color: white;
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  box-shadow: 0 10px 24px rgba(8, 120, 249, .22);
}
.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--navy-2), var(--blue) 65%, var(--cyan));
  box-shadow: 0 16px 34px rgba(8, 120, 249, .26);
}
.button--ghost {
  color: var(--navy);
  background: white;
  border-color: rgba(7, 49, 117, .16);
}
.button--white {
  background: white;
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
}
.button--full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 23%, rgba(35, 184, 255, .16), transparent 28%),
    radial-gradient(circle at 7% 20%, rgba(8, 120, 249, .09), transparent 23%),
    linear-gradient(180deg, #fff 0%, #f4f9ff 72%, #fff 100%);
  padding: 88px 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 47, 119, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 47, 119, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
}
.hero__orb--one {
  width: 240px;
  height: 240px;
  top: 14%;
  right: -90px;
  background: rgba(34, 184, 255, .13);
}
.hero__orb--two {
  width: 130px;
  height: 130px;
  left: -60px;
  bottom: 22%;
  background: rgba(8, 120, 249, .1);
  animation-delay: -3s;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(34, 184, 255, .15);
}
.hero h1 {
  margin: 22px 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.75rem, 5.5vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: var(--navy);
}
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--blue), #1fb7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 42px;
}
.hero__trust div {
  border-left: 3px solid var(--blue);
  padding-left: 15px;
}
.hero__trust strong,
.hero__trust span { display: block; }
.hero__trust strong { color: var(--navy); font-size: .96rem; }
.hero__trust span { margin-top: 4px; color: var(--muted); font-size: .82rem; }

.hero__visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}
.logo-card {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 42px;
  border: 1px solid rgba(8,120,249,.12);
  border-radius: 46px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(241,248,255,.9));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1.2deg);
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(8,120,249,.08);
  border-radius: 34px;
}
.logo-card__shine {
  position: absolute;
  width: 120px;
  height: 180%;
  top: -40%;
  left: -30%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  animation: shine 7s ease-in-out infinite;
}
.logo-card img {
  position: relative;
  z-index: 2;
  width: 90%;
  object-fit: contain;
}
.logo-card__badge {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: max-content;
  max-width: 84%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(8,120,249,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(4,28,74,.1);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
}
.logo-card__badge svg {
  width: 18px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.5;
}
.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(8,120,249,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 35px rgba(4,28,74,.12);
  animation: float 6s ease-in-out infinite;
}
.floating-card--left { left: -20px; bottom: 100px; }
.floating-card--right { right: -20px; top: 92px; animation-delay: -2.2s; }
.floating-card__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(135deg, var(--navy-2), var(--cyan));
}
.floating-card svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}
.floating-card strong,
.floating-card small { display: block; }
.floating-card strong { font-size: .83rem; color: var(--navy); }
.floating-card small { font-size: .72rem; color: var(--muted); }

.hero__strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 74px;
  border: 1px solid rgba(8,120,249,.1);
  border-radius: 26px 26px 0 0;
  background: white;
  box-shadow: 0 20px 45px rgba(4,28,74,.08);
  overflow: hidden;
}
.hero__strip article {
  display: flex;
  gap: 16px;
  padding: 26px;
}
.hero__strip article + article { border-left: 1px solid var(--border); }
.hero__strip article > span {
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
.hero__strip strong,
.hero__strip p { display: block; margin: 0; }
.hero__strip strong { color: var(--navy); font-size: .9rem; }
.hero__strip p { margin-top: 5px; color: var(--muted); font-size: .8rem; line-height: 1.45; }

.section { padding: 110px 0; }
.section--light { background: #f5f9fe; }
.section--gallery {
  background:
    linear-gradient(rgba(255,255,255,.96), rgba(255,255,255,.96)),
    linear-gradient(135deg, var(--ice), white);
}
.section-heading h2 {
  margin: 14px 0 0;
  max-width: 680px;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.section-heading > p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
}
.section-heading--center {
  text-align: center;
  margin-inline: auto;
}
.section-heading--center h2,
.section-heading--center p { margin-left: auto; margin-right: auto; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-copy > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.quality-grid div {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
}
.quality-grid strong,
.quality-grid span { display: block; }
.quality-grid strong { color: var(--navy); }
.quality-grid span { margin-top: 7px; color: var(--muted); font-size: .86rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.service-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-2), var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8,120,249,.24);
  box-shadow: 0 22px 50px rgba(4,28,74,.1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(6,26,79,.16);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: white;
  background: linear-gradient(135deg, var(--navy-2), var(--blue) 70%, var(--cyan));
  box-shadow: 0 14px 28px rgba(8,120,249,.22);
}
.service-card__icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
}
.services-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

.section--blue {
  position: relative;
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(34,184,255,.26), transparent 28%),
    linear-gradient(135deg, #04143c 0%, #073987 60%, #0878f9 120%);
  overflow: hidden;
}
.section--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, black, transparent);
}
.experience-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.kicker--light { color: #72d3ff; }
.experience-copy h2 {
  margin: 15px 0 20px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.experience-copy p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.76);
}
.experience-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.step-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
}
.step-card > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: white;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.step-card strong { display: block; margin-top: 18px; }
.step-card p { margin: 6px 0 0; color: rgba(255,255,255,.7); font-size: .86rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.doctor-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #f4f9ff);
  box-shadow: 0 18px 40px rgba(4,28,74,.07);
}
.doctor-card__avatar {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.3), transparent 25%),
    linear-gradient(135deg, var(--navy), var(--blue), var(--cyan));
  font-family: "Montserrat", sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(8,120,249,.22);
}
.doctor-card__content > span {
  color: var(--blue);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.doctor-card h3 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: 1.25rem;
}
.doctor-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.doctor-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.doctor-card__actions a {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--navy);
  background: white;
  border: 1px solid var(--border);
  font-size: .8rem;
  font-weight: 800;
}
.doctor-card__actions a:last-child {
  color: white;
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  border-color: transparent;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}
.gallery-header > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: 245px;
  gap: 18px;
  margin-top: 50px;
}
.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy);
  color: white;
  text-align: left;
  box-shadow: 0 18px 40px rgba(4,28,74,.1);
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,18,51,.88), transparent 58%);
}
.gallery-item > span {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
}
.gallery-item strong,
.gallery-item small { display: block; }
.gallery-item strong { font-size: 1rem; }
.gallery-item small { color: rgba(255,255,255,.72); margin-top: 3px; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.12); }

.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
.location-card {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: white;
  box-shadow: 0 20px 50px rgba(4,28,74,.07);
}
.location-card h2 {
  margin: 12px 0 20px;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.location-card address {
  color: var(--muted);
}
.location-card address strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.copy-feedback {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--blue);
  font-size: .82rem;
}
.direct-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.direct-contact a {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f7fbff;
}
.direct-contact span,
.direct-contact strong { display: block; }
.direct-contact span { color: var(--muted); font-size: .76rem; }
.direct-contact strong { color: var(--navy); font-size: .9rem; margin-top: 2px; }

.map-frame {
  min-height: 480px;
  border: 8px solid white;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(4,28,74,.1);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.appointment-section {
  color: white;
  background:
    radial-gradient(circle at 8% 14%, rgba(34,184,255,.42), transparent 22%),
    radial-gradient(circle at 92% 80%, rgba(8,120,249,.38), transparent 28%),
    linear-gradient(135deg, #03133b, #06357f 62%, #0878f9);
}
.appointment-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.appointment-copy h2 {
  margin: 14px 0 18px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.appointment-copy > p { color: rgba(255,255,255,.74); }
.appointment-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.appointment-highlight img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 6px;
  border-radius: 14px;
  background: white;
}
.appointment-highlight strong,
.appointment-highlight small { display: block; }
.appointment-highlight small { color: rgba(255,255,255,.65); margin-top: 3px; }

.appointment-form {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}
.appointment-form label { display: block; }
.appointment-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: .83rem;
  font-weight: 800;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(7,49,117,.15);
  border-radius: 13px;
  background: #f8fbff;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.appointment-form input,
.appointment-form select {
  min-height: 50px;
  padding: 0 14px;
}
.appointment-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 13px 14px;
}
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8,120,249,.11);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 15px 0;
}
.form-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 72px;
  align-items: start;
}
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-weight: 800;
}
.accordion__plus {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  transition: transform .2s ease;
}
.accordion__item.is-open .accordion__plus { transform: rotate(45deg); }
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.accordion__content > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}
.accordion__item.is-open .accordion__content { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__content > p { padding-bottom: 20px; }

.site-footer {
  padding: 70px 0 24px;
  color: rgba(255,255,255,.72);
  background: #031233;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.15fr .8fr;
  gap: 44px;
}
.brand--footer .brand__text strong { color: white; }
.brand--footer .brand__text strong span { color: #45c7ff; }
.brand--footer .brand__text small { color: rgba(255,255,255,.6); }
.footer-brand > p { max-width: 350px; margin: 18px 0 0; }
.site-footer h3 {
  margin: 0 0 16px;
  color: white;
  font-size: .92rem;
}
.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  font-size: .84rem;
}
.site-footer a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: #19bc63;
  box-shadow: 0 14px 30px rgba(25,188,99,.35);
  animation: pulse 2.4s infinite;
}
.whatsapp-fab svg { width: 30px; fill: currentColor; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: .22s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 35, .72);
  backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 26px;
  background: white;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  transform: translateY(16px) scale(.98);
  transition: .22s ease;
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  right: 18px;
  top: 15px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--ice);
  font-size: 1.55rem;
}
.modal h2 {
  margin: 12px 40px 10px 0;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  line-height: 1.15;
}
.modal p { margin: 0; color: var(--muted); }
.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.contact-options a {
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: .2s ease;
}
.contact-options a:hover {
  transform: translateY(-2px);
  border-color: rgba(8,120,249,.28);
  box-shadow: 0 14px 30px rgba(4,28,74,.08);
}
.contact-options__avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.contact-options strong,
.contact-options small { display: block; }
.contact-options strong { color: var(--navy); font-size: .91rem; }
.contact-options small { color: var(--muted); font-size: .78rem; margin-top: 2px; }
.contact-options svg {
  width: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 32px 88px;
  background: rgba(1, 9, 28, .94);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox figure {
  width: min(1040px, 100%);
  margin: 0;
}
.lightbox figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
}
.lightbox figcaption {
  margin-top: 14px;
  color: white;
  text-align: center;
  font-weight: 700;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  color: white;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.lightbox__close {
  top: 20px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.8rem;
}
.lightbox__nav {
  top: 50%;
  width: 50px;
  height: 66px;
  border-radius: 16px;
  transform: translateY(-50%);
  font-size: 2.2rem;
}
.lightbox__nav--prev { left: 22px; }
.lightbox__nav--next { right: 22px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shine {
  0%, 28% { left: -35%; opacity: 0; }
  40% { opacity: 1; }
  58%, 100% { left: 130%; opacity: 0; }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 14px 30px rgba(25,188,99,.35), 0 0 0 0 rgba(25,188,99,.3); }
  50% { box-shadow: 0 14px 30px rgba(25,188,99,.35), 0 0 0 13px rgba(25,188,99,0); }
}

@media (max-width: 1060px) {
  .main-nav { gap: 17px; }
  .main-nav > a:not(.button) { font-size: .84rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { max-width: 650px; margin-inline: auto; margin-top: 42px; text-align: left; }
  .hero__visual { min-height: 520px; }
  .floating-card--left { left: 5%; }
  .floating-card--right { right: 5%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { gap: 44px; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: auto; }
  .cta-card { grid-template-columns: 110px 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  .topbar__inner { justify-content: center; }
  .topbar__inner > span { display: none; }
  .header__inner { min-height: 74px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 50px rgba(4,28,74,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav > a { padding: 12px 10px; }
  .main-nav .button { margin-top: 8px; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 62px; }
  .hero__strip { grid-template-columns: 1fr; border-radius: 22px 22px 0 0; }
  .hero__strip article + article { border-left: 0; border-top: 1px solid var(--border); }
  .split,
  .experience-grid,
  .location-grid,
  .appointment-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .gallery-header { display: block; }
  .gallery-header > p { margin-top: 20px; }
  .gallery-grid { grid-auto-rows: 230px; }
  .gallery-item--tall { grid-row: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand img { width: 48px; height: 48px; }
  .brand__text strong { font-size: 1.05rem; }
  .brand__text small { font-size: .62rem; }

  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.55rem); }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__visual { min-height: 420px; margin-top: 20px; }
  .logo-card { padding: 25px; border-radius: 30px; }
  .floating-card { display: none; }
  .logo-card__badge { bottom: 16px; font-size: .68rem; }
  .section { padding: 78px 0; }
  .section-heading h2,
  .experience-copy h2,
  .appointment-copy h2,
  .location-card h2 { font-size: 2rem; }
  .quality-grid,
  .services-grid,
  .experience-steps,
  .gallery-grid,
  .form-row,
  .direct-contact { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-card__avatar { width: 96px; }
  .gallery-grid { grid-auto-rows: 220px; }
  .location-card { padding: 27px; }
  .map-frame,
  .map-frame iframe { min-height: 360px; }
  .appointment-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .lightbox { padding: 72px 14px 24px; }
  .lightbox__nav {
    top: auto;
    bottom: 12px;
    transform: none;
    height: 48px;
  }
  .lightbox__nav--prev { left: calc(50% - 62px); }
  .lightbox__nav--next { right: calc(50% - 62px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* =========================
   Ajustes visuales v2
   Inspirados en flyers azules de referencia
   ========================= */
.hero--commercial {
  background:
    radial-gradient(circle at 88% 18%, rgba(34, 184, 255, .22), transparent 28%),
    radial-gradient(circle at 8% 12%, rgba(8, 120, 249, .15), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 48%, #ffffff 100%);
}
.hero__lead--highlight strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}
.flyer-style-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.18), transparent 24%),
    radial-gradient(circle at 90% 76%, rgba(255,255,255,.18), transparent 20%),
    linear-gradient(135deg, #0660d4 0%, #0a78f7 50%, #1fc3ff 100%);
  color: white;
}
.flyer-style-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.flyer-style-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: stretch;
}
.flyer-panel,
.service-highlight-card {
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(4, 28, 74, .18);
}
.flyer-panel {
  padding: 42px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(6, 26, 79, .28);
  backdrop-filter: blur(10px);
}
.flyer-panel .kicker,
.flyer-style-section .kicker { color: #d7f3ff; }
.flyer-panel h2 {
  margin: 12px 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: white;
}
.flyer-panel p {
  margin: 0;
  color: rgba(255,255,255,.86);
}
.flyer-pill-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.flyer-pill-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: white;
  font-weight: 700;
}
.flyer-pill-list span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: white;
  font-size: .95rem;
}
.flyer-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.service-highlight-card {
  position: relative;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(241,247,255,.98));
  border: 1px solid rgba(255,255,255,.22);
}
.service-highlight-card::before,
.service-highlight-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,184,255,.2), rgba(34,184,255,0));
  pointer-events: none;
}
.service-highlight-card::before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
}
.service-highlight-card::after {
  width: 200px;
  height: 200px;
  left: -70px;
  bottom: -70px;
}
.service-highlight-card__header {
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}
.service-highlight-card__header span {
  display: block;
  color: var(--blue);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.service-highlight-card__header strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 1.9rem;
  line-height: 1.08;
}
.service-highlight-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.service-highlight-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 66px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(8,120,249,.11);
  box-shadow: 0 10px 26px rgba(4,28,74,.05);
}
.service-highlight-list b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--cyan));
  font-family: "Montserrat", sans-serif;
}
.service-highlight-list span {
  color: var(--navy);
  font-weight: 800;
}
.service-highlight-cta {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
}
.service-highlight-cta p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
}
.service-highlight-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-highlight-phones a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: white;
  font-weight: 800;
}
@media (max-width: 960px) {
  .flyer-style-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .flyer-panel { padding: 28px; }
  .flyer-pill-list,
  .service-highlight-phones { grid-template-columns: 1fr; }
  .service-highlight-card__header strong { font-size: 1.5rem; }
}


/* Correos de contacto */
.doctor-card__email {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255,255,255,.72);
}
.doctor-card__email span,
.doctor-card__email a {
  display: block;
}
.doctor-card__email span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}
.doctor-card__email a {
  margin-top: 2px;
  color: var(--blue);
  font-size: .86rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.general-email-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 20px 24px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--cyan));
  box-shadow: 0 18px 40px rgba(8,120,249,.18);
}
.general-email-card span,
.general-email-card strong {
  display: block;
}
.general-email-card span {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
}
.general-email-card strong {
  margin-top: 3px;
  font-family: "Montserrat", sans-serif;
}
.general-email-card a {
  color: white;
  font-weight: 800;
  overflow-wrap: anywhere;
}
@media (max-width: 640px) {
  .general-email-card {
    display: block;
  }
  .general-email-card a {
    display: block;
    margin-top: 12px;
  }
}


/* Galería clínica clasificada */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 34px 0 28px;
}
.gallery-filter {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(8,120,249,.14);
  border-radius: 999px;
  color: var(--navy);
  background: white;
  font-weight: 800;
  transition: .2s ease;
}
.gallery-filter:hover,
.gallery-filter.is-active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy-2), var(--blue), var(--cyan));
  box-shadow: 0 10px 24px rgba(8,120,249,.2);
}
.gallery-grid--classified {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
}
.gallery-grid--classified .gallery-item {
  min-height: 260px;
}
.gallery-grid--classified .gallery-item--tall {
  grid-row: span 2;
}
.gallery-grid--classified .gallery-item--wide {
  grid-column: span 2;
}
.gallery-item.is-hidden {
  display: none;
}
.gallery-item__overlay {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 18px;
}
.gallery-item__overlay small,
.gallery-item__overlay strong,
.gallery-item__overlay em,
.gallery-item__overlay b {
  display: block;
}
.gallery-item__overlay small {
  color: #7edbff;
  font-size: .69rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.gallery-item__overlay strong {
  margin-top: 4px;
  color: white;
  font-size: 1rem;
}
.gallery-item__overlay em {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  font-style: normal;
  line-height: 1.42;
  opacity: 0;
  transition: .25s ease;
}
.gallery-item__overlay b {
  margin-top: 7px;
  color: rgba(255,255,255,.74);
  font-size: .72rem;
}
.gallery-item:hover .gallery-item__overlay em {
  max-height: 80px;
  margin-top: 7px;
  opacity: 1;
}
.gallery-disclaimer {
  max-width: 820px;
  margin: 28px auto 0;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,255,255,.74);
  text-align: center;
  font-size: .8rem;
}
@media (max-width: 960px) {
  .gallery-grid--classified {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .gallery-grid--classified {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gallery-grid--classified .gallery-item--tall,
  .gallery-grid--classified .gallery-item--wide {
    grid-row: auto;
    grid-column: auto;
  }
  .gallery-item__overlay em {
    max-height: 80px;
    margin-top: 7px;
    opacity: 1;
  }
}
