:root {
  --navy-950: #061326;
  --navy-900: #081a31;
  --navy-800: #102b49;
  --navy-700: #173b60;
  --blue-600: #0d91dc;
  --blue-500: #39b6ff;
  --blue-300: #91d8ff;
  --blue-100: #dff3ff;
  --ink: #10243a;
  --muted: #566b7f;
  --line: #d8e4ed;
  --soft: #f3f8fc;
  --white: #ffffff;
  --success: #167b58;
  --danger: #b93642;
  --shadow: 0 24px 70px rgba(8, 26, 49, 0.12);
  --shadow-soft: 0 14px 40px rgba(8, 26, 49, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.45rem, 5.2vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

::selection {
  color: var(--navy-950);
  background: var(--blue-300);
}

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 750;
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(6, 19, 38, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(57, 182, 255, 0.19), rgba(255, 255, 255, 0.04));
}

.brand-symbol svg {
  width: 29px;
  height: 29px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.28rem;
  font-weight: 790;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: #aebed0;
  font-size: 0.69rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
}

.nav-links a {
  position: relative;
  padding: 27px 0 24px;
  color: #d7e2ee;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.button--primary {
  color: var(--navy-950);
  background: var(--blue-500);
  box-shadow: 0 10px 28px rgba(57, 182, 255, 0.2);
}

.button--primary:hover {
  background: #69c9ff;
}

.button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

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

.button--outline {
  color: var(--navy-800);
  border-color: #b8cbda;
  background: var(--white);
}

.button--outline:hover {
  border-color: var(--blue-600);
  color: #076da7;
}

.button--quiet {
  color: var(--navy-800);
  background: var(--blue-100);
}

.button--small {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 11px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 25%, rgba(57, 182, 255, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-950), #0b2441 65%, #10365d);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: minmax(0, 1.07fr) minmax(370px, 0.93fr);
  gap: clamp(40px, 6vw, 84px);
  padding-block: 82px 94px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #087cb9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--blue-300);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 25px;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: #c8d7e6;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
  color: #dce8f3;
  font-size: 0.94rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-points li::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 5px rgba(57, 182, 255, 0.12);
}

.route-board {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(12, 38, 66, 0.84);
  box-shadow: 0 35px 80px rgba(0, 8, 22, 0.35);
  backdrop-filter: blur(10px);
}

.route-board__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 27px;
}

.route-board__top small,
.order-card__top small {
  color: #9db4c9;
}

.route-board__state,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(57, 182, 255, 0.28);
  border-radius: 999px;
  color: var(--blue-300);
  background: rgba(57, 182, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 750;
}

.route-board__state::before,
.status-chip::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--blue-500);
}

.route-line {
  position: relative;
  display: grid;
  gap: 28px;
  padding-left: 38px;
}

.route-line::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 9px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--blue-500), rgba(57, 182, 255, 0.18));
}

.route-point {
  position: relative;
}

.route-point::before {
  position: absolute;
  top: 7px;
  left: -35px;
  width: 13px;
  height: 13px;
  content: "";
  border: 3px solid var(--navy-800);
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 2px var(--blue-500);
}

.route-point small {
  display: block;
  margin-bottom: 3px;
  color: #8fa9c0;
}

.route-point strong {
  display: block;
  color: var(--white);
  line-height: 1.35;
}

.route-meta {
  display: grid;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.route-meta div {
  padding: 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.route-meta small,
.route-meta strong {
  display: block;
}

.route-meta small {
  color: #8fa9c0;
  font-size: 0.75rem;
}

.route-meta strong {
  margin-top: 2px;
  font-size: 0.93rem;
}

.section {
  padding-block: clamp(76px, 9vw, 122px);
}

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

.section--navy {
  color: var(--white);
  background: var(--navy-900);
}

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

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

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

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--navy .section-heading p:last-child,
.section--navy .muted-light {
  color: #b7c9d9;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

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

.info-card,
.step-card,
.client-card,
.principle-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.info-card h3,
.step-card h3,
.client-card h3,
.principle-card h3,
.contact-card h3 {
  margin-bottom: 12px;
}

.info-card p:last-child,
.step-card p:last-child,
.client-card p:last-child,
.principle-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 15px;
  color: #087dbb;
  background: var(--blue-100);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card {
  padding-top: 30px;
}

.step-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--blue-500);
  font-weight: 800;
}

.split-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(42px, 7vw, 90px);
}

.split-layout--reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.split-copy h2 {
  margin-bottom: 20px;
}

.split-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list,
.plain-list,
.legal-list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 31px;
}

.check-list li::before {
  position: absolute;
  top: 0.37em;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  background: var(--blue-100);
  box-shadow: inset 0 0 0 5px var(--blue-500);
}

.experience-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 5%, rgba(57, 182, 255, 0.25), transparent 32%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  box-shadow: var(--shadow);
}

.experience-panel::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  content: "M";
  color: rgba(255, 255, 255, 0.045);
  font-size: 15rem;
  font-weight: 900;
  line-height: 1;
}

.experience-panel > * {
  position: relative;
  z-index: 1;
}

.experience-panel p {
  max-width: 660px;
  color: #c7d7e6;
}

.mini-facts {
  display: grid;
  margin-top: 31px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-facts strong,
.mini-facts small {
  display: block;
}

.mini-facts small {
  margin-top: 4px;
  color: #a9bdd0;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(8, 26, 49, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 21px 60px 21px 23px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 23px;
  width: 24px;
  height: 24px;
  content: "+";
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--blue-100);
  font-size: 1.15rem;
  line-height: 22px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 23px 23px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(125deg, var(--navy-900), #123e67);
  grid-template-columns: 1fr auto;
  gap: 30px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.cta-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: #c6d6e5;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 5%, rgba(57, 182, 255, 0.2), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 48px 82px;
}

.breadcrumbs {
  margin-bottom: 47px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #9fb4c8;
  font-size: 0.87rem;
}

.breadcrumbs li + li::before {
  margin-right: 7px;
  content: "/";
  color: #657f98;
}

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

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
}

.page-hero__lead {
  max-width: 780px;
  margin-bottom: 0;
  color: #c5d6e6;
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
}

.process-list {
  position: relative;
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 0;
}

.process-item {
  position: relative;
  display: grid;
  padding: 0 0 36px 80px;
  grid-template-columns: 1fr;
}

.process-item:not(:last-child)::before {
  position: absolute;
  top: 45px;
  bottom: 0;
  left: 27px;
  width: 2px;
  content: "";
  background: var(--line);
}

.process-item__number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #b9def4;
  border-radius: 18px;
  color: #0879b3;
  background: var(--blue-100);
  font-weight: 800;
}

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

.process-item p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.order-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.order-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 25px;
  color: var(--white);
  background: var(--navy-900);
}

.order-card__top strong {
  display: block;
}

.order-card__body {
  padding: 27px;
}

.order-route {
  display: grid;
  gap: 18px;
  margin-bottom: 25px;
}

.order-route div {
  position: relative;
  padding-left: 28px;
}

.order-route div::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  border: 3px solid var(--blue-100);
  border-radius: 50%;
  background: var(--blue-600);
}

.order-route small,
.order-route strong {
  display: block;
}

.order-route small {
  color: var(--muted);
}

.order-data {
  display: grid;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.order-data div {
  padding: 14px;
  border-radius: 12px;
  background: var(--soft);
}

.order-data small,
.order-data strong {
  display: block;
}

.order-data small {
  color: var(--muted);
}

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

.task-list div {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.task-list span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: #087cb9;
  background: var(--blue-100);
  font-weight: 800;
}

.task-list p {
  margin: 0;
  font-weight: 680;
  line-height: 1.35;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 25px;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  box-shadow: none;
}

.contact-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-card a,
.contact-card strong {
  font-size: 1.05rem;
  font-weight: 750;
}

.contact-card .text-break {
  overflow-wrap: anywhere;
}

.messenger-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.messenger-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-weight: 720;
  text-decoration: none;
}

.messenger-button:hover {
  border-color: var(--blue-500);
}

.messenger-button::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--blue-500);
}

.request-form {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading h2 {
  margin-bottom: 9px;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.request-type {
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.request-type legend {
  margin-bottom: 12px;
  font-weight: 760;
}

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

.request-type label {
  position: relative;
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 14px 16px 14px 47px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--soft);
  font-weight: 700;
  cursor: pointer;
}

.request-type input {
  position: absolute;
  left: 17px;
  width: 18px;
  height: 18px;
  accent-color: var(--blue-600);
}

.request-type label:has(input:checked) {
  border-color: var(--blue-600);
  background: var(--blue-100);
  box-shadow: 0 0 0 2px rgba(13, 145, 220, 0.09);
}

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

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

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

.form-field label,
.form-field .field-label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.91rem;
  font-weight: 720;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #b9c9d6;
  border-radius: 11px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(13, 145, 220, 0.14);
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(185, 54, 66, 0.1);
}

.field-error {
  min-height: 1.2em;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: 0.82rem;
  line-height: 1.3;
}

.field-hint {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.conditional-fields {
  display: contents;
}

.conditional-fields[hidden] {
  display: none;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-field {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 21px 1fr;
  gap: 11px;
  margin-top: 4px;
}

.consent-field input {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: var(--blue-600);
}

.consent-field label {
  color: var(--muted);
  font-size: 0.91rem;
}

.consent-field .field-error {
  grid-column: 2;
  margin-top: -6px;
}

.consent-field a {
  color: #0876ae;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 27px;
}

.form-actions .button[disabled] {
  transform: none;
  opacity: 0.62;
  cursor: wait;
}

.form-status {
  min-height: 1.5em;
  margin: 18px 0 0;
  font-weight: 680;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.success-panel,
.fallback-panel {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
}

.success-panel {
  border: 1px solid #a8ddca;
  background: #eefaf5;
}

.fallback-panel {
  border: 1px solid #efd0d4;
  background: #fff5f6;
}

.success-panel p,
.fallback-panel p {
  margin-bottom: 12px;
}

.success-panel strong {
  overflow-wrap: anywhere;
}

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

.legal-nav {
  position: sticky;
  top: 108px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.legal-nav strong {
  display: block;
  margin-bottom: 10px;
}

.legal-nav a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
}

.legal-content {
  max-width: 820px;
}

.legal-content section {
  scroll-margin-top: 105px;
  margin-bottom: 42px;
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.legal-content p,
.legal-content li {
  color: #40566c;
}

.legal-content li {
  margin: 8px 0;
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 13px 13px 0;
  background: var(--blue-100);
}

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

.site-footer {
  color: #d7e3ef;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  padding-block: 58px 42px;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 38px;
}

.footer-about p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #91a8bd;
}

.footer-column strong {
  display: block;
  margin-bottom: 13px;
  color: var(--white);
}

.footer-column > a,
.footer-column > span {
  display: block;
  margin: 8px 0;
  color: #9eb2c5;
  text-decoration: none;
}

.footer-column > a:hover {
  color: var(--white);
}

.footer-column .messenger-buttons {
  margin-top: 14px;
}

.footer-column .messenger-button {
  min-height: 38px;
  padding: 7px 10px;
  border-color: rgba(255, 255, 255, 0.13);
  color: #d7e3ef;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.79rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #8299af;
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 9px max(12px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 30px rgba(8, 26, 49, 0.1);
  backdrop-filter: blur(14px);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
}

.mobile-actions .button {
  min-height: 48px;
  padding-inline: 10px;
}

.to-top {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translateY(20px);
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy-800);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

[data-reveal] {
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.error-page {
  display: grid;
  min-height: calc(100vh - 78px);
  place-items: center;
  padding-block: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(57, 182, 255, 0.22), transparent 32%),
    var(--navy-950);
  text-align: center;
}

.error-page__content {
  max-width: 760px;
}

.error-code {
  margin-bottom: 10px;
  color: var(--blue-500);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.error-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.error-page p {
  color: #b8c9d9;
}

.error-page .hero-actions {
  justify-content: center;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.83rem;
  }

  .site-nav .button--small {
    padding-inline: 12px;
  }

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

@media (max-width: 1180px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 78px);
    padding: 18px 20px 25px;
    transform: translateY(-12px);
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy-950);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    padding: 12px 4px;
    font-size: 1rem;
  }

  .nav-links a::after {
    bottom: 7px;
  }

  .site-nav .button--small {
    min-height: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .route-board {
    max-width: 680px;
  }

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

  .split-layout,
  .split-layout--reverse {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse .split-copy {
    order: -1;
  }

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

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

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

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(var(--container), calc(100% - 30px));
  }

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

  .site-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .brand-copy small {
    font-size: 0.6rem;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 62px 72px;
  }

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

  .hero-points {
    display: grid;
    gap: 11px;
  }

  .section {
    padding-block: 74px;
  }

  .page-hero__inner {
    padding-block: 34px 64px;
  }

  .breadcrumbs {
    margin-bottom: 36px;
  }

  .card-grid,
  .card-grid--two,
  .card-grid--four {
    grid-template-columns: 1fr;
  }

  .mini-facts {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

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

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

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

  .request-type__options {
    grid-template-columns: 1fr;
  }

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

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

  .footer-about,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-actions {
    display: grid;
  }

  .to-top {
    right: 16px;
    bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

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

  .brand-copy small {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

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

  .route-board {
    padding: 20px;
    border-radius: 21px;
  }

  .route-board__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-meta,
  .order-data {
    grid-template-columns: 1fr;
  }

  .info-card,
  .step-card,
  .client-card,
  .principle-card,
  .contact-card {
    padding: 23px;
  }

  .process-item {
    padding-left: 65px;
  }

  .process-item__number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .process-item:not(:last-child)::before {
    top: 38px;
    left: 22px;
  }

  .request-form {
    padding: 21px;
    border-radius: 20px;
  }

  .form-actions {
    display: grid;
  }

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

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

  .footer-about,
  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 8px;
  }

  .brand-symbol {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 1.04rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero h1,
  .page-hero h1 {
    overflow-wrap: anywhere;
  }

  .mobile-actions .button {
    font-size: 0.86rem;
  }
}

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

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

@media print {
  .site-header,
  .mobile-actions,
  .to-top,
  .cta-band {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .page-hero {
    color: #000;
    background: #fff;
  }

  .page-hero__lead,
  .breadcrumbs ol {
    color: #333;
  }
}
