:root {
  --navy: #071b3a;
  --navy-2: #0b2b4c;
  --teal: #0e8a9a;
  --teal-2: #0f6470;
  --gold: #c9a76a;
  --white: #ffffff;
  --off-white: #f4f7fa;
  --gray: #687486;
  --dark: #061222;
  --line: rgba(7, 27, 58, 0.12);
  --shadow: 0 24px 70px rgba(7, 27, 58, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--white);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background:
    radial-gradient(circle at top right, rgba(14, 138, 154, 0.08), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f8fbfd 48%, #fff 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 36px), 920px);
}

.section {
  position: relative;
  padding: 120px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-2);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.lead {
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: var(--gray);
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--navy), var(--teal-2));
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 16px 40px rgba(7, 27, 58, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(7, 27, 58, 0.2);
}

.btn--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(7, 27, 58, 0.15);
  color: var(--navy);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  background: var(--white);
  color: var(--navy);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  text-shadow: 0 10px 20px rgba(7, 27, 58, 0.18);
}

.preloader span {
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Header */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(calc(100% - 28px), 1240px);
  height: 76px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(7, 27, 58, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 45px rgba(7, 27, 58, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 222px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(7, 27, 58, 0.72);
  font-weight: 700;
  font-size: 0.88rem;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  border-radius: 50%;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 120px 28px 44px;
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-105%);
  transition: transform 0.45s ease;
}

.mobile-nav a:not(.btn) {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--navy);
  line-height: 1;
}

.menu-open .mobile-nav {
  transform: translateY(0);
}

/* Hero */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 148px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.22;
}

.orb--one {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 120px;
  background: var(--teal);
}

.orb--two {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: 120px;
  background: var(--gold);
}

.surgical-line {
  position: absolute;
  right: -80px;
  top: 50%;
  width: min(58vw, 780px);
  transform: translateY(-50%);
  color: var(--teal);
  opacity: 0.5;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: center;
  gap: 70px;
}

.hero-title {
  margin: 0;
  max-width: 800px;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.8vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.hero-text {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--gray);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
  margin-top: 36px;
}

.hero__meta div {
  padding: 18px;
  border: 1px solid rgba(7, 27, 58, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.hero__meta strong,
.hero__meta span {
  display: block;
}

.hero__meta strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.hero__meta span {
  margin-top: 6px;
  color: var(--gray);
  line-height: 1.5;
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.56)),
    radial-gradient(circle at top right, rgba(14, 138, 154, 0.12), transparent 50%);
  border: 1px solid rgba(7, 27, 58, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto 32px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--teal-2);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero-card__top b {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(7, 27, 58, 0.18);
  letter-spacing: -0.07em;
}

.hero-card h2 {
  margin: 28px 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.hero-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.hero-card li {
  position: relative;
  padding-left: 28px;
  color: var(--gray);
  line-height: 1.5;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(14, 138, 154, 0.1);
}

.hero-card a {
  color: var(--teal-2);
  font-weight: 800;
}

.hero-card--photo {
  padding: 18px;
}

.hero-card--photo::before {
  display: none;
}

.photo-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(7, 27, 58, 0.92), rgba(11, 43, 76, 0.82)),
    radial-gradient(circle at 70% 20%, rgba(14, 138, 154, 0.35), transparent 38%);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
}

.photo-placeholder,
.doctor-photo-placeholder,
.image-slot {
  position: relative;
  min-height: inherit;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
}

.photo-placeholder::after,
.doctor-photo-placeholder::after,
.image-slot::after {
  content: "";
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 58px));
  opacity: 0.65;
}

.photo-placeholder span,
.doctor-photo-placeholder span,
.image-slot span {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.photo-placeholder small,
.doctor-photo-placeholder small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.hero-card__compact {
  padding: 22px 12px 8px;
}

.hero-card__compact span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card__compact h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(7, 27, 58, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
}

.scroll-indicator span {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, transparent, var(--teal), transparent);
}

/* Problem */
.problem {
  background:
    linear-gradient(180deg, transparent 0%, rgba(244, 247, 250, 0.88) 100%);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.pillar {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(7, 27, 58, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 27, 58, 0.06);
}

.pillar span {
  display: inline-flex;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.8rem;
}

.pillar h3 {
  margin: 42px 0 12px;
  color: var(--navy);
  font-size: 1.4rem;
}

.pillar p {
  margin: 0;
  color: var(--gray);
  line-height: 1.65;
}

/* Procedures */
.section-heading {
  max-width: 850px;
  margin-bottom: 54px;
}

.procedure-compare {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr);
  align-items: stretch;
  gap: 20px;
}

.procedure-card {
  position: relative;
  min-height: 520px;
  padding: 36px;
  border: 1px solid rgba(7, 27, 58, 0.1);
  border-radius: 36px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(7, 27, 58, 0.08);
  overflow: hidden;
}

.procedure-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 138, 154, 0.6), transparent);
}

.procedure-card__icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 40px;
  border-radius: 28px;
  background: rgba(14, 138, 154, 0.08);
  color: var(--teal);
}

.procedure-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.procedure-card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.75;
}

.procedure-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.procedure-card li {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--off-white);
  color: rgba(6, 18, 34, 0.75);
  font-weight: 700;
  font-size: 0.92rem;
}

.compare-core {
  align-self: center;
  position: sticky;
  top: 150px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 14px;
  border-radius: 30px;
  background: linear-gradient(145deg, var(--navy), var(--teal-2));
  color: var(--white);
  box-shadow: 0 26px 60px rgba(7, 27, 58, 0.18);
}

.compare-core span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 2rem;
}

.compare-core p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-size: 0.95rem;
}

.compare-core .btn {
  width: 100%;
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

/* Timeline */
.timeline-section {
  background: var(--off-white);
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 900px;
  margin-inline: auto;
  padding: 18px 0;
}

.timeline__line {
  position: absolute;
  left: 36px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(7, 27, 58, 0.1);
  overflow: hidden;
}

.timeline__line span {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--teal), var(--navy));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(7, 27, 58, 0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 16px 40px rgba(7, 27, 58, 0.05);
}

.timeline-item > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(14, 138, 154, 0.24);
  color: var(--teal);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.08);
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--navy);
}

.timeline-item p {
  margin: 0;
  color: var(--gray);
  line-height: 1.65;
}

/* Doctor */
.doctor {
  background:
    radial-gradient(circle at left, rgba(14, 138, 154, 0.09), transparent 34rem),
    var(--white);
}

.doctor__grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
  gap: 76px;
}

.doctor__visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 40px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(7,27,58,0.98), rgba(11,43,76,0.92)),
    radial-gradient(circle at top right, rgba(14,138,154,0.9), transparent 60%);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doctor-mark {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(7rem, 16vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
  text-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

.doctor-orbit {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
}

.doctor-orbit::before,
.doctor-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 12px rgba(14, 138, 154, 0.14);
}

.doctor-orbit::before {
  width: 14px;
  height: 14px;
  left: 12%;
  top: 18%;
}

.doctor-orbit::after {
  width: 10px;
  height: 10px;
  right: 17%;
  bottom: 24%;
  background: var(--gold);
}

.doctor__visual p {
  position: absolute;
  bottom: 34px;
  left: 34px;
  right: 34px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.doctor__list {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.doctor__list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(7, 27, 58, 0.1);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(7, 27, 58, 0.05);
}

.doctor__list strong {
  color: var(--navy);
}

.doctor__list span {
  color: var(--gray);
  line-height: 1.55;
}

/* Guayaquil */
.guayaquil-section {
  background:
    linear-gradient(180deg, rgba(244,247,250,0), rgba(244,247,250,0.95)),
    var(--white);
}

.guayaquil__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 52px;
}

.guayaquil__grid .btn {
  margin-top: 30px;
}

.image-duo {
  position: relative;
  min-height: 520px;
}

.image-slot {
  min-height: auto;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(7, 27, 58, 0.95), rgba(11, 43, 76, 0.84)),
    radial-gradient(circle at top right, rgba(14, 138, 154, 0.36), transparent 45%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
}

.image-slot--main {
  height: 430px;
  width: 72%;
}

.image-slot--small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 230px;
  background:
    linear-gradient(145deg, rgba(14, 138, 154, 0.94), rgba(7, 27, 58, 0.9));
}

/* FAQ */
.faq {
  background: var(--off-white);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid rgba(7, 27, 58, 0.1);
  border-radius: 24px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(7, 27, 58, 0.04);
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 24px 62px 24px 24px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(14, 138, 154, 0.1);
  color: var(--teal);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--gray);
  line-height: 1.7;
}

/* Location */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 48px;
}

.location-card {
  padding: 36px;
  border-radius: 34px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.location-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.location-card h3 {
  margin: 18px 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.location-card p {
  color: rgba(255,255,255,0.72);
}

.location-card a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 7px;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(14,138,154,0.3), transparent 35rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  overflow: hidden;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.final-cta p {
  margin: 24px 0 34px;
  color: rgba(255,255,255,0.74);
  font-size: 1.12rem;
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta .eyebrow::before {
  display: none;
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #24d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 20px 45px rgba(36, 211, 102, 0.32);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
}

/* Animation defaults */
.reveal,
.reveal-card,
.timeline-item {
  will-change: transform, opacity;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 210px 1fr auto;
  }

  .brand img {
    width: 200px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.8rem;
  }

  .hero__grid,
  .doctor__grid,
  .location__grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 680px;
  }

  .procedure-compare {
    grid-template-columns: 1fr;
  }

  .compare-core {
    position: relative;
    top: auto;
    order: 3;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
    top: 12px;
    padding: 9px 10px 9px 16px;
  }

  .brand img {
    width: 208px;
  }

  .main-nav,
  .site-header > .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 86px 0;
  }

  .hero {
    padding-top: 130px;
    min-height: auto;
  }

  .hero__grid {
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.6rem);
  }

  .hero__meta,
  .pillars {
    grid-template-columns: 1fr;
  }

  .procedure-card {
    min-height: auto;
    padding: 28px;
  }

  .timeline__line {
    left: 28px;
  }

  .timeline-item {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .timeline-item > span {
    width: 58px;
    height: 58px;
  }

  .doctor__visual {
    min-height: 420px;
  }

  .doctor__list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }
}

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

  .brand img {
    width: 188px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 26px;
  }

  .section-title {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .keyword-cloud span {
    width: 100%;
  }
}


/* Image-ready doctor section */
.doctor__visual--photo {
  padding: 18px;
}

.doctor__visual--photo .doctor-photo-placeholder {
  width: 100%;
  min-height: 500px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(7, 27, 58, 0.72), rgba(11, 43, 76, 0.58)),
    radial-gradient(circle at top right, rgba(14, 138, 154, 0.35), transparent 44%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.doctor__visual--photo p {
  z-index: 2;
}

@media (max-width: 1080px) {
  .guayaquil__grid {
    grid-template-columns: 1fr;
  }

  .image-duo {
    min-height: 470px;
  }
}

@media (max-width: 860px) {
  .photo-frame {
    min-height: 360px;
  }

  .image-duo {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .image-slot--main,
  .image-slot--small {
    position: relative;
    width: 100%;
    height: 320px;
  }

  .doctor__visual--photo .doctor-photo-placeholder {
    min-height: 360px;
  }
}
.doctor-photo {
    padding: 0;
    overflow: hidden;
}

    .doctor-photo::after {
        display: none;
    }

    .doctor-photo img {
        width: 100%;
        height: 100%;
        min-height: 500px;
        object-fit: cover;
        object-position: center top;
        border-radius: 30px;
    }