:root {
  --navy: #29235c;
  --navy-2: #17143a;
  --navy-3: #3a3478;
  --red: #d71920;
  --red-2: #ff4b55;
  --ink: #111827;
  --muted: #667085;
  --muted-2: #98a2b3;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #eef1f8;
  --line: #e4e8f0;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 16px 48px rgba(41, 35, 92, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

.section {
  padding: 104px 0;
}

.section-anchor {
  scroll-margin-top: 120px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-130%);
  background: var(--red);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.top-strip {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.top-strip__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-weight: 650;
}

.top-strip__links {
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
}

.top-strip__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228,232,240,0.78);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(17,24,39,0.08);
  background: rgba(255,255,255,0.94);
}

.navbar {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 158px;
  border-radius: 12px;
}

.nav-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.nav-panel a {
  position: relative;
  text-decoration: none;
  color: #283044;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.nav-panel a:hover,
.nav-panel a.is-active {
  color: var(--red);
}

.nav-panel a:hover::after,
.nav-panel a.is-active::after {
  transform: scaleX(1);
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}

.lang-switch button.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(17,24,39,0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  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);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.btn--small {
  min-height: 44px;
  padding: 13px 17px;
  font-size: 14px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red), #b91118);
  color: #fff;
  box-shadow: 0 18px 36px rgba(215,25,32,0.28);
}

.btn--primary:hover {
  box-shadow: 0 22px 44px rgba(215,25,32,0.36);
}

.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.10);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.16);
}

.btn--soft {
  color: var(--navy);
  background: #eef0fb;
  box-shadow: inset 0 0 0 1px rgba(41,35,92,0.08);
}

.btn--wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 0 70px;
  background:
    radial-gradient(circle at 12% 10%, rgba(215,25,32,0.26), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,0.16), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 72%, #09081b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -32% -20%;
  height: 360px;
  background: rgba(255,255,255,0.08);
  filter: blur(80px);
  transform: rotate(-3deg);
}

.hero__glow {
  position: absolute;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.74;
}

.hero__glow--red {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 120px;
  background: radial-gradient(circle, rgba(215,25,32,0.42), transparent 68%);
}

.hero__glow--blue {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 10px;
  background: radial-gradient(circle, rgba(116,103,255,0.28), transparent 64%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--light {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
}

.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 6px rgba(215,25,32,0.16);
}

.hero h1 {
  max-width: 820px;
  margin: 20px 0 22px;
  font-size: clamp(42px, 5.9vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  line-height: 1.72;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__actions {
  margin: 34px 0 30px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
}

.hero-metrics div {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  padding: 18px 18px 17px;
}

.hero-metrics strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 36px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0,0,0,0.30);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -80px -70px auto auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(215,25,32,0.13);
}

.hero-card__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-card__top img {
  width: 138px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #067647;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.route-board {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(245,247,251,0.88), #fff),
    linear-gradient(90deg, rgba(41,35,92,0.08), transparent);
  padding: 20px;
}

.route-board__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.route-board__row--right {
  margin-top: 12px;
}

.route-board__row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.route-board__row strong {
  color: var(--navy);
  font-size: 16px;
  text-align: right;
}

.route-board__line {
  display: grid;
  grid-template-columns: 14px 1fr 14px;
  gap: 10px;
  align-items: center;
  margin: 22px 0 10px;
}

.route-board__line span:nth-child(1),
.route-board__line span:nth-child(3) {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(215,25,32,0.10);
}

.route-board__line span:nth-child(2) {
  height: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--navy) 0 16px, transparent 16px 26px);
}

.tracking-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.tracking-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: #fff;
}

.tracking-list span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.tracking-list p {
  margin: 0;
  color: #344054;
  font-weight: 800;
  font-size: 14px;
}

.transport-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.transport-pills span {
  border-radius: 999px;
  padding: 9px 12px;
  background: #f2f4f7;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.proof-bar {
  position: relative;
  z-index: 2;
  margin-top: -26px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(228,232,240,0.9);
  border-radius: 30px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.proof-item {
  display: grid;
  gap: 7px;
  border-right: 1px solid var(--line);
  padding: 12px 18px;
}

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

.proof-item strong {
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #ff7b82;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

h3 {
  letter-spacing: -0.025em;
}

.section-lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 38px;
}

.section-head__text {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-head--dark h2,
.section-head--dark .section-head__text {
  color: #fff;
}

.section-head--dark .section-head__text {
  color: rgba(255,255,255,0.72);
}

.section--tint {
  background:
    radial-gradient(circle at 8% 5%, rgba(215,25,32,0.08), transparent 28%),
    linear-gradient(180deg, #f7f8fc, #fff);
}

.section--dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0f0d2a);
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.45;
}

.section--dark > .container {
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 60px;
}

.section-copy .button-row {
  margin-top: 32px;
}

.about-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(41,35,92,0.08);
}

.about-panel__header {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.panel-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.about-panel h3 {
  margin: 0 0 7px;
  font-size: 22px;
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-facts {
  display: grid;
  gap: 12px;
}

.about-fact {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: var(--surface-2);
}

.about-fact strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 7px;
}

.about-fact span {
  color: var(--muted);
  line-height: 1.55;
}

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

.service-card {
  position: relative;
  min-height: 274px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(17,24,39,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(215,25,32,0.08);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215,25,32,0.30);
  box-shadow: 0 24px 60px rgba(41,35,92,0.12);
}

.service-card:hover::after {
  transform: scale(1.22);
}

.service-card__icon {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #f4f5ff;
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 28px;
}

.service-card h3 {
  position: relative;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.service-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.service-card__tag {
  position: absolute;
  left: 26px;
  bottom: 22px;
  display: inline-flex;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.routes-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: stretch;
}

.map-card {
  position: sticky;
  top: 120px;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--navy), #11102d);
  color: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 46%, rgba(0,0,0,1), transparent 72%);
}

.map-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.map-pin {
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 8px;
  background: var(--red);
  transform: rotate(-45deg);
  box-shadow: 0 12px 30px rgba(215,25,32,0.28);
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  left: 17px;
  top: 17px;
}

.map-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.map-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.62;
}

.route-map {
  position: relative;
  z-index: 1;
  height: 315px;
  margin-top: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 48% 55%, rgba(255,255,255,0.16), transparent 5%, transparent 100%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  overflow: hidden;
}

.route-map::before,
.route-map::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.90) 0 14px, transparent 14px 25px);
  transform-origin: left center;
}

.route-map::before {
  width: 260px;
  left: 42px;
  top: 96px;
  transform: rotate(21deg);
}

.route-map::after {
  width: 230px;
  left: 68px;
  top: 230px;
  transform: rotate(-24deg);
}

.dot {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 9px rgba(215,25,32,0.18);
}

.dot--one { left: 36px; top: 80px; }
.dot--two { right: 58px; top: 168px; }
.dot--three { left: 74px; bottom: 68px; }
.dot--four { right: 96px; top: 68px; background: #fff; }
.dot--five { left: 48%; top: 52%; background: #fff; }

.map-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
}

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

.route-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(17,24,39,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(41,35,92,0.12);
}

.route-card__label {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-card h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.18;
}

.route-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.route-card__modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.route-card__modes span {
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--navy);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
}

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

.step-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 26px;
  background: rgba(255,255,255,0.08);
  padding: 24px;
  min-height: 250px;
}

.step-card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 34px;
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.24);
}

.step-card:last-child::after {
  display: none;
}

.step-card__number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  font-weight: 950;
  margin-bottom: 26px;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  color: #fff;
}

.step-card p {
  margin: 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.62;
}

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

.feature-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 12px 26px rgba(17,24,39,0.04);
}

.feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff1f2;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

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

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 30px;
  background: linear-gradient(145deg, var(--navy), #17143a);
  color: #fff;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(41,35,92,0.16);
}

.case-card::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.case-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(215,25,32,0.30);
}

.case-card > * {
  position: relative;
  z-index: 1;
}

.case-card__meta {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 8px 10px;
  margin-bottom: auto;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.90);
  font-size: 12px;
  font-weight: 900;
}

.case-card h3 {
  margin: 50px 0 12px;
  font-size: 24px;
  line-height: 1.13;
}

.case-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.58;
}

.docs__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.docs-card,
.requisites-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.docs-card--accent {
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #12102f);
  overflow: hidden;
  position: relative;
}

.docs-card--accent::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(215,25,32,0.28);
}

.docs-card--accent > * {
  position: relative;
}

.docs-card h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.docs-card p {
  margin: 20px 0 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.68;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,0.86);
  font-weight: 750;
  line-height: 1.48;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
}

.requisites-card__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 24px;
}

.requisites-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
}

.copy-btn {
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 900;
}

.requisites-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.requisites-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.requisites-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.requisites-list dt {
  color: var(--muted);
  font-weight: 850;
}

.requisites-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.copy-status,
.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: #067647;
  font-weight: 850;
}

.quote-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 104px 0;
  background:
    radial-gradient(circle at 84% 10%, rgba(215,25,32,0.28), transparent 28%),
    linear-gradient(135deg, var(--navy), #0f0d2a 78%);
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.8;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.90), transparent 92%);
}

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

.quote-copy h2 {
  color: #fff;
}

.quote-copy p {
  margin: 22px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 18px;
  line-height: 1.72;
}

.quote-contacts {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.quote-contacts a {
  color: #fff;
  text-decoration: none;
  font-weight: 950;
}

.quote-form {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 34px;
  background: #fff;
  color: var(--ink);
  padding: 28px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.24);
}

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

.form-grid__full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(41,35,92,0.56);
  box-shadow: 0 0 0 4px rgba(41,35,92,0.10);
}

.quote-form .btn {
  margin-top: 18px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 0;
  background: #fff;
  color: var(--navy);
  padding: 20px 22px;
  text-align: left;
  font-weight: 950;
}

.faq-question span {
  flex: 1;
}

.faq-question::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--red);
  font-size: 20px;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  color: #fff;
  background: #0d0d1f;
  padding: 66px 0 26px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.65fr) minmax(260px, 0.95fr);
  gap: 46px;
}

.footer-logo {
  width: 148px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.footer p,
.footer a {
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
}

.footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 9px;
  font-weight: 750;
}

.footer a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(37,211,102,0.34);
}

.floating-wa span {
  font-size: 14px;
  font-weight: 950;
}

@media (max-width: 1120px) {
  .navbar {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    justify-self: end;
  }

  .nav-tools {
    order: 2;
  }

  .nav-panel {
    position: fixed;
    inset: 124px 4vw auto 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 26px 80px rgba(17,24,39,0.18);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel a {
    padding: 16px;
    border-radius: 16px;
  }

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

  .nav-panel a:hover,
  .nav-panel a.is-active {
    background: var(--surface-2);
  }

  .nav-quote {
    display: none;
  }

  .hero__grid,
  .about__grid,
  .quote-layout,
  .docs__grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 38px;
  }

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

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

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

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

  .map-card {
    position: relative;
    top: auto;
    min-height: 470px;
  }
}

@media (max-width: 860px) {
  .top-strip__inner {
    justify-content: center;
    text-align: center;
  }

  .top-strip__links {
    display: none;
  }

  .navbar {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    width: 132px;
  }

  .lang-switch button {
    padding: 8px 9px;
  }

  .hero {
    padding: 66px 0 58px;
  }

  .hero h1 {
    font-size: clamp(39px, 10vw, 58px);
  }

  .hero__lead,
  .section-lead {
    font-size: 17px;
  }

  .hero-metrics,
  .proof-grid,
  .section-head,
  .feature-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 78px 0;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 28px;
  }

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

  .docs__grid,
  .quote-layout {
    gap: 28px;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-strip {
    font-size: 12px;
  }

  .nav-tools {
    gap: 8px;
  }

  .lang-switch {
    transform: scale(0.92);
    transform-origin: right center;
  }

  .nav-panel {
    inset: 116px 14px auto 14px;
  }

  .badge {
    font-size: 11px;
  }

  .hero__actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .quote-form,
  .docs-card,
  .requisites-card,
  .about-panel,
  .map-card {
    border-radius: 26px;
    padding: 22px;
  }

  .hero-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-board__row {
    flex-direction: column;
    gap: 6px;
  }

  .route-board__row strong {
    text-align: left;
  }

  .service-grid,
  .case-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .case-card,
  .step-card {
    min-height: auto;
  }

  .map-card {
    min-height: 430px;
  }

  .route-map {
    height: 260px;
  }

  .requisites-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .requisites-card__head {
    flex-direction: column;
  }

  .copy-btn {
    width: 100%;
  }

  .floating-wa {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
