:root {
  --ink: #101722;
  --muted: #5d6b7a;
  --soft: #7a8794;
  --line: #d9e2ea;
  --paper: #f7f9fb;
  --panel: #ffffff;
  --navy: #071421;
  --navy-2: #0e2537;
  --blue: #2467d8;
  --cyan: #15a9c8;
  --brand-cyan-alt: #18a7c7;
  --accent: #15a9c8;
  --brand-blue-alt: #2467d8;
  --shadow: 0 24px 70px rgba(13, 31, 48, 0.13);
  --small-shadow: 0 14px 34px rgba(13, 31, 48, 0.1);
  --radius: 8px;
  --container: 1180px;
  --header-height: 94px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
li,
span,
strong,
small,
label,
button,
input,
select,
textarea,
td,
th {
  overflow-wrap: break-word;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  margin-bottom: 22px;
  font-size: 3.68rem;
  font-weight: 790;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  font-weight: 760;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 760;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

ul {
  padding-left: 1.15rem;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity 260ms ease, visibility 260ms ease;
}

.site-loader img {
  width: min(320px, 72vw);
}

.loader-hidden .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.top-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.top-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 234, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-link,
.nav-link-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 0;
  border-radius: 7px;
  color: #263547;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.2;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-group.is-current > .nav-link-button,
.nav-group.is-open > .nav-link-button {
  background: #edf6fb;
  color: #07506a;
}

.nav-link-button span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  place-items: center;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--navy);
}

.nav-group {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: min(720px, calc(100vw - 40px));
  display: none;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-group.is-open .mega-menu {
  display: grid;
}

.mega-panel {
  min-width: 0;
}

.mega-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.mega-card {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 11px;
  border: 1px solid #e4ebf1;
  border-radius: 7px;
  background: #f8fbfd;
}

.mega-card span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 770;
}

.mega-card small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.mega-view-all {
  display: inline-flex;
  margin-top: 12px;
  color: #075d74;
  font-size: 0.9rem;
  font-weight: 780;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 50px 0 44px;
  background:
    linear-gradient(110deg, rgba(7, 20, 33, 0.96), rgba(14, 37, 55, 0.92)),
    radial-gradient(circle at 76% 30%, rgba(21, 169, 200, 0.28), transparent 32%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 38px;
}

.hero-visual {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.hero h1,
.hero h2,
.cta-band h2 {
  color: #fff;
}

.hero h1 {
  max-width: 15ch;
}

.hero-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.94rem;
  font-weight: 790;
  line-height: 1.2;
  text-align: center;
  box-shadow: none;
}

.button.primary {
  background: var(--cyan);
  color: #041923;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section .button.secondary,
.redirect-card .button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 590px;
  margin-top: 34px;
}

.hero-meta span {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
}

.hero-meta strong {
  color: #fff;
  font-size: 0.98rem;
}

.console-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.console-card h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.console-card p {
  color: rgba(255, 255, 255, 0.7);
}

.console-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.console-topline i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(21, 169, 200, 0.18);
}

.console-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.console-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(5, 17, 29, 0.62);
}

.console-row span {
  color: rgba(255, 255, 255, 0.9);
}

.console-row strong {
  color: #fff;
  text-align: right;
}

.console-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.console-stats span {
  display: grid;
  min-width: 0;
  padding: 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.79rem;
}

.console-stats strong {
  color: #fff;
  font-size: 1.25rem;
}

.section {
  padding: 68px 0;
  background: var(--panel);
}

.section + .section {
  border-top: 1px solid #e8eef3;
}

.section-quiet {
  background: #f2f6f8;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: none;
  font-size: 2.05rem;
}

@media (min-width: 1181px) {
  .section-heading h2 {
    white-space: nowrap;
  }
}

.section-heading p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

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

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.info-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #dde7ef;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(7, 20, 33, 0.03);
}

.info-card p {
  margin-bottom: 0;
}

.info-card .text-link {
  margin-top: auto;
  padding-top: 18px;
  color: #075d74;
  font-weight: 790;
}

.card-kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 830;
  text-transform: uppercase;
}

.feature-grid .info-card:nth-child(1),
.feature-grid .info-card:nth-child(4) {
  background: #edf6fb;
}

.lane-grid .info-card:nth-child(2n) {
  background: #edf6fb;
}

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

.process-steps.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  border-radius: var(--radius);
  background: #0f2232;
  box-shadow: var(--small-shadow);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 830;
}

.step-card h3 {
  color: #fff;
}

.step-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.split-feature {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 28px;
  align-items: stretch;
  padding: 42px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.split-feature + .section,
.table-wrap + .split-feature {
  margin-top: 42px;
}

.split-feature p {
  max-width: 760px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #314255;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 2px;
  background: var(--cyan);
}

.side-panel {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border-radius: var(--radius);
  background: #0e2537;
}

.side-panel .eyebrow {
  margin-bottom: 0;
}

.tag-stack {
  counter-reset: side-panel-sequence;
  display: grid;
  gap: 8px;
}

.tag-stack span {
  counter-increment: side-panel-sequence;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 720;
}

.tag-stack span::before {
  content: counter(side-panel-sequence, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 30px;
  border-radius: 6px;
  background: var(--cyan);
  color: #041923;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
}

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

.stat-strip span {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 22px;
  border: 1px solid #dce6ee;
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
}

.stat-strip strong {
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.table-wrap {
  width: min(var(--container), calc(100% - 48px));
  margin: 78px auto 0;
  overflow-x: auto;
  border: 1px solid #dae5ed;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--small-shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid #e5edf3;
  text-align: left;
  vertical-align: top;
}

th {
  color: #243243;
  background: #f4f8fb;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

td {
  color: #4a5a69;
}

tr:last-child td {
  border-bottom: 0;
}

.cta-band {
  padding: 70px 0;
  background: var(--navy);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.cta-inner > div {
  flex: 1 1 auto;
  min-width: 0;
}

.cta-inner h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: 1.72rem;
  line-height: 1.14;
  white-space: nowrap;
}

.cta-inner p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-inner .button {
  flex: 0 0 auto;
  min-width: 190px;
  padding-inline: 24px;
  white-space: nowrap;
}

.site-footer {
  padding: 62px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #071421;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(150px, 0.72fr) minmax(170px, 0.8fr) minmax(280px, 1.18fr);
  gap: 28px;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.footer-column h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.92rem;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
}

.contact-details {
  min-width: 0;
  padding: 32px;
  border-radius: var(--radius);
  background: #0e2537;
}

.contact-details h2 {
  color: #fff;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-cards {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin-top: 26px;
}

.contact-cards a,
.contact-cards div {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-cards span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-cards strong {
  color: #fff;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-form {
  min-width: 0;
  padding: 30px;
  border: 1px solid #dbe6ee;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin-bottom: 14px;
}

.field span,
.consent span {
  color: #253446;
  font-size: 0.9rem;
  font-weight: 740;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfdce6;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(21, 169, 200, 0.22);
  border-color: var(--cyan);
}

.field small,
.consent small {
  min-height: 18px;
  color: #b33d2e;
  font-size: 0.78rem;
}

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 6px 0 18px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.consent small {
  grid-column: 2;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-weight: 700;
}

.form-status.is-error {
  color: #a53427;
}

.form-status.is-loading {
  color: #075d74;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid #dce7ef;
  border-radius: var(--radius);
  background: #fff;
}

.legal-toc a {
  padding: 10px 0;
  border-bottom: 1px solid #e9eff4;
  color: #304257;
  font-weight: 740;
}

.legal-toc a:last-child {
  border-bottom: 0;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-block {
  padding: 28px;
  border: 1px solid #dce7ef;
  border-radius: var(--radius);
  background: #fff;
}

.legal-block p {
  margin-bottom: 0;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f2f6f8;
}

.redirect-shell {
  width: min(620px, 100%);
}

.redirect-card {
  display: grid;
  gap: 14px;
  padding: 34px;
  border: 1px solid #dbe6ee;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.redirect-card img {
  width: 220px;
}

.redirect-card h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: 2rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.theme-fintech { --cyan: #18a7c7; --accent: #15a9c8; }
.theme-credittech { --cyan: #2478d5; --accent: #15a9c8; }
.theme-tradetech { --cyan: #1b84b4; --accent: #15a9c8; }
.theme-ai { --cyan: #2467d8; --accent: #15a9c8; }
.theme-software { --cyan: #2f76bd; --accent: #15a9c8; }
.theme-compliance { --cyan: #2478d5; --accent: #15a9c8; }
.theme-trade { --cyan: #256f9a; --accent: #15a9c8; }
.theme-lc { --cyan: #1b84b4; --accent: #15a9c8; }
.theme-sblc { --cyan: #1b84b4; --accent: #15a9c8; }
.theme-bg { --cyan: #2467d8; --accent: #15a9c8; }
.theme-pg { --cyan: #2f76bd; --accent: #15a9c8; }
.theme-dc { --cyan: #2f76bd; --accent: #15a9c8; }
.theme-pof { --cyan: #2f76bd; --accent: #15a9c8; }

@media (max-width: 1180px) {
  h1 {
    font-size: 3.18rem;
  }

  .brand img {
    width: 230px;
  }

  .primary-nav {
    gap: 2px;
  }

  .nav-link,
  .nav-link-button {
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.86fr);
    gap: 30px;
  }

  .cta-inner h2 {
    font-size: 1.48rem;
  }

  .card-grid.four,
  .process-steps,
  .process-steps.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .top-strip__inner {
    justify-content: center;
  }

  .top-strip__inner span:nth-child(2) {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .primary-nav {
    display: flex;
  }

  .nav-link,
  .nav-link-button {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
  }

  .mega-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 50px 0 44px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 24px;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .cta-inner h2 {
    font-size: 1.26rem;
  }

  .cta-inner .button {
    width: 100%;
    min-width: 176px;
    padding-inline: 18px;
  }

  .contact-layout,
  .legal-layout,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 15ch;
  }

  .hero-visual {
    width: min(620px, 100%);
  }

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

  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .split-feature,
  .table-wrap {
    width: min(100% - 32px, var(--container));
  }

  .brand img {
    width: 198px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .section {
    padding: 54px 0;
  }

  .hero-meta,
  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .process-steps,
  .process-steps.compact,
  .stat-strip,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .split-feature,
  .cta-inner,
  .contact-details,
  .contact-form,
  .legal-block,
  .redirect-card {
    padding: 24px;
  }

  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-inner h2 {
    font-size: 1.58rem;
    white-space: normal;
  }

  .cta-inner .button {
    width: 100%;
  }

  .console-stats {
    grid-template-columns: 1fr;
  }

  .console-row {
    flex-direction: column;
    gap: 2px;
  }

  .console-row strong {
    text-align: left;
  }

  table {
    min-width: 640px;
  }
}

@media (max-width: 440px) {
  .container,
  .split-feature,
  .table-wrap {
    width: calc(100% - 24px);
  }

  .primary-nav {
    left: 12px;
    right: 12px;
  }

  .brand img {
    width: 172px;
  }

  .nav-shell {
    gap: 12px;
  }

  .hero {
    padding: 42px 0 40px;
  }

  h1 {
    font-size: 1.98rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  .section-heading h2,
  .section-heading p,
  .hero-lead,
  .contact-cards strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal !important;
  }

  .section-heading h2 {
    display: block;
    width: 100%;
    font-size: 1.16rem !important;
    line-height: 1.16;
  }

  body.page-contact .section-heading h2 {
    font-size: 1rem !important;
  }

  .section-heading,
  .contact-details,
  .contact-form,
  .contact-cards,
  .contact-cards a,
  .contact-cards div,
  .info-card {
    width: 100%;
    max-width: calc(100vw - 24px);
  }

  .contact-cards a,
  .contact-cards div {
    padding: 12px 14px;
  }

  .contact-cards strong {
    font-size: 0.88rem;
  }

  .hero-meta,
  .action-row {
    margin-top: 22px;
  }

  .action-row .button,
  .contact-form .button {
    width: 100%;
  }

  .console-card,
  .info-card,
  .step-card,
  .side-panel {
    padding: 20px;
  }

  .footer-brand img,
  .redirect-card img {
    width: 176px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
