:root {
  --blue: #0759df;
  --blue-bright: #1478ff;
  --blue-deep: #061c45;
  --blue-night: #03142f;
  --ink: #091a37;
  --muted: #536078;
  --cloud: #f3f7ff;
  --line: #dce6f4;
  --white: #ffffff;
  --lime: #baff69;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 28px 80px rgba(5, 37, 93, 0.13);
  --shell: min(1220px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Heebo", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

img,
svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-night);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.trust-bar {
  color: #dce8ff;
  background: var(--blue-night);
  font-size: 12px;
}

.trust-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust-bar p {
  margin: 0;
}

.trust-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  background: var(--lime);
  border-radius: 99px;
  box-shadow: 0 0 0 4px rgba(186, 255, 105, 0.12);
}

.trust-bar__links {
  display: flex;
  gap: 10px;
  direction: ltr;
}

.trust-bar a:hover {
  color: var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(9, 26, 55, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(6, 28, 69, 0.08);
}

.site-header__inner {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-left: auto;
  color: var(--blue);
  direction: ltr;
}

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

.brand__word {
  font-family: "Heebo", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.brand__word sup {
  margin-left: 2px;
  font-size: 9px;
  letter-spacing: 0;
  vertical-align: top;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #33415b;
  font-size: 14px;
}

.main-nav > a,
.nav-solutions__link {
  position: relative;
  padding-block: 28px;
}

.main-nav > a::after,
.nav-solutions__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-solutions__link:hover::after,
.nav-solutions__link:focus-visible::after {
  width: 100%;
}

.nav-solutions {
  display: flex;
  align-items: center;
}

.nav-solutions__toggle {
  width: 28px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-right: -7px;
  padding: 0;
  color: var(--blue);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-solutions__toggle span {
  display: block;
  font-size: 17px;
  transition: transform 0.25s ease;
}

.nav-solutions.is-open .nav-solutions__toggle span {
  transform: rotate(180deg);
}

.solutions-mega {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  left: 0;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-inline: auto;
  padding: 18px;
  color: var(--ink);
  border: 1px solid rgba(9, 26, 55, 0.1);
  border-radius: 0 0 24px 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(6, 28, 69, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-solutions:hover .solutions-mega,
.nav-solutions:focus-within .solutions-mega,
.nav-solutions.is-open .solutions-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.solutions-mega__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px;
  border-radius: 16px;
  background: #f6f9ff;
}

.solutions-mega__heading {
  margin-bottom: 5px;
  padding-inline: 10px;
  color: #5e6d87;
  font-size: 12px;
  font-weight: 700;
}

.solutions-mega a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 10px;
  border: 0;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.solutions-mega a::after {
  display: none;
}

.solutions-mega a:hover,
.solutions-mega a:focus-visible {
  color: var(--blue);
  background: var(--white);
  transform: translateX(-3px);
}

.solutions-mega strong {
  font-size: 14px;
  font-weight: 700;
}

.solutions-mega small {
  color: #68778f;
  font-size: 11px;
  line-height: 1.45;
}

.solutions-mega__group--infrastructure {
  color: var(--white);
  background: var(--blue-night);
}

.solutions-mega__group--infrastructure .solutions-mega__heading,
.solutions-mega__group--infrastructure small {
  color: #b8c8e5;
}

.solutions-mega__featured {
  background: rgba(52, 214, 187, 0.12);
  box-shadow: inset 3px 0 0 var(--lime);
}

.solutions-mega__featured strong::after {
  content: "HSM";
  display: inline-block;
  margin-right: 7px;
  padding: 2px 6px;
  color: var(--blue-night);
  border-radius: 999px;
  background: var(--lime);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(20, 120, 255, 0.35);
  outline-offset: 3px;
}

.button--small {
  min-height: 44px;
  padding-inline: 19px;
  border-radius: 12px;
  font-size: 13px;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 15px 34px rgba(7, 89, 223, 0.24);
}

.button--primary:hover {
  box-shadow: 0 19px 38px rgba(7, 89, 223, 0.34);
}

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

.button--white {
  color: var(--blue-night);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 33%, rgba(103, 160, 255, 0.17), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(rgba(7, 89, 223, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 89, 223, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero__glow--one {
  width: 420px;
  height: 420px;
  top: 8%;
  left: -260px;
  background: rgba(115, 179, 255, 0.18);
}

.hero__glow--two {
  width: 230px;
  height: 230px;
  right: 36%;
  bottom: 9%;
  background: rgba(101, 116, 255, 0.11);
}

.hero__inner {
  position: relative;
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 72px;
  padding-block: 64px 48px;
}

.eyebrow,
.kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 10px 8px 15px;
  color: #173a73;
  border: 1px solid #d8e7ff;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.8);
}

.eyebrow__mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

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

h1,
h2 {
  text-wrap: balance;
}

.hero h1 {
  margin-bottom: 25px;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero h1 em,
.contact h2 em {
  color: var(--blue);
  font-family: "Heebo", sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero__lead {
  max-width: 615px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 27px;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin: 0;
  padding: 0;
  color: #526079;
  font-size: 13px;
  list-style: none;
}

.hero__assurances li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__assurances span {
  color: var(--blue);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 22px 22px 35px 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 7% 8% 3% 0;
  border-radius: 48% 52% 40% 60% / 46% 37% 63% 54%;
  background: linear-gradient(145deg, #0b68ee, #103fb6);
  transform: rotate(-4deg);
  box-shadow: 0 35px 90px rgba(7, 89, 223, 0.3);
}

.hero-visual__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1.04;
  border: 9px solid rgba(255, 255, 255, 0.78);
  border-radius: 44px;
  background: #eaf3ff;
  box-shadow: var(--shadow);
  transform: rotate(1.6deg);
}

.hero-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 34%;
}

.security-seal {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: -24px;
  width: 126px;
  height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--white);
  background: var(--blue-night);
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(6, 28, 69, 0.25);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  transform: rotate(-7deg);
}

.security-seal svg {
  width: 28px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-note {
  position: absolute;
  z-index: 4;
  right: -15px;
  bottom: 30px;
  min-width: 196px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(6, 28, 69, 0.17);
}

.hero-note__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
}

.hero-note div {
  display: flex;
  flex-direction: column;
}

.hero-note strong {
  font-size: 13px;
}

.hero-note small {
  color: var(--muted);
  font-size: 11px;
}

.trusted-by {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 28px;
  padding-block: 22px 28px;
  border-top: 1px solid var(--line);
}

.trusted-by p {
  margin: 0;
  color: #748096;
  font-size: 12px;
}

.trusted-by__list {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #6b7890;
  font-size: 14px;
  font-weight: 500;
}

.section {
  padding-block: 112px;
}

.solutions {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 52px;
}

.section-heading h2,
.about h2,
.systems h2,
.finder h2,
.contact h2 {
  margin: 12px 0 0;
  font-size: clamp(39px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 18px;
}

.solution-card {
  min-height: 375px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfdff;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: #a9c7f5;
  box-shadow: 0 22px 60px rgba(6, 28, 69, 0.1);
}

.solution-card--feature {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 0 0, rgba(65, 151, 255, 0.75), transparent 35%),
    linear-gradient(145deg, #0b68ee, #073ca7);
  box-shadow: 0 22px 50px rgba(7, 89, 223, 0.22);
}

.solution-card__topline {
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solution-card__number {
  color: #8290a7;
  font-family: "Heebo", sans-serif;
  font-size: 15px;
}

.solution-card--feature .solution-card__number {
  color: #d8e9ff;
}

.tag {
  padding: 5px 10px;
  color: var(--blue-night);
  background: var(--lime);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 600;
}

.solution-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 26px 0 31px;
  color: var(--blue);
  border: 1px solid #d5e4fa;
  border-radius: 18px;
  background: var(--white);
}

.solution-card__icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.solution-card--feature .solution-card__icon {
  color: var(--lime);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.solution-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.solution-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.solution-card--feature p {
  color: #dce9ff;
}

.solution-card a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.solution-card--feature a {
  color: var(--white);
}

.solution-card a span,
.text-link span {
  transition: transform 0.25s ease;
}

.solution-card a:hover span,
.text-link:hover span {
  transform: translateX(-5px);
}

.more-solutions {
  display: grid;
  grid-template-columns: 0.7fr repeat(4, 1fr);
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.more-solutions > span {
  padding: 20px 24px;
  color: #7a879c;
  font-size: 12px;
}

.more-solutions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
}

.more-solutions a:hover {
  color: var(--blue);
  background: var(--cloud);
}

.enterprise-links {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.enterprise-links__intro,
.enterprise-links a {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: var(--white);
}

.enterprise-links__intro strong {
  font-size: 14px;
}

.enterprise-links a {
  color: #45536b;
  font-size: 12px;
  transition: color 0.25s ease, background 0.25s ease;
}

.enterprise-links a b {
  color: var(--blue);
  font-size: 16px;
}

.enterprise-links a:hover {
  color: var(--blue);
  background: var(--cloud);
}

.finder-section {
  padding-top: 0;
}

.finder {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.75fr 1.55fr;
  gap: 58px;
  padding: 60px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 5% 90%, rgba(33, 122, 255, 0.62), transparent 29%),
    var(--blue-night);
  box-shadow: 0 32px 90px rgba(3, 20, 47, 0.25);
}

.finder::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -160px;
  top: -160px;
  border: 45px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.kicker--light {
  color: #9cc5ff;
}

.finder__intro p {
  max-width: 250px;
  margin: 22px 0 0;
  color: #b8c7de;
}

.finder__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.finder__tabs {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.finder__tabs button {
  position: relative;
  min-height: 65px;
  padding: 12px 18px 12px 38px;
  color: #abbcd3;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  text-align: right;
  font-size: 13px;
  cursor: pointer;
}

.finder__tabs button:last-child {
  border-bottom: 0;
}

.finder__tabs button::after {
  content: "←";
  position: absolute;
  left: 14px;
  top: 50%;
  opacity: 0;
  transform: translate(8px, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.finder__tabs button[aria-selected="true"] {
  color: var(--white);
  border-bottom-color: transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.finder__tabs button[aria-selected="true"]::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.finder__result {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  background: linear-gradient(150deg, var(--blue), #0c73f2);
}

.finder__result-label {
  color: #c9e0ff;
  font-size: 11px;
}

.finder__result-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 23px 0;
  color: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  font-family: "Heebo", sans-serif;
}

.finder__result h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.finder__result p {
  margin-bottom: 24px;
  color: #e1edff;
  font-size: 13px;
}

.finder__result .button {
  min-height: 46px;
  margin-top: auto;
  font-size: 12px;
}

.process {
  padding-top: 20px;
}

.section-heading--compact {
  grid-template-columns: 1fr 0.5fr;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 16px;
}

.process-list__number {
  color: var(--blue);
  font-family: "Heebo", sans-serif;
  font-size: 18px;
}

.process-list__line {
  height: 1px;
  background: var(--line);
}

.process-list h3,
.process-list p {
  grid-column: 1 / -1;
}

.process-list h3 {
  margin: 25px 0 7px;
  font-size: 21px;
}

.process-list p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.about {
  padding-block: 0 112px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 90px;
}

.about__visual {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  padding: 46px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(9, 80, 200, 0.25), transparent 45%),
    var(--blue-night);
}

.about__pattern {
  position: absolute;
  inset: 0;
}

.about__pattern span {
  position: absolute;
  display: block;
  border: 1px solid rgba(116, 172, 255, 0.22);
  border-radius: 50%;
}

.about__pattern span:nth-child(1) {
  width: 410px;
  height: 410px;
  top: 55px;
  right: -205px;
}

.about__pattern span:nth-child(2) {
  width: 310px;
  height: 310px;
  top: 105px;
  right: -155px;
}

.about__pattern span:nth-child(3) {
  width: 210px;
  height: 210px;
  top: 155px;
  right: -105px;
  border-width: 32px;
  border-color: rgba(36, 121, 252, 0.14);
}

.about__badge {
  position: relative;
  z-index: 1;
  width: 178px;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 88px 88px 22px 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.about__badge small,
.about__badge span {
  color: #9fb5d4;
  font-size: 10px;
}

.about__badge strong {
  color: var(--lime);
  font-size: 22px;
  line-height: 1.1;
}

.about blockquote {
  position: absolute;
  right: 46px;
  bottom: 36px;
  left: 46px;
  margin: 0;
  font-family: "Heebo", sans-serif;
  font-size: 30px;
  line-height: 1.35;
}

.about__content {
  align-self: center;
}

.about__content h2 {
  margin-bottom: 28px;
}

.about__content p {
  color: var(--muted);
}

.about__lead {
  color: var(--ink) !important;
  font-size: 19px;
  line-height: 1.75;
}

.text-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 29px;
  padding-bottom: 6px;
  color: var(--blue);
  border-bottom: 1px solid #bad0f4;
  font-size: 14px;
  font-weight: 600;
}

.systems {
  overflow: hidden;
  background: var(--cloud);
}

.systems__heading {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.systems__heading p {
  margin: 17px 0 0;
  color: var(--muted);
}

.systems__marquee {
  overflow: hidden;
  border-top: 1px solid #cfdced;
  border-bottom: 1px solid #cfdced;
  mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent);
}

.systems__list {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 30px;
  color: #30425f;
  font-family: "Heebo", sans-serif;
  font-size: 21px;
}

.systems__list i {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
  color: var(--white);
  background: var(--blue);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 32px 32px;
}

.contact__glow {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -350px;
  top: -300px;
  border: 90px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 95px;
}

.contact h2 {
  margin-bottom: 22px;
}

.contact h2 em {
  color: var(--lime);
}

.contact__content > p {
  color: #dce9ff;
}

.contact__details {
  display: flex;
  gap: 34px;
  margin-top: 46px;
}

.contact__details a {
  display: flex;
  flex-direction: column;
}

.contact__details small {
  margin-bottom: 4px;
  color: #b5d1fb;
  font-size: 10px;
}

.contact__details strong {
  direction: ltr;
  font-size: 15px;
}

.contact-form {
  padding: 32px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 35px 90px rgba(0, 24, 76, 0.25);
}

.field,
.field-row {
  display: grid;
}

.field-row {
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  color: #526079;
  font-size: 11px;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fbff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(20, 120, 255, 0.1);
}

.button--submit {
  width: 100%;
  color: var(--white);
  background: var(--blue-night);
}

.form-note {
  margin: 12px 0 0;
  color: #7b879b;
  text-align: center;
  font-size: 10px;
}

.form-note.is-success {
  color: #16764a;
  font-weight: 600;
}

.footer {
  padding-top: 55px;
  color: #d7e3f5;
  background: var(--blue-night);
}

.footer__top {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-bottom: 45px;
}

.footer__top p {
  margin: 0;
  color: #9eb1ca;
  font-size: 13px;
}

.footer__social {
  display: flex;
  gap: 9px;
  margin-right: auto;
  direction: ltr;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
}

.footer__social a:hover {
  color: var(--blue-night);
  background: var(--lime);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  color: #7589a4;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer__bottom div {
  display: flex;
  gap: 24px;
}

.footer__bottom a:hover {
  color: var(--white);
}

.floating-call {
  position: fixed;
  z-index: 90;
  left: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(7, 89, 223, 0.3);
}

.floating-call svg {
  width: 21px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--delay-sm {
  transition-delay: 0.08s;
}

.reveal--delay,
.reveal--delay-md {
  transition-delay: 0.16s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header__inner {
    gap: 24px;
  }

  .main-nav {
    gap: 19px;
  }

  .hero__inner {
    gap: 40px;
  }

  .section-heading {
    gap: 50px;
  }

  .finder {
    padding: 45px;
    gap: 35px;
  }

  .contact__grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand {
    margin-left: 0;
  }

  .brand img {
    width: 46px;
  }

  .brand__word {
    font-size: 22px;
  }

  .header-cta {
    margin-right: auto;
  }

  .menu-toggle {
    order: -1;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-toggle__icon {
    width: 18px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-toggle__icon i {
    width: 100%;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 104px 0 auto;
    height: calc(100dvh - 104px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a,
  .nav-solutions__link {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .nav-solutions {
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: center;
  }

  .nav-solutions__toggle {
    width: 48px;
    height: 56px;
    margin: 0;
    border-bottom: 1px solid var(--line);
  }

  .solutions-mega {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transform: none;
    transition: max-height 0.35s ease, opacity 0.2s ease, padding 0.35s ease;
  }

  .nav-solutions:hover .solutions-mega,
  .nav-solutions:focus-within .solutions-mega {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
  }

  .nav-solutions.is-open .solutions-mega {
    max-height: 1400px;
    padding: 12px 0 18px;
    opacity: 1;
    pointer-events: auto;
  }

  .solutions-mega__group {
    padding: 10px;
  }

  .solutions-mega a {
    padding: 10px;
    font-size: 14px;
  }

  .hero__inner,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-top: 55px;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero-visual {
    max-width: 650px;
    margin-inline: auto;
  }

  .trusted-by {
    grid-template-columns: 1fr;
  }

  .trusted-by__list {
    flex-wrap: wrap;
  }

  .section-heading,
  .section-heading--compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading p {
    max-width: 550px;
  }

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

  .solution-card--feature {
    grid-column: 1 / -1;
    min-height: 350px;
  }

  .more-solutions {
    grid-template-columns: 1fr;
  }

  .more-solutions a {
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .enterprise-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .enterprise-links__intro {
    grid-column: 1 / -1;
  }

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

  .finder__intro p {
    max-width: 100%;
  }

  .about__grid {
    gap: 50px;
  }

  .about__content {
    order: -1;
  }

  .contact__grid {
    gap: 45px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
    --radius-lg: 24px;
  }

  .trust-bar__inner {
    justify-content: center;
  }

  .trust-bar__links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-right: auto;
  }

  .main-nav {
    inset: 104px 0 auto;
  }

  .hero__inner {
    min-height: auto;
    gap: 45px;
    padding-block: 45px 35px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.06;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__assurances {
    gap: 12px 18px;
  }

  .hero-visual {
    padding: 10px 5px 22px 0;
  }

  .hero-visual__frame {
    border-width: 6px;
    border-radius: 30px;
  }

  .security-seal {
    top: -18px;
    left: -6px;
    width: 98px;
    height: 98px;
    border-width: 5px;
    font-size: 10px;
  }

  .security-seal svg {
    width: 22px;
  }

  .hero-note {
    right: -5px;
    bottom: 2px;
    min-width: 175px;
  }

  .trusted-by {
    padding-top: 28px;
  }

  .trusted-by__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .about h2,
  .systems h2,
  .finder h2,
  .contact h2 {
    font-size: 40px;
  }

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

  .solution-card--feature {
    grid-column: auto;
  }

  .solution-card {
    min-height: 340px;
  }

  .enterprise-links {
    grid-template-columns: 1fr 1fr;
  }

  .enterprise-links__intro {
    grid-column: 1 / -1;
  }

  .finder-section {
    padding-top: 0;
  }

  .finder {
    width: 100%;
    border-radius: 0;
    padding: 50px 14px;
  }

  .finder__intro {
    padding-inline: 10px;
  }

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

  .finder__tabs {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .finder__result {
    min-height: 350px;
  }

  .process {
    padding-top: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about {
    padding-top: 0;
  }

  .about__grid {
    gap: 40px;
  }

  .about__visual {
    min-height: 455px;
    padding: 28px;
  }

  .about blockquote {
    right: 28px;
    bottom: 28px;
    left: 28px;
    font-size: 26px;
  }

  .systems__heading {
    text-align: right;
  }

  .contact {
    padding-block: 80px;
  }

  .contact__details {
    flex-direction: column;
    gap: 14px;
  }

  .contact-form {
    padding: 22px;
  }

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

.footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__social {
    margin-right: 0;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
  }

  .floating-call {
    left: 14px;
    bottom: 14px;
  }
}

.footer__brand {
  margin-left: 0;
  color: var(--white);
}

.footer__brand img {
  filter: grayscale(1) brightness(0) invert(1);
}

@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;
  }

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