/* =========================================================
   OM's Surgicare — Modern Premium Healthcare Website
   ========================================================= */

:root {
  --teal-900: #0c4a6e;
  --teal-800: #075985;
  --teal-700: #0e7490;
  --teal-600: #0891b2;
  --teal-500: #06b6d4;
  --mint-600: #0d9488;
  --mint-500: #14b8a6;
  --mint-400: #2dd4bf;
  --ink: #0f2a33;
  --ink-soft: #39535d;
  --body: #52707c;
  --line: #dcebea;
  --soft: #eef8f8;
  --soft-2: #f7fbfb;
  --white: #ffffff;
  --amber: #f59e0b;
  --danger: #ef4444;
  --grad: linear-gradient(120deg, #0e7490 0%, #14b8a6 100%);
  --grad-soft: linear-gradient(120deg, #e6f6f5 0%, #d9eff4 100%);
  --shadow-sm: 0 2px 10px rgba(14, 116, 144, .07);
  --shadow-md: 0 10px 30px rgba(14, 116, 144, .10);
  --shadow-lg: 0 24px 60px rgba(12, 74, 110, .16);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.25; letter-spacing: -.01em; }

h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

::selection { background: var(--mint-500); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--teal-700); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: #cfe6ea; font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.topbar__note { font-weight: 500; }
.topbar__links { display: flex; gap: 22px; }
.topbar__link { display: inline-flex; align-items: center; gap: 8px; transition: color .25s; }
.topbar__link:hover { color: #fff; }
.topbar__link .icon { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  display: flex; align-items: center; justify-content: center;
  width: auto; height: 54px; flex-shrink: 0;
  background: #fff; border-radius: 12px; padding: 4px;
  box-shadow: var(--shadow-sm);
}
.brand__logo img {
  height: 100%; width: auto; max-width: none; display: block;
  object-fit: contain; border-radius: 6px;
}
.brand--footer .brand__logo { height: 48px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); letter-spacing: -.01em; }
.brand__text small { font-size: .72rem; font-weight: 600; color: var(--teal-600); letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__list { display: flex; gap: 4px; }
.nav__link {
  display: block; padding: 10px 12px; font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  border-radius: 10px; position: relative; transition: color .25s, background .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav__link:hover { color: var(--teal-700); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: 4px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; z-index: 1101;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(14, 116, 144, .35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(14, 116, 144, .42); }

.btn--ghost { background: transparent; color: var(--teal-700); border-color: rgba(14, 116, 144, .35); }
.btn--ghost:hover { background: rgba(14, 116, 144, .07); border-color: var(--teal-600); }

.btn--light { background: #fff; color: var(--teal-700); box-shadow: 0 10px 24px rgba(4, 32, 40, .25); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(4, 32, 40, .35); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

/* ---------- Eyebrow & section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--grad); }
.eyebrow--light { color: var(--mint-400); }
.eyebrow--light::before { background: #fff; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 16px; }

.section { padding: 96px 0; }
.section--tint { background: var(--soft-2); }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(20, 184, 166, .12); color: var(--mint-600);
  font-weight: 700; font-size: .86rem; padding: 9px 18px; border-radius: 999px;
}
.badge .icon { width: 16px; height: 16px; fill: currentColor; stroke: none; }

.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 0; background: linear-gradient(180deg, #f4fbfc 0%, #eaf7f6 55%, #fff 100%); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(20, 184, 166, .16), transparent 42%),
    radial-gradient(circle at 10% 75%, rgba(6, 182, 212, .14), transparent 40%),
    radial-gradient(circle at 45% 10%, rgba(14, 116, 144, .08), transparent 35%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(14, 116, 144, .14) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: .45;
  mask-image: radial-gradient(circle at 60% 40%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 60% 40%, #000, transparent 70%);
}

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }

.hero__content h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); font-weight: 800; margin: 20px 0 18px; }
.hero__lead { font-size: 1.13rem; max-width: 520px; margin-bottom: 30px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero__points { display: grid; gap: 12px; }
.hero__points li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft); font-size: .97rem; }

.check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad); display: inline-flex; align-items: center; justify-content: center;
}
.check svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  position: relative; border-radius: 32px; padding: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #eefaf9 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(20, 184, 166, .18);
  transform: rotate(1deg);
}
.hero__doctor { margin: 0 auto; width: 100%; max-width: 380px; }

.hero__photo {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: 0 0 0 6px #fff, 0 0 0 7px rgba(20, 184, 166, .25);
}
.hero__photo img {
  width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; display: block;
}
.hero__photo-plate {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(15, 42, 51, .85); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 14px; padding: 12px 16px;
}
.hero__photo-plate strong { display: block; color: #fff; font-family: var(--font-head); font-size: .98rem; }
.hero__photo-plate small { display: block; color: var(--mint-400); font-weight: 700; font-size: .7rem; letter-spacing: .03em; margin-top: 2px; }
.hero__photo-plate span { display: block; color: rgba(255, 255, 255, .85); font-size: .8rem; margin-top: 3px; }

.about__photo {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: 0 0 0 6px #fff, 0 0 0 7px rgba(20, 184, 166, .25);
}
.about__photo img {
  width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; display: block;
}
.about__photo-plate {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(15, 42, 51, .85); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 14px; padding: 12px 16px;
}
.about__photo-plate strong { display: block; color: #fff; font-family: var(--font-head); font-size: .98rem; }
.about__photo-plate small { display: block; color: var(--mint-400); font-weight: 700; font-size: .7rem; letter-spacing: .03em; margin-top: 2px; }
.about__photo-plate span { display: block; color: rgba(255, 255, 255, .85); font-size: .8rem; margin-top: 3px; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; padding: 12px 16px; border-radius: 16px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  animation: float 5.5s ease-in-out infinite;
}
.float-card strong { font-size: .9rem; color: var(--ink); display: block; line-height: 1.3; }
.float-card small { font-size: .76rem; color: var(--body); }
.float-card__icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: rgba(14, 116, 144, .12);
  background: color-mix(in srgb, var(--c) 14%, #fff);
  color: var(--c); display: flex; align-items: center; justify-content: center;
}
.float-card__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.float-card--1 { top: 14%; left: -34px; animation-delay: 0s; }
.float-card--2 { bottom: 22%; right: -30px; animation-delay: 1.2s; }
.float-card--3 { top: -22px; right: 8%; animation-delay: 2.1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Stats */
.stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: #fff; border-radius: 24px; padding: 30px 26px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  margin: 64px auto 0; transform: translateY(48px);
}
.stat { text-align: center; padding: 6px 10px; }
.stat strong {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1.1;
}
.stat span { font-size: .9rem; font-weight: 600; color: var(--ink-soft); display: block; margin-top: 4px; }

/* ---------- Welcome ---------- */
.welcome { padding-top: 150px; background: #fff; }
.welcome__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.welcome__text h2 { margin-bottom: 18px; }
.welcome__text p { margin-bottom: 16px; }
.ticks { margin: 22px 0 28px; display: grid; gap: 12px; }
.ticks li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft); }
.ticks li::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

.welcome__card {
  position: relative; background: var(--grad); color: #fff; border-radius: 28px;
  padding: 44px 38px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.welcome__card::before {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255, 255, 255, .12); top: -90px; right: -80px;
}
.welcome__card::after {
  content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%;
  border: 22px solid rgba(255, 255, 255, .1); bottom: -60px; left: -40px;
}
.welcome__num {
  font-family: var(--font-head); font-weight: 800; font-size: 3rem; opacity: .35; display: block; margin-bottom: 14px;
}
.welcome__card h3 { color: #fff; margin-bottom: 14px; font-size: 1.4rem; }
.welcome__card p { color: rgba(255, 255, 255, .92); margin-bottom: 24px; position: relative; }
.welcome__badges { display: flex; flex-wrap: wrap; gap: 10px; position: relative; }
.welcome__badges span {
  background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px; padding: 7px 16px; font-size: .82rem; font-weight: 700;
}

/* ---------- About ---------- */
.about { background: var(--soft-2); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about__text p { margin-bottom: 16px; }
.about__sign {
  margin-top: 26px; padding: 18px 22px; background: #fff; border-radius: var(--radius-sm);
  border-left: 4px solid var(--mint-500); box-shadow: var(--shadow-sm);
}
.about__sign strong { color: var(--ink); font-family: var(--font-head); display: block; }
.about__sign span { font-size: .85rem; color: var(--teal-600); font-weight: 600; }

.about__expertise {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.about__expertise h3 { margin-bottom: 20px; font-size: 1.25rem; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-list li {
  background: var(--soft); color: var(--teal-700); font-weight: 600; font-size: .87rem;
  padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line);
  transition: background .25s, transform .25s;
}
.chip-list li:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.about__note { margin-top: 22px; font-size: .95rem; }

/* ---------- Services ---------- */
.services { background: #fff; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service:hover::before { transform: scaleX(1); }

.service__icon {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: rgba(14, 116, 144, .12);
  background: color-mix(in srgb, var(--c) 12%, #fff); color: var(--c); margin-bottom: 18px;
  transition: transform .3s;
}
.service__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service__icon img { width: 32px; height: 32px; object-fit: contain; display: block; }
.service:hover .service__icon { transform: scale(1.08) rotate(-4deg); }
.service h3 { margin-bottom: 10px; }
.service p { font-size: .93rem; }

.services__cta {
  margin-top: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--grad-soft); border: 1px solid rgba(20, 184, 166, .25); border-radius: 20px; padding: 28px 32px;
}
.services__cta p { font-weight: 700; color: var(--ink); font-size: 1.08rem; }

/* ---------- Benefits ---------- */
.benefits { background: var(--ink); position: relative; overflow: hidden; }
.benefits::before {
  content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, .18), transparent 65%);
  top: -160px; right: -120px;
}
.benefits::after {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, .16), transparent 65%);
  bottom: -160px; left: -120px;
}
.benefits__inner { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.benefits__text h2 { color: #fff; margin-bottom: 18px; }
.benefits__text > p { color: rgba(255, 255, 255, .85); margin-bottom: 26px; }
.benefits__note { color: rgba(255, 255, 255, .75); font-size: .95rem; margin-top: 22px; border-left: 3px solid var(--mint-400); padding-left: 16px; }

.benefits__card {
  position: relative; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px; padding: 30px; backdrop-filter: blur(4px);
}
.benefits__cross { width: 100%; animation: pulse 4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }

.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; }
.benefit-list li { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .94); font-weight: 600; font-size: .96rem; }
.benefit-list .check { width: 24px; height: 24px; background: rgba(20, 184, 166, .25); border: 1px solid rgba(20, 184, 166, .5); }

/* ---------- Conditions ---------- */
.conditions { background: var(--soft-2); }
.conditions__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.condition {
  background: #fff; border-radius: var(--radius-sm); padding: 24px 22px;
  border: 1px solid var(--line); transition: transform .3s, box-shadow .3s;
}
.condition:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.condition__icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
  background: var(--soft); color: var(--teal-700); display: flex; align-items: center; justify-content: center;
}
.condition__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.condition__icon img { width: 28px; height: 28px; object-fit: contain; }
.condition h3 { font-size: 1rem; margin-bottom: 8px; }
.condition p { font-size: .9rem; }

.conditions__note {
  margin-top: 40px; background: var(--grad); border-radius: 22px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 32px 36px; box-shadow: var(--shadow-lg);
}
.conditions__note p { font-weight: 600; font-size: 1.05rem; max-width: 640px; }

/* ---------- Why choose us ---------- */
.why { background: #fff; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  position: relative; background: var(--soft-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; overflow: hidden; transition: transform .3s, box-shadow .3s, background .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.why-card::after {
  content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, .14), transparent 70%); bottom: -40px; right: -40px;
}
.why-card__icon {
  width: 56px; height: 56px; border-radius: 16px; background: #fff; color: var(--teal-700);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); margin-bottom: 20px;
  transition: transform .3s;
}
.why-card:hover .why-card__icon { transform: rotate(-6deg) scale(1.06); background: var(--grad); color: #fff; }
.why-card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-card__icon img { width: 34px; height: 34px; object-fit: contain; display: block; }
.why-card:hover .why-card__icon img { transform: scale(1.08); }
.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: .94rem; }

/* ---------- Patient journey ---------- */
.journey { background: linear-gradient(180deg, #fff 0%, var(--soft-2) 100%); }
.journey__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.journey__steps::before {
  content: ""; position: absolute; top: 52px; left: 8%; right: 8%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--mint-400) 12%, var(--mint-400) 88%, transparent);
  opacity: .5; z-index: 0;
}
.step {
  position: relative; z-index: 1; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line); padding: 30px 22px; text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.step__icon {
  width: 58px; height: 58px; margin: 6px auto 16px; border-radius: 50%;
  background: var(--grad-soft); color: var(--teal-700); display: flex; align-items: center; justify-content: center;
}
.step__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step__icon img { width: 30px; height: 30px; object-fit: contain; }
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .86rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: #fff; }
.testimonials__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial {
  background: var(--soft-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 18px; transition: transform .3s, box-shadow .3s;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: var(--amber); letter-spacing: 3px; font-size: 1.05rem; }
.testimonial blockquote { font-size: 1.02rem; color: var(--ink-soft); font-style: italic; line-height: 1.75; }
.testimonial figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial figcaption strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: .98rem; }
.testimonial figcaption small { color: var(--body); font-size: .82rem; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-head); font-size: .95rem; flex-shrink: 0;
}

/* ---------- Areas ---------- */
.areas { background: var(--soft-2); }
.areas__chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 34px; }
.areas__chips span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 22px; font-weight: 600; color: var(--teal-700); font-size: .95rem;
  box-shadow: var(--shadow-sm); transition: transform .25s, background .25s, color .25s;
}
.areas__chips span:hover { transform: translateY(-3px); background: var(--grad); color: #fff; border-color: transparent; }
.areas__note { text-align: center; max-width: 760px; margin: 0 auto; }

/* ---------- Google Map ---------- */
.map { background: var(--soft-2); padding-bottom: 96px; }
.map__wrap { position: relative; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.map__frame iframe { display: block; width: 100%; height: 460px; border: 0; }
.map__card {
  position: absolute; top: 26px; right: 26px; z-index: 2;
  background: #fff; border-radius: 18px; padding: 26px 28px;
  box-shadow: var(--shadow-md); max-width: 340px; border: 1px solid var(--line);
}
.map__pin {
  width: 46px; height: 46px; border-radius: 14px; background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.map__pin svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.map__card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.map__card p { font-size: .95rem; margin-bottom: 18px; }
.map__card .btn { padding: 12px 24px; font-size: .92rem; }

/* ---------- CTA banner ---------- */
.cta { padding-top: 40px; padding-bottom: 96px; }
.cta__banner {
  position: relative; background: var(--grad); border-radius: 30px; overflow: hidden;
  padding: 56px 54px; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta__banner::before {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255, 255, 255, .1); top: -140px; right: -100px;
}
.cta__banner::after {
  content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  border: 34px solid rgba(255, 255, 255, .08); bottom: -120px; left: -80px;
}
.cta__text { position: relative; z-index: 1; max-width: 620px; }
.cta__text h2 { color: #fff; margin-bottom: 14px; }
.cta__text p { color: rgba(255, 255, 255, .92); }
.cta__actions { position: relative; z-index: 1; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { background: #fff; }
.faq__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.faq .section-head { text-align: left; margin: 0; }
.faq .section-head p { margin-top: 16px; }
.faq__list { display: grid; gap: 14px; }
.faq-item {
  background: var(--soft-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .3s, background .3s;
}
.faq-item[open] { background: #fff; border-color: var(--mint-400); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  background: var(--teal-600); border-radius: 2px; transition: transform .3s;
}
.faq-icon::before { width: 14px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-item p { padding: 0 24px 22px; font-size: .97rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--soft-2) 0%, #fff 100%); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info h2 { margin-bottom: 16px; }
.contact__info > p { margin-bottom: 32px; max-width: 460px; }
.contact__list { display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: #fff; color: var(--teal-700); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--line);
}
.contact__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__list strong { display: block; color: var(--ink); font-family: var(--font-head); margin-bottom: 2px; }
.contact__list p { font-size: .97rem; }
.contact__list a:hover { color: var(--teal-600); }

.contact__form {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 22px;
  box-shadow: var(--shadow-md);
}
.contact__form-embed {
  border-radius: 18px; overflow: hidden; background: var(--soft-2);
  border: 1px solid var(--line);
}
.contact__form-embed iframe {
  display: block; width: 100%; height: auto; min-height: 600px;
  border: 0; background: transparent;
}
.contact__form .contact__alt { margin-top: 18px; }
.contact__form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact__form-note { font-size: .92rem; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-weight: 700; font-size: .88rem; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: .96rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 15px; background: var(--soft-2);
  transition: border-color .25s, box-shadow .25s, background .25s; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--mint-500); background: #fff; box-shadow: 0 0 0 4px rgba(20, 184, 166, .15);
}
.form-field textarea { resize: vertical; }
.contact__form .btn { margin-top: 6px; }
.contact__alt { text-align: center; margin-top: 16px; font-size: .92rem; }
.contact__alt a { color: var(--teal-700); }
.form-msg { text-align: center; margin-top: 14px; font-weight: 700; font-size: .95rem; min-height: 22px; }
.form-msg.ok { color: var(--mint-600); }
.form-msg.err { color: var(--danger); }

.contact__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn--whatsapp { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .35); }
.btn--whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(37, 211, 102, .45); }
.btn--email { background: #fff; color: var(--teal-700); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--email:hover { border-color: var(--teal-600); background: var(--soft-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.icon--fill { fill: currentColor; stroke: none; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #b9cdd3; padding-top: 72px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; }
.footer .brand--footer { margin-bottom: 18px; }
.brand--footer .brand__text strong { color: #fff; }
.footer__brand p { font-size: .93rem; max-width: 300px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .93rem; transition: color .25s, padding-left .25s; }
.footer__col a:hover { color: var(--mint-400); padding-left: 4px; }
.footer__contact li { font-size: .93rem; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 22px 0; }
.footer__bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem; }
.footer__bottom p:last-child { color: var(--mint-400); font-weight: 600; }

/* ---------- Call FAB ---------- */
.call-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 62px; height: 62px; border-radius: 50%; background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(14, 116, 144, .5);
  animation: fabPulse 2.4s infinite;
}
.call-fab svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes fabPulse {
  0% { box-shadow: 0 12px 30px rgba(14, 116, 144, .5), 0 0 0 0 rgba(20, 184, 166, .5); }
  70% { box-shadow: 0 12px 30px rgba(14, 116, 144, .5), 0 0 0 18px rgba(20, 184, 166, 0); }
  100% { box-shadow: 0 12px 30px rgba(14, 116, 144, .5), 0 0 0 0 rgba(20, 184, 166, 0); }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .conditions__grid { grid-template-columns: repeat(3, 1fr); }
  .journey__steps { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .journey__steps::before { display: none; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero__points { grid-template-columns: 1fr; }
  .welcome__inner { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .benefits__inner { grid-template-columns: 1fr; }
  .benefits__visual { order: 2; max-width: 420px; margin: 0 auto; }
  .faq__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); z-index: 1100;
    background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 96px 30px 40px; gap: 10px;
    box-shadow: -20px 0 60px rgba(12, 74, 110, .2);
    transform: translateX(100%); transition: transform .35s ease; overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { padding: 13px 14px; font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 12px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 860px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .conditions__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }
  .section { padding: 72px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
  .float-card--1 { left: -6px; }
  .float-card--2 { right: -6px; }
  .float-card--3 { right: 4px; }
  .benefit-list { grid-template-columns: 1fr; }
  .services__grid, .conditions__grid, .why__grid, .testimonials__grid, .journey__steps { grid-template-columns: 1fr; }
  .services__cta { padding: 22px; }
  .conditions__note { padding: 24px; }
  .cta__banner { padding: 38px 26px; }
  .footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 22px; }
  .stats { transform: translateY(0); margin-bottom: 24px; }
  .welcome { padding-top: 90px; }
  .hero { padding-top: 48px; }
  .hero__actions .btn { width: 100%; }
  .cta__actions .btn { width: 100%; }
  .map__frame iframe { height: 300px; }
  .map__card { position: static; max-width: none; border-radius: 0; box-shadow: none; border: 0; border-top: 1px solid var(--line); padding: 24px; }
}
