
:root {
  --navy: #061827;
  --navy-2: #0b2435;
  --navy-3: #102f43;
  --teal: #00a9a7;
  --teal-2: #14c6c2;
  --teal-dark: #037f83;
  --slate: #5e6d7b;
  --muted: #758797;
  --ice: #eff7f8;
  --ice-2: #f6fbfc;
  --line: #dbe8ee;
  --white: #ffffff;
  --sand: #f7f8f8;
  --shadow: 0 28px 90px rgba(6, 24, 39, .18);
  --shadow-soft: 0 18px 55px rgba(6, 24, 39, .10);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: rgba(0,169,167,.2); }

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
}
.skip-link:focus { left: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6,24,39,.08);
  box-shadow: 0 12px 30px rgba(6, 24, 39, .08);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(6, 24, 39, .08);
  border-bottom-color: rgba(6,24,39,.08);
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}
.logo-img { width: auto; height: 58px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
  color: var(--navy-2);
}
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  border: 1px solid rgba(6,24,39,.14);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 750;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); border-color: var(--teal); }
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6,24,39,.14);
  background: rgba(255,255,255,.12);
  border-radius: 13px;
  color: var(--navy);
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  border-radius: 3px;
}
.site-header:not(.is-scrolled) .mobile-toggle { color: #fff; border-color: rgba(255,255,255,.25); }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,24,39,.98) 0%, rgba(6,24,39,.90) 34%, rgba(6,24,39,.48) 63%, rgba(6,24,39,.16) 100%),
    url("../images/hero-meeting.webp") center/cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(6,24,39,.82), rgba(6,24,39,0));
}
.hero .container { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 76px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 820px) 1fr; gap: 50px; align-items: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-2);
  box-shadow: 0 0 22px rgba(20,198,194,.7);
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(46px, 6.4vw, 86px);
  line-height: .96;
  letter-spacing: -.028em;
  font-weight: 850;
}
.hero h1 span {
  color: var(--teal-2);
  display: inline-block;
  white-space: nowrap;
}
.hero-lead {
  margin: 26px 0 0;
  max-width: 680px;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #001a22; box-shadow: 0 18px 45px rgba(0,169,167,.32); }
.btn-primary:hover { background: var(--teal-2); }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.08); }
.btn-dark { background: var(--navy); color: #fff; box-shadow: var(--shadow-soft); }
.btn-light { color: var(--navy); border-color: rgba(6,24,39,.12); background: #fff; }
.arrow { font-size: 18px; transform: translateY(-1px); }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 48px;
}
.proof-card {
  padding: 18px 18px 17px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.proof-card strong { display: block; font-size: 25px; line-height: 1; color: #fff; letter-spacing: -.03em; }
.proof-card span { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.35; }
.hero-side-card {
  align-self: end;
  justify-self: end;
  width: min(360px, 100%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: rgba(6,24,39,.52);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.hero-logo-plate,
.contact-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 310px);
  padding: 14px 18px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(6,24,39,.18);
}
.hero-logo-plate img,
.contact-logo-plate img {
  width: 100%;
  height: auto;
}
.hero-side-card p { margin: 0; color: rgba(255,255,255,.80); }
.hero-side-card strong { color: #fff; }

.section { padding: 110px 0; }
.section-tight { padding: 84px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-ice { background: linear-gradient(180deg, var(--ice-2), #fff); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 50px;
}
.eyebrow {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.section-dark .eyebrow { color: var(--teal-2); }
h2 {
  margin: 0;
  font-size: clamp(32px, 4.1vw, 54px);
  line-height: 1.04;
  letter-spacing: -.024em;
  font-weight: 850;
}
.section-head > div,
.section-head > p { min-width: 0; }
.section-head h2 { max-width: 820px; text-wrap: balance; }
.section-head p,
.large-copy {
  margin: 0;
  color: var(--slate);
  font-size: 19px;
  line-height: 1.55;
}
.section-dark .section-head p, .section-dark .large-copy { color: rgba(255,255,255,.78); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 54px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(360px, .82fr) minmax(0, 1fr); }
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #fff;
  border: 1px solid rgba(6,24,39,.08);
}
.media-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.media-card.tall img { aspect-ratio: 4/5; }
.media-card::after { display: none; }
.tagline-card {
  position: static;
  padding: 20px 22px 22px;
  border-top: 1px solid rgba(6,24,39,.08);
  background: #fff;
  color: var(--navy);
}
.tagline-card strong { display: block; margin-bottom: 4px; font-size: 18px; line-height: 1.2; }
.tagline-card span { color: var(--slate); font-size: 15px; line-height: 1.45; }

.problem-grid, .service-grid, .program-grid, .team-grid, .reference-grid {
  display: grid;
  gap: 18px;
}
.problem-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.program-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.reference-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  position: relative;
  border: 1px solid rgba(6,24,39,.09);
  border-radius: var(--radius-md);
  padding: 25px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(6,24,39,.03);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: rgba(0,169,167,.28); box-shadow: var(--shadow-soft); }
.section-dark .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.card::before {
  content: "";
  position: absolute;
  right: -42px; top: -42px;
  width: 120px; height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,169,167,.18), rgba(0,169,167,0) 70%);
}
.icon-badge {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 20px;
  background: rgba(0,169,167,.10);
  color: var(--teal-dark);
  font-weight: 850;
  font-size: 18px;
}
.section-dark .icon-badge { background: rgba(20,198,194,.16); color: var(--teal-2); }
.icon-badge img { width: 30px; height: 30px; object-fit: contain; }
.card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.1; letter-spacing: -.025em; }
.card p { margin: 0; color: var(--slate); font-size: 15px; }
.section-dark .card p { color: rgba(255,255,255,.78); }
.card ul { padding-left: 18px; margin: 18px 0 0; color: var(--slate); font-size: 15px; }
.card li + li { margin-top: 7px; }

.statement {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(0,169,167,.12), rgba(255,255,255,.88)),
    #fff;
  border: 1px solid rgba(0,169,167,.18);
  box-shadow: var(--shadow-soft);
}
.statement h2 { font-size: clamp(34px, 4vw, 54px); }
.statement p { margin: 0; color: var(--slate); font-size: 19px; }

.feature-list { margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li {
  position: relative;
  display: block;
  align-items: start;
  padding: 16px 0 16px 26px;
  border-bottom: 1px solid rgba(6,24,39,.08);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: var(--teal);
}
.feature-list strong { display: block; line-height: 1.25; }
.feature-list span { display: block; margin-top: 4px; color: var(--slate); }
.check { display: none; }

.method-wrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}
.step {
  counter-increment: step;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  min-height: 235px;
}
.step::before {
  content: "0" counter(step);
  display: block;
  color: var(--teal-2);
  font-weight: 850;
  letter-spacing: .08em;
  margin-bottom: 42px;
}
.step h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.12; }
.step p { margin: 0; color: rgba(255,255,255,.68); font-size: 15px; }

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}
.pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--navy-3);
  font-size: 12px;
  font-weight: 800;
}
.program-card .btn { margin-top: auto; align-self: flex-start; min-height: 44px; padding: 11px 14px; font-size: 14px; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 58px;
  background:
    linear-gradient(90deg, rgba(6,24,39,.96), rgba(6,24,39,.75)),
    url("../images/future-healthcare-leadership.webp") center/cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-band h2 { max-width: 780px; }
.cta-band p { max-width: 670px; color: rgba(255,255,255,.76); font-size: 19px; }

.reference-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 9px;
}
.reference-card span { color: rgba(255,255,255,.74); }
.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(6,24,39,.08);
  border-radius: 24px;
  background: rgba(6,24,39,.08);
  margin-top: 28px;
}
.logo-strip div {
  min-height: 96px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--slate);
  font-weight: 780;
  text-align: center;
  padding: 16px;
}

.team-card { text-align: center; padding: 24px 16px; }
.team-card .icon-badge { margin-left: auto; margin-right: auto; }
.team-card h3 { font-size: 17px; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.contact-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.contact-panel img { display: block; }
.contact-panel p { color: rgba(255,255,255,.74); margin: 0 0 22px; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.10); }
.contact-list span { display: block; color: rgba(255,255,255,.55); font-size: 13px; }
.contact-list strong { color: #fff; }
.form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; margin-bottom: 7px; color: var(--navy-3); font-size: 13px; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(6,24,39,.14);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--navy);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,169,167,.12);
}
.field textarea { min-height: 132px; resize: vertical; }
.form small { display: block; margin-top: 12px; color: var(--slate); }

.footer {
  background: #04111d;
  color: rgba(255,255,255,.62);
  padding: 32px 0;
  font-size: 14px;
}
.footer-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer a { color: rgba(255,255,255,.78); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.legal-main {
  background: linear-gradient(180deg, var(--ice-2), #fff 340px);
  padding-top: 132px;
}
.legal-hero {
  padding: 70px 0 30px;
}
.legal-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 19px;
  line-height: 1.55;
}
.legal-document {
  max-width: 940px;
  margin: 0 auto 90px;
  padding: 54px;
  border: 1px solid rgba(6,24,39,.09);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.legal-document h1,
.legal-document h2,
.legal-document h3 {
  color: var(--navy);
  letter-spacing: -.02em;
}
.legal-document h1 {
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}
.legal-document h2 {
  margin: 42px 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}
.legal-document h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}
.legal-document p,
.legal-document li {
  color: #34455c;
  font-size: 16px;
  line-height: 1.72;
}
.legal-document p {
  margin: 0 0 15px;
}
.legal-document ul {
  margin: 0 0 22px;
  padding-left: 24px;
}
.legal-document a {
  color: var(--teal-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.login-main {
  min-height: 100vh;
  padding: 150px 0 76px;
  background:
    linear-gradient(90deg, rgba(6,24,39,.96), rgba(6,24,39,.82)),
    url("../images/healthcare-dashboard.webp") center/cover no-repeat;
}
.login-shell {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .72fr);
  gap: 54px;
  align-items: center;
}
.login-copy {
  color: #fff;
}
.login-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.035em;
}
.login-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.55;
}
.login-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.login-proof span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 800;
}
.login-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.login-card img {
  width: 255px;
  margin-bottom: 28px;
}
.login-card h2 {
  margin: 0;
  font-size: 42px;
}
.login-card > p {
  margin: 10px 0 24px;
  color: var(--slate);
}
.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 6px 0 22px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 750;
}
.remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.remember input {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
}
.login-row a {
  color: var(--teal-dark);
}
.login-card .btn {
  width: 100%;
}
.login-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.45;
}

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

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-block; }
  .nav-links.is-open {
    position: absolute;
    display: grid;
    top: 76px;
    left: 22px;
    right: 22px;
    gap: 2px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-soft);
  }
  .site-header:not(.is-scrolled) .nav-links.is-open a { color: var(--navy); }
  .hero-grid, .section-head, .split, .split.reverse, .statement, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .login-shell { grid-template-columns: 1fr; }
  .problem-grid, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .program-grid, .reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .method-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-side-card { justify-self: start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav { height: 74px; }
  .logo-img { height: 48px; }
  .nav-cta { display: none; }
  .hero .container { padding-top: 92px; }
  .hero::before { background: linear-gradient(90deg, rgba(6,24,39,.98), rgba(6,24,39,.86)), url("../images/hero-meeting.webp") center/cover no-repeat; }
  .hero h1 span { white-space: normal; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 32px; }
  .section { padding: 78px 0; }
  .section-tight { padding: 62px 0; }
  .problem-grid, .service-grid, .program-grid, .team-grid, .reference-grid, .method-wrap, .logo-strip, .form-grid { grid-template-columns: 1fr; }
  .statement, .cta-band, .form, .contact-panel { padding: 28px; border-radius: 24px; }
  .legal-main { padding-top: 96px; }
  .legal-hero { padding: 46px 0 20px; }
  .legal-document { padding: 28px; border-radius: 22px; margin-bottom: 62px; }
  .login-main { padding: 104px 0 54px; }
  .login-shell { width: min(100% - 28px, 1120px); }
  .login-card { padding: 28px; border-radius: 24px; }
  .login-row { align-items: flex-start; flex-direction: column; }
  .media-card img { aspect-ratio: 4/3; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}
