:root {
  --navy: #0d2442;
  --blue: #205b98;
  --blue-dark: #174f88;
  --gold: #c9a45e;
  --ink: #122642;
  --muted: #667287;
  --line: #d8e0e8;
  --soft: #f5f7f8;
  --soft-blue: #edf3f6;
  --white: #ffffff;
  --container: 1616px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  border-top: 8px solid #303030;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  background: #fff;
  color: var(--navy);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

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

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(4rem, 4.55vw, 5.75rem); }
h2 { font-size: clamp(3rem, 3.6vw, 4.7rem); }
h3 { font-size: clamp(1.65rem, 1.75vw, 2.1rem); }
p { color: var(--muted); }

.section {
  position: relative;
  padding: 120px 0;
  overflow: clip;
}
.section--soft { background: var(--soft); }
.section--dark { color: #fff; background: var(--navy); }
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.7); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow span { width: 55px; height: 1px; background: var(--gold); }
.eyebrow--light { color: #b8d3e8; }
.section-heading { max-width: 1040px; margin-bottom: 70px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--light h2 { color: #fff; }
.mini-label {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Header — kept in the original white editorial style */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 112px;
  color: var(--muted);
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(201,164,94,.52);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(17,38,66,.08); }
.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr 180px;
  align-items: center;
  height: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.brand-logo {
  width: 235px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 3.25vw, 54px);
  height: 100%;
}
.main-nav > a {
  position: relative;
  color: #5f697a;
  font-size: .96rem;
  font-weight: 400;
  white-space: nowrap;
}
.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  height: 62px;
  padding: 0 26px;
  color: #fff;
  background: var(--blue-dark);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.header-contact:hover { background: var(--navy); }
.menu-toggle { display: none; }

/* Hero — matched to the supplied reference */
.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  color: var(--ink);
  border-radius: 0 0 25px 25px;
  background: #eaf1f5;
  overflow: hidden;
}
.hero-media,
.hero-overlay,
.hero-grid-overlay { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
  filter: saturate(.82) contrast(.94) brightness(1.05);
}
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.99) 18%,
      rgba(255,255,255,.965) 34%,
      rgba(255,255,255,.88) 49%,
      rgba(244,249,251,.74) 64%,
      rgba(230,240,245,.58) 80%,
      rgba(220,234,241,.58) 100%);
}
.hero-grid-overlay { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 79px;
  padding-bottom: 230px;
}
.hero-copy { max-width: 1240px; }
.hero-copy .eyebrow { margin-bottom: 52px; color: var(--blue); }
.hero-copy h1 {
  max-width: 1230px;
  margin-bottom: 57px;
  color: var(--ink);
  font-size: clamp(4.6rem, 4.72vw, 6rem);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.025em;
}
.hero-copy h1 em {
  color: var(--blue);
  font-weight: 400;
}
.hero-text {
  max-width: 985px;
  margin-bottom: 76px;
  color: #657185;
  font-size: clamp(1.12rem, 1.18vw, 1.48rem);
  line-height: 1.54;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 22px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0 66px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { display: none; }
.btn--primary { color: #fff; background: var(--blue); }
.btn--primary:hover { background: var(--navy); }
.btn--ghost { color: var(--blue-dark); background: rgba(255,255,255,.38); border-color: #b6c6d5; }
.btn--ghost:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
.hero-stats-wrap {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1070px, 71%);
  min-height: 128px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(4px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  padding: 24px 34px;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 1;
}
.stat span {
  color: #6d788b;
  font-size: .88rem;
  line-height: 1.45;
}

/* Positioning */
.section--positioning { background: #fff; }
.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 110px;
  align-items: start;
}
.section-intro h2 { max-width: 720px; }
.positioning-copy > p { font-size: 1.05rem; }
.positioning-copy .accent-copy {
  margin: 36px 0;
  padding: 22px 0 22px 27px;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.35;
}
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 46px; border: 1px solid var(--line); }
.vision-mission article { padding: 32px; background: #fff; }
.vision-mission article + article { border-left: 1px solid var(--line); }
.vision-mission p { margin-bottom: 0; font-size: .9rem; }

/* Capabilities */
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 92px 92px;
}
.section--dark > .container { position: relative; z-index: 1; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.capability-card { position: relative; min-height: 385px; padding: 35px 30px 38px; }
.capability-card + .capability-card { border-left: 1px solid rgba(255,255,255,.18); }
.card-index { position: absolute; top: 30px; right: 30px; color: rgba(255,255,255,.42); font-size: .72rem; letter-spacing: .18em; }
.icon-box { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 80px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: #b8d3e8; }
.icon-box svg { width: 24px; fill: currentColor; }
.capability-card h3 { color: #fff; }
.capability-card p { margin-bottom: 0; font-size: .9rem; }

/* Therapeutic categories */
.therapeutic { background: #fff; }
.therapeutic-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.therapy-card { min-height: 410px; padding: 31px 26px; background: #fff; }
.therapy-card + .therapy-card { border-left: 1px solid var(--line); }
.therapy-card--featured { color: #fff; background: var(--blue-dark); }
.therapy-card--featured h3 { color: #fff; }
.therapy-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 69px; }
.therapy-number { color: var(--blue); font-size: .72rem; font-weight: 600; letter-spacing: .18em; }
.therapy-card--featured .therapy-number { color: #fff; }
.therapy-icon { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-size: .65rem; letter-spacing: .08em; }
.therapy-card--featured .therapy-icon { color: #fff; border-color: rgba(255,255,255,.42); }
.therapy-card ul { display: grid; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.therapy-card li { position: relative; padding-left: 16px; color: var(--muted); font-size: .82rem; }
.therapy-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.therapy-card--featured li { color: rgba(255,255,255,.75); }

/* Why */
.why-section { background: var(--soft); }
.why-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.why-sticky { position: sticky; top: 150px; align-self: start; }
.why-list { border-top: 1px solid #cfd8e0; }
.why-item { display: grid; grid-template-columns: 100px 1fr; align-items: center; min-height: 130px; border-bottom: 1px solid #cfd8e0; }
.why-item span { color: var(--blue); font-size: .75rem; letter-spacing: .18em; }
.why-item h3 { margin: 0; }

/* Value proposition */
.value-section { background: #fff; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.value-card { border: 1px solid var(--line); background: #fff; }
.value-image { aspect-ratio: 16 / 9; overflow: hidden; }
.value-image img { width: 100%; height: 100%; object-fit: cover; }
.value-content { padding: 36px 38px 41px; }
.value-content p { min-height: 78px; }
.value-content a { color: var(--blue); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

/* Solutions */
.solutions-list { border-top: 1px solid #cfd8e0; }
.solution-row { display: grid; grid-template-columns: 90px minmax(300px,.82fr) 1.18fr; gap: 34px; align-items: center; min-height: 139px; border-bottom: 1px solid #cfd8e0; }
.solution-number { color: var(--blue); font-size: .74rem; letter-spacing: .17em; }
.solution-row h3 { margin: 0; }
.solution-row ul { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.solution-row li { padding: 6px 11px; color: #657185; border: 1px solid #d4dde5; background: #fff; font-size: .72rem; }

/* Innovation */
.innovation-section { color: #fff; background: var(--navy); }
.innovation-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; margin-bottom: 72px; }
.innovation-head h2 { margin-bottom: 0; color: #fff; }
.innovation-head > p { color: rgba(255,255,255,.68); }
.innovation-track { display: grid; grid-template-columns: repeat(7, 1fr); border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.innovation-track article { position: relative; min-height: 225px; padding: 27px 21px; }
.innovation-track article + article { border-left: 1px solid rgba(255,255,255,.17); }
.innovation-track span { color: #b8d3e8; font-size: .7rem; letter-spacing: .16em; }
.innovation-track h3 { margin-top: 70px; color: #fff; font-family: "Inter", Arial, sans-serif; font-size: .95rem; line-height: 1.5; }

/* Business model */
.business-model { background: #fff; }
.model-flow { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); }
.model-flow article { position: relative; display: grid; align-content: space-between; min-height: 180px; padding: 30px; }
.model-flow article:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
.model-flow article:not(:nth-child(4n+1)) { border-left: 1px solid var(--line); }
.model-flow article::after { content: "→"; position: absolute; top: 50%; right: -10px; z-index: 2; width: 20px; color: var(--blue); background: #fff; text-align: center; }
.model-flow article:nth-child(4n)::after,
.model-flow article:last-child::after { display: none; }
.model-flow span { color: var(--blue); font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.model-flow strong { max-width: 190px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; font-weight: 400; line-height: 1.25; }

/* Industries */
.industries-section { padding: 0; background: var(--soft); }
.dual-column { display: grid; grid-template-columns: 1fr 1fr; width: 100%; max-width: none; }
.industry-column,
.advantage-column { padding: 115px max(50px, calc((100vw - var(--container))/2)); }
.industry-column { padding-right: 74px; }
.advantage-column { padding-left: 74px; color: #fff; background: var(--blue-dark); }
.advantage-column h2 { color: #fff; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.pill-grid span { padding: 10px 14px; color: var(--ink); border: 1px solid var(--line); background: #fff; font-size: .79rem; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; margin: 42px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 29px; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.18); font-size: .86rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #fff; }

/* Final message */
.final-message { color: #fff; background: #081d36; text-align: center; }
.final-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.2) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.2) 1px,transparent 1px); background-size: 90px 90px; }
.final-inner { position: relative; z-index: 1; max-width: 1160px; }
.final-inner .eyebrow { justify-content: center; }
.final-inner h2 { color: #fff; }
.final-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 40px 0 46px; }
.final-points span { padding: 8px 13px; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.21); font-size: .76rem; }

/* Footer */
.site-footer { color: rgba(255,255,255,.68); background: #06162a; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .7fr .9fr; gap: 70px; padding: 76px 0 60px; }
.brand--footer { padding: 10px; background: #fff; }
.brand-logo--footer { width: 230px; }
.footer-brand p { max-width: 440px; margin: 25px 0 0; color: rgba(255,255,255,.56); }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links h3 { margin-bottom: 12px; color: #fff; font-family: "Inter", Arial, sans-serif; font-size: .84rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { width: fit-content; font-size: .84rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.44); font-size: .76rem; }
.footer-bottom a { font-size: .78rem; }

/* Motion */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1450px) {
  :root { --container: 1280px; }
  .nav-wrap { grid-template-columns: 250px 1fr 155px; }
  .brand-logo { width: 215px; }
  .header-contact { min-width: 145px; }
  .main-nav { gap: 30px; }
  .hero-copy h1 { font-size: clamp(4.2rem, 5vw, 5.3rem); }
}

@media (max-width: 1180px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .nav-wrap { grid-template-columns: 205px 1fr 130px; }
  .brand-logo { width: 185px; }
  .main-nav { gap: 20px; }
  .main-nav > a { font-size: .84rem; }
  .header-contact { min-width: 125px; height: 54px; padding: 0 18px; font-size: .78rem; }
  .hero-copy h1 { font-size: 4.45rem; }
  .hero-text { max-width: 820px; }
  .therapeutic-grid { grid-template-columns: repeat(3,1fr); }
  .therapy-card + .therapy-card { border-left: 1px solid var(--line); }
  .therapy-card:nth-child(4) { border-left: 0; }
  .therapy-card:nth-child(n+4) { border-top: 1px solid var(--line); }
  .capability-grid { grid-template-columns: repeat(2,1fr); }
  .capability-card:nth-child(3) { border-left: 0; }
  .capability-card:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .innovation-track { grid-template-columns: repeat(4,1fr); }
  .innovation-track article:nth-child(5) { border-left: 0; }
  .innovation-track article:nth-child(n+5) { border-top: 1px solid rgba(255,255,255,.17); }
}

@media (max-width: 960px) {
  body { border-top-width: 6px; }
  .site-header { height: 88px; }
  .nav-wrap { display: flex; justify-content: space-between; }
  .brand-logo { width: 190px; max-height: 64px; }
  .header-contact { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 5; width: 46px; height: 46px; padding: 11px; color: var(--ink); background: transparent; border: 0; }
  .menu-toggle span { display: block; width: 24px; height: 1.5px; margin: 5px auto; background: currentColor; transition: .25s; }
  .menu-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 94px 0 auto; display: none; height: auto; padding: 30px 24px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(10,32,58,.1); }
  .main-nav.is-open { display: grid; gap: 20px; }
  .main-nav > a { font-size: 1rem; }
  .hero { min-height: auto; border-radius: 0 0 20px 20px; }
  .hero-content { padding-top: 72px; padding-bottom: 205px; }
  .hero-copy h1 { font-size: clamp(3.6rem, 8vw, 5rem); }
  .hero-text { font-size: 1.05rem; }
  .hero-stats { width: 100%; }
  .split-grid, .why-layout, .innovation-head { grid-template-columns: 1fr; gap: 55px; }
  .why-sticky { position: static; }
  .solution-row { grid-template-columns: 60px 1fr; padding: 28px 0; }
  .solution-row ul { grid-column: 2; }
  .model-flow { grid-template-columns: repeat(2,1fr); }
  .model-flow article:nth-child(-n+6) { border-bottom: 1px solid var(--line); }
  .model-flow article:not(:nth-child(2n+1)) { border-left: 1px solid var(--line); }
  .model-flow article:nth-child(2n+1) { border-left: 0; }
  .model-flow article:nth-child(4n)::after { display: block; }
  .model-flow article:nth-child(2n)::after { display: none; }
  .dual-column { grid-template-columns: 1fr; }
  .industry-column, .advantage-column { padding: 90px 48px; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .9fr; gap: 35px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 82px 0; }
  .brand-logo { width: 170px; }
  .main-nav { inset: 94px 0 auto; }
  .hero-content { padding-top: 55px; padding-bottom: 330px; }
  .hero-copy .eyebrow { margin-bottom: 34px; }
  .eyebrow { font-size: .68rem; letter-spacing: .16em; }
  .eyebrow span { width: 35px; }
  .hero-copy h1 { margin-bottom: 35px; font-size: clamp(3.05rem, 14vw, 4.35rem); line-height: 1.01; }
  .hero-copy h1 br { display: none; }
  .hero-text { margin-bottom: 40px; font-size: 1rem; }
  .hero-actions { display: grid; gap: 12px; }
  .btn { width: 100%; min-height: 60px; padding: 0 22px; font-size: .75rem; }
  .hero-stats { grid-template-columns: 1fr; min-height: 0; }
  .stat { min-height: 86px; padding: 16px 24px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat strong { font-size: 2rem; }
  .split-grid { gap: 45px; }
  .vision-mission { grid-template-columns: 1fr; }
  .vision-mission article + article { border-left: 0; border-top: 1px solid var(--line); }
  .capability-grid, .therapeutic-grid, .value-grid, .innovation-track, .model-flow { grid-template-columns: 1fr; }
  .capability-card + .capability-card,
  .therapy-card + .therapy-card,
  .innovation-track article + article,
  .model-flow article + article { border-left: 0; border-top: 1px solid var(--line); }
  .capability-card:nth-child(n+3) { border-top-color: rgba(255,255,255,.18); }
  .innovation-track article + article { border-top-color: rgba(255,255,255,.17); }
  .why-item { grid-template-columns: 55px 1fr; min-height: 105px; }
  .solution-row { grid-template-columns: 45px 1fr; gap: 14px; }
  .solution-row ul { gap: 6px; }
  .model-flow article { min-height: 145px; }
  .model-flow article::after { display: none !important; }
  .industry-column, .advantage-column { padding: 76px 24px; }
  .check-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
