:root {
  --navy: #033f56;
  --navy-dark: #022d3f;
  --teal: #00769a;
  --green: #2f7f3d;
  --green-soft: #eaf4ec;
  --blue-soft: #e8f4f8;
  --cream: #fbfaf7;
  --white: #ffffff;
  --text: #21313a;
  --muted: #61737c;
  --line: #dbe6ea;
  --shadow: 0 22px 60px rgba(3, 63, 86, 0.12);
  --radius: 24px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(var(--max-width), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 820px; text-align: center; }
.section { padding: 86px 0; }
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 12px;
  z-index: 999;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 230, 234, 0.8);
}
.nav-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 148px; }
.primary-nav { display: flex; align-items: center; gap: 24px; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.primary-nav a { text-decoration: none; }
.primary-nav a:hover { color: var(--green); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
}
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 6px 0; background: var(--navy); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 127, 61, 0.18), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(0, 118, 154, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5fbfb 52%, #eef7ef 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -160px -220px auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  border: 72px solid rgba(47, 127, 61, 0.08);
}
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3 { color: var(--navy-dark); line-height: 1.1; margin: 0 0 18px; }
h1 { font-size: clamp(2.45rem, 5vw, 4.9rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.3rem); letter-spacing: -0.04em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; }
.lead { font-size: 1.22rem; color: var(--navy); font-weight: 700; }
.hero-copy > p:not(.eyebrow):not(.lead) { max-width: 690px; color: var(--muted); font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: var(--white); box-shadow: 0 14px 30px rgba(3, 63, 86, 0.22); }
.button.secondary { background: var(--white); color: var(--navy); border: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
  background: rgba(255,255,255,0.76);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 230, 234, 0.9);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.hero-card img { width: min(360px, 100%); margin: 0 auto 20px; }
.hero-card h2 { font-size: 1.6rem; text-align: center; }
.hero-card p { color: var(--muted); text-align: center; }

.intro-section { background: var(--white); }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading p:last-child { color: var(--muted); }
.cards { display: grid; gap: 24px; }
.three-column { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 42px rgba(3, 63, 86, 0.07);
}
.service-card { position: relative; overflow: hidden; }
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--navy));
}
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
ul { padding-left: 20px; margin: 0; color: var(--muted); }
li + li { margin-top: 8px; }

.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, #075f7e 58%, #2f7f3d 100%);
  color: var(--white);
}
.why-section h2, .why-section .eyebrow { color: var(--white); }
.why-section p { color: rgba(255,255,255,0.82); }
.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: center; }
.check-list { display: grid; gap: 14px; }
.check-list div {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 700;
}
.check-list span { color: #b9e6bf; margin-right: 8px; }

.appointment-section { background: var(--white); }
.timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.timeline-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  min-height: 152px;
}
.timeline-item strong {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  margin-bottom: 16px;
}
.timeline-item span { display: block; color: var(--navy); font-weight: 800; line-height: 1.35; }

.conditions-section { background: linear-gradient(180deg, #f7fbfc 0%, var(--cream) 100%); }
.highlight-card { background: var(--navy); color: var(--white); }
.highlight-card h3 { color: var(--white); }
.tag-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-grid span {
  display: inline-flex;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.clinic-section { background: var(--white); }
.clinic-card {
  background: linear-gradient(135deg, var(--blue-soft), var(--green-soft));
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}
.clinic-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.clinic-features span {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(219,230,234,0.95);
  border-radius: 18px;
  padding: 18px;
  color: var(--navy);
  font-weight: 800;
}

.contact-section { background: var(--navy-dark); color: var(--white); }
.contact-section h2, .contact-section .eyebrow { color: var(--white); }
.contact-section p { color: rgba(255,255,255,0.82); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: start; }
.contact-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 26px;
  display: grid;
  gap: 14px;
}
.contact-panel a, .contact-panel div {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px;
}
.contact-panel a:hover { background: rgba(255,255,255,0.14); }
.contact-panel span { width: 26px; flex: 0 0 26px; }

.site-footer { background: #021f2c; color: rgba(255,255,255,0.78); padding: 28px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.site-footer strong { color: var(--white); }
.site-footer p { margin: 0; }
.site-footer a { color: var(--white); font-weight: 700; }

@media (max-width: 980px) {
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .three-column { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .clinic-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  .section { padding: 62px 0; }
  .brand img { width: 124px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 82px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 18px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .nav-cta { border-radius: 0; text-align: center; }
  h1 { font-size: clamp(2.3rem, 13vw, 3.5rem); }
  .hero-card { padding: 22px; }
  .three-column, .timeline, .clinic-features { grid-template-columns: 1fr; }
  .timeline-item { min-height: auto; }
  .clinic-card { padding: 28px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
