:root {
  --ink: #0b1828;
  --muted: #607084;
  --line: #d5e1ec;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --blue: #0a6dae;
  --blue-dark: #073d6b;
  --cyan: #16a3b6;
  --gold: #b89a58;
  --warm: #f5f1e8;
  --navy: #071625;
  --shadow: 0 24px 70px rgba(11, 24, 40, 0.14);
  --shadow-soft: 0 16px 44px rgba(11, 24, 40, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0.72), rgba(255, 255, 255, 0) 420px),
    var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(213, 225, 236, 0.78);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  box-shadow: 0 8px 30px rgba(7, 22, 37, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0) 42%),
    linear-gradient(135deg, var(--blue-dark), var(--blue) 58%, var(--cyan));
  color: white;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(10, 109, 174, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong { font-size: 18px; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 12px; }

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.language-switcher button {
  border-radius: 8px;
  color: var(--muted);
  font: inherit;
}

.site-nav a {
  padding: 9px 12px;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue-dark);
  background: #edf6ff;
  box-shadow: inset 0 -1px 0 rgba(184, 154, 88, 0.35);
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  max-width: 310px;
}

.language-switcher button {
  min-height: 30px;
  border: 1px solid var(--line);
  background: white;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 12px;
}

.language-switcher button.is-active {
  color: white;
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  max-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.83) 38%, rgba(255,255,255,0.1) 76%),
    linear-gradient(180deg, rgba(7,22,37,0.08), rgba(7,22,37,0.18));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 80px 0 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(43px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.hero-content p:not(.eyebrow),
.page-hero p,
.section-heading + .split p {
  max-width: 680px;
  color: #45566c;
  font-size: 19px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid var(--blue);
  font-weight: 760;
  cursor: pointer;
}

.button.primary {
  color: white;
  border-color: var(--blue-dark);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 16px 34px rgba(7, 61, 107, 0.24);
}

.button.ghost {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.8);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(690px, 100%);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(213, 225, 236, 0.88);
  border-radius: 8px;
  background: rgba(213, 225, 236, 0.88);
  box-shadow: var(--shadow-soft);
}

.hero-proof div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

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

.hero-proof strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 17px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

.section,
.page-hero {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.intro-band,
.journey-band,
.cta-band {
  background:
    linear-gradient(135deg, rgba(7, 22, 37, 0.035), rgba(255,255,255,0) 45%),
    var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.status-card,
.contact-card,
.feature-card,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.status-card {
  padding: 24px;
}

.status-card span,
.placeholder {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.status-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.feature-card {
  overflow: hidden;
  padding: 0;
}

.feature-card .icon-pill,
.feature-card h3,
.feature-card p,
.feature-card small {
  margin-left: 22px;
  margin-right: 22px;
}

.feature-card h3 {
  margin-top: 0;
}

.feature-card small {
  display: inline-flex;
  width: calc(100% - 44px);
  margin-top: 10px;
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-image,
.service-image,
.editorial-visual img {
  width: 100%;
  object-fit: cover;
  background: var(--soft);
}

.card-image {
  height: 180px;
  margin-bottom: 22px;
}

.feature-card p,
.service-row p,
.legal-copy p,
.contact-card p,
.form-note {
  color: var(--muted);
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, #edf6ff, #f7f1df);
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0;
}

.timeline div {
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: white;
  box-shadow: var(--shadow-soft);
}

.timeline span {
  display: block;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 154, 88, 0.18), transparent 28%),
    linear-gradient(135deg, #eef7ff 0%, #ffffff 55%, var(--warm) 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  width: min(420px, 38vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero h1 {
  max-width: 920px;
}

.clinical-note {
  max-width: 620px;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(184, 154, 88, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.clinical-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.clinical-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.clinical-note p {
  margin-bottom: 0;
  font-size: 16px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(213, 225, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88)),
    radial-gradient(circle at 90% 8%, rgba(22, 163, 182, 0.18), transparent 34%);
  box-shadow: var(--shadow-soft);
}

.method-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border: 1px solid rgba(184, 154, 88, 0.55);
  border-radius: 50%;
  color: var(--blue-dark);
  font-weight: 850;
}

.method-card p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 22px;
}

.service-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-soft);
}

.service-row > span {
  display: grid;
  place-items: center;
  align-self: start;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, #edf6ff, #f7f1df);
  font-size: 28px;
  font-weight: 800;
}

.service-image {
  height: 310px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(213, 225, 236, 0.95);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--blue-dark);
  background: #fbfdff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-visual {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin-bottom: clamp(44px, 7vw, 82px);
}

.editorial-visual img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.editorial-visual div {
  max-width: 680px;
}

.editorial-visual p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.language-panel,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  gap: 32px;
  align-items: start;
}

.language-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.language-cloud span {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #edf6ff;
  font-weight: 720;
}

.contact-card,
.inquiry-form {
  padding: 28px;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: white;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.form-note.is-success {
  color: var(--blue-dark);
  font-weight: 760;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: 26px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fbfdff;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 16px;
}

.site-footer a {
  color: var(--blue-dark);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    grid-column: 1;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .language-switcher {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .language-switcher {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
  }

  .card-grid.four,
  .card-grid.three,
  .timeline,
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 58%, rgba(255,255,255,0.76) 100%);
  }

  .hero-content {
    margin: 0;
    width: 100%;
    padding: 76px 18px 82px;
  }

  h1 {
    font-size: 42px;
  }

  .split,
  .card-grid.four,
  .card-grid.three,
  .timeline,
  .method-grid,
  .language-panel,
  .contact-layout,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 220px;
  }

  .site-footer {
    flex-direction: column;
  }
}
