:root {
  --navy-950: #071522;
  --navy-900: #0b1f33;
  --navy-800: #12304a;
  --navy-700: #1b4666;
  --blue: #1987c8;
  --cyan: #35bde8;
  --green: #7dc9a8;
  --ink: #102536;
  --muted: #5c6c78;
  --line: #dce5e9;
  --paper: #ffffff;
  --surface: #f4f8f9;
  --surface-blue: #eaf3f7;
  --shadow: 0 18px 50px rgba(6, 30, 48, .11);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  padding: 10px 18px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 21, 34, .96);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-950);
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.03em;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: #9cb3c2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: #d7e3e9;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 10px 18px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  transition: background .2s ease, border-color .2s ease;
}

.site-nav .nav-cta:hover {
  background: rgba(255, 255, 255, .09);
  border-color: var(--green);
}

.nav-toggle {
  display: none;
  padding: 10px;
  color: var(--paper);
  background: none;
  border: 0;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 175px 0 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 79% 32%, rgba(25, 135, 200, .25), transparent 27%),
    radial-gradient(circle at 57% 80%, rgba(71, 157, 147, .12), transparent 25%),
    var(--navy-950);
}

.hero::before {
  position: absolute;
  top: 100px;
  right: -90px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(53, 189, 232, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(53, 189, 232, .025), 0 0 0 150px rgba(53, 189, 232, .02);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image:
    linear-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .8) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 45%, black);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: #27876f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: -.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(45px, 5.25vw, 72px);
  font-weight: 720;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: #c1d0d9;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button span {
  font-size: 21px;
  font-weight: 400;
  transition: transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover span {
  transform: translateX(3px);
}

.button-primary {
  color: var(--navy-950);
  background: var(--green);
  box-shadow: 0 10px 30px rgba(64, 190, 143, .14);
}

.button-primary:hover {
  background: #94dbbb;
  box-shadow: 0 14px 36px rgba(64, 190, 143, .22);
}

.text-link {
  color: #dce9ef;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.text-link span {
  margin-left: 6px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.system-card {
  position: absolute;
  top: 24px;
  right: 0;
  left: 12px;
  overflow: hidden;
  background: rgba(12, 36, 56, .9);
  border: 1px solid rgba(161, 206, 225, .2);
  border-radius: 14px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .34);
  backdrop-filter: blur(10px);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 45px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.window-bar span {
  width: 7px;
  height: 7px;
  background: #496275;
  border-radius: 50%;
}

.window-bar span:first-child {
  background: var(--green);
}

.window-bar em {
  margin-left: auto;
  color: #7490a2;
  font-family: Consolas, monospace;
  font-size: 10px;
  font-style: normal;
}

.workflow {
  padding: 28px;
}

.workflow-node {
  display: grid;
  grid-template-columns: 39px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
}

.workflow-node.active {
  border-color: rgba(125, 201, 168, .32);
  box-shadow: inset 3px 0 var(--green);
}

.workflow-node > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green);
  background: rgba(125, 201, 168, .1);
  border-radius: 6px;
  font-family: Consolas, monospace;
  font-size: 11px;
  font-style: normal;
}

.workflow-node > span {
  display: flex;
  flex-direction: column;
}

.workflow-node strong {
  color: #e6f0f4;
  font-family: Consolas, monospace;
  font-size: 11px;
  letter-spacing: .1em;
}

.workflow-node small {
  margin-top: 2px;
  color: #7993a5;
  font-size: 11px;
}

.workflow-node b {
  color: var(--green);
  font-family: Consolas, monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
}

.connector {
  display: flex;
  height: 24px;
  padding-left: 47px;
}

.connector span {
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, #537080 0 3px, transparent 3px 6px);
}

.system-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  color: #6f8a9c;
  background: rgba(0, 0, 0, .13);
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-family: Consolas, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.system-footer span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}

.system-footer i {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}

.floating-tag {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #b9cbd4;
  background: #102d44;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: 0 14px 25px rgba(0, 0, 0, .25);
  font-size: 10px;
  font-weight: 650;
}

.floating-tag span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--navy-950);
  background: var(--green);
  border-radius: 5px;
  font-family: Consolas, monospace;
  font-weight: 800;
}

.tag-one {
  right: -25px;
  bottom: 50px;
}

.tag-two {
  bottom: 7px;
  left: -12px;
}

.trust-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 90px;
  padding: 24px 0;
  color: #7e98a8;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trust-line ul {
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-line li {
  position: relative;
  color: #adbec8;
}

.trust-line li:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -27px;
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2,
.process-intro h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 700;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

.services {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 34px 30px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: z-index .2s ease, transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-featured {
  color: var(--paper);
  background: var(--navy-900);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  color: #26869f;
  background: var(--surface-blue);
  border-radius: 10px;
}

.service-featured .service-icon {
  color: var(--green);
  background: rgba(125, 201, 168, .1);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-number {
  position: absolute;
  top: 34px;
  right: 28px;
  color: #aab9c2;
  font-family: Consolas, monospace;
  font-size: 11px;
}

.service-featured .service-number {
  color: #637e90;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 21px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-featured p {
  color: #a9bdc9;
}

.service-card:last-child {
  grid-column: 2;
}

.process {
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(33, 106, 134, .13), transparent 38%),
    var(--navy-900);
}

.process-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
}

.process-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 24px;
  color: #aabdc8;
  font-size: 17px;
}

.engagement-note {
  margin-top: 48px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, .045);
  border-left: 3px solid var(--green);
}

.engagement-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.engagement-note p {
  margin: 0;
  color: #afc1cb;
  font-size: 13px;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.process-steps li:first-child {
  padding-top: 0;
}

.process-steps > li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(125, 201, 168, .33);
  border-radius: 50%;
  font-family: Consolas, monospace;
  font-size: 11px;
}

.process-steps h3 {
  margin: 1px 0 7px;
  font-size: 20px;
}

.process-steps p {
  margin: 0;
  color: #98aebb;
  font-size: 14px;
}

.agreement-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.agreement-line span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--navy-950);
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.agreement-line p {
  margin: 0;
  color: #b6c7d0;
  font-size: 13px;
}

.about-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 95px;
  align-items: center;
}

.about-panel {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    var(--navy-900);
  background-size: 38px 38px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-panel::before,
.about-panel::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(125, 201, 168, .18);
  border-radius: 50%;
  content: "";
}

.about-panel::after {
  width: 170px;
  height: 170px;
}

.about-mark {
  z-index: 1;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  color: var(--navy-950);
  background: var(--green);
  font-size: 27px;
  font-weight: 850;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}

.about-coordinate {
  position: absolute;
  top: 24px;
  left: 26px;
  color: #718c9e;
  font-family: Consolas, monospace;
  font-size: 10px;
  line-height: 1.6;
}

.about-panel > span {
  position: absolute;
  right: 26px;
  bottom: 24px;
  color: #9ab0bd;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.about-lede {
  margin: 25px 0 18px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.about-copy > p:not(.eyebrow):not(.about-lede) {
  color: var(--muted);
}

.about-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-principles span {
  padding: 8px 13px;
  color: var(--navy-700);
  background: var(--surface-blue);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.contact {
  color: var(--paper);
  background: var(--navy-950);
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 24px 0 38px;
  color: #9fb3bf;
}

.contact-direct small {
  display: block;
  margin-bottom: 5px;
  color: #7893a3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--green);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.contact-direct a span {
  margin-left: 6px;
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 45px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.contact-location > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--green);
  background: rgba(125, 201, 168, .08);
  border-radius: 50%;
}

.contact-location div {
  display: flex;
  flex-direction: column;
}

.contact-location strong {
  font-size: 13px;
}

.contact-location small {
  color: #7f98a7;
}

.contact-form {
  position: relative;
  padding: 38px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #344b5b;
  font-size: 12px;
  font-weight: 700;
}

.contact-form label b {
  color: #1987a9;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid #d5e0e5;
  border-radius: 7px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input {
  height: 48px;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--paper);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25, 135, 200, .12);
}

.contact-form textarea::placeholder {
  color: #8e9da7;
}

.form-submit {
  width: 100%;
  color: var(--paper);
  background: var(--navy-800);
  box-shadow: none;
}

.form-submit:hover {
  background: var(--navy-700);
}

.form-note {
  margin: 13px 0 0;
  color: #7b8c97;
  font-size: 11px;
  text-align: center;
}

.form-note a {
  color: var(--navy-700);
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.form-success {
  margin-top: 16px;
  padding: 13px 15px;
  color: #135d4b;
  background: #e7f6ef;
  border-radius: 7px;
  font-size: 13px;
}

.site-footer {
  color: #94aab6;
  background: #06111c;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 42px;
  padding-bottom: 38px;
}

.brand-footer .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
}

.footer-contact a {
  margin-bottom: 4px;
  color: #d8e4e9;
  font-weight: 650;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--paper);
}

/* Policy pages */
.legal-page {
  color: var(--ink);
  background: var(--surface);
}

.legal-page .site-header {
  position: relative;
  background: var(--navy-950);
}

.legal-main {
  padding: 84px 0 100px;
}

.legal-wrap {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.legal-header {
  margin-bottom: 42px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 58px);
}

.legal-header p {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  padding: 42px 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(6, 30, 48, .06);
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 21px;
  letter-spacing: -.02em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #4e616e;
  font-size: 15px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: #176f9c;
}

.legal-back {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 25px;
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 405px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .process-layout,
  .contact-layout {
    gap: 60px;
  }

  .about-layout {
    gap: 60px;
  }

  .trust-line ul {
    gap: 30px;
  }

  .trust-line li:not(:first-child)::before {
    left: -17px;
  }
}

@media (max-width: 820px) {
  .site-header {
    background: rgba(7, 21, 34, .96);
  }

  .nav-toggle {
    z-index: 2;
    display: block;
  }

  .nav-open .nav-toggle > span:not(.sr-only):nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle > span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

  .nav-open .nav-toggle > span:not(.sr-only):nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: var(--navy-950);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    font-size: 20px;
  }

  .site-nav .nav-cta {
    margin-top: 10px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading,
  .process-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 22px;
  }

  .process-layout {
    gap: 60px;
  }

  .about-panel {
    min-height: 350px;
  }

  .contact-layout {
    gap: 50px;
  }

  .trust-line {
    align-items: flex-start;
    gap: 20px;
  }

  .trust-line ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trust-line li:nth-child(3)::before {
    display: none;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    gap: 28px;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column-reverse;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .container,
  .legal-wrap {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    padding-top: 130px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .system-card {
    left: 0;
  }

  .workflow {
    padding: 17px;
  }

  .workflow-node {
    grid-template-columns: 36px 1fr;
    padding: 12px;
  }

  .workflow-node b {
    display: none;
  }

  .tag-one {
    right: -7px;
  }

  .tag-two {
    left: -6px;
  }

  .trust-line {
    flex-direction: column;
    margin-top: 55px;
  }

  .trust-line ul {
    width: 100%;
    gap: 12px 22px;
  }

  .trust-line li::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .process-steps li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .about-panel {
    min-height: 310px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-contact span {
    line-height: 1.6;
  }

  .footer-bottom nav {
    flex-direction: column;
    gap: 9px;
  }

  .legal-main {
    padding: 55px 0 75px;
  }

  .legal-content {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
