:root {
  --green-900: #123F2D;
  --green-700: #1F7048;
  --green-500: #3C9568;
  --green-100: #EAF5EE;
  --white: #FFFFFF;
  --off-white: #F8FAF8;
  --text: #173329;
  --muted: #607069;
  --border: #D8E7DD;
  --shadow-sm: 0 8px 24px rgba(18, 63, 45, 0.07);
  --shadow-lg: 0 22px 55px rgba(18, 63, 45, 0.13);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1180px;
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, blockquote { margin-top: 0; }
p:last-child { margin-bottom: 0; }
::selection { color: var(--white); background: var(--green-700); }

.container { width: min(100% - 64px, var(--container)); margin-inline: auto; }
.section { padding: 80px 0; }
.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 7px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.section-kicker,
.cta-kicker {
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-title {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.35vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-heading.centered { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-heading.centered .section-title { margin-inline: auto; }
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}
.section-heading-row .section-title { margin-bottom: 0; }
.section-heading-row > p { max-width: 430px; margin-bottom: 3px; color: var(--muted); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.button span,
.text-link span,
.expertise-card a span,
.footer-book span { display: inline-block; transition: transform .25s ease; }
.button:hover span,
.text-link:hover span,
.expertise-card a:hover span,
.footer-book:hover span { transform: translateX(4px); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible,
a:focus-visible,
button:focus-visible { outline: 3px solid rgba(60, 149, 104, .3); outline-offset: 3px; }
.button-primary { color: var(--white); background: var(--green-900); box-shadow: 0 8px 18px rgba(18, 63, 45, .14); }
.button-primary:hover { background: var(--green-700); box-shadow: 0 10px 24px rgba(18, 63, 45, .2); }
.button-secondary { color: var(--green-900); background: var(--white); border-color: var(--green-700); }
.button-secondary:hover { color: var(--white); background: var(--green-700); }
.button-white { color: var(--green-900); background: var(--white); }
.button-white:hover { background: var(--green-100); }
.button-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .5); }
.button-outline-light:hover { color: var(--green-900); background: var(--white); border-color: var(--white); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 800;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  right: 0;
  left: 0;
  height: 58px;
  padding-top: 0;
  background: transparent;
  border-bottom: 0;
  transition: height .3s ease, box-shadow .3s ease;
  pointer-events: none;
}
.site-header.scrolled { height: 56px; box-shadow: none; }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  padding: 7px 8px 7px 12px;
  background: rgba(248, 250, 248, .86);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(4, 24, 16, .12);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  pointer-events: auto;
}
.brand { min-width: 206px; display: flex; align-items: center; gap: 10px; line-height: 1.2; }
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  background: var(--green-900);
  border-radius: 13px;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand-copy { display: flex; flex-direction: column; gap: 4px; }
.brand-copy strong { color: var(--green-900); font-size: 13px; font-weight: 800; white-space: nowrap; }
.brand-copy small { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .04em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(11px, 1.15vw, 17px); margin-left: auto; }
.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  transition: color .2s ease;
}
.nav-link::after {
  position: absolute;
  right: 50%;
  bottom: 4px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--green-700);
  border-radius: 2px;
  transition: right .25s ease, left .25s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--green-900); }
.nav-link:hover::after,
.nav-link.active::after { right: 0; left: 0; }
.header-cta { flex: 0 0 auto; min-height: 42px; padding: 10px 16px; border-radius: 999px; font-size: 11px; }
.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: rgba(234, 245, 238, .92);
  border: 1px solid rgba(18, 63, 45, .13);
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--green-900); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: clamp(124px, 16vh, 160px) 0 clamp(58px, 7vh, 82px);
  background: #071F16;
  border-bottom: 1px solid var(--border);
}
.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.hero::before {
  z-index: 2;
  inset: 0;
  width: auto;
  background:
    linear-gradient(90deg, rgba(7, 31, 22, .88) 0%, rgba(7, 31, 22, .62) 34%, rgba(7, 31, 22, .16) 66%, rgba(7, 31, 22, .02) 100%),
    linear-gradient(180deg, rgba(7, 31, 22, .02) 0%, rgba(7, 31, 22, .2) 52%, rgba(7, 31, 22, .72) 100%);
  clip-path: none;
}
.hero::after {
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(44vw, 620px);
  height: 48%;
  background: linear-gradient(135deg, rgba(60, 149, 104, .78), rgba(18, 63, 45, .12));
  clip-path: polygon(18% 0, 100% 18%, 100% 100%, 0 100%);
  transform: none;
}
.hero-background {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 84px 84px;
  will-change: transform, opacity;
}
.hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 74% 35%, rgba(60, 149, 104, .1), transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(7, 31, 22, .08) 52%, rgba(7, 31, 22, .5) 100%);
  -webkit-mask-image: none;
  mask-image: none;
  will-change: opacity;
}
.container.header-inner { width: min(100% - 72px, 1160px); }
.container.hero-grid { width: min(100% - 64px, 1280px); }
.hero-grid { position: static; z-index: auto; display: block; }
.hero-content { position: relative; z-index: 3; max-width: 760px; }
.hero-content::before {
  position: absolute;
  top: 7px;
  bottom: 12px;
  left: -28px;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--green-500), rgba(60, 149, 104, 0));
}
.hero-content .hero-title,
.hero-content .hero-description,
.hero-content .hero-qualifications {
  font-style: normal;
}
.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  padding: 0 0 0 12px;
  color: #7BE0AE;
  background: transparent;
  border: 0;
  border-left: 2px solid var(--green-500);
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 6px; height: 6px; flex: 0 0 6px; background: var(--green-500); border-radius: 50%; }
.hero-title {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  text-shadow: 0 18px 44px rgba(0, 0, 0, .32);
  font-family: var(--font-display);
  font-size: clamp(58px, 5.4vw, 82px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-line { min-height: 1.04em; display: block; overflow: hidden; padding: .04em .14em .1em 0; margin: -.04em -.14em -.1em 0; }
.hero-line-text { min-height: 1.04em; display: block; color: var(--white); white-space: nowrap; will-change: transform, opacity; }
.hero-title-mobile span,
.hero-line:last-child .hero-line-text { color: #39D487; }
.hero-line-text.is-typing::after {
  width: .055em;
  height: .78em;
  display: inline-block;
  margin-left: .06em;
  content: "";
  background: currentColor;
  border-radius: 2px;
  vertical-align: -.03em;
  animation: type-cursor .72s steps(1, end) infinite;
}
.about-title-type.is-typing::after,
.expertise-title-type.is-typing::after {
  width: .055em;
  height: .78em;
  display: inline-block;
  margin-left: .06em;
  content: "";
  background: currentColor;
  border-radius: 2px;
  vertical-align: -.03em;
  animation: type-cursor .72s steps(1, end) infinite;
}
@keyframes type-cursor {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}
.hero-description { max-width: 620px; margin: 28px 0 18px; color: rgba(255, 255, 255, .84); font-size: 17px; line-height: 1.72; }
.qualifications { margin: 0 0 26px; }
.hero-qualifications { display: flex; flex-wrap: wrap; gap: 10px 16px; color: #CDE2D5; font-size: 14px; font-weight: 700; letter-spacing: .01em; }
.hero-qualifications span { display: inline-flex; align-items: center; gap: 16px; }
.hero-qualifications span + span::before { width: 4px; height: 4px; flex: 0 0 4px; content: ""; background: var(--green-500); border-radius: 50%; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-actions .button { min-width: 0; }
.hero-actions .button {
  border-radius: 999px;
}
.hero-actions .button-primary {
  color: #08291C;
  background: #24B977;
  box-shadow: 0 18px 42px rgba(36, 185, 119, .24);
}
.hero-actions .button-primary:hover { background: #39D487; }
.hero-actions .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  animation: none;
}
.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -2;
  content: "";
  pointer-events: none;
}
.hero-visual::before {
  display: none;
}
.hero-visual::after {
  display: none;
}
.hero-shadow {
  position: absolute;
  z-index: -1;
  bottom: 3%;
  left: 50%;
  width: min(64%, 300px);
  height: 28px;
  content: "";
  background: radial-gradient(ellipse, rgba(12, 48, 34, .32), transparent 72%);
  filter: blur(5px);
  transform: translateX(-50%);
  transform-origin: center;
  animation: portrait-shadow 5s ease-in-out infinite;
}
.doctor-card {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.doctor-card::before {
  display: none;
}
.doctor-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 10%;
  filter: saturate(1.06) contrast(1.04) brightness(1.04);
  transition: transform .4s ease;
}
.doctor-card:hover img { transform: scale(1.015); }
@keyframes portrait-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes portrait-shadow {
  0%, 100% { opacity: .7; transform: translateX(-50%) scaleX(1); }
  50% { opacity: .4; transform: translateX(-50%) scaleX(.82); }
}
.image-fallback { position: absolute; inset: 0; display: grid; place-items: center; padding: 32px; color: var(--green-700); text-align: center; font-weight: 700; }
.credential-badge {
  position: absolute;
  z-index: 4;
  left: -22%;
  right: auto;
  bottom: 18%;
  max-width: 216px;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .66);
  border-left: 5px solid var(--green-500);
  border-radius: 4px 16px 16px 4px;
  box-shadow: 0 18px 42px rgba(4, 28, 18, .22);
  animation: credential-float 4.8s ease-in-out infinite;
}
.hero-stat-badge {
  position: absolute;
  z-index: 4;
  right: -10%;
  left: auto;
  top: 18%;
  max-width: 190px;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(8, 41, 28, .84);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px 999px 999px 10px;
  box-shadow: 0 20px 42px rgba(3, 19, 12, .26);
  animation: credential-float 5.6s ease-in-out infinite 1.1s;
}
.hero-stat-icon { width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; color: #B8860B; background: #FFF6DD; border-radius: 50%; font-size: 13px; }
.hero-stat-badge > span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.hero-stat-badge strong { color: var(--white); font-size: 12px; }
.hero-stat-badge small { color: #CDE2D5; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
@keyframes credential-float {
  0%, 100% { box-shadow: 0 8px 22px rgba(18, 63, 45, .13); transform: translate3d(0, 0, 0); }
  50% { box-shadow: 0 13px 27px rgba(18, 63, 45, .18); transform: translate3d(0, -5px, 0); }
}
.credential-icon { width: 28px; height: 28px; display: grid; place-items: center; color: var(--white); background: var(--green-700); border-radius: 50%; font-size: 13px; font-weight: 800; }
.credential-badge > span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.credential-badge small { color: var(--muted); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.credential-badge strong { color: var(--green-900); font-size: 12px; }

/* Statistics */
.stats-section { position: relative; z-index: 3; padding: 38px 0 46px; background: var(--off-white); border-bottom: 1px solid var(--border); }
.container.stats-grid {
  width: min(100% - 64px, 1280px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  padding: 38px 28px;
  background: linear-gradient(120deg, #102F25 0%, #123F2D 54%, #176049 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  box-shadow: 0 24px 55px rgba(18, 63, 45, .16);
}
.stat-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(216, 231, 221, .2);
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.stat-card:last-child { border-right: 0; }
.stat-number { color: var(--white); font-family: var(--font-body); font-size: clamp(40px, 3.2vw, 50px); font-weight: 800; line-height: 1; letter-spacing: -.035em; }
.stat-card > span { margin-top: 14px; color: #CDE2D5; font-size: 13px; font-weight: 700; line-height: 1.4; }

/* About */
.about-section { padding-block: 66px; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(40px, 5vw, 66px);
  padding: 34px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(18, 63, 45, .07);
}
.about-image-wrap { position: relative; width: min(100%, 390px); justify-self: center; }
.about-image-wrap > img { width: 100%; height: 380px; object-fit: cover; object-position: 50% 30%; border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 14px 34px rgba(18, 63, 45, .1); }
.about-note { position: absolute; right: 16px; bottom: 16px; display: flex; flex-direction: column; padding: 13px 15px; background: rgba(18, 63, 45, .94); border: 1px solid rgba(255, 255, 255, .14); border-radius: 10px; box-shadow: var(--shadow-sm); }
.about-note strong { color: var(--white); font-size: 13px; }
.about-note span { color: #CDE2D5; font-size: 10px; }
.about-content { max-width: 650px; }
.about-content .section-title { position: relative; margin-bottom: 16px; }
.about-title-reserve { display: block; visibility: hidden; }
.about-title-type { position: absolute; inset: 0; display: block; }
.about-content .lead { margin-bottom: 10px; color: var(--text); font-size: 17px; font-weight: 600; line-height: 1.65; }
.about-content p:not(.section-kicker):not(.lead) { margin-bottom: 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 24px; }
.about-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  color: #0E3F2E;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #BEDCCC;
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(18, 63, 45, .06);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}
.about-experience-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 46px;
  padding-inline: 18px;
  color: #0E3F2E;
  background: linear-gradient(90deg, #FFFFFF 0%, #F6FCF8 100%);
  border-color: #B7D8C6;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(18, 63, 45, .08);
}
.about-experience-button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(46, 139, 87, .18) 24%, rgba(46, 139, 87, .38) 46%, rgba(46, 139, 87, .18) 68%, transparent 100%);
  transform: translateX(-115%);
  animation: experience-button-sweep 2.4s ease-in-out infinite;
}
.about-experience-button:hover,
.about-experience-button:focus-visible {
  color: var(--white);
  background: var(--green-700);
  border-color: var(--green-700);
}
@keyframes experience-button-sweep {
  0% { transform: translateX(-115%); }
  52%, 100% { transform: translateX(115%); }
}
.check-list { display: grid; gap: 9px; margin: 24px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; font-size: 14px; font-weight: 700; }
.check-list li::before { position: absolute; top: 2px; left: 0; width: 20px; height: 20px; display: grid; place-items: center; content: "✓"; color: var(--green-700); background: var(--green-100); border-radius: 50%; font-size: 10px; }

/* Expertise */
.expertise-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(91, 161, 124, .1), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(60, 149, 104, .08), transparent 30%),
    linear-gradient(180deg, #FBFDFC 0%, #F4F9F6 100%);
  border-block: 1px solid #E7EFEA;
}
.expertise-section::before,
.expertise-section::after {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  content: "";
  background: rgba(78, 151, 112, .1);
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  animation: expertise-glow-drift 16s ease-in-out infinite alternate;
}
.expertise-section::before { top: -120px; left: -90px; }
.expertise-section::after { right: -100px; bottom: -130px; animation-direction: alternate-reverse; }
.expertise-section > .container { position: relative; z-index: 1; }
.expertise-section .section-heading-row { margin-bottom: 36px; }
.expertise-section .section-title { max-width: 620px; color: #0F3D2E; font-size: clamp(36px, 3.4vw, 46px); letter-spacing: -.025em; }
.expertise-title-typed { position: relative; }
.expertise-title-reserve { display: block; visibility: hidden; }
.expertise-title-type { position: absolute; inset: 0; display: block; }
.expertise-section .section-heading-row > p { color: #65766F; line-height: 1.75; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 18px; row-gap: 22px; }
.expertise-grid .expertise-card:nth-child(n + 4) { display: none; }
.expertise-card {
  min-height: 198px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 14px;
  align-content: start;
  padding: 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid #E7EFEA;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(18, 63, 45, .055);
  backdrop-filter: blur(6px);
  cursor: default;
  transform: translateZ(0);
  will-change: transform;
  transition: background-color .4s ease-out, border-color .4s ease-out, transform .4s ease-out, box-shadow .4s ease-out;
}
.expertise-card:hover,
.expertise-card:focus-within { background: rgba(238, 248, 242, .96); border-color: #6EAD8C; transform: translate3d(0, -8px, 0); box-shadow: 0 20px 42px rgba(18, 63, 45, .13); }
.line-icon {
  grid-column: 1;
  grid-row: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--green-700);
  background: linear-gradient(145deg, #F4FBF7, #E7F4EC);
  border: 1px solid #DCEBE2;
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
  transform: translateZ(0);
  transition: color .4s ease-out, background-color .4s ease-out, transform .4s ease-out, box-shadow .4s ease-out;
}
.expertise-card:hover .line-icon,
.expertise-card:focus-within .line-icon { color: #155B3C; background: var(--white); box-shadow: 0 8px 18px rgba(18, 63, 45, .08); transform: scale(1.08) rotate(4deg); }
.line-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.expertise-card h3 { grid-column: 2; grid-row: 1; align-self: center; margin: 0; color: #123F2D; font-family: var(--font-display); font-size: 20px; font-weight: 400; line-height: 1.22; transition: color .4s ease-out; }
.expertise-card:hover h3,
.expertise-card:focus-within h3 { color: #176049; }
.expertise-card p { grid-column: 1 / -1; grid-row: 2; margin: 14px 0 12px; color: #687871; font-size: 12px; line-height: 1.65; }
.expertise-card a {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 3;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: 7px;
  margin-top: auto;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.expertise-card a::after { position: absolute; right: 100%; bottom: -2px; left: 0; height: 1px; content: ""; background: currentColor; transition: right .4s ease-out; }
.expertise-card a:hover::after,
.expertise-card a:focus-visible::after { right: 0; }
.expertise-card a span { transition: transform .4s ease-out; }
.expertise-card:hover a span,
.expertise-card:focus-within a span { transform: translateX(5px); }
@keyframes expertise-glow-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(24px, 16px, 0) scale(1.08); }
}

/* Process */
.process-section { background: var(--white); }
.process-grid { --process-base-scale: 1; --process-progress: 0; --process-progress-opacity: 0; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-grid::before,
.process-grid::after { position: absolute; z-index: 0; top: 24px; right: 12%; left: 12%; height: 1px; content: ""; transform-origin: left center; pointer-events: none; }
.process-grid::before { background: var(--border); transform: scaleX(var(--process-base-scale)); }
.process-grid::after { background: var(--green-500); opacity: var(--process-progress-opacity); transform: scaleX(var(--process-progress)); }
.process-step { position: relative; z-index: 1; padding: 0 22px; text-align: center; }
.process-step > span { width: 50px; height: 50px; display: grid; place-items: center; margin: 0 auto 20px; color: var(--white); background: var(--green-900); border: 6px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--border); font-size: 11px; font-weight: 800; transform: translateZ(0); transition: transform .3s ease-out, box-shadow .3s ease-out; }
.process-step h3 { margin-bottom: 8px; color: var(--green-900); font-size: 15px; transform: translateZ(0); transition: color .3s ease-out, transform .3s ease-out; }
.process-step p { color: var(--muted); font-size: 12px; line-height: 1.6; opacity: .88; transform: translateZ(0); transition: opacity .3s ease-out, transform .3s ease-out; }
.process-step:hover > span { transform: scale(1.08); box-shadow: 0 8px 22px rgba(18, 63, 45, .19), 0 0 0 1px var(--border); }
.process-step:hover h3 { color: var(--green-700); transform: translateY(-2px); }
.process-step:hover p { opacity: 1; transform: translateY(-2px); }

/* Experience */
.experience-section { padding-block: 56px; background: var(--green-100); border-block: 1px solid var(--border); }
.experience-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(36px, 5vw, 64px); }
.experience-intro { align-self: center; position: static; }
.experience-intro .section-title { max-width: 520px; margin-bottom: 14px; font-size: clamp(32px, 3vw, 38px); }
.experience-intro > p:not(.section-kicker) { max-width: 430px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.qualification-chip { width: fit-content; margin-top: 18px; padding: 6px 10px; color: var(--green-900); background: rgba(255, 255, 255, .82); border: 1px solid var(--border); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .055em; }
.timeline { position: relative; display: grid; gap: 4px; }
.timeline-line { position: absolute; top: 20px; bottom: 20px; left: 5px; width: 1px; overflow: hidden; background: #BEDAC9; }
.timeline-line span { position: absolute; inset: 0; background: var(--green-700); transform: scaleY(1); transform-origin: top; }
.timeline-item {
  position: relative;
  padding: 8px 14px 14px 34px;
  border-bottom: 1px solid rgba(154, 190, 168, .42);
  border-radius: 10px;
  transform: translateZ(0);
  transition: background-color .3s ease-out, transform .3s ease-out, box-shadow .3s ease-out;
}
.timeline-item:last-child { padding-bottom: 10px; border-bottom-color: transparent; }
.timeline-dot { position: absolute; z-index: 2; top: 15px; left: 0; width: 11px; height: 11px; background: var(--white); border: 3px solid var(--green-700); border-radius: 50%; transform: translateZ(0); transition: box-shadow .3s ease-out, transform .3s ease-out; }
.timeline-item time { width: fit-content; display: inline-flex; align-items: center; min-height: 21px; margin-bottom: 6px; padding: 3px 8px; color: var(--green-900); background: rgba(255, 255, 255, .7); border: 1px solid #CBE0D2; border-radius: 999px; font-size: 9px; font-weight: 800; line-height: 1; letter-spacing: .055em; }
.timeline-item h3 { margin-bottom: 4px; color: var(--green-900); font-family: var(--font-display); font-size: 20px; font-weight: 400; line-height: 1.25; transition: color .3s ease-out, transform .3s ease-out; }
.timeline-item p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; transition: transform .3s ease-out; }
.timeline-item:hover { background: rgba(255, 255, 255, .46); transform: translate3d(0, -4px, 0); box-shadow: 0 10px 24px rgba(18, 63, 45, .065); }
.timeline-item:hover .timeline-dot { box-shadow: 0 0 0 5px rgba(31, 112, 72, .1), 0 4px 10px rgba(18, 63, 45, .13); transform: scale(1.05); }
.timeline-item:hover h3 { color: var(--green-700); }

/* Booking */
.booking-section {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.booking-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: clamp(34px, 5vw, 70px);
}
.booking-copy {
  position: sticky;
  top: 98px;
}
.booking-copy > p:not(.section-kicker) {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.75;
}
.booking-hours {
  width: fit-content;
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding: 12px 14px;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.booking-hours strong {
  font-size: 12px;
}
.booking-hours span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.booking-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: 0;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.booking-form textarea {
  min-height: 112px;
  resize: vertical;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  background: var(--white);
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(60, 149, 104, .12);
}
.booking-form select:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: .74;
}
.booking-form > .button {
  width: fit-content;
  min-width: 190px;
}
.booking-success {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  padding: 16px;
  background: var(--green-100);
  border: 1px solid #BFE0CA;
  border-radius: 12px;
  animation: success-pop .45s ease both;
}
.booking-success[hidden],
.booking-error[hidden] { display: none; }
.success-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-weight: 900;
  animation: success-pulse 1.6s ease infinite;
}
.booking-success strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-900);
}
.booking-success p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.booking-error {
  margin: 0;
  padding: 12px 14px;
  color: #7A231A;
  background: #FFF0ED;
  border: 1px solid #FFD2CA;
  border-radius: 10px;
  font-weight: 700;
}
@keyframes success-pop {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes success-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 112, 72, .28); }
  50% { box-shadow: 0 0 0 8px rgba(31, 112, 72, 0); }
}

/* Reviews */
.reviews-section { overflow: hidden; padding-block: 44px; background: var(--white); }
.reviews-section .section-heading-row { margin-bottom: 24px; }
.rating-summary { flex: 0 0 auto; display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 9px; padding: 12px 16px; background: var(--green-100); border: 1px solid var(--border); border-radius: 10px; }
.rating-summary strong { color: var(--green-900); font-size: 23px; line-height: 1; }
.rating-summary > span { color: var(--green-900); font-size: 13px; letter-spacing: 2px; }
.rating-summary small { grid-column: 1 / -1; margin-top: 5px; color: var(--muted); font-size: 9px; }
.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: -10px 0 14px;
}
.review-control {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(18, 63, 45, .08);
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}
.review-control:hover,
.review-control:focus-visible {
  color: var(--white);
  background: var(--green-700);
  transform: translateY(-2px);
}
.reviews-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.reviews-marquee::-webkit-scrollbar {
  display: none;
}
.reviews-marquee::before,
.reviews-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(12vw, 120px);
  content: "";
  pointer-events: none;
}
.reviews-marquee::before { left: 0; background: linear-gradient(90deg, var(--white), rgba(255,255,255,0)); }
.reviews-marquee::after { right: 0; background: linear-gradient(270deg, var(--white), rgba(255,255,255,0)); }
.reviews-grid {
  width: max-content;
  display: flex;
  gap: 16px;
  padding: 4px 16px 8px;
  animation: reviews-slide-rtl 14s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-grid,
.reviews-marquee:focus-within .reviews-grid,
.reviews-section.is-reviews-paused .reviews-grid { animation-play-state: paused; }
.review-card {
  width: clamp(270px, 31vw, 380px);
  min-height: 184px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  margin-bottom: 0;
  padding: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 13px;
  cursor: pointer;
}
.stars { margin-bottom: 10px; color: var(--green-900); font-size: 12px; letter-spacing: 2px; }
.review-card > p { margin-bottom: 18px; color: var(--text); font-family: var(--font-body); font-size: 14px; font-weight: 650; line-height: 1.55; }
.review-card footer { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.verified-mark { width: 32px; height: 32px; display: grid; place-items: center; color: var(--white); background: var(--green-700); border-radius: 50%; font-size: 12px; font-weight: 800; }
.review-card footer div { display: flex; flex-direction: column; line-height: 1.4; }
.review-card footer strong,
.review-card footer a { color: var(--green-900); font-size: 12px; font-weight: 800; }
.review-card footer small { color: var(--muted); font-size: 9px; }
@keyframes reviews-slide-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

/* CTA */
.cta-section { padding: 54px 0; color: var(--white); background: var(--green-900); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-inner > div:first-child { max-width: 610px; }
.cta-kicker { color: #A9D2B9; }
.cta-inner h2 { margin-bottom: 8px; color: var(--white); font-family: var(--font-display); font-size: clamp(30px, 3vw, 40px); font-weight: 400; line-height: 1.15; }
.cta-inner p:last-child { color: #CDE2D5; font-size: 14px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 10px; }

/* Clinic */
.clinic-section { background: var(--off-white); }
.clinic-card { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-sm); }
.clinic-details { padding: 38px; }
.clinic-label { display: inline-block; margin-bottom: 13px; padding: 5px 9px; color: var(--green-700); background: var(--green-100); border-radius: 5px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.clinic-details h3 { margin-bottom: 9px; color: var(--green-900); font-family: var(--font-display); font-size: 28px; font-weight: 400; line-height: 1.25; }
.clinic-details address { color: var(--muted); font-size: 14px; font-style: normal; line-height: 1.7; }
.clinic-info-list { display: grid; gap: 13px; margin: 25px 0; padding: 20px 0; border-block: 1px solid var(--border); }
.clinic-info-list > div { display: flex; align-items: center; gap: 12px; }
.clinic-info-list > div > span { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; color: var(--green-700); background: var(--green-100); border-radius: 7px; font-size: 10px; font-weight: 800; }
.clinic-info-list p { display: flex; flex-direction: column; line-height: 1.4; }
.clinic-info-list strong { color: var(--green-900); font-size: 12px; }
.clinic-info-list small { color: var(--muted); font-size: 10px; }
.clinic-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.contact-note { margin-top: 15px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.contact-note code { color: var(--green-900); background: var(--green-100); }
.map-wrap {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100% - 44px, 520px);
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  background: var(--green-100);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 0; display: block; border: 0; filter: saturate(.7) contrast(.96); }
.map-action {
  display: flex;
  justify-content: center;
  margin: 14px 0 24px;
}
.map-link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; color: var(--white); background: var(--green-900); border-radius: 8px; box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 800; }

/* FAQs */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(56px, 8vw, 100px); }
.faq-intro { align-self: start; position: sticky; top: 116px; }
.faq-intro > p:not(.section-kicker) { color: var(--muted); }
.faq-intro .text-link { margin-top: 14px; }
.accordion { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; color: var(--green-900); background: transparent; border: 0; text-align: left; font-size: 14px; font-weight: 800; cursor: pointer; }
.faq-item button > span { position: relative; width: 27px; height: 27px; flex: 0 0 27px; background: var(--green-100); border-radius: 50%; }
.faq-item button > span::before,
.faq-item button > span::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; content: ""; background: var(--green-700); transform: translate(-50%, -50%); transition: transform .25s ease; }
.faq-item button > span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] > span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-panel { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .32s ease; }
.faq-panel[hidden] { display: grid; grid-template-rows: 0fr; }
.faq-panel > div { overflow: hidden; }
.faq-panel p { max-width: 700px; margin: 0; padding: 0 48px 20px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-answer.is-typing::after {
  width: .08em;
  height: 1em;
  display: inline-block;
  margin-left: .12em;
  content: "";
  background: var(--green-700);
  border-radius: 2px;
  vertical-align: -.14em;
  animation: type-cursor .72s steps(1, end) infinite;
}

/* Footer */
.site-footer { padding: 62px 0 0; color: #D6E6DC; background: #0D3324; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .7fr 1.1fr .8fr; gap: 54px; padding-bottom: 48px; }
.brand-light .brand-mark { background: var(--white); }
.brand-light .brand-copy strong { color: var(--white); }
.brand-light .brand-copy small { color: #A9C4B5; }
.footer-brand p { margin: 20px 0 0 51px; color: #A9C4B5; font-size: 12px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-column h2 { margin-bottom: 10px; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a,
.footer-column p { color: #B7CEC0; font-size: 11px; }
.footer-column a { min-height: 28px; display: inline-flex; align-items: center; transition: color .2s ease; }
.footer-column a:hover { color: var(--white); }
.footer-contact p { line-height: 1.75; }
.footer-book { color: var(--white) !important; font-weight: 800; }
.footer-bottom { min-height: 74px; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 25px; padding-block: 19px; border-top: 1px solid rgba(216, 231, 221, .15); }
.footer-bottom p,
.footer-bottom a { margin: 0; color: #91AD9E; font-size: 9px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom .disclaimer { justify-self: end; max-width: 500px; text-align: right; }

.back-to-top { position: fixed; z-index: 900; left: 22px; bottom: 22px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--white); background: var(--green-900); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: var(--shadow-sm); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background-color .25s ease; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-700); }
.floating-contact {
  position: fixed;
  z-index: 901;
  right: 22px;
  bottom: 22px;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.floating-contact-toggle,
.floating-contact-options a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-900);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, opacity .25s ease;
}
.floating-contact-toggle svg,
.floating-contact-options svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.floating-contact-toggle:hover,
.floating-contact-options a:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}
.floating-contact-options {
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}
.floating-contact.open .floating-contact-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-contact.open .floating-contact-toggle {
  transform: rotate(45deg);
}
.mobile-booking-bar { display: none; }

/* Mobile hero refinements kept in style.css so index.html + this file carry the latest view. */
@media (max-width: 768px) {
  body:not(.hero-variant-two) .hero::before {
    inset: 0;
    width: 100%;
    height: auto;
    background:
      linear-gradient(180deg, rgba(7, 31, 22, 0) 0%, rgba(7, 31, 22, .02) 36%, rgba(7, 31, 22, .28) 66%, rgba(7, 31, 22, .78) 100%),
      linear-gradient(90deg, rgba(7, 31, 22, .08) 0%, rgba(7, 31, 22, .02) 46%, rgba(7, 31, 22, 0) 100%);
    clip-path: none;
  }

  body:not(.hero-variant-two) .hero-overlay {
    background: linear-gradient(180deg, transparent 0%, transparent 48%, rgba(7, 31, 22, .14) 68%, rgba(7, 31, 22, .52) 100%);
  }

  body:not(.hero-variant-two) .hero::after {
    right: -18px;
    bottom: 0;
    left: auto;
    width: 66%;
    height: 34%;
    background: linear-gradient(135deg, rgba(36, 185, 119, .62), rgba(18, 63, 45, .08));
    border: 0;
    clip-path: polygon(18% 0, 100% 16%, 100% 100%, 0 100%);
    transform: none;
  }

  body .hero .hero-content .hero-title,
  body .hero .hero-content .hero-description,
  body .hero .hero-content .hero-qualifications {
    font-style: normal;
  }

  body .hero .hero-title {
    font-size: clamp(25px, 6.9vw, 34px);
    line-height: 1.08;
  }

  body .hero .hero-title-mobile {
    white-space: normal;
  }

  body .hero .hero-content {
    padding-bottom: 8px;
  }

  body .hero .hero-actions {
    margin-bottom: 0;
  }

  body:not(.hero-variant-two) .container.hero-grid {
    position: static;
    display: block;
    height: 100%;
    min-height: 100%;
    width: 100%;
    padding-block: 0;
  }

  body:not(.hero-variant-two) .hero {
    min-height: calc(var(--vh, 1vh) * 100);
  }

  body:not(.hero-variant-two) .hero-content {
    position: absolute;
    top: auto;
    right: 24px;
    bottom: clamp(58px, 7svh, 78px);
    left: 24px;
    width: auto;
    min-height: auto;
    max-width: none;
    order: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  body:not(.hero-variant-two) .hero-content::before {
    display: none;
  }

  body:not(.hero-variant-two) .hero-title {
    color: var(--white);
    font-size: clamp(52px, 14vw, 66px);
    line-height: .78;
    text-shadow: 0 12px 34px rgba(0, 0, 0, .42);
  }

  body:not(.hero-variant-two) .hero-description-mobile {
    max-width: 280px;
    margin-top: 10px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.45;
  }

  body:not(.hero-variant-two) .hero-qualifications-mobile {
    margin-bottom: 12px;
    padding: 0;
    color: #CFF1DD;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 9px;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  body:not(.hero-variant-two) .hero-actions {
    width: min(100%, 330px);
    gap: 10px;
    margin-top: 12px;
  }

  body:not(.hero-variant-two) .hero-actions .button {
    min-height: 45px;
    padding: 11px 12px;
    border-radius: 999px;
    font-size: 11px;
  }

  body:not(.hero-variant-two) .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
  }

  body:not(.hero-variant-two) .doctor-card {
    width: 100%;
    height: 100%;
  }

  body:not(.hero-variant-two) .hero-visual::before {
    inset: 7% 4% 9% 18%;
    border-color: rgba(255, 255, 255, .34);
  }

  body:not(.hero-variant-two) .hero-visual::after {
    right: -18px;
    bottom: 8%;
    width: 118%;
    height: 34%;
  }

  body:not(.hero-variant-two) .doctor-card img {
    height: 100%;
    object-position: 62% 0%;
    filter: saturate(1.08) contrast(1.04) brightness(1.18);
  }

  body:not(.hero-variant-two) .hero-shadow {
    bottom: 0;
    width: min(74%, 240px);
    background: radial-gradient(ellipse, rgba(0, 0, 0, .46), transparent 72%);
  }

  body:not(.hero-variant-two) .credential-badge {
    display: none;
  }

  body:not(.hero-variant-two) .hero-stat-badge {
    display: none;
  }
}

@media (max-width: 600px) {
  body:not(.hero-variant-two) .hero .hero-title {
    font-size: clamp(52px, 14vw, 66px);
  }
}

@media (max-width: 360px) {
  body:not(.hero-variant-two) .hero .hero-title {
    font-size: clamp(46px, 13vw, 56px);
  }
}

/* Alternate premium hero used by index2.html. */
body.hero-variant-two .hero {
  min-height: calc(var(--vh, 1vh) * 100 - var(--header-height));
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 112, 72, .1), transparent 34%),
    linear-gradient(135deg, #F8FAF8 0%, #EEF7F2 52%, #FFFFFF 100%);
  overflow: hidden;
}

body.hero-variant-two .hero-background {
  display: none;
}

body.hero-variant-two .hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(248, 250, 248, .98) 0%, rgba(248, 250, 248, .94) 42%, rgba(248, 250, 248, .38) 67%, rgba(248, 250, 248, .1) 100%),
    linear-gradient(180deg, rgba(248, 250, 248, .18), rgba(248, 250, 248, .86));
}

body.hero-variant-two .container.hero-grid {
  min-height: calc(var(--vh, 1vh) * 100 - var(--header-height));
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

body.hero-variant-two .hero-badge {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: #155B3C;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(31, 112, 72, .18);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(18, 63, 45, .08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.hero-variant-two .hero-title {
  max-width: 690px;
  font-size: clamp(48px, 4.6vw, 68px);
  line-height: .98;
  letter-spacing: -.025em;
}

body.hero-variant-two .hero-description {
  max-width: 610px;
  color: #42564D;
  font-size: 18px;
  line-height: 1.7;
}

body.hero-variant-two .hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  animation: none;
  pointer-events: none;
}

body.hero-variant-two .hero-visual::before {
  display: none;
}

body.hero-variant-two .hero-visual::after {
  display: none;
}

body.hero-variant-two .doctor-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.hero-variant-two .doctor-card img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(52vw, 650px);
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  filter: saturate(.98) contrast(1.02);
  transform: none;
}

body.hero-variant-two .credential-badge {
  display: none;
}

@media (max-width: 768px) {
  body.hero-variant-two .hero {
    min-height: calc(var(--vh, 1vh) * 100 - var(--header-height));
    padding: 0;
    overflow: hidden;
  }

  body.hero-variant-two .container.hero-grid {
    width: 100%;
    min-height: calc(var(--vh, 1vh) * 100 - var(--header-height));
    display: flex;
    align-items: center;
    padding: 18px 18px 24px;
  }

  body.hero-variant-two .hero-content {
    position: relative;
    z-index: 3;
    width: min(100%, 540px);
    min-height: 0;
    max-width: none;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-right: min(22vw, 88px);
  }

  body.hero-variant-two .hero-badge {
    margin-bottom: 10px;
    padding: 6px 9px;
    font-size: 9px;
    letter-spacing: .05em;
  }

  body.hero-variant-two .hero-title-desktop,
  body.hero-variant-two .hero-description-desktop,
  body.hero-variant-two .hero-qualifications-desktop {
    display: none;
  }

  body.hero-variant-two .hero-title-mobile,
  body.hero-variant-two .hero-description-mobile,
  body.hero-variant-two .hero-qualifications-mobile {
    display: block;
  }

  body.hero-variant-two .hero-title {
    max-width: 100%;
    font-size: clamp(27px, 6.7vw, 34px);
    line-height: 1.04;
  }

  body.hero-variant-two .hero-description-mobile {
    max-width: 100%;
    margin-top: 11px;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.5;
  }

  body.hero-variant-two .hero-qualifications-mobile {
    width: fit-content;
    margin-top: 12px;
    padding: 6px 9px;
    font-size: 10px;
    white-space: normal;
  }

  body.hero-variant-two .hero-actions {
    width: min(100%, 390px);
    display: flex;
    flex-wrap: nowrap;
    gap: 9px;
    margin-top: 13px;
  }

  body.hero-variant-two .hero-actions .button {
    min-height: 44px;
    border-radius: 14px;
    font-size: 10px;
  }

  body.hero-variant-two .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    translate: none;
    pointer-events: none;
  }

  body.hero-variant-two .hero-visual::before {
    display: none;
  }

  body.hero-variant-two .hero-visual::after {
    display: none;
  }

  body.hero-variant-two .doctor-card {
    position: absolute;
    inset: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.hero-variant-two .doctor-card img {
    right: -32vw;
    width: min(92vw, 460px);
    height: 100%;
    object-position: 50% 13%;
  }

  body.hero-variant-two .credential-badge {
    display: none;
  }
}

@media (max-width: 420px) {
  body.hero-variant-two .container.hero-grid {
    padding-inline: 16px;
  }

  body.hero-variant-two .hero-content {
    padding-right: min(20vw, 74px);
  }

  body.hero-variant-two .doctor-card img {
    right: -38vw;
    width: 105vw;
  }

  body.hero-variant-two .hero-title {
    font-size: clamp(25px, 6.6vw, 30px);
  }

  body.hero-variant-two .hero-description-mobile {
    font-size: 11px;
    line-height: 1.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-line-text { opacity: 1 !important; transform: none !important; will-change: auto; }
  .hero-line-text::after { display: none !important; animation: none !important; }
  .about-title-type::after,
  .expertise-title-type::after { display: none !important; animation: none !important; }
  .about-experience-button::before { animation: none !important; }
  .reviews-grid { animation: none !important; }
  .hero-background,
  .hero-overlay { opacity: 1 !important; transform: none !important; will-change: auto; }
  .expertise-card,
  .expertise-card:hover,
  .expertise-card:focus-within { transform: none !important; will-change: auto; }
  .expertise-card:hover .line-icon,
  .expertise-card:focus-within .line-icon,
  .expertise-section::before,
  .expertise-section::after { animation: none !important; transform: none !important; }
  .process-grid { --process-base-scale: 1 !important; --process-progress: 0 !important; --process-progress-opacity: 0 !important; }
  .process-step > span,
  .process-step:hover > span,
  .process-step h3,
  .process-step:hover h3,
  .process-step p,
  .process-step:hover p { opacity: 1 !important; transform: none !important; }
  .experience-intro,
  .timeline-item,
  .timeline-dot,
  .timeline-item h3,
  .timeline-item p { opacity: 1 !important; transform: none !important; }
  .timeline-line span { transform: scaleY(1) !important; }
}
