/* Базовая визуальная система ------------------------------------------------ */
:root {
  --navy-950: #061326;
  --navy-900: #07182f;
  --navy-850: #0a1e3a;
  --navy-800: #0d284b;
  --ink: #0a1d36;
  --ink-soft: #34455c;
  --muted: #66758a;
  --line: #dfe7f0;
  --line-dark: rgba(255, 255, 255, 0.13);
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-blue: #eaf6ff;
  --accent: #4ab6ff;
  --accent-strong: #138edc;
  --accent-dark: #0879c1;
  --success: #1b9a72;
  --warning: #d77c15;
  --danger: #c33a48;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 12px 35px rgba(7, 24, 47, 0.08);
  --shadow-lg: 0 35px 90px rgba(1, 14, 33, 0.25);
  --container: 1200px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.section {
  position: relative;
  padding: 116px 0;
  scroll-margin-top: 24px;
}

.section--soft {
  background: var(--surface-soft);
}

.section--navy {
  color: #fff;
  background: var(--navy-950);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: #fff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  color: #061326;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(49, 165, 240, 0.22);
}

.button--primary:hover {
  background: #72c8ff;
  box-shadow: 0 16px 34px rgba(49, 165, 240, 0.3);
}

.button--secondary,
.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.button--secondary:hover,
.button--ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.36);
}

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

.button--ink {
  color: var(--navy-950);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow > span:not(.eyebrow-dot):not(.status-dot) {
  display: grid;
  width: 29px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(19, 142, 220, 0.24);
  border-radius: 7px;
  background: rgba(74, 182, 255, 0.1);
  font-size: 10px;
}

.eyebrow--light {
  color: #8bd2ff;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(74, 182, 255, 0.12);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 62px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

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

.section-heading h2,
.audience-copy h2,
.security-copy h2,
.pilot-copy h2,
.request-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p,
.section-heading--center > p,
.audience-copy > p,
.heading-aside > p,
.pilot-copy > p,
.request-intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Шапка -------------------------------------------------------------------- */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner,
.header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark > span:first-child {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 7px;
  height: 20px;
  background: var(--accent);
  transform: skew(-17deg);
}

.brand-mark > span:last-child {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 7px;
  height: 20px;
  background: #fff;
  transform: skew(17deg);
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-name strong {
  color: #b9c8da;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  padding: 29px 0;
  color: #c7d2df;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.button--header {
  color: #061326;
  background: #fff;
}

.button--header:hover {
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Первый экран ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: 166px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 38%, rgba(32, 130, 206, 0.18), transparent 32%),
    linear-gradient(135deg, #061326 0%, #081a33 52%, #09213f 100%);
}

.hero-grid,
.security-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 90%);
}

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

.hero-glow--one {
  top: 115px;
  right: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(79, 187, 255, 0.16);
  box-shadow: inset 0 0 110px rgba(51, 157, 229, 0.05);
}

.hero-glow--two {
  bottom: 70px;
  left: -210px;
  width: 430px;
  height: 430px;
  background: rgba(37, 137, 211, 0.06);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 62px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 48px;
}

.hero-copy .eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 5vw, 4.45rem);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: #b9c7d8;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-play {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.hero-note {
  display: flex;
  max-width: 610px;
  align-items: flex-start;
  gap: 13px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #91a6bd;
  font-size: 12px;
  line-height: 1.6;
}

.hero-note svg {
  flex: 0 0 25px;
  width: 25px;
  color: var(--accent);
  fill: rgba(74, 182, 255, 0.1);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-note strong {
  display: block;
  margin-bottom: 2px;
  color: #dbe6f2;
  font-size: 13px;
}

.hero-product {
  position: relative;
  min-height: 620px;
  padding: 28px 0 40px;
}

.product-orbit {
  position: absolute;
  z-index: -1;
  border: 1px dashed rgba(85, 187, 250, 0.2);
  border-radius: 50%;
}

.product-orbit--one {
  top: -25px;
  right: -80px;
  width: 590px;
  height: 590px;
}

.product-orbit--two {
  top: 45px;
  right: -10px;
  width: 450px;
  height: 450px;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 19px;
  color: var(--ink);
  background: #eff4f9;
  box-shadow: var(--shadow-lg), 0 0 0 7px rgba(255, 255, 255, 0.035);
  transform: perspective(1500px) rotateY(-2.5deg) rotateX(1deg);
}

.window-bar {
  display: flex;
  height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid #dce4ed;
  background: #fff;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.window-brand b {
  color: #7b8a9c;
  font-weight: 600;
}

.window-mark {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy-800) 49%, var(--accent) 50%);
}

.demo-label {
  margin-left: auto;
  padding: 5px 8px;
  border: 1px solid #d6e3ee;
  border-radius: 6px;
  color: #718095;
  background: #f7f9fb;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-800);
  font-size: 8px;
  font-weight: 800;
}

.window-body {
  padding: 18px;
}

.request-card {
  padding: 17px;
  border: 1px solid #dfe6ee;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 46, 77, 0.06);
}

.request-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf1f5;
}

.request-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: var(--accent-strong);
  background: #e9f6ff;
}

.request-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.request-kicker,
.request-card__head strong {
  display: block;
}

.request-kicker {
  margin-bottom: 1px;
  color: #7b899b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-card__head strong {
  font-size: 12px;
}

.request-status {
  margin-left: auto;
  padding: 6px 9px;
  border-radius: 20px;
  color: #0870ad;
  background: #e7f6ff;
  font-size: 8px;
  font-weight: 700;
}

.route-line {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) 28px 9px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 15px 2px 12px;
}

.route-point {
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 2px rgba(19, 142, 220, 0.23);
}

.route-point--finish {
  background: var(--navy-800);
  box-shadow: 0 0 0 2px rgba(13, 40, 75, 0.2);
}

.route-track {
  height: 1px;
  border-top: 1px dashed #bdc8d5;
}

.route-line small,
.route-line b {
  display: block;
}

.route-line small {
  margin-bottom: 2px;
  color: #8794a5;
  font-size: 7px;
}

.route-line b {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.request-meta {
  display: flex;
  gap: 6px;
}

.request-meta span {
  padding: 4px 8px;
  border: 1px solid #e2e8ef;
  border-radius: 6px;
  color: #66758a;
  background: #f8fafc;
  font-size: 7px;
  font-weight: 600;
}

.response-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 2px 9px;
}

.response-head > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.response-head strong {
  font-size: 10px;
}

.response-head > span {
  color: #8391a3;
  font-size: 7px;
}

.response-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(27, 154, 114, 0.12);
  animation: pulse 2.2s ease-out infinite;
}

.response-stack {
  display: grid;
  gap: 7px;
}

.driver-card {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid #dfe6ee;
  border-radius: 10px;
  background: #fff;
}

.driver-card--selected {
  border-color: #69c4fb;
  background: #f5fbff;
  box-shadow: 0 6px 18px rgba(19, 142, 220, 0.11);
}

.driver-card--muted {
  opacity: 0.68;
}

.driver-avatar {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #617086;
  background: #edf2f7;
  font-size: 8px;
  font-weight: 800;
}

.driver-avatar--selected {
  color: #fff;
  background: var(--navy-800);
}

.driver-info {
  min-width: 0;
  flex: 1;
}

.driver-info strong,
.driver-info > span {
  display: block;
}

.driver-info strong {
  font-size: 9px;
}

.driver-info > span {
  margin-top: 2px;
  color: #8290a2;
  font-size: 7px;
}

.driver-info > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.selected-badge {
  padding: 2px 5px;
  border-radius: 4px;
  color: #0870ad;
  background: #dff3ff;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.arrival-time {
  padding-left: 12px;
  border-left: 1px solid #e5eaf0;
  text-align: right;
}

.arrival-time small,
.arrival-time strong {
  display: block;
}

.arrival-time small {
  color: #8a97a8;
  font-size: 6px;
}

.arrival-time strong {
  font-size: 9px;
}

.selected-check {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent-strong);
}

.selected-check svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.progress-card {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: start;
  margin-top: 13px;
  padding: 13px 14px 10px;
  border: 1px solid #dfe6ee;
  border-radius: 11px;
  background: #fff;
}

.progress-step {
  display: grid;
  max-width: 95px;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.progress-step > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid #cfd8e3;
  border-radius: 50%;
  color: #96a3b3;
  background: #fff;
}

.progress-step > span svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.progress-step small {
  color: #788698;
  font-size: 6px;
  line-height: 1.25;
}

.progress-step.is-complete > span {
  color: #fff;
  border-color: var(--success);
  background: var(--success);
}

.progress-step.is-current > span {
  border-color: var(--accent-strong);
  background: #e7f6ff;
  box-shadow: 0 0 0 4px rgba(19, 142, 220, 0.08);
}

.progress-step.is-current small {
  color: var(--ink);
  font-weight: 700;
}

.truck-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent-strong);
}

.progress-card > i {
  height: 1px;
  margin-top: 10px;
  background: #d9e0e8;
}

.progress-card > i.is-active {
  background: linear-gradient(90deg, var(--success), var(--accent-strong));
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(1, 14, 33, 0.24);
  backdrop-filter: blur(10px);
}

.floating-card--photo {
  bottom: 67px;
  left: -30px;
}

.floating-card--status {
  top: 106px;
  right: -31px;
}

.floating-card > span:not(.live-indicator) {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: var(--accent-strong);
  background: #e9f6ff;
}

.floating-card svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-card b,
.floating-card small {
  display: block;
}

.floating-card b {
  font-size: 10px;
}

.floating-card small {
  color: #7d8b9d;
  font-size: 7px;
}

.live-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(27, 154, 114, 0.12);
}

.hero-principles {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 112px;
  margin-top: 36px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.principle-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.principle-item:first-child {
  padding-left: 0;
}

.principle-item:last-child {
  border-right: 0;
}

.principle-item > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.principle-item b,
.principle-item small {
  display: block;
}

.principle-item b {
  font-size: 13px;
}

.principle-item small {
  margin-top: 2px;
  color: #8497ae;
  font-size: 10px;
}

/* Сценарий работы ---------------------------------------------------------- */
.workflow {
  background: #fff;
}

.workflow-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.workflow-card {
  position: relative;
  min-height: 285px;
  padding: 35px 32px 31px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.workflow-card:hover {
  z-index: 2;
  background: #f8fbfe;
  box-shadow: 0 20px 45px rgba(13, 40, 75, 0.09);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #cfd8e4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 13px;
  color: var(--accent-strong);
  background: #eaf6ff;
}

.step-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-card h3 {
  margin-bottom: 11px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.workflow-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(27, 154, 114, 0.28); }
  70% { box-shadow: 0 0 0 8px rgba(27, 154, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 154, 114, 0); }
}

/* Аудитории ---------------------------------------------------------------- */
.audience-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.76fr) minmax(0, 1.24fr);
  gap: 90px;
  align-items: center;
}

.audience-copy {
  position: sticky;
  top: 40px;
}

.audience-copy > p {
  margin-bottom: 34px;
}

.audience-callout {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 21px;
  border: 1px solid #dbe5ee;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.audience-callout > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  color: var(--accent-strong);
  background: var(--surface-blue);
}

.audience-callout svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-callout b {
  font-size: 14px;
}

.audience-callout p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

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

.audience-card {
  position: relative;
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(12, 35, 65, 0.035);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 115px;
  height: 115px;
  border: 1px solid rgba(19, 142, 220, 0.08);
  border-radius: 50%;
  content: "";
}

.audience-card:hover {
  border-color: #b8d8ed;
  box-shadow: 0 16px 38px rgba(12, 35, 65, 0.08);
  transform: translateY(-3px);
}

.audience-card--wide,
.audience-card--full {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 17px;
}

.audience-card--wide {
  min-height: 126px;
}

.audience-card--full {
  min-height: 126px;
  grid-column: 1 / -1;
  color: #fff;
  border-color: var(--navy-800);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

.audience-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 12px;
  color: var(--accent-strong);
  background: var(--surface-blue);
}

.audience-card--wide .audience-icon,
.audience-card--full .audience-icon {
  flex: 0 0 45px;
}

.audience-card--full .audience-icon {
  color: var(--accent);
  background: rgba(74, 182, 255, 0.12);
}

.audience-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.audience-card--wide h3,
.audience-card--full h3 {
  margin-top: 0;
}

.audience-card p {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.audience-card--full p {
  color: #9eb2c8;
}

.audience-arrow {
  position: relative;
  z-index: 1;
  margin-left: auto;
  color: var(--accent);
  font-size: 25px;
}

/* Возможности -------------------------------------------------------------- */
.heading-aside {
  padding-left: 28px;
  border-left: 2px solid #dce6ef;
}

.heading-aside > p {
  font-size: 14px;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  color: #647389;
  font-size: 10px;
  font-weight: 650;
}

.status-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-dot--planned {
  background: var(--accent-strong);
}

.status-dot--development {
  background: #e4a14f;
}

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

.capability-card {
  position: relative;
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.capability-card:hover {
  border-color: #bdd9eb;
  box-shadow: 0 17px 42px rgba(11, 37, 68, 0.08);
  transform: translateY(-3px);
}

.capability-card--feature,
.capability-card--wide {
  grid-column: span 2;
}

.capability-card--feature {
  min-height: 295px;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 30px;
  background: linear-gradient(135deg, #f6fbff, #fff 68%);
}

.capability-card--dark {
  color: #fff;
  border-color: var(--navy-800);
  background:
    radial-gradient(circle at 95% 0%, rgba(74, 182, 255, 0.16), transparent 40%),
    var(--navy-900);
}

.capability-card--wide {
  min-height: 210px;
}

.capability-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.capability-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 12px;
  color: var(--accent-strong);
  background: var(--surface-blue);
}

.capability-card--dark .capability-icon {
  color: var(--accent);
  background: rgba(74, 182, 255, 0.12);
}

.capability-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.capability-status--planned {
  color: #0975b7;
  background: #e5f5ff;
}

.capability-status--development {
  color: #9a5c11;
  background: #fff1db;
}

.capability-card--dark .capability-status--planned {
  color: #99d8ff;
  background: rgba(74, 182, 255, 0.12);
}

.capability-card h3 {
  margin: auto 0 10px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

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

.capability-card--dark p {
  color: #9eb1c7;
}

.capability-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.capability-content h3 {
  margin-top: auto;
}

.capability-visual {
  display: grid;
  flex: 0 0 47%;
  align-self: stretch;
  place-items: center;
}

.mini-window {
  position: relative;
  width: 100%;
  max-width: 235px;
  padding: 36px 18px 18px;
  border: 1px solid #d9e4ed;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(13, 40, 75, 0.09);
  transform: rotate(-3deg);
}

.mini-window > span {
  position: absolute;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cfdae5;
}

.mini-window > span:nth-child(1) { left: 15px; }
.mini-window > span:nth-child(2) { left: 24px; }
.mini-window > span:nth-child(3) { left: 33px; }

.mini-route {
  display: grid;
  grid-template-columns: 9px 1fr 9px;
  align-items: center;
  padding: 13px 10px;
  border-radius: 8px;
  background: #f1f7fb;
}

.mini-route i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
}

.mini-route i:last-child {
  background: var(--navy-800);
}

.mini-route b {
  height: 1px;
  border-top: 1px dashed #aab8c7;
}

.mini-fields {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.mini-fields span {
  width: 50%;
  height: 26px;
  border: 1px solid #e2e9f0;
  border-radius: 6px;
}

.status-track {
  display: flex;
  gap: 5px;
  margin-top: 24px;
}

.status-track i {
  height: 3px;
  flex: 1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.13);
}

.status-track i:first-child,
.status-track i:nth-child(2) {
  background: var(--success);
}

.status-track i.active {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(74, 182, 255, 0.4);
}

.capability-card--photo {
  background: #f6f9fc;
}

.photo-comparison {
  display: flex;
  flex: 0 0 48%;
  gap: 8px;
}

.photo-comparison > div {
  position: relative;
  display: grid;
  min-width: 0;
  flex: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 10px;
  color: #8aa0b5;
  background: linear-gradient(155deg, #eaf1f7, #dce8f1);
}

.photo-comparison span {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 5px;
  border-radius: 4px;
  color: #667a90;
  background: rgba(255, 255, 255, 0.8);
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-comparison svg {
  width: 88%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-comparison > div:last-child {
  color: var(--accent-strong);
  background: linear-gradient(155deg, #e9f7ff, #d9effc);
}

.development-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 20px 23px;
  border: 1px solid #dce6ef;
  border-radius: 14px;
  background: #f7fafd;
}

.development-note > span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  background: #deeffb;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.development-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.development-note strong {
  color: var(--ink);
}

/* Проверка водителей ------------------------------------------------------- */
.security {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(44, 143, 213, 0.13), transparent 31%),
    var(--navy-950);
}

.security-grid {
  opacity: 0.25;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.security-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  gap: 90px;
  align-items: center;
}

.security-copy h2 {
  max-width: 660px;
}

.security-lead {
  margin-bottom: 34px;
  color: #a9bacd;
  font-size: 16px;
  line-height: 1.7;
}

.verification-list {
  display: grid;
  margin: 0 0 32px;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
  list-style: none;
}

.verification-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dce6f0;
  font-size: 13px;
}

.verification-list li > span {
  display: grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(74, 182, 255, 0.12);
}

.verification-list svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-disclaimer {
  display: flex;
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.security-disclaimer svg {
  flex: 0 0 24px;
  width: 24px;
  color: #82cfff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-disclaimer p {
  margin: 0;
  color: #8fa4bb;
  font-size: 12px;
  line-height: 1.6;
}

.verification-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: var(--ink);
  background: #f4f7fa;
  box-shadow: 0 35px 80px rgba(0, 9, 24, 0.35), 0 0 0 8px rgba(255, 255, 255, 0.025);
}

.verification-panel::before {
  position: absolute;
  z-index: -1;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(74, 182, 255, 0.19);
  border-radius: 50%;
  content: "";
}

.verification-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 17px;
  border-bottom: 1px solid #dbe3eb;
}

.verification-panel__head span,
.verification-panel__head strong {
  display: block;
}

.verification-panel__head > div > span {
  margin-bottom: 2px;
  color: #8795a7;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verification-panel__head strong {
  font-size: 15px;
}

.verification-stage {
  display: flex !important;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 20px;
  color: #0975b7;
  background: #e3f4ff;
  font-size: 8px;
  font-weight: 800;
}

.verification-stage i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
  animation: pulse 2.2s ease-out infinite;
}

.profile-block {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 0;
}

.profile-avatar {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 13px;
  color: #668099;
  background: #e4ecf3;
}

.profile-avatar svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.profile-block small,
.profile-block strong,
.profile-block span {
  display: block;
}

.profile-block small {
  color: #8a97a8;
  font-size: 8px;
}

.profile-block strong {
  margin: 1px 0;
  font-size: 13px;
}

.profile-block span {
  color: #65758a;
  font-size: 8px;
}

.document-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.document-grid > div {
  position: relative;
  display: grid;
  min-height: 70px;
  padding: 11px 12px 10px 48px;
  border: 1px solid #dce4ec;
  border-radius: 10px;
  background: #fff;
}

.document-grid > div > span {
  position: absolute;
  top: 13px;
  left: 12px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 7px;
  color: var(--accent-strong);
  background: #eaf6ff;
}

.document-grid svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.document-grid small {
  color: #8794a4;
  font-size: 7px;
}

.document-grid b {
  font-size: 9px;
}

.document-grid i {
  position: absolute;
  right: 10px;
  bottom: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d79b45;
}

.truck-profile {
  display: grid;
  margin-top: 8px;
  padding: 15px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  border: 1px solid #dce4ec;
  border-radius: 12px;
  background: #fff;
}

.truck-illustration {
  display: grid;
  min-height: 105px;
  place-items: center;
  border-radius: 9px;
  color: #7091ac;
  background: linear-gradient(155deg, #edf4f9, #dce8f0);
}

.truck-illustration svg {
  width: 90%;
  fill: rgba(93, 130, 159, 0.12);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.truck-data {
  display: grid;
  gap: 10px;
  align-content: center;
}

.truck-data > div {
  padding-bottom: 9px;
  border-bottom: 1px solid #edf1f5;
}

.truck-data > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.truck-data small,
.truck-data b {
  display: block;
}

.truck-data small {
  margin-bottom: 3px;
  color: #8b98a8;
  font-size: 7px;
}

.truck-data b {
  font-size: 9px;
}

.manual-review {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-800);
}

.manual-review > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 8px;
  color: var(--accent);
  background: rgba(74, 182, 255, 0.12);
}

.manual-review svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manual-review small,
.manual-review b {
  display: block;
}

.manual-review small {
  color: #92a8bd;
  font-size: 7px;
}

.manual-review b {
  font-size: 9px;
}

.manual-review em {
  margin-left: auto;
  padding: 5px 7px;
  border-radius: 5px;
  color: #8fd3ff;
  background: rgba(74, 182, 255, 0.11);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

/* Пилотный запуск ---------------------------------------------------------- */
.pilot {
  overflow: hidden;
  background: #fff;
}

.pilot-shell {
  position: relative;
  display: grid;
  padding: 66px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 85px;
  border: 1px solid #cfe5f3;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 182, 255, 0.2), transparent 38%),
    linear-gradient(135deg, #e8f6ff 0%, #f6fbff 52%, #eaf5fc 100%);
}

.pilot-shell::after {
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(19, 142, 220, 0.12);
  border-radius: 50%;
  content: "";
}

.pilot-copy,
.pilot-results {
  position: relative;
  z-index: 1;
}

.pilot-copy > p {
  margin-bottom: 30px;
  color: #4d6177;
}

.pilot-results {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 45px rgba(20, 74, 111, 0.09);
  backdrop-filter: blur(8px);
}

.pilot-results h3 {
  margin-bottom: 20px;
  font-size: 16px;
}

.pilot-results ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1px;
  list-style: none;
}

.pilot-results li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #dfebf3;
}

.pilot-results li:last-child {
  border-bottom: 0;
}

.pilot-results li > span {
  display: grid;
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  color: var(--accent-dark);
  background: #e2f3fd;
  font-size: 9px;
  font-weight: 800;
}

.pilot-results p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.pilot-path {
  display: grid;
  margin-top: 36px;
  padding: 0 18px;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
}

.pilot-path__step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pilot-path__step > span {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d7e1ea;
  border-radius: 50%;
  color: #7b8a9c;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
}

.pilot-path__step.is-current > span {
  color: #fff;
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  box-shadow: 0 0 0 6px rgba(19, 142, 220, 0.09);
}

.pilot-path__step b,
.pilot-path__step small {
  display: block;
}

.pilot-path__step b {
  font-size: 12px;
}

.pilot-path__step small {
  margin-top: 1px;
  color: #8491a2;
  font-size: 9px;
}

.pilot-path > i {
  height: 1px;
  margin: 0 18px;
  background: linear-gradient(90deg, #cbd6e1, #e3e9ef);
}

/* Форма -------------------------------------------------------------------- */
.request-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  gap: 90px;
  align-items: start;
}

.request-intro {
  position: sticky;
  top: 40px;
}

.request-intro > p {
  margin-bottom: 30px;
}

.request-direct {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 0;
  border-top: 1px solid #dce5ed;
  border-bottom: 1px solid #dce5ed;
}

.request-direct > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 10px;
  color: var(--accent-strong);
  background: #e5f4fd;
}

.request-direct svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.request-direct small,
.request-direct a {
  display: block;
}

.request-direct small {
  margin-bottom: 2px;
  color: #7b899b;
  font-size: 9px;
  text-transform: uppercase;
}

.request-direct a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.request-direct a:hover {
  color: var(--accent-dark);
}

.request-facts {
  display: grid;
  margin-top: 25px;
  gap: 17px;
}

.request-facts > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.request-facts > div > span {
  padding-top: 3px;
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 800;
}

.request-facts p {
  margin: 0;
}

.request-facts b,
.request-facts small {
  display: block;
}

.request-facts b {
  font-size: 13px;
}

.request-facts small {
  margin-top: 2px;
  color: #7c8a9b;
  font-size: 11px;
}

.pilot-form {
  padding: 37px;
  border: 1px solid #dae4ed;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(9, 31, 59, 0.08);
}

.form-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 29px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e4eaf0;
}

.form-head span,
.form-head h3 {
  display: block;
}

.form-head span {
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-head h3 {
  margin: 0;
  font-size: 21px;
}

.form-head > small {
  color: var(--muted);
  font-size: 10px;
}

.form-head > small i {
  color: var(--danger);
  font-style: normal;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 15px;
}

.form-field {
  min-width: 0;
}

.form-field--full,
.checkbox-field.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #273b54;
  font-size: 11px;
  font-weight: 700;
}

.form-field label > span {
  color: var(--danger);
}

.form-field label small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  display: block;
  width: 100%;
  border: 1px solid #d7e0e9;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfd;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input {
  min-height: 49px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 108px;
  padding: 13px 14px;
  line-height: 1.5;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  font-size: 12px;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: #b8c7d5;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent-strong);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(19, 142, 220, 0.1);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.checkbox-field input[aria-invalid="true"] {
  border-color: var(--danger);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 2px 0;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent-strong);
}

.checkbox-field label {
  color: #5f6e81;
  font-size: 11px;
  line-height: 1.55;
}

.checkbox-field a {
  color: #076fae;
  text-underline-offset: 2px;
}

.field-error {
  display: block;
  grid-column: 1 / -1;
  margin-top: 5px;
  color: var(--danger);
  font-size: 10px;
  line-height: 1.4;
}

.field-error[hidden] {
  display: none;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid #e4eaf0;
}

.button--submit {
  flex: 0 0 auto;
  color: #fff;
  background: var(--navy-800);
  box-shadow: none;
}

.button--submit:hover {
  color: var(--navy-950);
  background: var(--accent);
}

.form-submit p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 15px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.55;
}

.form-status.is-error,
.form-status.is-success {
  display: block;
}

.form-status.is-error {
  color: #942d39;
  border: 1px solid #efc9ce;
  background: #fff0f2;
}

.form-status.is-success {
  color: #126f54;
  border: 1px solid #bfe3d6;
  background: #edfaf5;
}

/* Контакты ----------------------------------------------------------------- */
.contacts {
  background: #fff;
}

.contacts .section-heading {
  margin-bottom: 46px;
}

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

.contact-card {
  min-height: 194px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  border-color: #bfd9e9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.contact-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 11px;
  color: var(--accent-strong);
  background: var(--surface-blue);
}

.contact-card svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.contact-card h3 a {
  text-decoration: none;
}

.contact-card h3 a:hover {
  color: var(--accent-dark);
}

.contact-card--accent {
  color: #fff;
  border-color: var(--navy-800);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
}

.contact-card--accent > span {
  color: var(--accent);
  background: rgba(74, 182, 255, 0.12);
}

.contact-card--accent small {
  color: #90a5bb;
}

.contact-card--accent h3 a:hover {
  color: var(--accent);
}

/* Подвал ------------------------------------------------------------------- */
.site-footer {
  color: #fff;
  background: #051124;
}

.footer-main {
  display: grid;
  padding-top: 68px;
  padding-bottom: 58px;
  grid-template-columns: 1.35fr 0.7fr 0.95fr 1fr;
  gap: 56px;
}

.footer-brand-block p {
  max-width: 290px;
  margin: 22px 0 0;
  color: #8296ad;
  font-size: 12px;
  line-height: 1.65;
}

.brand--footer .brand-name strong {
  color: #8296ad;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav > strong,
.footer-contact > strong {
  margin-bottom: 9px;
  color: #e7eef6;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.footer-contact > span {
  width: fit-content;
  color: #8296ad;
  font-size: 11px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  color: var(--accent) !important;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #6f839b;
  font-size: 10px;
}

.pilot-state {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pilot-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(74, 182, 255, 0.1);
}

.to-top {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  background: var(--navy-800);
  box-shadow: 0 12px 30px rgba(5, 17, 36, 0.22);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  color: var(--navy-950);
  background: var(--accent);
}

.to-top svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Юридические страницы ----------------------------------------------------- */
.legal-page {
  color: var(--ink);
  background: var(--surface-soft);
}

.legal-header {
  position: relative;
  color: #fff;
  background: var(--navy-950);
}

.legal-header__inner {
  min-height: 78px;
}

.legal-header .brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  color: var(--navy-950);
  background: var(--accent);
  font-size: 17px;
  font-weight: 900;
}

.legal-header .brand__text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 15px;
}

.legal-header .brand__text strong {
  letter-spacing: 0.07em;
}

.legal-header .brand__text span {
  color: #a9b9cb;
  font-size: 12px;
}

.legal-main {
  padding-bottom: 80px;
}

.legal-hero {
  padding: 76px 0 68px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(74, 182, 255, 0.16), transparent 38%),
    var(--navy-900);
}

.legal-document {
  width: min(calc(100% - 48px), 860px);
}

.legal-hero .eyebrow {
  color: var(--accent);
}

.legal-hero h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.legal-intro {
  max-width: 690px;
  margin-bottom: 20px;
  color: #b4c2d2;
  font-size: 17px;
}

.legal-updated {
  margin: 0;
  color: #7f96ae;
  font-size: 11px;
}

.legal-notice {
  margin: 36px 0 18px;
  padding: 20px 23px;
  border: 1px solid #b9dff4;
  border-radius: 14px;
  color: #40566d;
  background: #e8f6ff;
  font-size: 13px;
  line-height: 1.65;
}

.legal-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.legal-card {
  padding: 42px 46px;
  border: 1px solid #dce5ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-section {
  padding: 31px 0;
  border-bottom: 1px solid #e5ebf1;
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 15px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.legal-section p,
.legal-section li {
  color: #55667b;
  font-size: 14px;
  line-height: 1.75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: #0879c1;
  text-underline-offset: 3px;
}

.legal-list {
  margin: 15px 0 19px;
  padding-left: 20px;
}

.legal-list li {
  padding-left: 4px;
  margin-bottom: 6px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-actions .button--primary {
  color: #fff;
  background: var(--navy-800);
  box-shadow: none;
}

.legal-actions .button--ghost {
  color: var(--ink);
  border-color: #cfd9e3;
  background: #fff;
}

.legal-actions .text-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-footer {
  padding: 24px 0;
  color: #8492a3;
  background: var(--navy-950);
}

.legal-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-footer p,
.legal-footer a {
  margin: 0;
  color: inherit;
  font-size: 10px;
}

/* Анимация появления включается только при наличии JavaScript. */
.js .reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

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

.workflow-card:nth-child(2),
.audience-card:nth-child(2),
.capability-card:nth-child(2),
.contact-card:nth-child(2) {
  transition-delay: 0.05s;
}

.workflow-card:nth-child(3),
.audience-card:nth-child(3),
.capability-card:nth-child(3),
.contact-card:nth-child(3) {
  transition-delay: 0.1s;
}

/* Адаптивность ------------------------------------------------------------- */
@media (max-width: 1120px) {
  .nav-links {
    gap: 18px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 5.4vw, 3.8rem);
  }

  .floating-card--photo {
    left: -12px;
  }

  .floating-card--status {
    right: -8px;
  }

  .audience-layout,
  .request-layout {
    gap: 55px;
  }

  .security-layout {
    gap: 50px;
  }

  .pilot-shell {
    gap: 55px;
    padding: 52px;
  }

  .footer-main {
    gap: 34px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 92px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 15px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-product {
    width: min(100%, 690px);
    min-height: 620px;
    margin-inline: auto;
  }

  .hero-principles {
    margin-top: 16px;
  }

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

  .audience-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .audience-copy,
  .request-intro {
    position: static;
    max-width: 720px;
  }

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

  .heading-aside {
    max-width: 690px;
  }

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

  .security-layout {
    grid-template-columns: 1fr;
  }

  .security-copy {
    max-width: 750px;
  }

  .verification-panel {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .pilot-shell {
    grid-template-columns: 1fr;
  }

  .pilot-path {
    padding-inline: 0;
  }

  .pilot-path__step div {
    display: none;
  }

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

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

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

@media (max-width: 1080px) {
  .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    background: rgba(5, 17, 36, 0.9);
    backdrop-filter: blur(14px);
  }

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - 72px);
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 19px 24px 30px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 17, 36, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0s linear 0.22s;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 15px;
  }

  .nav-links a::after {
    display: none;
  }

  .button--header {
    width: 100%;
  }
}

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

  .section {
    padding: 76px 0;
  }

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

  .section-heading h2,
  .audience-copy h2,
  .security-copy h2,
  .pilot-copy h2,
  .request-intro h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .section-heading > p,
  .audience-copy > p,
  .pilot-copy > p,
  .request-intro > p {
    font-size: 15px;
  }

  .hero {
    padding-top: 122px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.8vw, 3.35rem);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-product {
    min-height: 535px;
    padding-top: 25px;
  }

  .product-window {
    transform: none;
  }

  .floating-card {
    display: none;
  }

  .window-body {
    padding: 12px;
  }

  .driver-card {
    padding-inline: 9px;
  }

  .arrival-time {
    padding-left: 7px;
  }

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

  .principle-item,
  .principle-item:first-child {
    min-height: 78px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .principle-item:last-child {
    border-bottom: 0;
  }

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

  .workflow-card {
    min-height: 240px;
  }

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

  .audience-card--full {
    grid-column: auto;
  }

  .audience-card--full,
  .audience-card--wide {
    min-height: 145px;
  }

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

  .capability-card--feature,
  .capability-card--wide {
    grid-column: auto;
  }

  .capability-card--feature {
    min-height: 310px;
    flex-direction: column;
    align-items: stretch;
  }

  .capability-visual,
  .photo-comparison {
    min-height: 120px;
    flex-basis: auto;
  }

  .capability-content h3 {
    margin-top: 25px;
  }

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

  .verification-panel {
    padding: 17px;
  }

  .truck-profile {
    grid-template-columns: 1fr;
  }

  .pilot-shell {
    padding: 31px 22px;
    gap: 38px;
    border-radius: 20px;
  }

  .pilot-results {
    padding: 21px;
  }

  .pilot-path {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    padding-left: 9px;
  }

  .pilot-path__step {
    gap: 14px;
  }

  .pilot-path__step div {
    display: block;
  }

  .pilot-path > i {
    width: 1px;
    height: 28px;
    margin: 0 0 0 20px;
  }

  .pilot-form {
    padding: 25px 20px;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

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

  .form-field--full,
  .checkbox-field.form-field--full {
    grid-column: auto;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .button--submit {
    width: 100%;
  }

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

  .contact-card {
    min-height: 170px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 26px;
  }

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

  .footer-bottom {
    min-height: 90px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
  }

  .legal-document {
    width: min(calc(100% - 32px), 860px);
  }

  .legal-header .button {
    min-height: 40px;
    padding-inline: 13px;
  }

  .legal-header .button span + * {
    display: none;
  }

  .legal-hero {
    padding: 58px 0 52px;
  }

  .legal-card {
    padding: 26px 21px;
  }

  .legal-notice {
    padding: 17px;
  }

  .legal-footer .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 15px;
  }

  .brand-name strong {
    display: block;
    font-size: 10px;
    line-height: 1;
  }

  .hero-product {
    min-height: 495px;
    margin-inline: -6px;
    width: calc(100% + 12px);
  }

  .window-bar {
    padding-inline: 11px;
  }

  .demo-label {
    display: none;
  }

  .route-line {
    grid-template-columns: 8px minmax(0, 1fr) 15px 8px minmax(0, 1fr);
    gap: 5px;
  }

  .driver-avatar {
    display: none;
  }

  .selected-check {
    display: none;
  }

  .progress-step small {
    font-size: 5.5px;
  }

  .audience-card--full,
  .audience-card--wide {
    align-items: flex-start;
    flex-direction: column;
  }

  .audience-arrow {
    position: absolute;
    top: 22px;
    right: 22px;
  }

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

  .manual-review em {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-block,
  .footer-contact {
    grid-column: auto;
  }

  .legal-header .brand__text span {
    display: none;
  }

  .legal-back {
    font-size: 0;
  }

  .legal-back span {
    font-size: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Многостраничная архитектура --------------------------------------------- */
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Читаемость мелких подписей в демонстрационном интерфейсе. */
.window-brand { font-size: 12px; }
.demo-label { font-size: 9px; }
.window-avatar { font-size: 9px; }
.request-kicker { font-size: 9px; }
.request-card__head strong { font-size: 13px; }
.request-status { font-size: 9px; }
.route-line small { font-size: 8px; }
.route-line b { font-size: 10px; }
.request-meta span { font-size: 8px; }
.response-head strong { font-size: 11px; }
.response-head > span { font-size: 8px; }
.driver-info strong { font-size: 10px; }
.driver-info > span { font-size: 8px; }
.selected-badge { font-size: 7px; }
.arrival-time small { font-size: 7px; }
.arrival-time strong { font-size: 10px; }
.progress-step small { font-size: 7px; }
.floating-card b { font-size: 11px; }
.floating-card small { font-size: 8px; }
.principle-item small { font-size: 11px; }

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.inline-link span {
  transition: transform 0.2s ease;
}

.inline-link:hover span {
  transform: translateX(3px);
}

.section-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-lead--light {
  color: #b0c0d1;
}

/* Короткая главная --------------------------------------------------------- */
.hero--home {
  min-height: 900px;
}

.home-process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.home-process-card {
  min-height: 215px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-process-card:hover {
  z-index: 1;
  background: #f8fbfe;
  box-shadow: 0 16px 36px rgba(13, 40, 75, 0.08);
  transform: translateY(-3px);
}

.home-process-card > span {
  display: grid;
  width: 36px;
  height: 30px;
  margin-bottom: 35px;
  place-items: center;
  border-radius: 8px;
  color: var(--accent-dark);
  background: var(--surface-blue);
  font-size: 10px;
  font-weight: 800;
}

.home-process-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.home-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 88px;
  align-items: center;
}

.home-split h2,
.home-pilot-card h2,
.home-contact h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

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

.company-chip-grid span {
  position: relative;
  min-height: 78px;
  padding: 25px 20px 20px 54px;
  border: 1px solid #dce5ed;
  border-radius: 13px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(12, 35, 65, 0.035);
}

.company-chip-grid span::before {
  position: absolute;
  top: 29px;
  left: 22px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(19, 142, 220, 0.14);
  content: "";
}

.company-chip-grid .company-chip--wide {
  grid-column: 1 / -1;
}

.home-safety {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(49, 148, 219, 0.13), transparent 34%),
    var(--navy-950);
}

.home-split--reverse {
  grid-template-columns: minmax(420px, 1.06fr) minmax(0, 0.94fr);
}

.home-split--reverse > * {
  position: relative;
  z-index: 1;
}

.safety-preview {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: var(--ink);
  background: #f5f8fb;
  box-shadow: 0 28px 70px rgba(0, 9, 24, 0.3);
}

.safety-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 17px;
  border-bottom: 1px solid #dce5ed;
  color: #52667c;
  font-size: 11px;
  font-weight: 700;
}

.safety-preview__head i {
  padding: 6px 9px;
  border-radius: 20px;
  color: #0875b5;
  background: #e4f5ff;
  font-size: 9px;
  font-style: normal;
}

.safety-preview__profile {
  padding: 24px 0 20px;
}

.safety-preview__profile b,
.safety-preview__profile small {
  display: block;
}

.safety-preview__profile b {
  margin-bottom: 3px;
  font-size: 17px;
}

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

.safety-preview__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.safety-preview__checks span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #dce5ed;
  border-radius: 9px;
  background: #fff;
  font-size: 11px;
  font-weight: 650;
}

.safety-preview__checks i {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: 10px;
  font-style: normal;
}

.safety-preview__decision {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-800);
  font-size: 12px;
  font-weight: 700;
}

.safety-preview__decision i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(74, 182, 255, 0.12);
}

.honesty-note {
  margin: 0 0 28px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #9fb2c8;
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  line-height: 1.6;
}

.home-pilot-card {
  display: grid;
  padding: 52px 56px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 65px;
  align-items: center;
  border: 1px solid #cfe4f1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 182, 255, 0.18), transparent 35%),
    linear-gradient(135deg, #eaf7ff, #f7fbfe);
}

.home-pilot-card p {
  max-width: 680px;
  margin: 0;
  color: #53677d;
  font-size: 15px;
  line-height: 1.7;
}

.home-pilot-actions {
  display: grid;
  justify-items: center;
}

.home-contact {
  padding: 82px 0;
  color: #fff;
  background: linear-gradient(130deg, var(--navy-900), var(--navy-800));
}

.home-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 65px;
  align-items: center;
}

.home-contact h2 {
  margin-bottom: 14px;
}

.home-contact p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #a7b9cc;
}

.home-contact__inner > div:last-child {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.home-contact__email {
  color: #afc0d2;
  font-size: 11px;
  text-decoration: none;
}

.home-contact__email:hover {
  color: var(--accent);
}

/* Общие элементы внутренних страниц -------------------------------------- */
.page-hero {
  position: relative;
  min-height: 465px;
  padding: 148px 0 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 28%, rgba(55, 157, 231, 0.17), transparent 31%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero::after {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 31px;
  color: #90a6bd;
  font-size: 11px;
}

.breadcrumbs a {
  color: #b8c7d7;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span[aria-hidden="true"] {
  color: #5f7790;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 21px;
  font-size: clamp(2.55rem, 5.3vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-hero .security-layout h1 {
  font-size: clamp(2.45rem, 4.5vw, 3.65rem);
}

.page-hero .security-layout > * {
  min-width: 0;
}

.page-hero__lead,
.page-lead {
  max-width: 760px;
  margin: 0;
  color: #b4c3d3;
  font-size: 17px;
  line-height: 1.7;
}

.inner-section {
  padding: 96px 0;
}

.inner-section--soft {
  background: var(--surface-soft);
}

.inner-section--navy {
  color: #fff;
  background: var(--navy-950);
}

.content-narrow {
  width: min(100%, 820px);
}

.inner-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.inner-heading--center {
  margin-inline: auto;
  text-align: center;
}

.inner-heading--center .eyebrow {
  justify-content: center;
}

.inner-heading h2 {
  margin-bottom: 17px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.inner-section--navy .inner-heading p {
  color: #a8b9cb;
}

.status-banner,
.status-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 20px;
  border: 1px solid #c9e1f0;
  border-radius: 13px;
  color: #456079;
  background: #ebf7fe;
  font-size: 13px;
  line-height: 1.65;
}

.status-banner > span,
.status-note > span {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  background: #d4edf9;
  font-weight: 800;
}

.status-banner p,
.status-note p {
  margin: 0;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 32px;
}

.page-actions .button--secondary,
.page-actions .button--ghost {
  color: var(--ink);
  border-color: #ccd8e3;
  background: #fff;
}

.page-actions .button--secondary:hover,
.page-actions .button--ghost:hover {
  border-color: #9fcce6;
  background: #f3f9fd;
}

.page-cta {
  padding: 74px 0;
  color: #fff;
  background: linear-gradient(130deg, var(--navy-900), var(--navy-800));
}

.page-cta__inner,
.page-cta > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.page-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-cta p {
  max-width: 680px;
  margin: 0;
  color: #a8b9cb;
}

.footer-main {
  align-items: start;
}

@media (max-width: 1080px) {
  .nav-links a[aria-current="page"] {
    margin-inline: -8px;
    padding-inline: 10px;
    border-radius: 8px;
    background: rgba(74, 182, 255, 0.1);
  }

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

  .home-split,
  .home-split--reverse {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .home-split > div:first-child,
  .home-split--reverse > div:last-child {
    max-width: 760px;
  }

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

  .page-hero .security-copy {
    max-width: 760px;
  }

  .page-hero .verification-panel {
    width: min(100%, 680px);
    margin-inline: auto;
  }
}

@media (max-width: 780px) {
  .hero--home {
    min-height: auto;
  }

  .home-pilot-card,
  .home-contact__inner,
  .page-cta__inner,
  .page-cta > .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-pilot-actions,
  .home-contact__inner > div:last-child {
    justify-items: start;
  }

  .page-hero {
    min-height: 420px;
    padding: 128px 0 68px;
  }
}

@media (max-width: 560px) {
  .home-process-grid,
  .company-chip-grid,
  .safety-preview__checks {
    grid-template-columns: 1fr;
  }

  .company-chip-grid .company-chip--wide {
    grid-column: auto;
  }

  .home-process-card {
    min-height: 185px;
  }

  .home-pilot-card {
    padding: 32px 22px;
  }

  .home-contact {
    padding: 66px 0;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9.6vw, 2.65rem);
  }

  .page-hero__lead,
  .page-lead {
    font-size: 15px;
  }

  .inner-section {
    padding: 74px 0;
  }

  .page-actions {
    display: grid;
  }

  .page-actions .button {
    width: 100%;
  }
}

/* Детальные страницы: процесс и пилот ------------------------------------- */
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: #5f7790;
  content: "/";
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 72px;
  align-items: center;
}

.page-hero__copy,
.page-hero__panel {
  min-width: 0;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.page-hero__panel {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(248, 251, 253, 0.98);
  box-shadow: 0 28px 65px rgba(0, 11, 29, 0.28), 0 0 0 7px rgba(255, 255, 255, 0.025);
}

.process-preview > .demo-label {
  display: inline-block;
  color: #4f647a;
  background: #eaf2f7;
}

.process-preview__route {
  display: grid;
  grid-template-columns: 28px 1fr 28px 1fr 28px 1fr 28px;
  align-items: center;
  margin: 25px 0;
}

.process-preview__route span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #cfd9e3;
  border-radius: 50%;
  color: #7a899b;
  background: #fff;
  font-size: 8px;
  font-weight: 800;
}

.process-preview__route span.is-complete {
  color: #fff;
  border-color: var(--success);
  background: var(--success);
}

.process-preview__route span.is-current {
  color: #fff;
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  box-shadow: 0 0 0 5px rgba(19, 142, 220, 0.1);
}

.process-preview__route i {
  height: 1px;
  background: #d3dde6;
}

.process-preview__status {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-radius: 10px;
  background: #edf7fd;
}

.process-preview__status small,
.process-preview__status strong {
  display: block;
}

.process-preview__status small {
  margin-bottom: 2px;
  color: #687b90;
  font-size: 9px;
}

.process-preview__status strong {
  font-size: 12px;
}

.process-preview__facts {
  display: grid;
  margin: 15px 0 0;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.process-preview__facts > div {
  padding: 12px;
  border: 1px solid #dfe6ed;
  border-radius: 9px;
  background: #fff;
}

.process-preview__facts dt,
.process-preview__facts dd {
  margin: 0;
}

.process-preview__facts dt {
  margin-bottom: 3px;
  color: #718196;
  font-size: 8px;
}

.process-preview__facts dd {
  font-size: 10px;
  font-weight: 700;
}

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

.process-map__item {
  position: relative;
  display: grid;
  min-height: 178px;
  padding: 25px 25px 24px;
  grid-template-columns: 54px 1fr;
  gap: 17px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.process-map__item:hover {
  border-color: #bbd9eb;
  box-shadow: 0 14px 32px rgba(12, 35, 65, 0.07);
  transform: translateY(-2px);
}

.process-map__item .step-icon {
  grid-column: 1;
  grid-row: 1;
  margin: 8px 0 0;
}

.process-map__item > div:last-child {
  grid-column: 2;
  grid-row: 1;
  padding-top: 7px;
}

.process-map__number {
  position: absolute;
  top: 17px;
  right: 19px;
  color: #b0bdca;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-map__item h3 {
  margin-bottom: 8px;
  padding-right: 26px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.process-map__item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.process-map__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.interface-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.interface-showcase > .product-window {
  max-width: none;
  margin: 0;
  transform: none;
}

.interface-sidecards {
  display: grid;
  gap: 14px;
}

.interface-sidecards .capability-card {
  min-height: 0;
}

.interface-sidecards .capability-card--photo {
  display: flex;
  grid-column: auto;
  flex-direction: column;
}

.interface-sidecards .photo-comparison {
  min-height: 110px;
  margin-top: 18px;
  flex-basis: auto;
}

.pilot-preview__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 17px;
  border-bottom: 1px solid #dbe4ec;
}

.pilot-preview__head .demo-label {
  display: inline-block;
  margin-bottom: 7px;
  color: #4f647a;
  background: #eaf2f7;
}

.pilot-preview__head h2 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.pilot-preview__core {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 19px 0;
}

.pilot-preview__base,
.pilot-preview__test {
  min-height: 76px;
  padding: 14px;
  border: 1px solid #dce5ed;
  border-radius: 10px;
  background: #fff;
}

.pilot-preview__test {
  border-color: #abd8f1;
  background: #eaf7fe;
}

.pilot-preview__core small,
.pilot-preview__core strong {
  display: block;
}

.pilot-preview__core small {
  margin-bottom: 4px;
  color: #6d7e92;
  font-size: 9px;
}

.pilot-preview__core strong {
  font-size: 11px;
  line-height: 1.35;
}

.pilot-preview__core > span {
  color: var(--accent-dark);
  font-weight: 800;
}

.pilot-preview__list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.pilot-preview__list li {
  display: flex;
  min-height: 37px;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #53667b;
  background: #edf2f6;
  font-size: 10px;
  font-weight: 650;
}

.pilot-preview__list li span {
  color: var(--accent-dark);
  font-size: 8px;
  font-weight: 800;
}

.process-map--pilot {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-map--pilot .process-map__item:last-child:nth-child(odd) {
  grid-column: auto;
}

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

.pilot-scenarios .workflow-card {
  min-height: 260px;
}

.page-cta__actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

@media (max-width: 980px) {
  .page-hero__layout,
  .interface-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-hero__copy {
    max-width: 760px;
  }

  .page-hero__panel {
    width: min(100%, 650px);
  }

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

  .process-map--pilot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .page-hero__actions {
    display: grid;
  }

  .page-hero__actions .button {
    width: 100%;
  }

  .page-hero__panel {
    padding: 20px 16px;
  }

  .process-map,
  .process-map--pilot,
  .pilot-scenarios {
    grid-template-columns: 1fr;
  }

  .process-map__item:last-child:nth-child(odd),
  .process-map--pilot .process-map__item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .process-map__item {
    min-height: 165px;
    padding: 22px 18px;
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .pilot-preview__core {
    grid-template-columns: 1fr;
  }

  .pilot-preview__core > span {
    text-align: center;
  }

  .process-preview__facts {
    grid-template-columns: 1fr;
  }

  .interface-showcase {
    margin-inline: -4px;
  }
}

/* Контакты и юридические страницы в общей оболочке. */
.contact-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-page .legal-hero {
  min-height: auto;
  padding: 138px 0 58px;
}

.legal-page .legal-hero h1 {
  max-width: 790px;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

.legal-page .legal-main {
  padding-bottom: 74px;
}

.inner-section > .container > .inner-section {
  padding: 18px 0 56px;
}

.inner-section > .container > .inner-section:last-of-type {
  padding-bottom: 0;
}

.page-cta .page-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.page-cta .page-actions .button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.page-cta .page-actions .button--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.11);
}

@media (max-width: 980px) {
  .contact-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .contact-grid--three {
    grid-template-columns: 1fr;
  }

  .legal-page .legal-hero {
    padding: 122px 0 48px;
  }

  .page-cta .page-actions {
    justify-content: stretch;
  }
}
