:root {
  --ink: #17211d;
  --muted: #61706b;
  --paper: #f4f6f2;
  --white: #ffffff;
  --line: #d9e2dc;
  --green: #1c6b57;
  --green-dark: #0f3f36;
  --mint: #bfe9d7;
  --gold: #d6a84e;
  --rose: #c86d64;
  --charcoal: #202d2a;
  --shadow: 0 20px 60px rgba(23, 33, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 68px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 220, 0.86);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 162px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--green);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang {
  min-width: 42px;
  min-height: 40px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.lang.is-active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.call-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 720px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 35, 30, 0.9), rgba(18, 35, 30, 0.62) 44%, rgba(18, 35, 30, 0.12)),
    linear-gradient(0deg, rgba(18, 35, 30, 0.78), rgba(18, 35, 30, 0.02) 52%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 120px;
  color: var(--white);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p:not(.kicker) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.dark {
  color: var(--white);
  background: var(--charcoal);
}

.button.light {
  color: var(--green-dark);
  background: var(--mint);
}

.button.full {
  width: 100%;
  margin-top: 18px;
}

.hero-proof {
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  bottom: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(720px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.hero-proof div {
  padding: 18px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.55rem;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.signal-row a {
  min-height: 96px;
  padding: 22px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.signal-row a:last-child {
  border-right: 0;
}

.signal-row span,
.signal-row strong {
  display: block;
}

.signal-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-row strong {
  margin-top: 8px;
  font-size: 1.02rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.lead,
.media-text p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.solution-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.solution-tabs {
  display: grid;
  gap: 10px;
}

.solution {
  min-height: 58px;
  padding: 0 18px;
  text-align: left;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.solution.is-active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.solution-result {
  min-height: 520px;
  padding: 28px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.solution-result h3 {
  margin: 0;
  font-size: 2rem;
}

.solution-result p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.solution-result ul {
  margin: 20px 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.solution-result label {
  display: block;
  margin: 20px 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.solution-result textarea {
  width: 100%;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  resize: vertical;
}

.media-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: center;
  padding: 72px clamp(20px, 5vw, 70px);
  background: var(--paper);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.media-grid img:first-child {
  grid-row: 1 / span 2;
}

.section-title {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  margin-bottom: 34px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  min-height: 260px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-grid span {
  color: var(--rose);
  font-weight: 950;
}

.proof-grid h3 {
  margin: 34px 0 0;
}

.proof-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.doctor-grid article {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.doctor-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.doctor-grid h3 {
  margin: 14px 0 0;
  font-size: 1rem;
}

.service-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 0;
}

.service-photos img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 8px;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 86px clamp(20px, 5vw, 70px) 124px;
  color: var(--white);
  background: var(--charcoal);
}

.contact h2 {
  max-width: 760px;
}

.contact-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.contact-card dl {
  margin: 0;
}

.contact-card div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card div:first-child {
  padding-top: 0;
}

.contact-card div:last-child {
  border-bottom: 0;
}

.contact-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 6px 0 0;
  font-weight: 850;
}

.sticky-mobile {
  display: none;
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .signal-row,
  .split,
  .solution-panel,
  .media-section,
  .section-title,
  .proof-grid,
  .doctor-grid,
  .service-photos,
  .contact {
    grid-template-columns: 1fr;
  }

  .signal-row a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    margin: -110px auto 34px;
  }
}

@media (max-width: 700px) {
  .topbar {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand img {
    width: 128px;
  }

  .call-pill {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image img {
    object-position: 56% center;
  }

  .hero-image::after {
    background:
      linear-gradient(0deg, rgba(18, 35, 30, 0.94), rgba(18, 35, 30, 0.48)),
      linear-gradient(90deg, rgba(18, 35, 30, 0.58), rgba(18, 35, 30, 0.16));
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding: 82px 0 140px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-copy p:not(.kicker) {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-top: -120px;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  h2 {
    font-size: 2.08rem;
  }

  .media-section,
  .contact {
    padding-right: 16px;
    padding-left: 16px;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 210px);
  }

  .media-grid img:first-child {
    grid-row: auto;
  }

  .solution-result {
    min-height: auto;
    padding: 22px;
  }

  .sticky-mobile {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .sticky-mobile.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: var(--white);
    background: var(--green);
    border-radius: 8px;
    font-weight: 900;
  }

  .sticky-mobile a:nth-child(2) {
    color: var(--green-dark);
    background: var(--mint);
  }
}
