@import "tailwindcss";

:root {
  --blue: #1d35f5;
  --blue-deep: #1220bf;
  --blue-soft: #eef1ff;
  --red: #ff1722;
  --ink: #0f1424;
  --ink-2: #30374d;
  --muted: #697084;
  --paper: #f5f7fb;
  --surface: #ffffff;
  --line: #dce0ea;
  --line-dark: rgba(255, 255, 255, 0.16);
  --success: #22bb74;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC",
    Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
input,
select,
textarea,
button {
  font-family: inherit;
}

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

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

button,
input,
select,
textarea,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  cursor: pointer;
}

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

.topbar {
  background: var(--ink);
  color: white;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
}

.topbar p {
  margin: 0;
  color: #c4c9d8;
}

.topbar p span {
  margin-right: 16px;
  color: #8fa0ff;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.topbar-inner > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a {
  color: #eef0f7;
  transition: color 160ms ease;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: #9eabff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  padding: 30px 0 27px;
  position: relative;
  color: #343a4d;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-consult {
  min-width: 136px;
  height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.header-consult:hover,
.header-consult:focus-visible {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  position: relative;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(29, 53, 245, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(29, 53, 245, 0.025) 1px, transparent 1px),
    #fff;
  background-size: 56px 56px;
}

.hero::after {
  content: "SANTOIP";
  position: absolute;
  left: calc(50% - 650px);
  bottom: -44px;
  z-index: 0;
  color: rgba(15, 20, 36, 0.025);
  font-family: Arial, sans-serif;
  font-size: 185px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  min-height: 682px;
  padding: 74px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(480px, 0.82fr);
  align-items: center;
  gap: 86px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 23, 34, 0.09);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(62px, 5.8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.hero h1 em {
  display: inline-block;
  position: relative;
  color: var(--blue);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0.03em;
  right: 0;
  bottom: -0.1em;
  height: 6px;
  background: var(--red);
}

.hero-lead {
  max-width: 660px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button-primary {
  min-width: 212px;
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 36px rgba(29, 53, 245, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-deep);
  transform: translateY(-3px);
}

.button-quiet {
  border-color: var(--line);
  background: white;
  color: var(--ink-2);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
}

.hero-contact {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8a8fa0;
  font-size: 12px;
}

.hero-contact a {
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid #aeb3c1;
}

.hero-console {
  min-height: 520px;
  padding: 28px 30px 30px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--blue);
  background-size: 42px 42px;
  color: white;
  box-shadow: 0 30px 70px rgba(20, 35, 150, 0.22);
}

.hero-console::before {
  content: "";
  width: 220px;
  height: 220px;
  position: absolute;
  top: -140px;
  right: -90px;
  border: 48px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-console::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  right: -70px;
  bottom: -76px;
  background: var(--red);
  border-radius: 50%;
}

.console-head,
.console-head > div,
.console-regions {
  display: flex;
  align-items: center;
}

.console-head {
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.console-head > div {
  gap: 10px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(34, 187, 116, 0.18);
}

.console-head p,
.console-head strong {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.console-head p {
  font-weight: 700;
}

.console-head strong {
  color: rgba(255, 255, 255, 0.6);
}

.console-title {
  margin-top: 30px;
}

.console-title span {
  color: #aeb8ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.console-title h2 {
  margin: 8px 0 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.route-list {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.route-item {
  min-height: 66px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.route-item > span {
  color: #aeb8ff;
  font-size: 10px;
  font-weight: 800;
}

.route-item strong {
  font-size: 14px;
}

.route-item small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.console-regions {
  min-height: 68px;
  margin-top: 24px;
  padding: 0 16px;
  gap: 11px;
  position: relative;
  z-index: 2;
  background: white;
  color: var(--ink);
}

.console-regions span {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.console-regions i {
  flex: 1;
  height: 1px;
  background: #cfd4e5;
}

.console-regions b {
  margin-left: 6px;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  min-height: 110px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.proof-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.proof-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding: 112px 0;
}

.section-kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.section-heading h2,
.risk-copy h2,
.global-copy h2,
.about-lead h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 90px;
}

.split-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.services-section {
  background: var(--paper);
}

.services-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfd4e1;
  border-left: 1px solid #cfd4e1;
}

.service-card {
  min-height: 480px;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  background: white;
  border-right: 1px solid #cfd4e1;
  border-bottom: 1px solid #cfd4e1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 3;
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(17, 24, 60, 0.11);
}

.service-featured {
  background: var(--blue);
  color: white;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-head > span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.service-featured .service-card-head > span {
  background: white;
}

.service-card-head small {
  color: #9aa0b2;
  font-size: 10px;
  font-weight: 800;
}

.service-featured .service-card-head small {
  color: #aab4ff;
}

.service-card h3 {
  margin: 38px 0 15px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.service-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.service-featured > p {
  color: #ced4ff;
}

.service-card ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 8px 0 8px 18px;
  position: relative;
  color: #444b5f;
  font-size: 12px;
  border-bottom: 1px solid #ecedf2;
}

.service-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: 1px;
  top: 14px;
  background: var(--red);
  border-radius: 50%;
}

.service-featured li {
  color: #eef0ff;
  border-color: rgba(255, 255, 255, 0.15);
}

.service-card > a {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dfe2ea;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.service-card > a span {
  color: var(--blue);
  font-size: 18px;
}

.service-featured > a {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.service-featured > a span {
  color: white;
}

.risk-section {
  background: var(--ink);
  color: white;
}

.risk-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
}

.risk-visual {
  padding: 90px 76px 90px 0;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.risk-panel {
  width: 100%;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.risk-panel-head {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  color: white;
}

.risk-panel-head span {
  color: #b5beff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.risk-panel-head strong {
  font-size: 14px;
}

.check-row {
  min-height: 72px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.check-row > span {
  color: #9aa0b2;
  font-size: 10px;
  font-weight: 800;
}

.check-row p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.check-row b {
  padding: 5px 8px;
  background: #e8f8f0;
  color: #168d57;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.risk-result {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff3f3;
}

.risk-result span {
  padding: 4px 7px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 800;
}

.risk-result strong {
  font-size: 13px;
}

.risk-copy {
  padding: 110px 0 100px 90px;
}

.light-kicker {
  color: #8fa0ff;
}

.risk-copy h2,
.about-lead h2,
.contact-copy h2 {
  color: white;
}

.risk-copy > p:not(.section-kicker) {
  max-width: 570px;
  margin: 30px 0 0;
  color: #b2b8ca;
  font-size: 15px;
  line-height: 1.9;
}

.risk-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.risk-copy li {
  padding: 11px 0 11px 23px;
  position: relative;
  color: #eef0f7;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-copy li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 16px;
  background: var(--red);
}

.text-link {
  width: fit-content;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid #aeb4c4;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.light-link {
  margin-top: 34px;
  color: white;
  border-color: #596176;
}

.light-link:hover,
.light-link:focus-visible {
  color: #aeb8ff;
  border-color: #aeb8ff;
}

.solutions-section {
  background: white;
}

.centered-heading {
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.audience-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-grid article {
  min-height: 330px;
  padding: 27px 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.audience-grid article:hover {
  background: var(--blue);
  color: white;
}

.audience-grid article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.audience-grid h3 {
  margin: 45px 0 15px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  transition: color 180ms ease;
}

.audience-grid article:hover p {
  color: #d6dbff;
}

.audience-grid article > div {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.audience-grid small {
  padding: 6px 8px;
  background: var(--paper);
  color: #646a7c;
  font-size: 9px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.audience-grid article:hover small {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.partner-banner {
  margin-top: 28px;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
}

.partner-banner span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.partner-banner h3 {
  margin: 9px 0 8px;
  font-size: 22px;
}

.partner-banner p {
  max-width: 790px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.partner-banner > a {
  min-width: 190px;
  height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.global-section {
  background: var(--paper);
}

.global-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: 86px;
}

.global-copy > p:not(.section-kicker, .claim-note) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.global-metrics {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #cfd4df;
  border-bottom: 1px solid #cfd4df;
}

.global-metrics > div {
  padding: 25px 18px 25px 0;
}

.global-metrics > div + div {
  padding-left: 28px;
  border-left: 1px solid #cfd4df;
}

.global-metrics strong,
.global-metrics span {
  display: block;
}

.global-metrics strong {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 33px;
}

.global-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.claim-note {
  margin: 18px 0 0;
  color: #9298a9;
  font-size: 10px;
}

.region-board {
  background: var(--ink);
  color: white;
  box-shadow: 0 28px 60px rgba(17, 24, 55, 0.16);
}

.region-board-head {
  min-height: 82px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
}

.region-board-head strong {
  font-size: 17px;
}

.region-board-head span {
  color: #b6bfff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.region-list > div {
  min-height: 128px;
  padding: 24px 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.region-list > div:nth-child(even) {
  border-right: 0;
}

.region-list > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.region-list span {
  color: #7f8ad8;
  font-size: 9px;
  font-weight: 900;
}

.region-list strong {
  display: block;
  margin-top: 11px;
  font-size: 15px;
}

.region-list p {
  margin: 7px 0 0;
  color: #9ca3b8;
  font-size: 10px;
}

.process-section {
  background: white;
}

.process-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process-grid article {
  min-height: 245px;
  padding: 0 28px 24px 0;
  position: relative;
  border-top: 1px solid var(--line);
}

.process-grid article:not(:last-child) {
  margin-right: 24px;
}

.process-grid article > span {
  width: 42px;
  height: 42px;
  margin-top: -21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.process-grid article > i {
  width: 7px;
  height: 7px;
  position: absolute;
  top: -4px;
  right: 0;
  background: var(--red);
  border-radius: 50%;
}

.process-grid h3 {
  margin: 38px 0 12px;
  font-size: 19px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.about-section {
  padding: 112px 0 0;
  overflow: hidden;
  background: var(--blue);
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 90px;
  padding-bottom: 88px;
}

.about-lead > p:not(.section-kicker) {
  margin: 30px 0 0;
  color: #d0d6ff;
  font-size: 14px;
  line-height: 1.9;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.about-values article {
  min-height: 220px;
  padding: 25px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.about-values span {
  color: #b7c0ff;
  font-size: 9px;
  font-weight: 900;
}

.about-values h3 {
  margin: 30px 0 12px;
  font-size: 19px;
}

.about-values p {
  margin: 0;
  color: #cbd1fb;
  font-size: 11px;
  line-height: 1.75;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  background: #1529d8;
}

.timeline > div {
  min-height: 132px;
  padding: 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.timeline strong {
  font-family: Arial, sans-serif;
  font-size: 21px;
}

.timeline p {
  margin: 10px 0 0;
  color: #bdc5fa;
  font-size: 10px;
  line-height: 1.65;
}

.insights-section {
  background: var(--paper);
}

.split-heading > .text-link {
  justify-self: end;
  margin-bottom: 6px;
}

.insight-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfd4e1;
  border-left: 1px solid #cfd4e1;
}

.insight-grid article {
  min-height: 370px;
  padding: 27px 27px 25px;
  display: flex;
  flex-direction: column;
  background: white;
  border-right: 1px solid #cfd4e1;
  border-bottom: 1px solid #cfd4e1;
}

.insight-index {
  color: #9aa0b2;
  font-size: 10px;
  font-weight: 900;
}

.insight-grid article > span {
  width: fit-content;
  margin-top: 44px;
  padding: 5px 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.insight-grid h3 {
  margin: 18px 0 13px;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.insight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.insight-grid a {
  margin-top: auto;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
}

.insight-grid a span {
  color: var(--blue);
  font-size: 16px;
}

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-intro .text-link {
  margin-top: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  align-items: center;
  gap: 16px;
  list-style: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: #9aa0b2;
  font-size: 9px;
  font-weight: 900;
}

.faq-list summary i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
  background: var(--blue);
  color: white;
}

.faq-list details > p {
  margin: 0;
  padding: 0 52px 27px 60px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.contact-section {
  padding: 110px 0;
  background: var(--ink);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(550px, 1.22fr);
  gap: 100px;
}

.contact-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: #aeb4c6;
  font-size: 13px;
  line-height: 1.8;
}

.contact-list {
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list span {
  color: #8e95aa;
  font-size: 10px;
}

.contact-list strong {
  color: #f1f2f7;
  font-size: 13px;
}

.contact-copy address {
  margin-top: 30px;
  color: #777f94;
  font-size: 10px;
  line-height: 1.8;
  font-style: normal;
}

.contact-form {
  padding: 38px 40px 36px;
  background: white;
  color: var(--ink);
}

.form-head {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-head > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.form-head h3 {
  margin: 8px 0 7px;
  font-size: 25px;
}

.form-head p {
  margin: 0;
  color: #858b9c;
  font-size: 9px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label:not(.privacy-check) {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #42485a;
  font-size: 10px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d6dae5;
  border-radius: 0;
  outline: none;
  background: #fbfcfe;
  color: var(--ink);
  font-size: 12px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 100px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(29, 53, 245, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a4a9b7;
}

.privacy-check {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #777d8e;
  font-size: 9px;
  line-height: 1.55;
}

.privacy-check input {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--blue);
}

.contact-form button {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 900;
  transition: background 160ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--blue-deep);
}

footer {
  padding: 68px 0 28px;
  background: #f1f3f7;
}

.footer-grid {
  padding-bottom: 46px;
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.72fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 240px;
}

.footer-brand p {
  max-width: 310px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.footer-grid h3 {
  margin: 0 0 21px;
  color: var(--ink);
  font-size: 12px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0 0 12px;
  color: #686e80;
  font-size: 10px;
}

.footer-grid > div:not(.footer-brand) a:hover,
.footer-grid > div:not(.footer-brand) a:focus-visible {
  color: var(--blue);
}

.legal-row {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #d2d6df;
  border-bottom: 1px solid #d2d6df;
  color: #73798a;
  font-size: 9px;
}

.legal-row p {
  margin: 0;
}

.legal-row > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.legal-row a {
  color: #4d5366;
  font-weight: 800;
}

.legal-row a:hover,
.legal-row a:focus-visible {
  color: var(--blue);
}

.footer-note {
  margin-top: 19px;
  color: #9196a5;
  font-size: 9px;
  line-height: 1.7;
}

.floating-consult {
  width: 58px;
  height: 58px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--red);
  color: white;
  box-shadow: 0 14px 30px rgba(255, 23, 34, 0.28);
  transition: transform 160ms ease;
}

.floating-consult:hover,
.floating-consult:focus-visible {
  transform: translateY(-4px);
}

.floating-consult span {
  font-size: 10px;
  font-weight: 900;
}

.floating-consult i {
  font-size: 11px;
  font-style: normal;
}

@media (max-width: 1120px) {
  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .desktop-nav {
    gap: 21px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .hero-console {
    min-height: 500px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .global-grid,
  .about-grid,
  .contact-grid {
    gap: 54px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
  }

  .process-grid article {
    margin-right: 24px;
  }

  .process-grid article:nth-child(3) {
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .topbar-inner > div,
  .desktop-nav,
  .header-consult {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar p span {
    display: none;
  }

  .mobile-menu {
    margin-left: auto;
    display: block;
  }

  .mobile-menu > summary {
    width: 54px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    width: min(310px, calc(100vw - 40px));
    padding: 12px 18px;
    position: absolute;
    top: 52px;
    right: 0;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(17, 24, 55, 0.16);
  }

  .mobile-menu nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink-2);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .risk-grid,
  .global-grid,
  .about-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 62px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-console {
    max-width: 660px;
  }

  .risk-visual {
    padding: 70px 0 35px;
    border-right: 0;
  }

  .risk-copy {
    padding: 35px 0 78px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partner-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .global-grid {
    gap: 48px;
  }

  .about-grid {
    padding-bottom: 58px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

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

  .insight-grid article {
    min-height: 300px;
  }

  .faq-grid {
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .contact-grid {
    gap: 54px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

  .topbar-inner {
    min-height: 34px;
    font-size: 9px;
    text-align: center;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand > img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0 62px;
    gap: 46px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .hero h1 em::after {
    height: 4px;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .hero-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .hero-console {
    min-height: 480px;
    padding: 24px 20px;
  }

  .route-item {
    grid-template-columns: 34px 1fr auto;
  }

  .console-regions {
    padding: 0 11px;
    gap: 7px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid > div {
    min-height: 94px;
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .proof-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-grid strong {
    font-size: 19px;
  }

  .proof-grid span {
    font-size: 9px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .risk-copy h2,
  .global-copy h2,
  .about-lead h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 37px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .service-card {
    min-height: 450px;
  }

  .risk-grid {
    min-height: auto;
  }

  .risk-visual {
    padding-top: 58px;
  }

  .risk-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .check-row {
    padding: 0 17px;
    grid-template-columns: 30px 1fr auto;
  }

  .risk-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .risk-copy {
    padding-bottom: 65px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .audience-grid article {
    min-height: 300px;
  }

  .partner-banner {
    padding: 30px 25px;
  }

  .partner-banner > a {
    width: 100%;
  }

  .global-grid {
    gap: 38px;
  }

  .region-list {
    grid-template-columns: 1fr;
  }

  .region-list > div,
  .region-list > div:nth-child(even),
  .region-list > div:nth-last-child(-n + 2) {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .region-list > div:last-child {
    border-bottom: 0;
  }

  .region-board-head {
    min-height: 72px;
    padding: 0 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 45px;
  }

  .process-grid article,
  .process-grid article:not(:last-child) {
    min-height: auto;
    margin: 0;
    padding: 26px 0 26px 64px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .process-grid article > span {
    width: 40px;
    height: 40px;
    margin: 0;
    position: absolute;
    left: -20px;
    top: 24px;
  }

  .process-grid article > i {
    display: none;
  }

  .process-grid h3 {
    margin: 0 0 9px;
  }

  .about-section {
    padding-top: 78px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values article {
    min-height: 185px;
  }

  .timeline {
    width: 100%;
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .timeline > div {
    min-height: 105px;
  }

  .split-heading > .text-link {
    justify-self: start;
  }

  .insight-grid article {
    min-height: 330px;
  }

  .faq-list summary {
    min-height: 78px;
    grid-template-columns: 30px 1fr 28px;
    font-size: 13px;
  }

  .faq-list details > p {
    padding: 0 28px 24px 46px;
  }

  .contact-section {
    padding: 78px 0;
  }

  .contact-form {
    padding: 30px 20px 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .legal-row {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .legal-row > div {
    flex-wrap: wrap;
    gap: 11px 15px;
  }

  .floating-consult {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
