
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --navy-950: #071e2b;
  --navy-900: #0c2a3a;
  --navy-800: #123b4d;
  --navy-700: #1a5265;
  --teal-600: #0f8f89;
  --teal-500: #18aaa2;
  --teal-400: #4cc8c1;
  --mint-100: #e8f7f5;
  --mint-50: #f3fbfa;
  --sand-100: #f8f6f1;
  --white: #ffffff;
  --ink: #17313d;
  --muted: #627680;
  --line: #dce8e9;
  --danger: #b54444;
  --shadow-sm: 0 10px 30px rgba(12, 42, 58, .08);
  --shadow-lg: 0 24px 60px rgba(12, 42, 58, .14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--navy-950);
  line-height: 1.1;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -.035em; }
h3 { font-size: 1.28rem; }
small { color: var(--muted); }

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

.section {
  padding: 96px 0;
  position: relative;
}
.section-sm { padding: 64px 0; }
.section-alt { background: var(--mint-50); }
.section-sand { background: var(--sand-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--muted);
  max-width: 720px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}
.section-heading .lead { max-width: 520px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 9999;
  background: var(--navy-950);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { left: 10px; }

.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,232,233,.75);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(12,42,58,.08); }
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--teal-500), var(--navy-700));
  box-shadow: 0 10px 26px rgba(15,143,137,.22);
  color: #fff;
  flex: 0 0 auto;
}
.brand-mark svg { width: 27px; height: 27px; }
.brand-copy strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.15;
  color: var(--navy-950);
}
.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 10px 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .94rem;
  color: #36515e;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-600);
  background: var(--mint-50);
}
.nav-cta { margin-left: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--teal-500);
  color: #fff;
  box-shadow: 0 12px 28px rgba(24,170,162,.26);
}
.btn-primary:hover { background: var(--teal-600); }
.btn-dark {
  background: var(--navy-950);
  color: #fff;
}
.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--navy-900);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.btn-sm { min-height: 42px; padding: 0 16px; font-size: .91rem; }

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--mint-50);
  color: var(--navy-950);
  position: relative;
}
.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: .2s ease;
}
.mobile-toggle::before { top: 14px; }
.mobile-toggle span { top: 21px; }
.mobile-toggle::after { top: 28px; }
.mobile-toggle.open span { opacity: 0; }
.mobile-toggle.open::before { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(76,200,193,.21), transparent 28%),
    radial-gradient(circle at 13% 6%, rgba(24,170,162,.12), transparent 24%),
    linear-gradient(180deg, #fbfefd 0%, #f3fbfa 100%);
  padding: 80px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
}
.hero p.hero-copy {
  color: var(--muted);
  max-width: 660px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  margin: 24px 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  color: #4f6873;
  font-size: .92rem;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-meta span::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff4f1;
  color: var(--teal-600);
  font-weight: 900;
  font-size: .78rem;
}

.visual-shell {
  position: relative;
  min-height: 560px;
}
.visual-photo {
  position: absolute;
  inset: 10px 0 0 34px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(7,30,43,.08), rgba(24,170,162,.05)),
    url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1400&q=85") center/cover;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.visual-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,30,43,.18));
}
.visual-badge {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220,232,233,.9);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
}
.visual-badge strong { display: block; color: var(--navy-950); }
.visual-badge span { color: var(--muted); font-size: .86rem; }
.visual-badge.one { left: 0; bottom: 56px; }
.visual-badge.two { right: 2px; top: 56px; }
.visual-badge .badge-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mint-100);
  color: var(--teal-600);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.hero-shape {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 32px;
  background: var(--teal-500);
  right: -32px;
  bottom: -18px;
  transform: rotate(20deg);
  opacity: .16;
}

.page-hero {
  padding: 78px 0 62px;
  background:
    radial-gradient(circle at 82% 30%, rgba(76,200,193,.2), transparent 32%),
    linear-gradient(180deg, #fbfefd, #f3fbfa);
  border-bottom: 1px solid var(--line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.7rem); }
.page-hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.page-hero-card strong { font-family: "Manrope", sans-serif; color: var(--navy-950); }

.trust-strip {
  position: relative;
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 27px 24px;
  display: flex;
  gap: 13px;
  align-items: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.icon-box {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--mint-100);
  color: var(--teal-600);
  font-weight: 900;
}
.trust-item strong { display: block; font-size: .96rem; color: var(--navy-950); }
.trust-item span { color: var(--muted); font-size: .83rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card,
.info-card,
.doctor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover,
.info-card:hover,
.doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: #c7dddd;
}
.service-card .icon-box { margin-bottom: 22px; }
.service-card p { color: var(--muted); margin-bottom: 20px; }
.text-link {
  color: var(--teal-600);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.text-link:hover { gap: 10px; }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.photo-panel {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7,30,43,.04), rgba(7,30,43,.18)),
    url("https://images.unsplash.com/photo-1609840114035-3c981b782dfe?auto=format&fit=crop&w=1400&q=85") center/cover;
  box-shadow: var(--shadow-lg);
}
.photo-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  font-size: .9rem;
  color: var(--muted);
}
.check-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 32px;
}
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check-dot {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint-100);
  color: var(--teal-600);
  font-size: .78rem;
  font-weight: 900;
  margin-top: 2px;
}
.check-item strong { color: var(--navy-950); display: block; }
.check-item span { color: var(--muted); font-size: .94rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-block;
  color: var(--teal-500);
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 38px;
}
.step p { color: var(--muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.doctor-card { padding: 18px; }
.doctor-portrait {
  aspect-ratio: 4/3;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.72), transparent 25%),
    linear-gradient(145deg, var(--mint-100), #d5edee);
  color: var(--navy-700);
  overflow: hidden;
  margin-bottom: 20px;
}
.doctor-initial {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 16px 36px rgba(12,42,58,.09);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--teal-600);
}
.doctor-card .role {
  color: var(--teal-600);
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.doctor-card p { color: var(--muted); font-size: .94rem; }
.doctor-card.featured {
  border-color: #b8ddda;
  background: linear-gradient(180deg, #fff, #fbfefd);
}

.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(76,200,193,.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
  border-radius: 34px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(2rem, 3vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.74); max-width: 690px; }
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.services-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-detail {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.service-detail .top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.service-detail p { color: var(--muted); }
.service-detail ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #4d6571;
}
.service-detail li { margin: 6px 0; }

.notice {
  background: #fff9ec;
  border: 1px solid #f0dfb8;
  color: #715a28;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: .92rem;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 20px 22px;
  background: #fff;
  border: 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy-950);
  font-weight: 800;
}
.faq-q span:last-child { color: var(--teal-600); }
.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}
.faq-item.open .faq-a { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.contact-stack {
  display: grid;
  gap: 14px;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.contact-card p { color: var(--muted); margin: 3px 0 0; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label {
  font-weight: 700;
  color: var(--navy-900);
  font-size: .91rem;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #cbdadb;
  background: #fbfdfd;
  color: var(--ink);
  border-radius: 13px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(24,170,162,.11);
}
textarea { min-height: 130px; resize: vertical; }
.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.form-status {
  color: var(--muted);
  font-size: .9rem;
}
.form-status.success { color: var(--teal-600); }
.form-status.error { color: var(--danger); }

.map-wrap {
  margin-top: 28px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e7f0f1;
  min-height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.72);
  margin-top: 0;
}
.footer-main {
  padding: 62px 0 44px;
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr .9fr;
  gap: 34px;
}
.footer .brand-copy strong { color: #fff; }
.footer .brand-copy span { color: rgba(255,255,255,.58); }
.footer .brand { min-width: 0; margin-bottom: 18px; }
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer p { color: rgba(255,255,255,.64); max-width: 380px; }
.footer-links {
  display: grid;
  gap: 10px;
}
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: .86rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-note { color: rgba(255,255,255,.46); }

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .topbar { display: none; }
  .navbar { min-height: 72px; }
  .mobile-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 80px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { display: none; }

  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 62px; }
  .visual-shell { min-height: 480px; }
  .visual-photo { inset: 0 18px 0 36px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .services-detailed { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .brand { min-width: 0; }
  .brand-copy span { display: none; }
  .brand-copy strong { font-size: .92rem; }
  .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .hero { padding: 46px 0 54px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.1rem); }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 10px; display: grid; }
  .visual-shell { min-height: 380px; margin-top: 8px; }
  .visual-photo { inset: 0 8px 0 18px; border-radius: 28px; }
  .visual-badge { padding: 12px 14px; border-radius: 16px; }
  .visual-badge.two { top: 24px; right: 0; }
  .visual-badge.one { bottom: 24px; left: 0; }
  .hero-shape { display: none; }

  .page-hero { padding: 56px 0 48px; }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading .lead { margin-top: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:last-child { border-bottom: 0; }

  .card-grid, .team-grid { grid-template-columns: 1fr; }
  .photo-panel { min-height: 390px; }
  .cta-band { padding: 30px 24px; border-radius: 24px; }
  .cta-actions .btn { width: 100%; }
  .form-card { padding: 24px 18px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child { grid-column: auto; }

  .mobile-action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    z-index: 1200;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 66px;
    box-shadow: 0 -8px 24px rgba(12,42,58,.12);
  }
  .mobile-action-bar a {
    display: grid;
    place-items: center;
    font-weight: 800;
  }
  .mobile-action-bar .call {
    background: #fff;
    color: var(--navy-950);
  }
  .mobile-action-bar .book {
    background: var(--teal-500);
    color: #fff;
  }
}

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

/* Simplified appointment page */
.booking-page {
  position: relative;
  overflow: hidden;
  padding: 86px 0 100px;
  background:
    radial-gradient(circle at 12% 16%, rgba(24,170,162,.12), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(76,200,193,.16), transparent 26%),
    linear-gradient(180deg, #fbfefd 0%, #f3fbfa 100%);
}
.booking-simple-wrap {
  max-width: 850px;
}
.booking-simple-intro {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}
.booking-simple-intro .eyebrow {
  justify-content: center;
}
.booking-simple-intro h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}
.booking-simple-intro p {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}
.booking-simple-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(12,42,58,.11);
}
.booking-simple-card textarea {
  min-height: 100px;
}
.booking-submit {
  width: 100%;
  margin-top: 20px;
  min-height: 56px;
  font-size: 1rem;
}
.booking-confirm-note {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
}
.booking-simple-card .form-status {
  display: block;
  margin-top: 10px;
  text-align: center;
}
.booking-call-fallback {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
}
.booking-call-fallback a {
  color: var(--teal-600);
  font-weight: 800;
}
@media (max-width: 680px) {
  .booking-page { padding: 58px 0 72px; }
  .booking-simple-card { padding: 24px 18px; border-radius: 22px; }
  .booking-simple-intro { margin-bottom: 26px; }
}
