:root {
  --ink: #080a0f;
  --ink-2: #0c1018;
  --navy: #0f172a;
  --slate: #111827;
  --paper: #f4f6f8;
  --white: #ffffff;
  --blue: #1d4ed8;
  --blue-2: #0b63ff;
  --lime: #b7ff2a;
  --line: #e5e7eb;
  --muted: #6b7280;
  --soft: #cbd5e1;
  --container: min(1188px, calc(100vw - 56px));
  --radius: 10px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 28px 90px rgba(8, 10, 15, .18);
  --hero-height: clamp(640px, calc(100svh - 84px), 760px);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--slate);
  font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body.menu-open,
body.modal-open { overflow: hidden; }

body.menu-open .cookie-banner { display: none !important; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, canvas { display: block; max-width: 100%; }

::selection { background: rgba(183,255,42,.34); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.skip-link:focus-visible { top: 14px; }

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  color: var(--slate);
  border-bottom: 1px solid rgba(17,24,39,.09);
  box-shadow: 0 12px 38px rgba(15,23,42,.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--container);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: clamp(168px, 13.2vw, 218px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 31px 10px;
  color: rgba(17,24,39,.66);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--slate); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-actions .btn {
  min-width: 226px;
  white-space: nowrap;
  box-shadow: none;
}

.header-actions .btn-primary {
  min-height: 48px;
  background: #1d4ed8;
}

.header-actions .btn-primary:hover {
  box-shadow: 0 12px 28px rgba(29,78,216,.22);
}

.header-phone {
  color: rgba(17,24,39,.78);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 10px;
  background: rgba(17,24,39,.04);
  color: var(--slate);
}

.burger:focus {
  outline: none;
}

.burger:focus-visible {
  border-color: rgba(29,78,216,.45);
  box-shadow: 0 0 0 4px rgba(29,78,216,.12);
}

.burger span {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  gap: 10px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s ease, background .24s ease;
}

.text-link::after {
  content: "→";
  font-size: 18px;
  line-height: .8;
  transition: transform .24s var(--ease);
}

.text-link:hover::after { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, #0b63ff, #1d4ed8);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(29,78,216,.34);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(29,78,216,.42);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(183,255,42,.44);
  background: rgba(255,255,255,.07);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-height);
  color: var(--white);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8,10,15,.88) 0%, rgba(8,10,15,.74) 34%, rgba(8,10,15,.32) 68%, rgba(8,10,15,.64) 100%),
    linear-gradient(180deg, rgba(8,10,15,.12), rgba(8,10,15,.58)),
    url("/assets/img/hero-control-center.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  min-height: var(--hero-height);
  margin: 0 auto;
  padding: clamp(42px, 5.6vw, 72px) 0 30px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, .82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

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

.hero-copy h1 { margin-top: 0; }

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 5.45vw, 72px);
  line-height: 1.01;
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 span { color: var(--lime); }

.hero-lead {
  max-width: 580px;
  margin: 0 0 26px;
  color: rgba(255,255,255,.76);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-claims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-claim {
  padding: 14px 18px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  font-weight: 800;
}

.hero-claim strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 15px;
}

.ops-console {
  position: relative;
  align-self: center;
  border: 1px solid rgba(229,231,235,.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15,23,42,.76), rgba(8,10,15,.64));
  box-shadow: 0 34px 100px rgba(0,0,0,.46);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.ops-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 24%, rgba(183,255,42,.16), transparent 34%),
              radial-gradient(circle at 28% 72%, rgba(29,78,216,.24), transparent 42%);
  pointer-events: none;
}

.ops-map {
  position: relative;
  height: 210px;
  background:
    linear-gradient(180deg, rgba(8,10,15,.2), rgba(8,10,15,.8)),
    url("/assets/img/operations-map.png");
  background-size: cover;
  background-position: center 45%;
}

.ops-map canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ops-body {
  position: relative;
  padding: 20px;
}

.ops-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.ops-label {
  display: block;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  font-weight: 850;
}

.ops-route {
  margin-top: 5px;
  color: var(--white);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 950;
}

.ops-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(183,255,42,.55);
  border-radius: 999px;
  background: rgba(183,255,42,.11);
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.ops-field {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

.ops-field strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: 15px;
}

.stage-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.stage-line button {
  position: relative;
  min-height: 48px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.62);
  text-align: left;
  font-size: 12px;
  font-weight: 850;
}

.stage-line button::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.stage-line button.is-active {
  border-color: rgba(183,255,42,.46);
  color: var(--white);
  background: rgba(183,255,42,.08);
}

.stage-line button.is-active::before {
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(183,255,42,.1);
}

.section {
  padding: clamp(72px, 8vw, 118px) 0;
}

.section-white { background: var(--white); }
.section-paper { background: var(--paper); }
.section-dark {
  background:
    radial-gradient(circle at 18% 16%, rgba(29,78,216,.22), transparent 30%),
    radial-gradient(circle at 82% 2%, rgba(183,255,42,.11), transparent 30%),
    var(--ink);
  color: var(--white);
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

h2 {
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 920;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.72;
}

.section-dark .lead { color: rgba(255,255,255,.7); }

.approach {
  display: block;
}

.approach > div:first-child {
  max-width: 980px;
}

.approach .lead {
  max-width: 760px;
}

.route-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: clamp(34px, 4.8vw, 64px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.route-strip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 21px;
  height: 1px;
  background: linear-gradient(90deg, rgba(29,78,216,.14), rgba(29,78,216,.48), rgba(183,255,42,.52));
}

.route-step {
  position: relative;
  min-height: auto;
  padding: 0 22px 0 0;
  border: 0;
}

.route-step:nth-child(4n),
.route-step:nth-last-child(-n + 3),
.route-step:last-child { border: 0; }

.route-step span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0 0 24px;
  border: 1px solid rgba(29,78,216,.22);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(29,78,216,.12);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.route-step h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.route-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.control-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.media-frame {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0,0,0,.38);
  background: var(--ink);
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,10,15,.08), rgba(8,10,15,.54));
}

.floating-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(8,10,15,.72);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.floating-panel p { color: rgba(255,255,255,.66); margin-bottom: 0; }

.control-list {
  display: grid;
  gap: 14px;
}

.control-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

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

.control-item span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
}

.control-item p {
  margin: 0;
  color: rgba(255,255,255,.68);
}

.service-editorial {
  display: grid;
  gap: 22px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .78fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(15,23,42,.08);
}

.service-feature.reverse { grid-template-columns: minmax(360px, .78fr) minmax(0, .96fr); }

.service-feature.reverse .service-copy { order: 2; }
.service-feature.reverse .service-image { order: 1; }

.service-copy {
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 26px;
}

.service-cta {
  align-self: flex-start;
  min-width: 142px;
  padding: 0 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(244,246,248,.78);
  font-size: 12px;
  font-weight: 850;
}

.service-image {
  min-height: 390px;
  overflow: hidden;
  background: var(--ink);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.service-feature:hover .service-image img { transform: scale(1.045); }

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

.solution-row {
  padding: 28px;
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15,23,42,.07);
}

.solution-row p { color: var(--muted); margin-bottom: 0; }

.business-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(26px, 4vw, 46px);
  text-align: center;
}

.business-panel > div:first-child {
  max-width: 900px;
}

.business-panel .lead {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.business-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.business-tabs button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.72);
  text-align: center;
  white-space: nowrap;
  font-weight: 900;
}

.business-tabs button.is-active {
  color: var(--white);
  border-color: rgba(183,255,42,.44);
  background: rgba(183,255,42,.08);
}

.business-card {
  width: min(100%, 850px);
  min-height: 280px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(15,23,42,.7);
  text-align: left;
}

.business-card p { color: rgba(255,255,255,.7); }

.business-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.business-details div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: rgba(255,255,255,.68);
}

.business-details strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

.request-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8,10,15,.84), rgba(8,10,15,.58)),
    url("/assets/img/hero-control-center.png");
  background-size: cover;
  background-position: center;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(420px, .86fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.request-page-section {
  padding-top: clamp(54px, 5vw, 82px);
}

.request-page-layout {
  grid-template-columns: minmax(640px, 1.24fr) minmax(320px, .66fr);
  gap: clamp(42px, 5.5vw, 72px);
}

.request-after-panel {
  position: sticky;
  top: 112px;
  border-color: rgba(17,24,39,.08);
}

.contacts-request-layout {
  grid-template-columns: minmax(300px, .68fr) minmax(520px, 1fr);
  align-items: center;
}

.contacts-request-copy {
  max-width: 620px;
}

.contacts-request-copy .lead {
  max-width: 540px;
  margin-bottom: 28px;
}

.contacts-request-form {
  width: 100%;
}

.contacts-request .form-panel {
  max-width: 760px;
  margin-left: auto;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-lines a,
.contact-lines span {
  color: rgba(255,255,255,.74);
  font-weight: 800;
}

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

.map-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.map-head .lead {
  max-width: 620px;
  margin-bottom: 0;
}

.map-card {
  height: clamp(360px, 42vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15,23,42,.12);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.92) contrast(1.02);
}

.form-panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(15,23,42,.74);
  box-shadow: 0 28px 80px rgba(0,0,0,.36);
  backdrop-filter: blur(18px);
}

.form-panel.light {
  background: var(--white);
  border-color: rgba(17,24,39,.1);
  color: var(--slate);
  box-shadow: var(--shadow);
}

.full-request-form {
  padding: clamp(28px, 3.2vw, 42px);
}

.full-request-form .form-grid {
  gap: 16px 18px;
}

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

.field,
.check-field {
  display: grid;
  gap: 7px;
}

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

.field label,
.check-field,
.file-label {
  color: rgba(255,255,255,.74);
  font-size: 13px;
  font-weight: 850;
}

.form-panel.light .field label,
.form-panel.light .check-field,
.form-panel.light .file-label { color: rgba(17,24,39,.76); }

.field input,
.field textarea,
.field select,
.file-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(8,10,15,.38);
  color: var(--white);
  padding: 12px 14px;
  outline: none;
  font-size: 14px;
  font-weight: 760;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-panel.light .field input,
.form-panel.light .field textarea,
.form-panel.light .field select,
.form-panel.light .file-input {
  background: #f8fafc;
  border-color: rgba(17,24,39,.12);
  color: var(--slate);
}

.field textarea { min-height: 118px; resize: vertical; }

.field input:focus,
.field textarea:focus,
.field select:focus,
.file-input:focus {
  border-color: rgba(29,78,216,.78);
  box-shadow: 0 0 0 4px rgba(29,78,216,.13);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.36); }
.form-panel.light input::placeholder,
.form-panel.light textarea::placeholder { color: rgba(107,114,128,.74); }

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

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

.check-field a { color: var(--blue-2); font-weight: 900; }

.form-title {
  margin: 12px 0 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
}

.form-panel.light .form-title {
  color: var(--slate);
  border-color: rgba(17,24,39,.09);
}

.form-grid > .form-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.full-request-form .btn[type="submit"] {
  min-width: 220px;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 800;
}

.form-panel.light .form-note { color: var(--muted); }
.form-note.is-success { color: var(--lime); }
.form-note.is-error { color: #fda4af; }

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

.contact-card {
  padding: 26px;
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15,23,42,.07);
}

.contact-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-card p { margin-bottom: 0; color: var(--muted); }
.contact-card a { color: var(--slate); font-weight: 920; }

.footer {
  background: var(--white);
  color: var(--slate);
  border-top: 1px solid rgba(17,24,39,.09);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 52px 0 34px;
  display: grid;
  grid-template-columns: 1.12fr .72fr .86fr 1.06fr;
  gap: 38px;
}

.footer-logo {
  width: min(330px, 100%);
  height: auto;
  margin-bottom: 18px;
}

.footer h3 {
  color: var(--slate);
  font-size: 14px;
}

.footer p,
.footer li,
.footer a,
.footer small { color: rgba(17,24,39,.66); }

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li { margin-top: 8px; }
.footer a:hover { color: var(--slate); }

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-top-color: rgba(17,24,39,.09);
  color: rgba(17,24,39,.52);
  font-size: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-height);
  color: var(--white);
  background: var(--ink);
}

.page-hero .hero-bg {
  background-image:
    linear-gradient(90deg, rgba(8,10,15,.86), rgba(8,10,15,.38), rgba(8,10,15,.64)),
    var(--page-image, url("/assets/img/hero-control-center.png"));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  min-height: var(--hero-height);
  margin: 0 auto;
  display: grid;
  align-content: center;
  max-width: var(--container);
  padding: 72px 0;
}

.page-hero h1 {
  min-width: 0;
  max-width: min(860px, 100%);
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
  font-weight: 950;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

.page-hero .lead { max-width: 720px; color: rgba(255,255,255,.74); }

.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.plain-panel {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.number-list {
  counter-reset: n;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.number-list li {
  counter-increment: n;
  position: relative;
  padding: 18px 18px 18px 62px;
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 14px;
  background: var(--white);
}

.number-list li::before {
  content: counter(n, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.number-list strong { display: block; margin-bottom: 4px; }
.number-list span { color: var(--muted); }

.cookie-banner {
  position: fixed;
  left: 18px;
  right: auto;
  bottom: 18px;
  z-index: 140;
  display: none;
  width: min(420px, calc(100vw - 36px));
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(8,10,15,.94);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }

.cookie-banner .btn {
  min-height: 40px;
  flex: 1 1 0;
  padding: 0 14px;
  font-size: 13px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8,10,15,.68);
}

.cookie-modal.is-visible { display: flex; }

.cookie-dialog {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 32px 110px rgba(0,0,0,.38);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(17,24,39,.08);
}

.cookie-option p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

.toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
}

.toggle input { position: absolute; opacity: 0; }
.toggle span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d1d5db;
}
.toggle span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .2s ease;
}
.toggle input:checked + span { background: var(--blue); }
.toggle input:checked + span::after { transform: translateX(20px); }

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal].is-visible {
  animation: revealUp .68s var(--ease) both;
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 1160px) {
  .header-phone { display: none; }
  .site-nav a { padding-left: 9px; padding-right: 9px; }
  .route-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 34px;
  }
  .route-step,
  .route-step:nth-child(4n),
  .route-step:nth-child(2n),
  .route-step:nth-last-child(-n + 3),
  .route-step:last-child { border: 0; }
}

@media (max-width: 1320px) {
  .header-phone { display: none; }
}

@media (max-width: 1120px) {
  .header-actions .btn { display: none; }
  .burger { display: inline-flex; }
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 84px;
    min-height: calc(100svh - 84px);
    max-height: calc(100svh - 84px);
    overflow: auto;
    display: grid;
    align-content: start;
    padding: 18px 16px;
    background: #fff;
    border-bottom: 1px solid rgba(17,24,39,.1);
    box-shadow: 0 28px 70px rgba(15,23,42,.14);
    transform: translateY(-120%);
    transition: transform .3s var(--ease);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a {
    padding: 18px 8px;
    border-bottom: 1px solid rgba(17,24,39,.08);
    font-size: 18px;
  }
  .site-nav a::after { display: none; }
}

@media (max-width: 980px) {
  :root { --container: min(100vw - 32px, 760px); }

  .hero-inner,
  .approach,
  .control-story,
  .business-panel,
  .request-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .request-after-panel {
    position: static;
  }

  .contacts-request-copy,
  .contacts-request .form-panel {
    max-width: none;
  }

  .contacts-request .form-panel {
    margin-left: 0;
  }

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

  .hero-claims { grid-template-columns: 1fr; gap: 0; }
  .ops-console { margin-top: 14px; }

  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
  }
  .service-feature.reverse .service-copy,
  .service-feature.reverse .service-image { order: initial; }

  .compact-solutions,
  .business-details,
  .contact-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root { --container: min(100vw - 24px, 560px); }

  .header-inner { min-height: 68px; }
  .brand img { width: 168px; }
  .site-nav { top: 68px; min-height: calc(100svh - 68px); max-height: calc(100svh - 68px); }

  .hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .page-hero h1 {
    font-size: clamp(34px, 10.4vw, 46px);
    line-height: 1.08;
  }
  h2 { font-size: clamp(30px, 9vw, 42px); }

  .hero-bg {
    background-position: 58% center;
  }

  .hero .ops-console,
  .hero-claims {
    display: none;
  }

  .hero-actions,
  .cookie-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; }

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

  .full-request-form {
    padding: 22px;
  }

  .service-cta {
    align-self: stretch;
  }

  .map-card {
    height: 320px;
    border-radius: 18px;
  }

  .ops-map { height: 210px; }
  .ops-body { padding: 18px; }

  .route-strip {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }

  .route-strip::before {
    left: 20px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(29,78,216,.18), rgba(29,78,216,.46), rgba(183,255,42,.5));
  }

  .route-step {
    min-height: 104px;
    padding: 0 0 26px 64px;
  }

  .route-step span {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .route-step:last-child {
    padding-bottom: 0;
  }
  .ops-row { display: grid; }
  .ops-route { font-size: 25px; }
  .ops-grid,
  .stage-line,
  .compact-solutions,
  .business-details,
  .contact-grid,
  .footer-inner,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .route-strip {
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .route-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(17,24,39,.08);
  }
  .route-step span { margin-bottom: 20px; }

  .media-frame { min-height: 420px; }
  .service-image { min-height: 260px; }

  .cookie-banner {
    display: none;
    flex-direction: column;
    align-items: stretch;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 12px;
  }
  .cookie-banner.is-visible { display: flex; }
}
