:root {
  color-scheme: only light;
  --bg: #f1f8fb;
  --bg-deep: #e2eff4;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.82);
  --ink: #0b2a36;
  --ink-2: #234a59;
  --muted: #4a6573;
  --line: rgba(11, 42, 54, 0.09);
  --line-strong: rgba(11, 42, 54, 0.16);
  --primary: #0aa3c2;
  --primary-soft: #34c1dc;
  --primary-deep: #0c6e84;
  --accent: #7cd0e2;
  --accent-soft: #e3f4f9;
  --whatsapp: #25d366;
  --whatsapp-deep: #128c4a;
  --shadow-sm: 0 6px 18px rgba(11, 42, 54, 0.06);
  --shadow: 0 24px 60px rgba(11, 42, 54, 0.08);
  --shadow-lg: 0 40px 90px rgba(11, 42, 54, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: only light;
  background-color: var(--bg);
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  background-color: var(--bg);
  color-scheme: only light;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 0% -10%, rgba(10, 163, 194, 0.14), transparent 60%),
    radial-gradient(900px 600px at 100% 10%, rgba(124, 208, 226, 0.18), transparent 55%),
    radial-gradient(1200px 700px at 50% 110%, rgba(12, 110, 132, 0.08), transparent 60%),
    linear-gradient(180deg, #f4fbfd 0%, #e8f3f7 100%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 16px 0 64px;
}

/* Header */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(11, 42, 54, 0.08);
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-soft) 100%);
  border: 1px solid rgba(10, 163, 194, 0.18);
  box-shadow: 0 8px 18px rgba(10, 163, 194, 0.18);
}
.brand-mark img,
.brand-mark svg {
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
}

.brand-copy { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.brand-copy strong {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-dot { color: var(--primary); }
.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink-2);
}
.site-nav a { position: relative; padding: 6px 0; transition: color 0.18s ease; }
.site-nav a:hover { color: var(--primary); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 8px; }

.header-cta { min-height: 44px; padding: 0 18px; font-size: 0.9rem; }
.header-cta .icon-wa { width: 18px; height: 18px; margin-right: 6px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }

.button-primary {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
}
.button-primary:hover { box-shadow: 0 18px 36px rgba(37, 211, 102, 0.42); }

.button-secondary {
  border-color: rgba(10, 163, 194, 0.35);
  background: #fff;
  color: var(--primary-deep);
}
.button-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-deep);
  background: var(--accent-soft);
}

.button-light {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(8px);
}
.button-light:hover { background: rgba(255, 255, 255, 0.26); }

.button.full-width { width: 100%; }
.icon-wa { width: 20px; height: 20px; flex-shrink: 0; }

/* Hero */
.hero,
.trust-band,
.section,
.site-footer { margin-top: 24px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(600px 400px at 110% -20%, rgba(124, 208, 226, 0.18), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%);
  background-color: #ffffff;
  box-shadow: var(--shadow);
  align-items: center;
  overflow: hidden;
}

.eyebrow {
  display: inline-block;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--primary-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: normal;
}

h1, h2, h3 { color: var(--ink); }

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 600;
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1 span {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
}

.hero-text {
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 56ch;
}
.hero-text strong { color: var(--ink); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 0;
}
.hero-stats div {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(10, 163, 194, 0.14);
}
.hero-stats dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stats dd {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.hero-media { display: grid; gap: 16px; }
.hero-media-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero-media-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
}
.hero-media-main figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(14, 31, 41, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  display: grid;
  gap: 4px;
}
.hero-badge {
  display: inline-block;
  width: fit-content;
  padding: 5px 11px;
  margin-bottom: 6px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-media-main figcaption strong { font-size: 1rem; }
.hero-media-main figcaption small { color: rgba(255, 255, 255, 0.78); font-size: 0.82rem; }

/* Trust band */
.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-item {
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 163, 194, 0.35);
}
.trust-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-item strong { line-height: 1.4; font-size: 0.95rem; color: var(--ink); }

/* Sections */
.section {
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.section-heading { display: grid; gap: 8px; margin-bottom: 32px; max-width: 720px; }
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.section-sub { margin: 8px 0 0; color: var(--muted); font-size: 1rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.panel-copy { background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%); }
.panel-details { background: linear-gradient(180deg, var(--accent-soft) 0%, #ffffff 100%); }

.panel h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.panel p { margin: 0 0 14px; color: var(--ink-2); line-height: 1.72; }
.panel p:last-of-type { margin-bottom: 0; }

.detail-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.detail-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.95rem;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list strong { color: var(--ink); margin-right: 4px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-soft);
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
}
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 0.94rem; }

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  font-size: 1.4rem;
}

.service-card-featured {
  grid-column: span 3;
  padding: 40px 44px;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 70%, var(--primary-soft) 100%);
  color: #fff;
  border: none;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: 0 24px 50px rgba(10, 163, 194, 0.28);
}
.service-card-featured:hover { transform: translateY(-3px); }
.service-card-featured h3 {
  margin: 6px 0 12px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  max-width: 22ch;
}
.service-card-featured p { color: rgba(255, 255, 255, 0.86); margin: 0; max-width: 56ch; }
.service-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.service-card-featured > div:last-child,
.service-card-featured .button-light { align-self: center; justify-self: end; }

/* Media block */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.media-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.media-copy p { color: var(--ink-2); line-height: 1.72; margin: 18px 0; }
.clinic-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  gap: 12px;
}
.clinic-list li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.clinic-list strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}
.clinic-list span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.media-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 560px;
}
.media-large {
  grid-row: 1 / span 2;
  border-radius: 26px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow);
}
.media-small {
  border-radius: 22px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(10, 163, 194, 0.28);
}
.step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--muted); line-height: 1.65; }

/* Cards (credentials) */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}
.card:hover { border-color: var(--primary-soft); }
.card h3 { margin: 0 0 6px; font-size: 1rem; line-height: 1.35; }
.card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-data {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-data article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.contact-data article:hover {
  border-color: var(--primary-soft);
  transform: translateY(-1px);
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--primary-deep);
  align-self: flex-start;
  margin-top: 2px;
  border: 1px solid rgba(10, 163, 194, 0.2);
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.contact-info span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-info strong {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
  box-shadow: var(--shadow);
}
.contact-form h3 { margin: 0; font-size: 1.3rem; letter-spacing: -0.01em; }
.form-intro { margin: -4px 0 8px; color: var(--muted); font-size: 0.95rem; }

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 110px; }

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

/* Footer */
.site-footer {
  margin-top: 32px;
  padding: 36px 40px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(10, 163, 194, 0.18), transparent 60%),
    linear-gradient(135deg, #0b2a36 0%, #0c3d4a 100%);
  background-color: #0b2a36;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .site-header,
  .hero-media-main figcaption,
  .button-light,
  .site-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header,
  .site-nav {
    background: rgba(255, 255, 255, 0.97);
    background-color: rgba(255, 255, 255, 0.97);
  }

  .hero-media-main figcaption {
    background: rgba(14, 31, 41, 0.88);
    background-color: rgba(14, 31, 41, 0.88);
  }

  .button-light {
    background: rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.22);
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.site-footer strong { color: #fff; display: block; margin-bottom: 6px; font-size: 1.02rem; letter-spacing: -0.01em; }
.site-footer p { margin: 4px 0; line-height: 1.6; }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp svg { width: 22px; height: 22px; }

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 32px;
    text-align: center;
  }
  .hero-copy { max-width: 720px; margin: 0 auto; }
  .hero-copy .eyebrow { margin-left: auto; margin-right: auto; }
  .hero h1 { margin-left: auto; margin-right: auto; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { text-align: left; }
  .hero-media-main img { aspect-ratio: 16 / 11; object-position: center 22%; }

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

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

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-column: span 2; grid-template-columns: 1fr; gap: 18px; padding: 32px; }
  .service-card-featured .button-light { justify-self: start; }

  .media-grid { grid-template-columns: 1fr; gap: 28px; }
  .media-collage { height: 460px; }

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

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

  .contact { grid-template-columns: 1fr; gap: 28px; }

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

  .section { padding: 40px; }
}

/* ===== Mobile ===== */
@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding: 12px 0 96px;
  }

  .site-header {
    padding: 8px 8px 8px 12px;
    border-radius: 22px;
    top: 10px;
    gap: 10px;
  }
  .brand-mark { width: 42px; height: 42px; border-radius: 12px; }
  .brand-copy strong { font-size: 1.15rem; }
  .brand-copy small { display: none; }

  .header-cta span { display: none; }
  .header-cta {
    min-height: 44px;
    width: 44px;
    padding: 0;
    border-radius: 50%;
  }
  .header-cta .icon-wa { width: 20px; height: 20px; margin: 0; }

  .nav-toggle { display: flex; }

  .site-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--ink);
  }
  .site-nav a:hover { background: var(--accent-soft); }
  .site-nav a::after { display: none; }

  .hero {
    padding: 32px 20px;
    border-radius: 26px;
    gap: 28px;
    text-align: center;
  }
  .hero-copy { margin: 0 auto; }
  .hero .eyebrow { margin-left: auto; margin-right: auto; }
  .hero h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
    line-height: 1.12;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero-text { font-size: 1rem; margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  .hero-stats div { padding: 14px 16px; }

  .hero-media-main img { aspect-ratio: 4 / 4.4; }
  .hero-media-main figcaption { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; }

  .trust-band { grid-template-columns: 1fr; gap: 10px; }

  .section { padding: 32px 22px; border-radius: 26px; }
  .section-heading { margin-bottom: 24px; }
  .section-heading h2 { font-size: clamp(1.7rem, 6.5vw, 2.1rem); }
  .section-sub { font-size: 0.95rem; }

  .panel { padding: 24px 22px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; padding: 28px 24px; }

  .media-grid { gap: 20px; }
  .media-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px;
    height: auto;
  }
  .media-large { grid-column: 1 / -1; grid-row: 1; }
  .media-small-top { grid-row: 2; grid-column: 1; }
  .media-small-bottom { grid-row: 2; grid-column: 2; }

  .cards-3 { grid-template-columns: 1fr; }

  .contact-form { padding: 24px 22px; }
  .contact-data article { padding: 14px 16px; }
  .contact-data strong { font-size: 0.92rem; word-break: break-word; }

  .site-footer { padding: 28px 24px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Floating WhatsApp on mobile: compact circle, doesn't block content */
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 0;
    width: 58px;
    height: 58px;
    justify-content: center;
  }
  .floating-whatsapp .fw-label { display: none; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
}

@media (prefers-color-scheme: dark) {
  :root,
  html,
  body {
    color-scheme: only light;
    background: var(--bg) !important;
    background-color: var(--bg) !important;
    color: var(--ink) !important;
  }

  .site-bg {
    background:
      radial-gradient(1100px 700px at 0% -10%, rgba(10, 163, 194, 0.14), transparent 60%),
      radial-gradient(900px 600px at 100% 10%, rgba(124, 208, 226, 0.18), transparent 55%),
      radial-gradient(1200px 700px at 50% 110%, rgba(12, 110, 132, 0.08), transparent 60%),
      linear-gradient(180deg, #f4fbfd 0%, #e8f3f7 100%) !important;
  }

  .site-header,
  .site-nav,
  .hero,
  .section,
  .trust-item,
  .panel,
  .service-card,
  .clinic-list li,
  .step,
  .card,
  .contact-data article,
  .contact-form {
    background-color: #ffffff !important;
    color: var(--ink) !important;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96) !important;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .hero {
    background:
      radial-gradient(600px 400px at 110% -20%, rgba(124, 208, 226, 0.18), transparent 60%),
      linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%) !important;
  }

  .section {
    background: rgba(255, 255, 255, 0.92) !important;
  }

  .panel-copy,
  .contact-form {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%) !important;
  }

  .panel-details {
    background: linear-gradient(180deg, var(--accent-soft) 0%, #ffffff 100%) !important;
  }

  .button-secondary,
  .nav-toggle,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: var(--ink) !important;
  }

  .eyebrow,
  .hero-stats div,
  .service-icon,
  .contact-icon {
    background: var(--accent-soft) !important;
    color: var(--primary-deep) !important;
  }

  h1,
  h2,
  h3,
  .brand-copy strong,
  .hero-text strong,
  .trust-item strong,
  .detail-list strong,
  .clinic-list strong,
  .contact-info strong,
  .card h3,
  .step h3,
  .service-card h3 {
    color: var(--ink) !important;
  }

  .brand-copy small,
  .hero-text,
  .panel p,
  .detail-list li,
  .service-card p,
  .media-copy p,
  .clinic-list span,
  .step p,
  .card p,
  .form-intro,
  .form-note,
  .contact-info span {
    color: var(--muted) !important;
  }

  .site-footer {
    background:
      radial-gradient(600px 300px at 0% 0%, rgba(10, 163, 194, 0.18), transparent 60%),
      linear-gradient(135deg, #0b2a36 0%, #0c3d4a 100%) !important;
    background-color: #0b2a36 !important;
    color: rgba(255, 255, 255, 0.82) !important;
  }

  .site-footer strong,
  .button-primary,
  .button-light,
  .service-card-featured,
  .service-card-featured h3,
  .service-card-featured p,
  .service-kicker,
  .floating-whatsapp,
  .hero-media-main figcaption,
  .hero-media-main figcaption strong,
  .hero-media-main figcaption small {
    color: #ffffff !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
