:root {
  --ink: #14201d;
  --muted: #61706c;
  --line: rgba(20, 32, 29, .12);
  --bg: #f7faf7;
  --paper: #ffffff;
  --mint: #dff4e8;
  --green: #1f8f67;
  --green-dark: #0f5e4b;
  --coral: #f27f6f;
  --blue: #2d6cdf;
  --shadow: 0 24px 80px rgba(20, 32, 29, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(31, 143, 103, .13), transparent 30rem),
    radial-gradient(circle at 90% 18%, rgba(242, 127, 111, .11), transparent 28rem),
    linear-gradient(180deg, #fbfdfb 0%, var(--bg) 48%, #eef7f2 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(20, 32, 29, .08);
  transition: box-shadow .35s ease, background .35s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(20, 32, 29, .08); background: rgba(255, 255, 255, .94); }
.topbar {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid rgba(20, 32, 29, .07);
}
.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 190px; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 12px 30px rgba(31, 143, 103, .26);
}
.brand b { display: block; font-size: 22px; letter-spacing: 0; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 22px; color: #263a35; font-size: 14px; font-weight: 700; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: var(--mint); border-radius: 12px; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--green-dark); transition: transform .25s ease; }

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 760px) minmax(280px, 420px) minmax(24px, 1fr);
  align-items: end;
  gap: 28px;
  padding: 72px 0 34px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,250,247,.98) 0%, rgba(247,250,247,.78) 45%, rgba(247,250,247,.32) 100%),
    linear-gradient(180deg, rgba(247,250,247,.1), rgba(247,250,247,.92));
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: slowZoom 18s ease-in-out infinite alternate; }
@keyframes slowZoom { from { transform: scale(1.04) translateY(0); } to { transform: scale(1.1) translateY(-10px); } }
.hero-content { grid-column: 2; max-width: 740px; padding-bottom: 64px; }
.eyebrow, .section-title span, .feature-copy span, .page-hero span {
  display: inline-flex;
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
  background: rgba(223, 244, 232, .86);
  padding: 8px 12px;
  border-radius: 999px;
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95;
  max-width: 790px;
  margin: 22px 0;
}
.lead { font-size: 20px; line-height: 1.7; color: #344641; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--green), var(--green-dark)); box-shadow: 0 16px 40px rgba(31, 143, 103, .26); }
.btn.ghost { background: rgba(255,255,255,.78); border: 1px solid var(--line); }
.hero-panel {
  grid-column: 3;
  margin-bottom: 64px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 12px;
}
.hero-panel b { font-size: 26px; }
.hero-panel span { color: var(--muted); }

.metrics, .section, .feature-band, .content-layout, .footer-grid {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.metric {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(20, 32, 29, .06);
}
.metric b { display: block; font-size: 34px; }
.metric span { color: var(--muted); }
.section { padding: 86px 0 0; }
.section-title {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}
.section-title h2, .feature-copy h2, .cta h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  margin: 14px 0 0;
}
.intro-copy p { color: var(--muted); font-size: 19px; line-height: 1.75; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card, .news-card, .doctor-card, .oms-card, .article, .side-panel {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(20, 32, 29, .07);
}
.service-card {
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(31,143,103,.28); }
.service-card span { color: var(--coral); font-weight: 800; }
.service-card h3 { font-size: 26px; margin: 28px 0 12px; }
.service-card p, .news-card p, .article p { color: var(--muted); line-height: 1.75; }
.service-card a { margin-top: auto; color: var(--green-dark); font-weight: 800; }
.feature-band {
  margin-top: 92px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: stretch;
}
.feature-copy {
  padding: clamp(34px, 5vw, 68px);
  color: white;
  background: linear-gradient(135deg, #0f5e4b, #163b54);
  border-radius: 8px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-copy span { color: white; background: rgba(255,255,255,.14); }
.feature-copy p { color: rgba(255,255,255,.78); line-height: 1.8; font-size: 18px; }
.feature-copy a { color: white; font-weight: 800; margin-top: 18px; }
.feature-image { width: 100%; height: 100%; min-height: 480px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.doctor-card { overflow: hidden; transition: transform .28s ease, box-shadow .28s ease; }
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.doctor-card img { width: 100%; height: 330px; object-fit: cover; object-position: top center; filter: saturate(1.02); }
.doctor-card div { padding: 20px; }
.doctor-card h3 { font-size: 22px; margin-bottom: 8px; }
.doctor-card p { color: var(--muted); line-height: 1.5; }
.oms-card { padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.oms-card p { max-width: 760px; color: var(--muted); font-size: 18px; line-height: 1.7; margin: 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.news-card { padding: 26px; min-height: 230px; transition: transform .28s ease, box-shadow .28s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-card span { color: var(--coral); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.news-card h3 { font-size: 22px; margin: 14px 0 10px; }
.cta {
  width: min(1240px, calc(100% - 48px));
  margin: 92px auto;
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  color: white;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-dark), var(--green), #2576ca);
  box-shadow: var(--shadow);
}
.cta p { color: rgba(255,255,255,.82); font-size: 18px; }
.cta .btn { background: #fff; color: var(--green-dark); }

.page-hero {
  min-height: 360px;
  display: grid;
  place-items: end start;
  padding: 92px max(24px, calc((100vw - 1240px) / 2)) 54px;
  background:
    linear-gradient(135deg, rgba(223,244,232,.95), rgba(255,255,255,.7)),
    url("/assets/source/images-content-featured-feature2.jpg") center / cover;
}
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); line-height: 1; max-width: 1000px; margin: 16px 0; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 720px; }
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  padding: 54px 0 92px;
}
.article { padding: clamp(28px, 5vw, 58px); }
.article p { font-size: 17px; margin-bottom: 20px; }
.article p:first-child { font-size: 21px; color: #293b36; }
.side-panel { padding: 24px; align-self: start; position: sticky; top: 112px; }
.side-panel h2 { font-size: 22px; }
.mini-links { display: grid; gap: 8px; margin: 18px 0 24px; }
.mini-link {
  padding: 12px 14px;
  border-radius: 8px;
  background: #f2f8f5;
  color: #27423b;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}
.mini-link:hover { background: var(--mint); transform: translateX(3px); }

.footer {
  background: #0f1f1b;
  color: white;
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 34px;
}
.footer-brand { font-size: 34px; font-weight: 800; }
.footer p, .footer a { color: rgba(255,255,255,.72); line-height: 1.7; }
.footer h3 { margin-bottom: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.copyright {
  width: min(1240px, calc(100% - 48px));
  margin: 38px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .topbar { display: none; }
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    gap: 6px;
    padding: 18px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }
  body.menu-open .nav-links { opacity: 1; pointer-events: auto; transform: translateY(0); }
  body.menu-open .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
  body.menu-open .menu-button span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { grid-template-columns: 24px 1fr 24px; min-height: auto; padding-top: 72px; }
  .hero-content, .hero-panel { grid-column: 2; }
  .hero-content { padding-bottom: 20px; }
  .hero-panel { margin: 0; }
  .metrics, .service-grid, .doctor-grid, .news-grid, .footer-grid, .content-layout, .feature-band, .section-title {
    grid-template-columns: 1fr;
  }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .side-panel { position: static; }
}

@media (max-width: 620px) {
  .nav { padding: 12px 16px; }
  .brand small { display: none; }
  .hero h1 { font-size: 46px; }
  .lead { font-size: 17px; }
  .metrics, .service-grid, .doctor-grid, .news-grid { grid-template-columns: 1fr; }
  .metrics, .section, .feature-band, .content-layout, .footer-grid, .cta { width: min(100% - 32px, 1240px); }
  .section { padding-top: 62px; }
  .oms-card { display: grid; }
  .doctor-card img, .feature-image { min-height: 0; height: 280px; }
  .page-hero { min-height: 300px; padding-top: 70px; }
}
