:root {
  --ink: #0b1017;
  --ink-2: #121a24;
  --ink-3: #1a2633;
  --blue: #176bd6;
  --blue-2: #0d55b2;
  --blue-soft: #eaf3ff;
  --red: #e2403a;
  --green: #1f9d74;
  --gold: #c9a35b;
  --paper: #f4f7fb;
  --paper-2: #eef3f8;
  --line: #dce4ee;
  --line-dark: rgba(255, 255, 255, 0.14);
  --muted: #617083;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 16, 23, 0.14);
  --shadow-soft: 0 14px 34px rgba(11, 16, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 14, 21, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 14, 21, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--blue-2);
  box-shadow: 0 14px 30px rgba(23, 107, 214, 0.26);
}

.btn-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 14px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: var(--blue-soft);
  color: var(--blue-2);
}

.text-btn {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--blue-2);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.text-btn:hover:not(:disabled) {
  background: var(--blue-soft);
}

.text-btn:disabled {
  color: #a5b2c0;
  cursor: default;
}

.section {
  padding: 96px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2,
.trust-copy h2,
.price-copy h2,
.reviews-intro h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
}

.section-head p {
  margin-bottom: 0;
  font-size: 17px;
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: stretch;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/hero-car.webp") center / cover no-repeat;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 17, 0.98) 0%, rgba(7, 11, 17, 0.82) 42%, rgba(7, 11, 17, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 11, 17, 0.22) 0%, rgba(7, 11, 17, 0.88) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 44px;
  align-items: center;
  padding: 96px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #9ecbff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blue);
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 950;
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.panel-topline {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  gap: 14px;
}

.hero-stats div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.05;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 17, 0.62);
  backdrop-filter: blur(14px);
}

.ticker {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 1px;
}

.ticker span {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.ticker span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
}

.quiz-shell {
  display: grid;
}

.quiz-card {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quiz-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 800;
}

.progress-track {
  height: 8px;
  border-radius: 999px;
  background: var(--paper-2);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #5ca7ff);
  transition: width 0.28s ease;
}

.quiz-slide {
  display: none;
  animation: slideIn 0.28s ease both;
}

.quiz-slide.is-active {
  display: block;
}

.quiz-slide h3 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.14;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-grid button {
  min-height: 72px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink-2);
  font-weight: 800;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.option-grid button:hover,
.option-grid button.is-selected {
  transform: translateY(-2px);
  border-color: rgba(23, 107, 214, 0.5);
  background: var(--blue-soft);
  box-shadow: 0 12px 28px rgba(23, 107, 214, 0.12);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.quiz-final p {
  max-width: 640px;
  font-size: 17px;
}

.bonus-card {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(31, 157, 116, 0.22);
  border-radius: 8px;
  background: #eaf8f2;
  color: #14664b;
}

.bonus-card span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-card strong {
  font-size: 21px;
  line-height: 1.25;
}

.mini-form,
.contact-form {
  display: grid;
  gap: 14px;
}

.mini-form {
  max-width: 620px;
}

.mini-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.mini-form input,
.mini-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfd9e5;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font-weight: 500;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.mini-form input::placeholder,
.mini-form select,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7b8794;
  font-weight: 600;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.mini-form input:focus,
.mini-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 107, 214, 0.12);
}

.mini-form input.is-invalid,
.contact-form input.is-invalid {
  border-color: #e2403a;
  box-shadow: 0 0 0 4px rgba(226, 64, 58, 0.12);
}

.success {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  background: #eaf8f2;
  color: #14664b;
  font-weight: 800;
}

.success.show {
  display: block;
}

.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.service-grid article,
.country-card,
.trust-stack article,
.process-grid article,
.car-card,
.case-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-grid article:hover,
.country-card:hover,
.car-card:hover,
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-grid span,
.trust-stack span,
.process-grid span {
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
}

.service-grid h3,
.trust-stack h3,
.process-grid h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.16;
}

.service-grid p,
.trust-stack p,
.process-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.country-card {
  position: relative;
  min-height: 390px;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 14, 21, 0.38), rgba(9, 14, 21, 0.92));
  z-index: 1;
}

.country-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.country-card:hover::after {
  transform: scale(1.08);
}

.country-card.china::after {
  background-image: url("assets/popular-arcfox-t1-2025.webp");
}

.country-card.korea::after {
  background-image: url("assets/popular-kia-sportage-2021.webp");
}

.country-card.japan::after {
  background-image: url("assets/popular-corolla-cross-2023.webp");
}

.country-card > * {
  position: relative;
  z-index: 2;
}

.country-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 92px;
}

.country-top span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.country-top strong {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  text-transform: uppercase;
}

.country-card h3 {
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.1;
}

.country-card p {
  color: rgba(255, 255, 255, 0.76);
}

.country-card ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.country-card li {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 750;
}

.country-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 9px;
  border-radius: 99px;
  background: #9ecbff;
  vertical-align: 1px;
}

.trust-section {
  color: var(--white);
  background: linear-gradient(135deg, #0b1017 0%, #162230 56%, #0d2036 100%);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: start;
}

.trust-section .section-kicker,
.trust-section h2 {
  color: var(--white);
}

.trust-copy p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
}

.trust-stack {
  display: grid;
  gap: 14px;
}

.trust-stack article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.trust-stack h3 {
  color: var(--white);
}

.trust-stack p {
  color: rgba(255, 255, 255, 0.68);
}

.routes-section {
  background: var(--paper);
}

.route-board {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 107, 214, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 107, 214, 0.04) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.route-map {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
}

.route-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 4;
  stroke-dasharray: 14 12;
  animation: routeMove 1.8s linear infinite;
}

.route-line-red {
  stroke: var(--red);
}

.route-line-blue {
  stroke: var(--blue);
  stroke-width: 2.5;
  opacity: 0.78;
}

.route-line.delay {
  animation-delay: 0.45s;
}

.route-line.delay-1 {
  animation-delay: 0.25s;
}

.route-line.delay-2 {
  animation-delay: 0.5s;
}

.route-line.delay-3 {
  animation-delay: 0.75s;
}

.route-line.delay-4 {
  animation-delay: 1s;
}

.map-node rect {
  fill: #101924;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
  filter: drop-shadow(0 14px 20px rgba(11, 16, 23, 0.16));
}

.map-node.source rect {
  fill: #19293b;
}

.map-node.checkpoint rect {
  fill: #ffffff;
  stroke: #cfd9e5;
}

.map-node.office rect {
  fill: #eaf3ff;
  stroke: rgba(23, 107, 214, 0.26);
}

.map-node text {
  fill: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 800;
}

.map-node text:nth-child(3),
.map-node text:nth-child(4) {
  fill: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 650;
}

.map-node.checkpoint text,
.map-node.office text {
  fill: var(--ink);
}

.map-node.checkpoint text:nth-child(3),
.map-node.checkpoint text:nth-child(4),
.map-node.office text:nth-child(3) {
  fill: var(--muted);
}

.city circle {
  fill: var(--blue);
  stroke: var(--white);
  stroke-width: 3;
}

.city text {
  fill: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.route-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 24px 24px;
}

.route-notes article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.route-notes span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.route-notes p {
  margin: 0;
  font-size: 15px;
}

.price-section {
  background: var(--white);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 40px;
  align-items: center;
}

.price-copy p {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 17px;
}

.formula {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.formula span {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.formula i {
  display: none;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  min-height: 226px;
  padding: 22px;
}

.popular-section {
  background: var(--white);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.car-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.car-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper);
}

.car-card div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.car-card span,
.case-card span {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
}

.car-card h3,
.case-card h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.14;
}

.car-card p,
.case-card p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-weight: 900;
}

.car-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  min-height: 280px;
}

.car-card-featured img {
  height: 100%;
  aspect-ratio: auto;
}

.car-card-featured div {
  align-content: center;
}

.cases-section {
  color: var(--white);
  background: linear-gradient(135deg, #101923 0%, #0b1017 100%);
}

.cases-section .section-kicker,
.cases-section h2 {
  color: var(--white);
}

.cases-section .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.case-card div {
  padding: 22px;
}

.case-card span {
  color: #9ecbff;
}

.case-card h3,
.case-card p {
  color: var(--white);
}

.case-card p {
  color: rgba(255, 255, 255, 0.76);
}

.reviews-section {
  background: var(--paper);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 42px;
  align-items: center;
}

.reviews-intro p {
  margin: 18px 0 28px;
  font-size: 17px;
}

.review-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rating-card,
.review-board img {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.rating-card {
  min-height: 180px;
  display: grid;
  align-content: center;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.rating-card strong {
  font-size: 58px;
  line-height: 1;
}

.rating-card span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.review-board img {
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  background: var(--white);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  box-shadow: none;
}

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue-2);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.95), rgba(8, 13, 20, 0.72)),
    url("assets/process.webp") center / cover no-repeat;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
  gap: 42px;
  align-items: start;
}

.final-cta .section-kicker,
.final-cta h2 {
  color: var(--white);
}

.contact-copy p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  min-height: 96px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-list a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.contact-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.15;
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #080d14;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 34px;
}

.footer-brand img {
  width: 138px;
  margin-bottom: 18px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-grid a:hover,
.footer-channel:hover {
  color: var(--white);
}

.footer-channel {
  color: #9ecbff;
  font-weight: 800;
}

.subfooter {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.floating-social {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: none;
  gap: 10px;
}

.floating-social a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}

.floating-social a:hover {
  transform: translateY(-3px);
}

.floating-social .wa {
  background: #16a66a;
}

.floating-social .tg {
  background: #229ed9;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animations-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(1.5%, -1%, 0);
  }
}

@keyframes routeMove {
  to {
    stroke-dashoffset: -52;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 64px;
  }

  .hero-inner,
  .trust-layout,
  .price-layout,
  .reviews-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: auto;
    max-width: 620px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .section {
    padding: 72px 0;
  }

  .nav {
    min-height: 68px;
  }

  .logo img {
    width: 88px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: grid;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links {
    top: 76px;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(9, 14, 21, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open,
  .header-actions.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 48px;
    border-radius: 8px;
  }

  .header-actions {
    top: 414px;
  }

  .header-actions .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 78px 0 132px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .lead {
    font-size: 18px;
  }

  .ticker {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticker span {
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section-head,
  .country-grid,
  .process-grid,
  .case-grid,
  .faq-list,
  .route-notes {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .formula {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-board {
    overflow-x: auto;
  }

  .route-map {
    min-width: 900px;
  }
}

@media (max-width: 640px) {
  .container,
  .nav,
  .hero-inner,
  .ticker {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  .section-head h2,
  .trust-copy h2,
  .price-copy h2,
  .reviews-intro h2,
  .contact-copy h2 {
    font-size: 32px;
  }

  .section-head p,
  .price-copy p,
  .reviews-intro p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-inner {
    padding: 58px 0 208px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions,
  .option-grid,
  .option-grid-wide,
  .service-grid,
  .cars-grid,
  .review-board,
  .contact-list,
  .footer-grid,
  .subfooter {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 18px;
  }

  .ticker {
    grid-template-columns: 1fr;
  }

  .ticker span {
    min-height: 46px;
    padding: 0 8px;
    font-size: 13px;
  }

  .quiz-card {
    padding: 20px;
  }

  .quiz-progress {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quiz-slide h3 {
    font-size: 25px;
  }

  .option-grid button {
    min-height: 60px;
  }

  .country-card {
    min-height: 360px;
    padding: 22px;
  }

  .country-card h3 {
    font-size: 24px;
  }

  .price-layout,
  .reviews-layout,
  .contact-layout {
    gap: 26px;
  }

  .formula {
    grid-template-columns: 1fr;
  }

  .formula span {
    min-height: 74px;
  }

  .process-grid article,
  .service-grid article {
    min-height: auto;
  }

  .car-card-featured {
    grid-column: auto;
    display: flex;
    min-height: 330px;
  }

  .car-card-featured img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .case-card img {
    height: 220px;
  }

  .contact-form {
    padding: 20px;
  }

  .floating-social {
    display: none;
  }
}

/* Refinement pass after visual review */
.hero {
  min-height: 590px;
}

.hero-inner {
  grid-template-columns: minmax(0, 0.92fr);
  padding-bottom: 84px;
}

.hero-panel {
  display: none;
}

.hero-bottom,
.ticker {
  display: none;
}

.proof-section {
  position: relative;
  z-index: 4;
  padding: 0 0 70px;
  background: linear-gradient(180deg, #0b1017 0%, #f4f7fb 58%, #f4f7fb 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  transform: translateY(-28px);
}

.proof-grid article {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(23, 107, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 50px rgba(11, 16, 23, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.proof-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 107, 214, 0.42);
  box-shadow: 0 30px 70px rgba(11, 16, 23, 0.16);
}

.proof-grid span {
  width: 38px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
}

.proof-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.proof-grid p {
  margin: 0;
  color: #425266;
  font-size: 14px;
}

.quiz-card {
  position: relative;
  overflow: hidden;
}

.quiz-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #176bd6, #8bc2ff, #176bd6);
  background-size: 220% 100%;
  animation: premiumLine 4s linear infinite;
}

.text-btn:disabled {
  background: #eef3f8;
  color: #9aa8b7;
}

.services-section .section-head p {
  max-width: 500px;
  padding: 22px 24px;
  border: 1px solid rgba(23, 107, 214, 0.18);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
  color: #253445;
  box-shadow: 0 14px 34px rgba(11, 16, 23, 0.06);
}

.service-grid article {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  border-color: rgba(23, 107, 214, 0.15);
}

.service-grid article::before {
  content: "";
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #0f315a);
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(23, 107, 214, 0.24);
}

.service-grid article[data-service="auto"]::before {
  content: "A";
}

.service-grid article[data-service="moto"]::before {
  content: "M";
}

.service-grid article[data-service="cross"]::before {
  content: "X";
}

.service-grid article[data-service="special"]::before {
  content: "S";
}

.service-grid article[data-service="parts"]::before {
  content: "P";
}

.service-grid article > span {
  position: absolute;
  top: 22px;
  right: 22px;
  margin: 0;
  background: #eef6ff;
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(23, 107, 214, 0.18);
  transform: rotate(35deg);
}

.routes-section {
  background: linear-gradient(180deg, #eef4fa 0%, #f8fbff 100%);
}

.route-board {
  background: #dcecff;
  background-size: auto;
}

.map-water {
  fill: url(#mapOcean);
}

.map-land {
  fill: rgba(255, 255, 255, 0.72);
  stroke: rgba(23, 107, 214, 0.12);
  stroke-width: 1.4;
}

.map-coast {
  fill: none;
  stroke: rgba(20, 54, 92, 0.16);
  stroke-width: 2;
  stroke-dasharray: 10 8;
}

.map-label {
  fill: rgba(20, 54, 92, 0.28);
  font-size: 38px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-node rect {
  rx: 10;
}

.map-node.source rect {
  fill: rgba(12, 25, 40, 0.92);
}

.map-node.checkpoint rect {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(23, 107, 214, 0.24);
}

.map-node.office rect {
  fill: rgba(234, 243, 255, 0.96);
}

.route-notes article {
  border-color: rgba(23, 107, 214, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(11, 16, 23, 0.06);
}

.price-section {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(23, 107, 214, 0.28), transparent 34%),
    linear-gradient(135deg, #09111b 0%, #0e2033 52%, #07101b 100%);
}

.price-section .section-kicker,
.price-section .price-copy h2 {
  color: var(--white);
}

.price-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.formula {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.formula::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 58px;
  bottom: 58px;
  width: 2px;
  background: linear-gradient(180deg, transparent, #66adff, transparent);
  background-size: 100% 220%;
  animation: premiumLineVertical 3.4s linear infinite;
}

.formula span {
  position: relative;
  min-width: 0;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
  text-align: left;
  overflow-wrap: normal;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.formula span::before {
  content: attr(data-step);
  width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  margin: 0;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
}

.formula i {
  position: relative;
  z-index: 1;
  display: none;
}

.process-grid {
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(23, 107, 214, 0.45), transparent);
  background-size: 220% 100%;
  animation: premiumLine 4s linear infinite;
}

.process-grid article {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 80%;
  background: linear-gradient(90deg, transparent, rgba(23, 107, 214, 0.08), transparent);
  transform: skewX(-16deg);
  animation: cardSweep 5.5s ease-in-out infinite;
}

.process-grid article:nth-child(2)::after,
.process-grid article:nth-child(5)::after {
  animation-delay: 0.8s;
}

.process-grid article:nth-child(3)::after,
.process-grid article:nth-child(6)::after {
  animation-delay: 1.6s;
}

.process-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 107, 214, 0.34);
  box-shadow: var(--shadow);
}

.process-grid span {
  position: relative;
  z-index: 1;
  animation: stepPulse 3.4s ease-in-out infinite;
}

.cars-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.cars-grid .car-card {
  min-height: 354px;
  display: flex;
  grid-column: auto;
}

.cars-grid .car-card img {
  height: auto;
  aspect-ratio: 4 / 3;
}

.safety-section {
  color: var(--white);
  background: #f4f7fb;
  padding-top: 0;
}

.safety-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 40px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(9, 17, 27, 0.96), rgba(13, 40, 72, 0.94)),
    url("assets/office.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.safety-section .section-kicker,
.safety-panel h2 {
  color: var(--white);
}

.safety-panel h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.08;
}

.safety-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.safety-points {
  display: grid;
  gap: 12px;
}

.safety-points span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.site-footer {
  padding: 0 0 30px;
  background:
    linear-gradient(180deg, #080d14 0%, #0b121d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: grid;
  grid-template-columns: 118px minmax(0, 520px);
  gap: 24px;
  align-items: center;
}

.footer-brand img {
  width: 118px;
  margin: 0;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  padding-top: 34px;
}

.footer-grid > div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 18px;
}

.footer-grid a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.subfooter {
  margin-top: 28px;
}

@keyframes premiumLine {
  to {
    background-position: -200% 0;
  }
}

@keyframes premiumLineVertical {
  to {
    background-position: 0 -220%;
  }
}

@keyframes cardSweep {
  0%,
  68% {
    left: -120%;
  }
  100% {
    left: 130%;
  }
}

@keyframes stepPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(23, 107, 214, 0.22);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(23, 107, 214, 0);
  }
}

@media (max-width: 1120px) {
  .proof-grid,
  .cars-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .formula {
    grid-template-columns: 1fr;
  }

  .formula::before,
  .formula i {
    display: none;
  }

  .safety-panel,
  .footer-hero,
  .footer-brand {
    grid-template-columns: 1fr;
  }

  .footer-hero {
    display: grid;
  }
}

@media (max-width: 920px) {
  .proof-grid,
  .service-grid,
  .cars-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    transform: none;
  }

  .proof-section {
    padding-top: 18px;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .proof-section {
    padding-bottom: 52px;
  }

  .safety-panel {
    padding: 24px;
  }

  .safety-panel h2 {
    font-size: 30px;
  }

  .footer-grid > div {
    padding: 18px;
  }
}

/* Second refinement pass */
.nav {
  min-height: 86px;
}

.logo img {
  width: 146px;
}

.btn-small {
  min-width: 190px;
}

.hero-inner {
  padding-top: 82px;
}

.eyebrow {
  margin-bottom: 24px;
  color: #b7d9ff;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  width: 44px;
  height: 3px;
}

.section-head p {
  max-width: 500px;
  padding: 20px 22px;
  border: 1px solid rgba(23, 107, 214, 0.18);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 255, 0.88));
  color: #253445;
  box-shadow: 0 16px 38px rgba(11, 16, 23, 0.07);
}

.cases-section .section-head p,
.trust-section .section-head p {
  border-color: rgba(255, 255, 255, 0.14);
  border-left-color: #78b9ff;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.quiz-section .section-head p::before,
.routes-section .section-head p::before,
.process-section .section-head p::before,
.popular-section .section-head p::before,
.cases-section .section-head p::before,
.faq-section .section-head p::before {
  content: "Важно";
  display: inline-flex;
  margin: 0 0 8px;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.quiz-section .section-head p {
  position: relative;
}

.quiz-final {
  text-align: left;
}

.quiz-final h3 {
  max-width: 680px;
}

.quiz-final .final-note {
  position: relative;
  max-width: 700px;
  margin: 0 0 22px;
  padding: 18px 20px 18px 54px;
  border: 1px solid rgba(23, 107, 214, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  color: #24384d;
  font-weight: 700;
}

.quiz-final .final-note::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(23, 107, 214, 0.12);
}

.bonus-card {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 22px 88px;
  border-color: rgba(23, 107, 214, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 255, 0.96)),
    linear-gradient(90deg, rgba(23, 107, 214, 0.16), transparent);
  color: #102033;
  animation: bonusReveal 0.65s ease both;
}

.bonus-card::before {
  content: "10";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #0e376d);
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
  transform: translateY(-50%);
  box-shadow: 0 18px 34px rgba(23, 107, 214, 0.28);
}

.bonus-card::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -40%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-16deg);
  animation: bonusShine 2.8s ease-in-out infinite;
}

.bonus-card span {
  color: var(--blue-2);
}

.bonus-card strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.service-grid article::before {
  display: none;
}

.service-grid article > .service-index {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 950;
}

.service-icon {
  position: static !important;
  inset: auto !important;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #0f315a);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(23, 107, 214, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-grid article > .service-icon {
  position: static !important;
  inset: auto !important;
  width: 58px;
  height: 58px;
  margin: 0 0 26px;
  padding: 0;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-grid article:hover .service-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 38px rgba(23, 107, 214, 0.34);
}

.trust-stack article {
  position: relative;
  overflow: hidden;
}

.trust-stack article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #78b9ff, transparent);
  animation: trustFlow 3.8s ease-in-out infinite;
}

.trust-stack article:nth-child(2)::before {
  animation-delay: 0.6s;
}

.trust-stack article:nth-child(3)::before {
  animation-delay: 1.2s;
}

.route-board {
  background:
    radial-gradient(circle at 18% 26%, rgba(23, 107, 214, 0.14), transparent 28%),
    radial-gradient(circle at 72% 38%, rgba(226, 64, 58, 0.08), transparent 30%),
    #e8f3ff;
}

.map-label {
  display: none;
}

.route-map {
  filter: drop-shadow(0 20px 34px rgba(11, 16, 23, 0.08));
}

.route-line {
  animation-duration: 1.45s;
}

.formula span {
  animation: formulaFloat 4s ease-in-out infinite;
}

.formula span:nth-of-type(2) {
  animation-delay: 0.2s;
}

.formula span:nth-of-type(3) {
  animation-delay: 0.4s;
}

.formula span:nth-of-type(4) {
  animation-delay: 0.6s;
}

.formula span:nth-of-type(5) {
  animation-delay: 0.8s;
}

.process-grid article,
.car-card,
.case-card {
  will-change: transform;
}

.car-card img {
  transition: transform 0.35s ease;
}

.car-card:hover img,
.case-card:hover img {
  transform: scale(1.04);
}

.case-card img {
  transition: transform 0.35s ease;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.faq-list details {
  align-self: start;
}

.faq-list details:not([open]) {
  min-height: auto;
}

@keyframes bonusReveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bonusShine {
  0%,
  55% {
    left: -45%;
  }
  100% {
    left: 120%;
  }
}

@keyframes trustFlow {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(-24%);
  }
  50% {
    opacity: 1;
    transform: translateY(24%);
  }
}

@keyframes formulaFloat {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@media (max-width: 920px) {
  .logo img {
    width: 112px;
  }

  .nav {
    min-height: 76px;
  }

  .btn-small {
    min-width: 0;
  }

  .section-head p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .eyebrow {
    font-size: 15px;
  }

  .quiz-final .final-note,
  .bonus-card {
    padding-left: 18px;
  }

  .quiz-final .final-note::before,
  .bonus-card::before {
    display: none;
  }
}

/* Third refinement pass */
:root {
  --muted: #3d4e63;
}

.nav {
  min-height: 92px;
}

.logo img {
  width: 170px;
}

.btn-small {
  min-width: 214px;
}

.hero-inner {
  padding-top: 74px;
}

.eyebrow {
  color: #d7ebff;
  font-size: 24px;
  letter-spacing: 0;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.section-head p {
  position: relative;
  max-width: 520px;
  padding: 22px 24px 22px 26px;
  border: 1px solid rgba(23, 107, 214, 0.22);
  border-left: 5px solid var(--blue);
  background:
    radial-gradient(circle at 96% 10%, rgba(23, 107, 214, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
  color: #112236;
  font-weight: 720;
  line-height: 1.68;
}

.section-head p::before {
  margin-right: 8px;
  vertical-align: 1px;
  box-shadow: 0 10px 20px rgba(23, 107, 214, 0.22);
}

.quiz-section .section-head p::before {
  content: "Подбор";
}

.routes-section .section-head p::before {
  content: "Логистика";
}

.process-section .section-head p::before {
  content: "Контроль";
}

.popular-section .section-head p::before {
  content: "Варианты";
}

.cases-section .section-head p::before {
  content: "Опыт";
}

.faq-section .section-head p::before {
  content: "Ответы";
}

.cases-section .section-head p,
.trust-section .section-head p {
  background:
    radial-gradient(circle at 96% 12%, rgba(120, 185, 255, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.quiz-final .final-note {
  border-color: rgba(23, 107, 214, 0.24);
  background:
    linear-gradient(135deg, #ffffff 0%, #eef7ff 100%),
    linear-gradient(90deg, rgba(23, 107, 214, 0.18), transparent);
  color: #13263c;
  box-shadow: 0 18px 38px rgba(11, 16, 23, 0.08);
}

.bonus-card {
  border: 1px solid rgba(23, 107, 214, 0.24);
  background:
    radial-gradient(circle at 88% 12%, rgba(23, 107, 214, 0.2), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eaf5ff 100%);
  box-shadow: 0 24px 56px rgba(23, 107, 214, 0.14);
}

.service-grid article > .service-icon {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  width: 64px !important;
  height: 64px !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, #1774e8 0%, #0d315f 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 36px rgba(23, 107, 214, 0.3);
  z-index: 2;
}

.service-grid article > .service-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.34), transparent 46%);
  pointer-events: none;
}

.service-grid article > .service-icon svg {
  width: 38px;
  height: 38px;
  color: #ffffff;
  stroke: currentColor;
  stroke-width: 2.8;
  z-index: 1;
}

.service-grid article > .service-index {
  background: rgba(23, 107, 214, 0.1) !important;
  color: #0d55b2 !important;
}

.service-grid p,
.process-grid p,
.route-notes p,
.faq-list p,
.price-copy p,
.reviews-intro p,
.contact-copy p {
  color: #33475d;
  font-weight: 640;
}

.final-cta .contact-copy p,
.reviews-section .reviews-intro p {
  color: rgba(255, 255, 255, 0.82);
}

.process-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.96));
}

.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, rgba(23, 107, 214, 0.8), transparent);
  animation: processTrace 3.2s ease-in-out infinite;
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(23, 107, 214, 0.34), transparent);
  transform: translateX(-30%);
  animation: processSweep 4s ease-in-out infinite;
}

.process-grid article:nth-child(2n)::before,
.process-grid article:nth-child(2n)::after {
  animation-delay: 0.45s;
}

.car-card,
.case-card {
  position: relative;
  overflow: hidden;
}

.car-card::before,
.case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, #176bd6, transparent);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  z-index: 2;
}

.car-card:hover::before,
.case-card:hover::before {
  transform: translateX(100%);
}

.route-board {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 24% 32%, rgba(226, 64, 58, 0.18), transparent 30%),
    radial-gradient(circle at 70% 34%, rgba(23, 107, 214, 0.18), transparent 34%),
    linear-gradient(135deg, #080d14 0%, #101a27 50%, #0b1017 100%);
  box-shadow: 0 30px 90px rgba(11, 16, 23, 0.26);
}

.route-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.route-map {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.28));
}

.map-water {
  fill: #0d1621;
}

.map-land {
  fill: rgba(255, 255, 255, 0.07);
  stroke: rgba(255, 255, 255, 0.12);
}

.map-coast {
  stroke: rgba(255, 255, 255, 0.16);
}

.route-line-red {
  stroke: #f04b45;
  stroke-width: 4.8;
  filter: drop-shadow(0 0 8px rgba(240, 75, 69, 0.42));
}

.route-line-blue {
  stroke: #66b5ff;
  stroke-width: 3.1;
  opacity: 0.9;
  filter: drop-shadow(0 0 7px rgba(102, 181, 255, 0.36));
}

.map-node rect,
.map-node.source rect,
.map-node.checkpoint rect,
.map-node.office rect {
  fill: rgba(12, 22, 34, 0.9);
  stroke: rgba(255, 255, 255, 0.16);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
}

.map-node.checkpoint rect {
  stroke: rgba(102, 181, 255, 0.42);
}

.map-node.office rect {
  fill: rgba(23, 107, 214, 0.18);
  stroke: rgba(102, 181, 255, 0.5);
}

.map-node text,
.map-node.checkpoint text,
.map-node.office text {
  fill: rgba(255, 255, 255, 0.92);
}

.map-node text:nth-child(3),
.map-node text:nth-child(4),
.map-node.checkpoint text:nth-child(3),
.map-node.checkpoint text:nth-child(4),
.map-node.office text:nth-child(3) {
  fill: rgba(255, 255, 255, 0.66);
}

.city circle {
  fill: #66b5ff;
  stroke: rgba(255, 255, 255, 0.92);
}

.city text {
  fill: rgba(255, 255, 255, 0.88);
  paint-order: stroke;
  stroke: rgba(8, 13, 20, 0.75);
  stroke-width: 3px;
}

.route-notes {
  position: relative;
  z-index: 1;
}

.route-notes article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.route-notes span {
  color: #ffffff;
}

.route-notes p {
  color: rgba(255, 255, 255, 0.78);
}

.formula span {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff, #eef6ff);
  box-shadow: 0 14px 34px rgba(11, 16, 23, 0.07);
}

.formula span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(23, 107, 214, 0.12), transparent);
  transform: translateX(-110%);
  animation: formulaShine 5s ease-in-out infinite;
}

.faq-list details {
  border-color: rgba(23, 107, 214, 0.12);
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.faq-list details[open] {
  border-color: rgba(23, 107, 214, 0.28);
  box-shadow: 0 18px 42px rgba(11, 16, 23, 0.08);
}

.faq-list summary {
  color: #162538;
}

.faq-list summary:focus,
.faq-list summary:focus-visible {
  outline: 2px solid rgba(23, 107, 214, 0.34);
  outline-offset: -2px;
}

.faq-list p {
  color: #314459;
}

.reveal {
  transition-duration: 0.48s;
}

@keyframes processTrace {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-18%);
  }
  50% {
    opacity: 1;
    transform: translateY(18%);
  }
}

@keyframes processSweep {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-45%);
  }
  50% {
    opacity: 1;
    transform: translateX(45%);
  }
}

@keyframes formulaShine {
  0%,
  60% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(110%);
  }
}

@media (max-width: 920px) {
  .nav {
    min-height: 76px;
  }

  .logo img {
    width: 126px;
  }

  .header-actions {
    top: 422px;
  }

  .eyebrow {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .logo img {
    width: 104px;
  }

  .eyebrow {
    font-size: 16px;
  }

  .service-grid article > .service-icon {
    width: 58px !important;
    height: 58px !important;
  }

  .section-head p {
    padding: 18px;
  }
}

/* Fourth refinement pass */
.site-header {
  padding: 20px 0 14px;
  background: linear-gradient(180deg, rgba(7, 13, 20, 0.96), rgba(7, 13, 20, 0.78));
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 13, 20, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.nav {
  width: min(1248px, calc(100% - 48px));
  min-height: 70px;
  padding: 0 18px;
  gap: 18px;
  border: 1px solid rgba(113, 178, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 11, 17, 0.86);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logo {
  gap: 14px;
  min-width: 238px;
}

.logo img {
  width: 76px;
}

.logo-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  margin-left: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-actions {
  margin-left: auto;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-small {
  min-width: 210px;
  background: linear-gradient(135deg, #2078e8, #1158be);
  box-shadow: 0 12px 28px rgba(23, 107, 214, 0.28);
}

.hero-media {
  animation-duration: 9s;
}

.eyebrow {
  width: max-content;
  padding: 8px 13px 8px 16px;
  border: 1px solid rgba(113, 178, 255, 0.28);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(8, 15, 24, 0.62);
  color: #dcecff;
  font-size: 15px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.eyebrow::before {
  display: none;
}

.section-head p::before {
  display: flex;
  width: max-content;
  margin: 0 0 12px;
  padding: 7px 11px;
  border-radius: 8px;
  line-height: 1;
}

.quiz-section .section-head p::before,
.routes-section .section-head p::before,
.process-section .section-head p::before,
.popular-section .section-head p::before,
.cases-section .section-head p::before,
.faq-section .section-head p::before {
  display: flex;
  width: max-content;
  margin: 0 0 12px;
  padding: 7px 11px;
  line-height: 1;
}

.bonus-card {
  max-width: 760px;
  margin-bottom: 28px;
  padding: 26px 28px 26px 104px;
  border: 1px solid rgba(113, 178, 255, 0.32);
  background:
    radial-gradient(circle at 92% 22%, rgba(113, 178, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #091625 0%, #123b71 100%);
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(23, 107, 214, 0.26);
}

.bonus-card::before {
  content: "₽";
  left: 26px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, #ffffff, #cfe6ff);
  color: #0d55b2;
  font-size: 28px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.bonus-card span {
  color: #9dccff;
  letter-spacing: 0;
}

.bonus-card strong {
  color: #ffffff;
}

.quiz-final .final-note::before {
  animation: notePulse 1.35s ease-in-out infinite;
}

.service-grid article > .service-icon {
  width: 62px !important;
  height: 62px !important;
  border-radius: 10px;
  background: linear-gradient(135deg, #2583f2 0%, #0b376d 100%) !important;
}

.service-grid article > .service-icon svg {
  width: 39px;
  height: 39px;
  stroke-width: 2.25;
}

.route-board {
  padding: 0;
  border: 0;
  background:
    radial-gradient(circle at 48% 48%, rgba(23, 107, 214, 0.18), transparent 34%),
    radial-gradient(circle at 33% 34%, rgba(226, 64, 58, 0.18), transparent 38%),
    #130d10;
  box-shadow: 0 34px 90px rgba(11, 16, 23, 0.28);
}

.route-board::before {
  background:
    radial-gradient(circle at 18% 8%, rgba(226, 64, 58, 0.12), transparent 22%),
    radial-gradient(circle at 74% 18%, rgba(23, 107, 214, 0.1), transparent 24%);
  background-size: auto;
}

.route-map-russia {
  width: 100%;
  min-height: 620px;
  background: radial-gradient(circle at 55% 45%, rgba(42, 54, 88, 0.36), rgba(13, 9, 11, 0.96) 70%);
}

.russia-map-bg {
  fill: url(#routeGlow);
}

.russia-land,
.china-land,
.korea-land,
.japan-land {
  fill: rgba(88, 82, 122, 0.58);
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1.2;
}

.china-land,
.korea-land,
.japan-land {
  fill: rgba(74, 69, 104, 0.5);
}

.route-red {
  fill: none;
  stroke: #d83740;
  stroke-width: 2.8;
  stroke-linecap: round;
  opacity: 0.82;
  filter: url(#redGlow);
  animation: routePulse 2.4s ease-in-out infinite;
}

.route-from-pekin,
.route-from-seoul,
.route-from-tokyo {
  animation-delay: 0.35s;
}

.route-to-kazan {
  animation-delay: 0.55s;
}

.route-to-ekb {
  animation-delay: 0.9s;
}

.map-point circle:first-child {
  fill: rgba(216, 55, 64, 0.22);
  stroke: rgba(216, 55, 64, 0.72);
  stroke-width: 2;
  animation: pointPulse 1.6s ease-in-out infinite;
}

.map-point circle:last-child {
  fill: #ff4149;
}

.map-point.hub circle:first-child {
  fill: rgba(255, 65, 73, 0.3);
  stroke-width: 3;
}

.map-tag rect {
  fill: rgba(8, 5, 7, 0.84);
}

.map-tag text {
  fill: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.map-tag.main text {
  font-size: 20px;
}

.route-notes {
  display: none;
}

.price-section .price-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.price-section .formula span {
  background: linear-gradient(135deg, rgba(9, 22, 37, 0.92), rgba(15, 45, 78, 0.88)) !important;
  color: #ffffff !important;
  border-color: rgba(113, 178, 255, 0.22);
}

.price-section .formula span::after {
  background: linear-gradient(120deg, transparent, rgba(113, 178, 255, 0.18), transparent);
}

.reviews-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 28%, rgba(23, 107, 214, 0.16), transparent 34%),
    linear-gradient(135deg, #07101a 0%, #0d1b2d 100%);
}

.reviews-layout {
  align-items: start;
}

.route-board.reveal,
.formula.reveal,
.service-grid.reveal,
.process-grid.reveal,
.cars-grid.reveal,
.case-grid.reveal,
.review-board.reveal,
.reviews-intro.reveal {
  opacity: 1;
  transform: none;
}

.reviews-intro h2,
.reviews-section .section-kicker {
  color: #ffffff;
}

.reviews-section .reviews-intro p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.review-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.rating-card {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(113, 178, 255, 0.18);
  background:
    radial-gradient(circle at 84% 18%, rgba(23, 107, 214, 0.34), transparent 34%),
    linear-gradient(135deg, #091625, #111b2a);
  overflow: hidden;
}

.rating-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -46px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(113, 178, 255, 0.18);
  transform: rotate(28deg);
}

.rating-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.review-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #111b27;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #176bd6, #79bcff);
}

.review-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 6px;
  object-fit: cover;
}

.review-card h3 {
  margin: 0;
  color: #111b27;
  font-size: 17px;
  line-height: 1.2;
}

.review-card p {
  margin: 0;
  color: #32465c;
  font-size: 14px;
  font-weight: 620;
}

.stars {
  color: #ffb229;
  font-size: 14px;
  font-weight: 950;
}

.stars span {
  margin-left: 8px;
  color: #8090a2;
  font-size: 12px;
  font-weight: 750;
}

.review-card.featured {
  grid-column: span 2;
}

.review-card.compact {
  align-content: start;
}

@keyframes routeDraw {
  0% {
    stroke-dashoffset: 950;
    opacity: 0.24;
  }
  45%,
  70% {
    stroke-dashoffset: 0;
    opacity: 0.86;
  }
  100% {
    stroke-dashoffset: -950;
    opacity: 0.24;
  }
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.7;
    stroke-width: 2.6;
  }
  50% {
    opacity: 0.96;
    stroke-width: 3.2;
  }
}

@keyframes pointPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.64;
  }
  50% {
    transform: scale(1.55);
    opacity: 1;
  }
}

@keyframes notePulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(23, 107, 214, 0.14);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(23, 107, 214, 0.02);
  }
}

@media (max-width: 1120px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .logo {
    min-width: auto;
  }

  .logo-title {
    display: none;
  }

  .review-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    padding: 8px 0;
  }

  .nav {
    min-height: 68px;
  }

  .logo img {
    width: 96px;
  }

  .nav-links {
    padding-left: 12px;
    border-left: 0;
  }

  .header-actions {
    border-left: 0;
  }

  .route-map-russia {
    min-width: 900px;
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 20px, 1180px);
    padding: 0 12px;
  }

  .logo img {
    width: 82px;
  }

  .eyebrow {
    width: auto;
    font-size: 13px;
  }

  .bonus-card {
    padding: 22px;
  }

  .bonus-card::before {
    display: none;
  }

  .review-board,
  .review-card.featured {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
}

/* Fifth refinement pass */
.site-header {
  position: fixed !important;
  inset: 0 0 auto;
  z-index: 80;
  padding: 18px 0 0 !important;
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header.is-scrolled {
  background: transparent !important;
  box-shadow: none !important;
}

.nav {
  min-height: 76px;
  border: 1px solid rgba(126, 190, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(4, 14, 27, 0.9), rgba(5, 28, 58, 0.78)),
    rgba(5, 12, 22, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav {
  background:
    linear-gradient(135deg, rgba(4, 14, 27, 0.97), rgba(5, 28, 58, 0.92)),
    rgba(5, 12, 22, 0.94);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo {
  min-width: 258px;
  gap: 16px;
}

.logo img {
  width: 92px;
}

.logo-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-family: "Bahnschrift", "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  color: #f5fbff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.logo-title::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 2px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2c89ff, rgba(126, 190, 255, 0.08));
}

.hero-media {
  animation-duration: 6.8s !important;
  filter: saturate(1.12) contrast(1.06);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 17, 0.92) 0%, rgba(7, 11, 17, 0.7) 42%, rgba(7, 11, 17, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 11, 17, 0.1) 0%, rgba(7, 11, 17, 0.86) 100%);
}

.hero-inner {
  padding-top: 154px;
}

.service-grid article {
  overflow: hidden;
}

.service-grid article::before,
.service-grid article::after {
  display: none !important;
}

.service-grid article > .service-icon {
  width: 74px !important;
  height: 74px !important;
  margin-bottom: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #278bff 0%, #0b3b73 100%) !important;
  box-shadow: 0 22px 42px rgba(23, 107, 214, 0.34);
}

.service-grid article > .service-icon::after {
  border-radius: 12px;
}

.service-grid article > .service-icon svg {
  width: 48px;
  height: 48px;
  stroke: #ffffff;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.22));
}

.service-grid article > .service-icon svg * {
  vector-effect: non-scaling-stroke;
}

.route-board {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 8px;
  background: #130d10 !important;
  box-shadow: 0 34px 92px rgba(11, 16, 23, 0.28);
}

.route-map-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #130d10;
}

.route-map-frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: #130d10;
}

.route-flow-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.route-flow path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.route-flow-cover path {
  fill: none;
  stroke: rgba(20, 13, 17, 0.9);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.86;
}

.route-flow-blue path {
  stroke: #2a91ff;
  stroke-width: 5.2;
  opacity: 0.94;
  filter: url("#flowBlueGlow");
}

.route-flow-red path {
  stroke: #f13b45;
  stroke-width: 5;
  opacity: 0.96;
  filter: url("#flowRedGlow");
}

.route-flow-dashes use {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 16 22;
  animation: routeFlowRun 1.3s linear infinite;
  opacity: 0.9;
}

.route-flow-dashes-blue use {
  stroke: #85d2ff;
  stroke-width: 2.4;
  filter: url("#flowBlueGlow");
}

.route-flow-dashes-red use {
  stroke: #ff9a9f;
  stroke-width: 2.4;
  filter: url("#flowRedGlow");
  animation-duration: 1.08s;
}

.route-flow-dashes use:nth-child(2) {
  animation-delay: -0.28s;
}

.route-flow-dashes use:nth-child(3) {
  animation-delay: -0.54s;
}

.route-flow-dashes use:nth-child(4) {
  animation-delay: -0.76s;
}

.flow-arrow {
  opacity: 0.96;
  transform-box: fill-box;
  transform-origin: center;
}

.flow-arrow-blue {
  fill: #5fb4ff;
  filter: url("#flowBlueGlow");
}

.flow-arrow-red {
  fill: #ff4a52;
  filter: url("#flowRedGlow");
}

.route-city rect {
  fill: rgba(10, 5, 8, 0.88);
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}

.route-city text {
  fill: #ffffff;
  font-size: 16px;
  font-weight: 900;
  paint-order: stroke;
  stroke: rgba(10, 5, 8, 0.55);
  stroke-width: 3px;
}

.route-hub {
  filter: url("#flowRedGlow");
}

.hub-wave {
  fill: rgba(255, 59, 69, 0.14);
  stroke: rgba(255, 59, 69, 0.78);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: hubWave 1.7s ease-out infinite;
}

.hub-wave-delay {
  animation-delay: 0.55s;
}

.hub-core {
  fill: rgba(255, 59, 69, 0.92);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 2;
}

.hub-dot {
  fill: #ffffff;
}

@keyframes routeFlowRun {
  to {
    stroke-dashoffset: -62;
  }
}

@keyframes hubWave {
  0% {
    transform: scale(0.58);
    opacity: 0.92;
  }
  70%,
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-flow-dashes,
  .route-arrows {
    display: none;
  }

  .hub-wave {
    animation: none;
    opacity: 0.28;
  }
}

.reviews-section {
  overflow: hidden;
}

.reviews-layout {
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
}

.review-board.review-screens {
  display: block;
  column-count: 3;
  column-gap: 16px;
  gap: 0;
}

.review-shot {
  position: relative;
  display: block;
  margin: 0 0 16px;
  padding: 10px;
  break-inside: avoid;
  border: 1px solid rgba(126, 190, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.review-shot:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 190, 255, 0.38);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.review-shot img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  border-radius: 6px;
  background: #ffffff;
}

.faq-list details,
.faq-list details[open],
.faq-list details:focus,
.faq-list details:focus-within {
  outline: none !important;
}

.faq-list details[open] {
  border-color: rgba(23, 107, 214, 0.12);
  box-shadow: 0 16px 36px rgba(11, 16, 23, 0.07);
}

.faq-list summary,
.faq-list summary:focus,
.faq-list summary:focus-visible,
.faq-list summary:active {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1120px) {
  .logo {
    min-width: auto;
  }

  .review-board.review-screens {
    column-count: 2;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 10px !important;
  }

  .nav {
    width: min(100% - 24px, 1180px);
  }

  .logo img {
    width: 82px;
  }

  .hero-inner {
    padding-top: 128px;
  }

  .nav-links,
  .header-actions {
    top: 92px;
  }

  .header-actions {
    top: 430px;
  }
}

@media (max-width: 640px) {
  .logo img {
    width: 76px;
  }

  .hero-inner {
    padding-top: 118px;
  }

  .service-grid article > .service-icon {
    width: 66px !important;
    height: 66px !important;
  }

  .service-grid article > .service-icon svg {
    width: 42px;
    height: 42px;
  }

  .review-board.review-screens {
    column-count: 1;
  }
}

/* Form refinement pass */
.route-flow-overlay {
  display: none !important;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.contact-methods legend {
  margin-bottom: 2px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 900;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.contact-choice {
  display: block !important;
  cursor: pointer;
}

.contact-choice input {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.contact-choice span {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 12px 10px;
  border: 1px solid #cfd9e5;
  border-radius: 8px;
  background: #fbfdff;
  color: #14263a;
  font-size: 14px;
  font-weight: 900;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.contact-choice:hover span,
.contact-choice input:checked + span {
  transform: translateY(-1px);
  border-color: rgba(23, 107, 214, 0.5);
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  color: var(--blue-2);
  box-shadow: 0 12px 28px rgba(23, 107, 214, 0.12);
}

.call-time,
.telegram-contact {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(23, 107, 214, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(23, 107, 214, 0.1), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow: 0 14px 34px rgba(11, 16, 23, 0.06);
}

.call-time[hidden],
.telegram-contact[hidden] {
  display: none !important;
}

.call-warning {
  position: relative;
  margin: 0;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(23, 107, 214, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #25384d;
  font-size: 13px !important;
  line-height: 1.55;
  font-weight: 750;
}

.call-warning::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(23, 107, 214, 0.1);
}

@media (max-width: 760px) {
  .contact-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Synchronized form hint dots */
.quiz-final .final-note::before,
.call-warning::before {
  animation: syncedHintDot 1.45s ease-in-out infinite !important;
  animation-delay: 0s !important;
}

@keyframes syncedHintDot {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(23, 107, 214, 0.14);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(23, 107, 214, 0.02);
  }
}

/* Service icon image pass */
.service-grid article > .service-icon {
  width: 88px !important;
  height: 70px !important;
  border: 1px solid rgba(23, 107, 214, 0.22) !important;
  border-radius: 12px !important;
  background:
    radial-gradient(circle at 24% 18%, rgba(63, 151, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #edf6ff 100%) !important;
  box-shadow: 0 18px 38px rgba(23, 107, 214, 0.16) !important;
}

.service-grid article > .service-icon::after {
  display: none !important;
}

.service-icon img {
  display: block;
  width: 86%;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(8, 20, 36, 0.16));
}

.service-grid article[data-service="auto"] .service-icon img {
  width: 104%;
  height: 96%;
  transform: translateY(2px);
}

.service-grid article[data-service="moto"] .service-icon img {
  width: 100%;
  height: 92%;
  transform: translateY(1px);
}

.service-grid article[data-service="cross"] .service-icon img {
  width: 106%;
  height: 104%;
  transform: translateY(4px);
}

.service-grid article[data-service="special"] .service-icon img {
  width: 94%;
}

.service-grid article[data-service="parts"] .service-icon img {
  width: 82%;
  height: 82%;
}

@media (max-width: 640px) {
  .service-grid article > .service-icon {
    width: 78px !important;
    height: 64px !important;
  }
}

/* Route map rebuild */
.routes-section .route-board {
  padding: clamp(14px, 2vw, 26px) !important;
  border: 1px solid rgba(23, 107, 214, 0.16) !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 84% 18%, rgba(23, 107, 214, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%) !important;
  box-shadow: 0 34px 92px rgba(11, 16, 23, 0.14) !important;
}

.routes-section .route-map-frame {
  position: relative;
  aspect-ratio: 1286 / 816;
  overflow: hidden;
  border: 1px solid rgba(23, 107, 214, 0.12);
  border-radius: 8px;
  background: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.routes-section .route-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.46)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 16%, transparent 82%, rgba(255, 255, 255, 0.58));
}

.routes-section .route-map-frame img {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #ffffff !important;
  filter: saturate(1.08) contrast(1.02);
}

.route-network {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.route-paths path,
.route-dashes use {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.route-blue path {
  stroke: #176bd6;
  stroke-width: 3.4;
  opacity: 0.58;
  filter: url("#routeBlueGlow");
}

.route-red path {
  stroke: #dc1f35;
  stroke-width: 3.6;
  opacity: 0.76;
  filter: url("#routeRedGlow");
}

.route-dashes use {
  stroke-dasharray: 11 18;
  opacity: 0.58;
}

.route-dashes-blue use {
  stroke: #77c4ff;
  stroke-width: 1.9;
  filter: url("#routeBlueGlow");
}

.route-dashes-red use {
  stroke: #ff7a82;
  stroke-width: 2;
  filter: url("#routeRedGlow");
}

.route-dashes use:nth-child(2) {
  animation-delay: -0.18s;
}

.route-dashes use:nth-child(3) {
  animation-delay: -0.36s;
}

.route-dashes use:nth-child(4) {
  animation-delay: -0.54s;
}

.route-dashes use:nth-child(5) {
  animation-delay: -0.72s;
}

.route-dashes use:nth-child(6) {
  animation-delay: -0.9s;
}

.route-dashes use:nth-child(7) {
  animation-delay: -1.08s;
}

.route-dashes use:nth-child(8) {
  animation-delay: -1.26s;
}

.route-arrow-blue,
.route-arrow-red {
  opacity: 0.95;
  transform-box: fill-box;
  transform-origin: center;
}

.route-arrow-blue {
  fill: #2f95ff;
  filter: url("#routeBlueGlow");
}

.route-arrow-red {
  fill: #e52d3f;
  filter: url("#routeRedGlow");
}

.route-runner {
  opacity: 0.96;
  transform-box: fill-box;
  transform-origin: center;
}

.route-runner-blue {
  fill: #8ed0ff;
  filter: url("#routeBlueGlow");
  animation: routeRunnerBreath 2.4s ease-in-out infinite;
}

.route-runner-red {
  fill: #ff5964;
  filter: url("#routeRedGlow");
  animation: routeRunnerBreath 2.1s ease-in-out infinite;
}

.route-point {
  filter: drop-shadow(0 8px 14px rgba(8, 27, 55, 0.18));
}

.route-point .point-ring {
  fill: #ffffff;
  stroke: #176bd6;
  stroke-width: 2.5;
}

.route-point .point-core {
  fill: #176bd6;
}

.route-point.source .point-ring {
  stroke: #dc1f35;
}

.route-point.source .point-core {
  fill: #dc1f35;
}

.route-point text {
  fill: #0c2947;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 5px;
  stroke-linejoin: round;
}

.route-point.source text {
  fill: #9f1425;
}

.route-main-hub {
  filter: url("#routeRedGlow");
}

.route-main-hub .hub-ring {
  fill: rgba(220, 31, 53, 0.14);
  stroke: rgba(220, 31, 53, 0.78);
  stroke-width: 2.4;
  transform-box: fill-box;
  transform-origin: center;
  animation: routeHubPulse 1.8s ease-out infinite;
}

.route-main-hub .hub-ring-delay {
  animation-delay: 0.58s;
}

.route-main-hub .point-ring {
  fill: #ffffff;
  stroke: #dc1f35;
  stroke-width: 3;
}

.route-main-hub .point-core {
  fill: #dc1f35;
}

.route-main-hub text {
  fill: #071a31;
  font-size: 19px;
}

.route-point .route-city {
  fill: #0b2746;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  paint-order: stroke;
  pointer-events: none;
  stroke: rgba(255, 255, 255, 0.98);
  stroke-linejoin: round;
  stroke-width: 5px;
}

.route-point.source .route-city,
.route-main-hub .route-city {
  fill: #a91122;
}

.route-main-hub .route-city-main {
  font-size: 16px;
}

.route-point .route-city-two-line {
  font-size: 12px;
}

.route-point .route-city tspan {
  paint-order: stroke;
  pointer-events: none;
}

.route-legend-card {
  grid-column: 1 / -1;
}

.routes-section .route-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  padding: 0;
}

.routes-section .route-notes article {
  border-color: rgba(23, 107, 214, 0.12);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.routes-section .route-notes span {
  color: #0c2947;
}

.routes-section .route-notes p {
  color: #314358;
}

.route-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.route-legend i {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(23, 107, 214, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #1d3550;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

@keyframes routeNetworkFlow {
  to {
    stroke-dashoffset: -64;
  }
}

@keyframes routeRunnerBreath {
  0%,
  100% {
    opacity: 0.46;
  }
  50% {
    opacity: 1;
  }
}

@keyframes routeHubPulse {
  0% {
    transform: scale(0.55);
    opacity: 0.92;
  }
  72%,
  100% {
    transform: scale(1.16);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-dashes,
  .route-arrows,
  .route-runners {
    display: none;
  }

  .route-main-hub .hub-ring {
    animation: none;
    opacity: 0.28;
  }
}

@media (max-width: 920px) {
  .routes-section .route-board {
    overflow-x: auto;
  }

  .routes-section .route-map-frame {
    min-width: 860px;
  }
}

@media (max-width: 640px) {
  .routes-section .route-map-frame {
    min-width: 760px;
  }

  .route-point text {
    font-size: 12px;
  }

  .route-main-hub text {
    font-size: 14px;
  }
}

/* Alpha polish pass */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.quiz-hint {
  max-width: 720px;
  margin: -10px 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 107, 214, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbff 0%, #edf6ff 100%);
  color: #203347;
  font-size: 14px;
  font-weight: 850;
}

.option-grid button.is-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.option-grid button.is-selected {
  color: #071d38;
}

.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.45;
}

.form-message.show {
  display: block;
}

.form-message.success {
  border: 1px solid rgba(31, 157, 116, 0.22);
  background: #eaf8f2;
  color: #14664b;
}

.form-message.error {
  border: 1px solid rgba(226, 64, 58, 0.22);
  background: #fff0ef;
  color: #9d2824;
}

.mini-form.is-sending,
.contact-form.is-sending {
  opacity: 0.82;
}

.mini-form button[disabled],
.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.78;
}

.site-header {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.logo-title {
  color: #ffffff;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy .eyebrow,
.section-kicker {
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  text-wrap: balance;
}

.hero .lead {
  max-width: 680px;
}

.proof-grid article,
.quiz-card,
.service-grid article,
.country-card,
.trust-stack article,
.route-board,
.formula,
.process-grid article,
.car-card,
.case-card,
.faq-list details,
.contact-form,
.safety-panel {
  border-radius: 8px !important;
}

.quiz-card {
  position: relative;
  overflow: hidden;
}

.quiz-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid #2f8cff;
  pointer-events: none;
}

.quiz-nav .text-btn[data-next] {
  min-width: 86px;
  text-align: right;
}

.service-grid article {
  min-height: 250px;
}

.service-grid article p,
.country-card p,
.process-grid p,
.case-card p,
.faq-list p,
.contact-copy p,
.reviews-intro p {
  color: #314358;
}

.country-card {
  isolation: isolate;
}

.country-card::before {
  background: linear-gradient(180deg, rgba(4, 13, 24, 0.2), rgba(4, 13, 24, 0.78)) !important;
}

.country-card h3 {
  text-wrap: balance;
}

.trust-section,
.price-section,
.faq-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(23, 107, 214, 0.08), transparent 34%),
    linear-gradient(180deg, #071421 0%, #0c1f33 100%);
}

.trust-copy p,
.price-copy p,
.faq-section .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.trust-copy h2,
.price-copy h2,
.faq-section h2,
.trust-section .section-kicker,
.price-section .section-kicker,
.faq-section .section-kicker {
  color: #ffffff;
}

.trust-stack article,
.formula,
.faq-list details {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14) !important;
}

.trust-stack h3,
.trust-stack p,
.formula span,
.faq-list summary,
.faq-list p {
  color: #ffffff;
}

.formula i {
  color: #70b7ff;
}

.faq-list details[open] {
  border-color: rgba(101, 174, 255, 0.38) !important;
}

.faq-list summary:focus,
.faq-list summary:focus-visible,
.faq-list details:focus,
.faq-list details:focus-within {
  outline: 0 !important;
  box-shadow: none !important;
}

.process-grid article {
  background:
    radial-gradient(circle at 92% 8%, rgba(23, 107, 214, 0.12), transparent 28%),
    #ffffff !important;
}

.case-card {
  overflow: hidden;
  background: #071421 !important;
}

.case-card img {
  aspect-ratio: 16 / 10;
}

.case-card div {
  min-height: 178px;
}

.review-shot {
  background: #ffffff;
}

.review-shot img {
  width: 100%;
  filter: none !important;
}

.contact-form {
  border: 1px solid rgba(23, 107, 214, 0.18);
  background:
    radial-gradient(circle at 90% 10%, rgba(23, 107, 214, 0.12), transparent 30%),
    #ffffff;
  box-shadow: 0 28px 80px rgba(11, 16, 23, 0.12);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 107, 214, 0.18), transparent 28%),
    #071421 !important;
}

.footer-grid {
  grid-template-columns: 1fr 1fr 1.15fr 1fr;
}

.footer-grid > div {
  min-height: 100%;
}

.subfooter {
  gap: 16px;
}

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .logo-title {
    font-size: 21px;
  }

  .container,
  .nav,
  .hero-inner {
    width: min(100% - 24px, 1180px) !important;
  }

  .proof-grid,
  .section-head,
  .trust-layout,
  .price-layout,
  .reviews-layout,
  .contact-layout,
  .process-grid,
  .case-grid,
  .country-grid,
  .service-grid,
  .cars-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .section-head {
    gap: 16px;
  }

  .section-head h2,
  .trust-copy h2,
  .price-copy h2,
  .reviews-intro h2,
  .contact-copy h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: auto;
  }

  .section-head p {
    min-width: 0;
  }

  .option-grid,
  .option-grid-wide,
  .contact-choice-grid {
    grid-template-columns: 1fr !important;
  }

  .quiz-card {
    width: 100%;
    padding: 18px;
  }

  .quiz-slide h3 {
    max-width: 100%;
    font-size: 25px;
  }

  .quiz-nav {
    align-items: center;
  }

  .quiz-hint {
    font-size: 13px;
  }

  .service-grid article {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Alpha polish patch 27 */
.quiz-nav {
  justify-content: flex-start !important;
  align-items: center;
  gap: 12px;
}

.quiz-nav .text-btn {
  min-width: 98px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(23, 107, 214, 0.14);
  background: #edf5ff;
  color: #0d55b2;
  text-align: center !important;
}

.quiz-nav .text-btn[data-next] {
  min-width: 98px !important;
  margin-left: 0;
  background: #176bd6;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(23, 107, 214, 0.18);
}

.quiz-nav .text-btn:disabled {
  border-color: transparent;
  background: #eef3f8;
  color: #9baabc;
  box-shadow: none;
}

.quiz-hint {
  border-color: rgba(23, 107, 214, 0.2);
  background: linear-gradient(135deg, #f4f9ff, #ffffff);
  color: #20354d;
}

.country-card::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(2, 8, 16, 0.08), rgba(2, 8, 16, 0.52) 44%, rgba(2, 8, 16, 0.9) 100%),
    linear-gradient(180deg, rgba(5, 12, 22, 0.32), rgba(5, 12, 22, 0.96)) !important;
}

.country-top span {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.country-card h3,
.country-card p,
.country-card li {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

.country-card p {
  max-width: 94%;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 700;
}

.country-card li {
  color: rgba(255, 255, 255, 0.94) !important;
}

.process-grid article {
  isolation: isolate;
}

.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto !important;
  background: linear-gradient(110deg, transparent 0%, transparent 36%, rgba(47, 140, 255, 0.18) 48%, rgba(255, 255, 255, 0.56) 52%, transparent 66%, transparent 100%);
  transform: translateX(-135%);
  animation: processWave 5.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  z-index: -1;
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(23, 107, 214, 0.36), transparent);
  animation: processUnderline 4.8s ease-in-out infinite;
}

.process-grid article:nth-child(2)::before,
.process-grid article:nth-child(2)::after {
  animation-delay: 0.35s;
}

.process-grid article:nth-child(3)::before,
.process-grid article:nth-child(3)::after {
  animation-delay: 0.7s;
}

.process-grid article:nth-child(4)::before,
.process-grid article:nth-child(4)::after {
  animation-delay: 1.05s;
}

.process-grid article:nth-child(5)::before,
.process-grid article:nth-child(5)::after {
  animation-delay: 1.4s;
}

.process-grid article:nth-child(6)::before,
.process-grid article:nth-child(6)::after {
  animation-delay: 1.75s;
}

@keyframes processWave {
  0%, 38% {
    transform: translateX(-135%);
  }
  72%, 100% {
    transform: translateX(135%);
  }
}

@keyframes processUnderline {
  0%, 100% {
    opacity: 0.28;
    transform: translateX(-18%);
  }
  48% {
    opacity: 0.9;
    transform: translateX(18%);
  }
}

.faq-section .section-head p {
  border: 1px solid rgba(113, 178, 255, 0.24);
  background:
    radial-gradient(circle at 90% 12%, rgba(47, 140, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(12, 31, 51, 0.96), rgba(17, 55, 94, 0.9)) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
}

.safety-section {
  position: relative;
  padding: 96px 0 !important;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 140, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #071421 0%, #0c1f33 100%) !important;
}

.safety-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(113, 178, 255, 0.32), transparent);
}

.safety-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(113, 178, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(7, 20, 33, 0.96), rgba(7, 20, 33, 0.82)),
    url("assets/office.webp") center / cover no-repeat !important;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.safety-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 44%, rgba(113, 178, 255, 0.11) 50%, transparent 58%, transparent 100%);
  animation: safetyGlow 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes safetyGlow {
  0%, 34% {
    transform: translateX(-45%);
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  100% {
    transform: translateX(45%);
    opacity: 0;
  }
}

.safety-points span {
  border-color: rgba(113, 178, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 3px 0 0 rgba(47, 140, 255, 0.78);
}

.contact-choice-grid {
  align-items: stretch;
}

.contact-choice {
  height: 100%;
}

.contact-choice span {
  height: 58px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.call-time,
.telegram-contact {
  max-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: max-height 0.34s ease, padding 0.34s ease, opacity 0.24s ease, transform 0.34s ease, visibility 0s linear 0.34s;
}

.call-time[hidden],
.telegram-contact[hidden] {
  display: grid !important;
}

.call-time.is-visible,
.telegram-contact.is-visible {
  max-height: 360px;
  padding-top: 16px;
  padding-bottom: 16px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.call-time label,
.telegram-contact label {
  color: #14263a;
}

.call-time select {
  width: 100%;
  min-height: 52px;
  padding: 0 46px 0 16px;
  border: 1px solid #cfd9e5;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #176bd6 50%) calc(100% - 25px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, #ffffff, #f5f9ff);
  color: #14263a;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(11, 16, 23, 0.06);
}

.call-time select:focus {
  outline: none;
  border-color: rgba(23, 107, 214, 0.55);
  box-shadow: 0 0 0 4px rgba(23, 107, 214, 0.12), 0 12px 28px rgba(11, 16, 23, 0.06);
}

@media (max-width: 760px) {
  .quiz-nav {
    justify-content: stretch !important;
  }

  .quiz-nav .text-btn {
    flex: 1 1 0;
  }

  .contact-choice span {
    height: 56px;
    min-height: 56px;
  }

  .safety-section {
    padding: 72px 0 !important;
  }
}

@media (max-width: 640px) {
  .routes-section .route-board {
    max-width: 100%;
    overflow: hidden;
  }

  .routes-section .route-map-frame {
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
    overflow: hidden;
  }

  .routes-section .route-map-frame img,
  .route-network {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Alpha polish patch 28 */
.quiz-card.is-auto-advancing .quiz-nav .text-btn[data-next]:disabled {
  border-color: transparent !important;
  background: #eef3f8 !important;
  color: #9baabc !important;
  opacity: 1;
  box-shadow: none;
  transition: none !important;
}

.quiz-nav .text-btn,
.quiz-nav .text-btn[data-next],
.quiz-nav .text-btn[data-next]:disabled {
  transition: none !important;
}

.contact-list a {
  position: relative;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.contact-list a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(113, 178, 255, 0.1), transparent);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
  pointer-events: none;
}

.contact-list a:hover::after {
  transform: translateX(120%);
}

.contact-list .contact-card-tg {
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  background:
    radial-gradient(circle at 14% 50%, rgba(46, 168, 229, 0.26), transparent 34%),
    rgba(255, 255, 255, 0.08);
}

.contact-list .contact-card-tg .contact-icon {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #35aee2, #176bd6);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(23, 107, 214, 0.3);
}

.contact-list .contact-card-tg svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  transform: translateX(-1px);
}

.contact-list .contact-card-tg span:not(.contact-icon) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list .contact-card-tg strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25;
}

.final-cta .contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(113, 178, 255, 0.24);
  background:
    radial-gradient(circle at 92% 8%, rgba(47, 140, 255, 0.26), transparent 34%),
    linear-gradient(145deg, rgba(9, 22, 37, 0.96), rgba(13, 37, 63, 0.92)) !important;
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.final-cta .contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(47, 140, 255, 0.1)),
    linear-gradient(90deg, rgba(47, 140, 255, 0.45), transparent 32%);
  opacity: 0.36;
  pointer-events: none;
}

.final-cta .contact-form > * {
  position: relative;
  z-index: 1;
}

.final-cta .contact-form h3,
.final-cta .contact-form label,
.final-cta .contact-methods legend {
  color: #ffffff;
}

.final-cta .contact-form h3 {
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.final-cta .contact-form input,
.final-cta .contact-form textarea,
.final-cta .call-time select {
  border-color: rgba(113, 178, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 28px rgba(0, 0, 0, 0.12);
}

.final-cta .contact-form input::placeholder,
.final-cta .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.final-cta .contact-form input:focus,
.final-cta .contact-form textarea:focus,
.final-cta .call-time select:focus {
  border-color: rgba(113, 178, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(47, 140, 255, 0.16), 0 16px 34px rgba(0, 0, 0, 0.16);
}

.final-cta .contact-form input.is-invalid {
  border-color: rgba(255, 122, 116, 0.88);
  box-shadow: 0 0 0 4px rgba(255, 122, 116, 0.16), 0 16px 34px rgba(0, 0, 0, 0.16);
}

.final-cta .contact-choice span {
  border-color: rgba(113, 178, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.final-cta .contact-choice:hover span,
.final-cta .contact-choice input:checked + span {
  border-color: rgba(113, 178, 255, 0.72);
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.86), rgba(16, 84, 178, 0.9));
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(23, 107, 214, 0.24);
}

.final-cta .telegram-contact,
.final-cta .call-time {
  border-color: rgba(113, 178, 255, 0.24);
  background:
    radial-gradient(circle at 92% 16%, rgba(47, 140, 255, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.06);
}

.final-cta .telegram-contact label,
.final-cta .call-time label {
  color: #ffffff;
}

.final-cta .call-time select {
  background:
    linear-gradient(45deg, transparent 50%, #7ec2ff 50%) calc(100% - 25px) 50% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.08);
}

.final-cta .call-time select option {
  background: #0c1f33;
  color: #ffffff;
}

.final-cta .call-warning {
  border-color: rgba(113, 178, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .contact-form .btn {
  background: linear-gradient(135deg, #2f8cff, #176bd6);
  box-shadow: 0 18px 42px rgba(23, 107, 214, 0.32);
}

@media (max-width: 760px) {
  .contact-list .contact-card-tg {
    grid-template-columns: 48px 1fr;
  }

  .contact-list .contact-card-tg .contact-icon {
    width: 44px;
    height: 44px;
  }
}

/* Premium route map pass */
.routes-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(23, 107, 214, 0.12), transparent 34%),
    radial-gradient(circle at 82% 30%, rgba(220, 31, 53, 0.06), transparent 28%),
    linear-gradient(180deg, #f4f8fd 0%, #edf4fb 100%) !important;
}

.routes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 107, 214, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 107, 214, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.routes-section .section-head p {
  border: 1px solid rgba(23, 107, 214, 0.18);
  border-left: 5px solid #176bd6;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 244, 255, 0.88));
  color: #10243a;
  box-shadow: 0 18px 44px rgba(23, 107, 214, 0.1);
}

.routes-section .route-board {
  position: relative;
  padding: clamp(18px, 2.4vw, 32px) !important;
  border: 1px solid rgba(113, 178, 255, 0.26) !important;
  background:
    radial-gradient(circle at 20% 18%, rgba(113, 178, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(220, 31, 53, 0.12), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #0d2238 48%, #07111e 100%) !important;
  box-shadow:
    0 38px 100px rgba(7, 17, 30, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  isolation: isolate;
}

.routes-section .route-board::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(120deg, transparent 0%, rgba(113, 178, 255, 0.16) 22%, transparent 44%);
  transform: translateX(-70%);
  animation: routeBoardSheen 7s ease-in-out infinite;
}

.routes-section .route-map-frame {
  border: 1px solid rgba(113, 178, 255, 0.2);
  background:
    radial-gradient(circle at 52% 58%, rgba(23, 107, 214, 0.08), transparent 42%),
    #ffffff !important;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.routes-section .route-map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 72%, rgba(220, 31, 53, 0.12), transparent 18%),
    radial-gradient(circle at 46% 54%, rgba(23, 107, 214, 0.12), transparent 34%);
  mix-blend-mode: multiply;
}

.routes-section .route-map-frame::after {
  opacity: 0.55;
}

.route-map-badge {
  position: absolute;
  left: clamp(14px, 2vw, 24px);
  top: clamp(14px, 2vw, 24px);
  z-index: 4;
  max-width: 320px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(113, 178, 255, 0.3);
  border-radius: 8px;
  background: rgba(6, 17, 31, 0.78);
  color: #ffffff;
  box-shadow: 0 20px 46px rgba(7, 17, 30, 0.2);
  backdrop-filter: blur(12px);
}

.route-map-badge span {
  color: #83c6ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.route-map-badge strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
}

.route-network {
  z-index: 3;
}

.route-blue path {
  stroke: #1276ef;
  stroke-width: 2.8;
  opacity: 0.42;
}

.route-red path {
  stroke: #e22d40;
  stroke-width: 3.2;
  opacity: 0.62;
}

.route-dashes use {
  stroke-dasharray: 13 20;
  animation: routeNetworkFlow 1.9s linear infinite;
}

.route-dashes-blue use {
  stroke: #8ed0ff;
  stroke-width: 2.2;
  opacity: 0.88;
}

.route-dashes-red use {
  stroke: #ff8d96;
  stroke-width: 2.35;
  opacity: 0.9;
}

.route-point .point-ring {
  fill: rgba(255, 255, 255, 0.96);
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: routePointPulse 2.6s ease-in-out infinite;
}

.route-point .point-core {
  filter: drop-shadow(0 0 8px rgba(23, 107, 214, 0.45));
}

.route-point.source .point-core,
.route-main-hub .point-core {
  filter: drop-shadow(0 0 10px rgba(220, 31, 53, 0.5));
}

.route-main-hub .hub-ring {
  animation-duration: 1.55s;
}

.route-point .route-city {
  font-size: 12.2px;
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 5.8px;
}

.route-main-hub .route-city-main {
  font-size: 15px;
}

.routes-section .route-notes {
  gap: 16px;
  margin-top: 18px;
}

.routes-section .route-notes article {
  position: relative;
  min-height: 118px;
  padding: 22px 22px 22px 74px;
  overflow: hidden;
  border: 1px solid rgba(113, 178, 255, 0.18);
  background:
    radial-gradient(circle at 86% 18%, rgba(47, 140, 255, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.routes-section .route-notes article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(135deg, #2f8cff, #0d55b2);
  box-shadow: 0 16px 34px rgba(23, 107, 214, 0.28);
}

.routes-section .route-notes article:nth-child(1)::before {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(135deg, #ff5c65, #b91527);
}

.routes-section .route-notes article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(113, 178, 255, 0.12), transparent);
  transform: translateX(-130%);
  animation: routeCardSheen 6.8s ease-in-out infinite;
}

.routes-section .route-notes span,
.routes-section .route-notes p {
  position: relative;
  z-index: 1;
}

.routes-section .route-notes span {
  color: #ffffff;
  font-size: 18px;
}

.routes-section .route-notes p {
  color: rgba(235, 246, 255, 0.78);
  font-weight: 650;
}

@keyframes routeBoardSheen {
  0%,
  48% {
    transform: translateX(-80%);
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  100% {
    transform: translateX(80%);
    opacity: 0;
  }
}

@keyframes routeCardSheen {
  0%,
  54% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes routePointPulse {
  0%,
  100% {
    transform: scale(0.94);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (max-width: 760px) {
  .route-map-badge {
    max-width: 230px;
    padding: 10px 12px;
  }

  .route-map-badge strong {
    font-size: 12px;
  }

  .routes-section .route-notes article {
    padding-left: 66px;
  }
}

/* Alpha polish pass 34 */
.route-map-badge {
  left: 50%;
  top: clamp(14px, 1.6vw, 22px);
  max-width: none;
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  border-color: rgba(113, 178, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.84), rgba(12, 45, 82, 0.7));
  box-shadow: 0 18px 44px rgba(7, 17, 30, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.route-map-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #55b7ff;
  box-shadow: 0 0 0 6px rgba(85, 183, 255, 0.12), 0 0 18px rgba(85, 183, 255, 0.72);
}

.route-map-badge span {
  color: #9ed2ff;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.route-map-badge strong {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  white-space: nowrap;
}

.route-point .route-city {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 850;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 4.4px;
  filter: drop-shadow(0 4px 8px rgba(7, 17, 30, 0.22));
}

.route-point.source .route-city,
.route-main-hub .route-city {
  fill: #c4142a;
}

.route-main-hub .route-city-main {
  font-size: 14px;
}

.reviews-layout {
  grid-template-columns: minmax(300px, 0.54fr) minmax(0, 1.46fr);
  gap: clamp(34px, 4vw, 64px);
}

.review-board.review-screens {
  column-count: 2;
  column-gap: 20px;
}

.review-shot {
  margin-bottom: 20px;
  padding: 12px;
  border-color: rgba(126, 190, 255, 0.22);
  box-shadow: 0 26px 66px rgba(0, 0, 0, 0.28);
}

.review-shot img {
  border-radius: 7px;
}

.reviews-intro .btn.btn-secondary {
  border: 1px solid rgba(113, 178, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.92), rgba(11, 65, 138, 0.94));
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(23, 107, 214, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.reviews-intro .btn.btn-secondary:hover {
  background:
    linear-gradient(135deg, rgba(93, 174, 255, 0.96), rgba(23, 107, 214, 0.96));
  color: #ffffff;
  transform: translateY(-2px);
}

.faq-section,
.safety-section,
.final-cta {
  position: relative;
  overflow: hidden;
}

.faq-section {
  padding-bottom: 142px !important;
}

.faq-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 20, 33, 0), #081827 76%, #081827 100%);
}

.faq-section > .container {
  position: relative;
  z-index: 1;
}

.safety-section {
  margin-top: -84px;
  padding-top: 150px !important;
  padding-bottom: 112px !important;
  border-top: 0 !important;
  background:
    radial-gradient(circle at 22% 12%, rgba(47, 140, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #081827 0%, #0a1d30 42%, #071421 100%) !important;
}

.safety-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 20, 33, 0), rgba(7, 16, 27, 0.9));
}

.safety-panel {
  position: relative;
  z-index: 1;
}

.final-cta {
  margin-top: -1px;
  box-shadow: inset 0 80px 90px rgba(7, 16, 27, 0.7);
}

.service-grid article > .service-index,
.trust-stack span,
.process-grid span {
  width: 52px;
  height: 42px;
  border: 1px solid rgba(113, 178, 255, 0.26);
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #2f8cff, #0d55b2);
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(23, 107, 214, 0.24);
}

.service-grid article > .service-index {
  top: 18px;
  right: 18px;
}

.trust-stack span,
.process-grid span {
  margin-bottom: 24px;
}

.formula span::before {
  width: 46px;
  height: 36px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #2f8cff, #0d55b2);
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(23, 107, 214, 0.24);
}

.process-grid article {
  padding-top: 28px;
}

@media (max-width: 1120px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .route-map-badge {
    left: 14px;
    right: 14px;
    max-width: none;
    justify-content: center;
    transform: none;
  }

  .route-map-badge strong {
    white-space: normal;
  }

  .review-board.review-screens {
    column-count: 1;
  }
}

/* Alpha polish pass 35 */
.route-map-badge {
  top: clamp(18px, 2vw, 28px);
  padding: 11px 18px 11px 15px;
  border-radius: 8px;
  border-color: rgba(126, 190, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(4, 17, 31, 0.86), rgba(13, 55, 98, 0.78));
  backdrop-filter: blur(12px);
  box-shadow:
    0 20px 48px rgba(5, 15, 28, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.route-map-badge::before {
  width: 9px;
  height: 9px;
  background: #62beff;
  box-shadow:
    0 0 0 6px rgba(98, 190, 255, 0.12),
    0 0 18px rgba(98, 190, 255, 0.72);
  animation: routeBadgePulse 2.8s ease-in-out infinite;
}

.route-map-badge span {
  color: #a9d7ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.route-map-badge strong {
  font-size: 14px;
  font-weight: 900;
}

.route-point .route-city {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 850;
  fill: #06192f;
  paint-order: stroke fill;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 3.2px;
  filter: drop-shadow(0 3px 7px rgba(7, 17, 30, 0.2));
}

.route-point.source .route-city,
.route-main-hub .route-city {
  fill: #c81228;
  stroke: rgba(255, 255, 255, 0.92);
}

.route-main-hub .route-city-main {
  font-size: 15px;
  stroke-width: 3.6px;
}

.route-point .route-city-two-line {
  font-size: 12.2px;
}

.review-board.review-screens {
  column-gap: 24px;
}

.review-shot {
  margin-bottom: 24px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98));
  border-color: rgba(154, 203, 255, 0.32);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.reviews-intro .btn.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-color: rgba(105, 181, 255, 0.42);
  background:
    radial-gradient(circle at 18% 20%, rgba(83, 181, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(8, 34, 62, 0.96), rgba(18, 93, 174, 0.92));
  box-shadow:
    0 18px 44px rgba(20, 98, 196, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.reviews-intro .btn.btn-secondary::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #25c46b;
  box-shadow: 0 0 0 6px rgba(37, 196, 107, 0.12);
  transform-origin: center;
  animation: reviewLiveDot 1.45s ease-in-out infinite;
}

.case-carousel {
  position: relative;
}

.case-carousel .case-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 0 6px;
}

.case-carousel .case-grid::-webkit-scrollbar {
  display: none;
}

.case-carousel .case-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.case-carousel-nav {
  position: absolute;
  z-index: 4;
  top: 135px;
  left: -18px;
  right: -18px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.case-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(159, 209, 255, 0.32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(5, 18, 31, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  pointer-events: auto;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.case-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(159, 209, 255, 0.58);
  background: rgba(10, 35, 58, 0.82);
}

.case-nav:active {
  transform: translateY(0) scale(0.96);
}

.case-nav:disabled {
  opacity: 0.34;
  cursor: default;
  transform: none;
}

@media (max-width: 980px) {
  .case-carousel .case-card {
    flex-basis: min(420px, 78vw);
  }

  .case-carousel-nav {
    left: 6px;
    right: 6px;
  }
}

@media (max-width: 640px) {
  .case-carousel .case-grid {
    gap: 14px;
    padding-right: 22px;
  }

  .case-carousel .case-card {
    flex-basis: min(330px, 86vw);
  }

  .case-carousel-nav {
    top: 118px;
  }

  .case-nav {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
}

.reviews-intro .btn.btn-secondary:hover {
  border-color: rgba(126, 203, 255, 0.58);
}

@keyframes reviewLiveDot {
  0%,
  100% {
    transform: scale(0.9);
    box-shadow:
      0 0 0 4px rgba(37, 196, 107, 0.1),
      0 0 14px rgba(37, 196, 107, 0.18);
  }

  45% {
    transform: scale(1.2);
    box-shadow:
      0 0 0 8px rgba(37, 196, 107, 0.18),
      0 0 20px rgba(37, 196, 107, 0.36);
  }
}

.reviews-section {
  padding-bottom: clamp(92px, 8vw, 138px);
}

.reviews-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 20, 33, 0), rgba(8, 24, 39, 0.72) 58%, #081827 100%);
}

.reviews-section > .container {
  position: relative;
  z-index: 1;
}

.faq-section {
  margin-top: -1px;
  background:
    radial-gradient(circle at 78% 0%, rgba(47, 140, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #081827 0%, #0a1f34 46%, #081827 100%) !important;
}

.safety-section {
  background:
    radial-gradient(circle at 22% 12%, rgba(47, 140, 255, 0.13), transparent 34%),
    radial-gradient(circle at 80% 55%, rgba(69, 161, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #081827 0%, #0a1d30 46%, #071421 100%) !important;
}

.final-cta {
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 27, 0.76), rgba(7, 16, 27, 0.2)),
    linear-gradient(135deg, rgba(7, 16, 27, 0.94), rgba(10, 39, 69, 0.96)) !important;
}

.service-grid article > .service-index,
.trust-stack span,
.process-grid span {
  width: 58px;
  height: 46px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1;
  border-color: rgba(137, 202, 255, 0.38);
  box-shadow:
    0 18px 38px rgba(23, 107, 214, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.formula span::before {
  width: 54px;
  height: 40px;
  border-radius: 8px;
  font-size: 15px;
  border: 1px solid rgba(137, 202, 255, 0.34);
}

@keyframes routeBadgePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.86;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@media (max-width: 760px) {
  .route-map-badge {
    top: 12px;
    padding: 10px 12px;
  }

  .route-map-badge strong {
    font-size: 12px;
  }

  .route-point .route-city {
    font-size: 12px;
    stroke-width: 3px;
  }

  .service-grid article > .service-index,
  .trust-stack span,
  .process-grid span {
    width: 52px;
    height: 42px;
    font-size: 15px;
  }
}

/* Alpha fix pass 36 */
.proof-section {
  padding-bottom: clamp(42px, 4.5vw, 64px);
}

.quiz-section {
  position: relative;
  z-index: 7;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(66px, 5vw, 88px);
  background:
    radial-gradient(circle at 76% 18%, rgba(47, 140, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%) !important;
}

.quiz-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.72) 36%, rgba(255, 255, 255, 0.96) 100%);
}

.quiz-section .quiz-shell {
  position: relative;
  z-index: 1;
}

.quiz-section .section-head {
  align-items: center;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.quiz-section .section-head h2 {
  max-width: 760px;
}

.quiz-section .section-head p {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #17283b;
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 140, 255, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 255, 0.92)) !important;
}

.quiz-card {
  margin-top: 0;
}

.reviews-layout {
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(30px, 3.4vw, 52px);
}

.review-board.review-screens {
  column-count: 3;
  column-gap: 18px;
}

.review-shot {
  margin-bottom: 18px;
  padding: 8px;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.27),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.reviews-section {
  padding-bottom: clamp(76px, 6vw, 112px);
}

@media (max-width: 1240px) {
  .review-board.review-screens {
    column-count: 2;
  }
}

@media (max-width: 920px) {
  .quiz-section {
    padding-top: 64px;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .proof-section {
    padding-bottom: 42px;
  }

  .quiz-section .section-head {
    gap: 20px;
  }

  .review-board.review-screens {
    column-count: 1;
  }
}

/* Alpha map label fix 37 */
.route-point .route-city-urengoy {
  font-size: 12.2px;
  font-weight: 900;
  stroke-width: 3px;
}

/* Mobile QA pass 38 */
html,
body {
  background-color: #071421;
}

.quiz-card {
  overflow-anchor: none;
}

@media (max-width: 640px) {
  html,
  body {
    min-height: 100%;
    overscroll-behavior-y: none;
  }

  main {
    background: #ffffff;
  }

  .quiz-section {
    overflow: clip;
  }

  .quiz-card {
    contain: layout paint;
  }

  .quiz-slide:not(.quiz-final) {
    min-height: clamp(500px, 62svh, 610px);
  }

  .quiz-slide {
    animation-duration: 0.18s;
  }

  .routes-section .route-board {
    padding: 14px !important;
    overflow: hidden;
  }

  .routes-section .route-map-frame {
    border-radius: 8px;
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.22),
      inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  }

  .routes-section .route-map-frame img,
  .routes-section .route-network {
    transform: scale(1.14);
    transform-origin: 58% 58%;
  }

  .route-map-badge {
    left: 10px;
    right: 10px;
    top: 10px;
    max-width: none;
    padding: 9px 10px;
    gap: 8px;
    justify-content: flex-start;
    transform: none;
  }

  .route-map-badge::before {
    width: 8px;
    height: 8px;
    box-shadow:
      0 0 0 5px rgba(98, 190, 255, 0.12),
      0 0 14px rgba(98, 190, 255, 0.68);
  }

  .route-map-badge span {
    font-size: 10px;
  }

  .route-map-badge strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .route-point .route-city {
    font-size: 10.2px;
    stroke-width: 2.7px;
  }

  .route-main-hub .route-city-main {
    font-size: 11.5px;
    stroke-width: 3px;
  }

  .routes-section .route-notes {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
    padding: 0;
  }

  .routes-section .route-notes article {
    min-height: auto;
    padding: 18px 18px 18px 60px;
    border-radius: 8px;
  }

  .routes-section .route-notes article::before {
    left: 18px;
    top: 18px;
    width: 30px;
    height: 30px;
  }

  .routes-section .route-notes span {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.2;
  }

  .routes-section .route-notes p {
    font-size: 15px;
    line-height: 1.5;
  }

  .reviews-layout {
    gap: 24px;
  }

  .review-board.review-screens {
    display: flex;
    column-count: auto;
    gap: 14px;
    margin: 0 -12px;
    padding: 4px 12px 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-board.review-screens::-webkit-scrollbar {
    display: none;
  }

  .review-shot {
    flex: 0 0 min(86vw, 420px);
    max-height: min(680px, 78svh);
    margin: 0;
    overflow: hidden;
    scroll-snap-align: center;
    border-radius: 8px;
    background: #ffffff;
  }

  .review-shot img {
    display: block;
    width: 100%;
  }

  .site-footer {
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 14% 0%, rgba(23, 107, 214, 0.18), transparent 30%),
      #071421 !important;
  }

  .footer-hero {
    display: grid;
    gap: 22px;
    padding: 34px 0 28px;
  }

  .footer-brand {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
  }

  .footer-brand img {
    width: 74px;
  }

  .footer-brand p {
    font-size: 15px;
    line-height: 1.5;
  }

  .footer-grid {
    gap: 14px;
    padding-top: 26px;
  }

  .footer-grid > div {
    padding: 20px;
  }

  .subfooter {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.45;
  }

  .subfooter span:first-child {
    white-space: nowrap;
  }
}

/* Company trust block + FAQ alignment pass */
.company-trust-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 14%, rgba(47, 140, 255, 0.26), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #0a1f35 52%, #071421 100%) !important;
}

.company-trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.company-trust-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1fr);
  gap: 44px;
  align-items: center;
}

.company-trust-copy .section-kicker,
.company-trust-copy h2 {
  color: #ffffff;
}

.company-trust-copy h2 {
  max-width: 720px;
}

.company-trust-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.company-trust-copy p strong {
  color: #ffffff;
  font-weight: 950;
}

.company-trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.company-trust-points article {
  position: relative;
  min-height: 132px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(137, 193, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.company-trust-points article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #77bcff, rgba(119, 188, 255, 0));
  animation: trustFlow 4.2s ease-in-out infinite;
}

.company-trust-points article:nth-child(2)::before {
  animation-delay: 0.45s;
}

.company-trust-points article:nth-child(3)::before {
  animation-delay: 0.9s;
}

.company-trust-points article:nth-child(4)::before {
  animation-delay: 1.35s;
}

.company-trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(149, 204, 255, 0.24);
  border-radius: 8px;
  color: #b9dcff;
  background: rgba(23, 107, 214, 0.18);
  font-size: 13px;
  font-weight: 950;
}

.company-trust-points p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.company-trust-media {
  position: relative;
  display: grid;
  gap: 12px;
  perspective: 1200px;
  isolation: isolate;
}

.company-trust-media::before {
  content: "";
  position: absolute;
  inset: -18px -16px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(137, 193, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(115deg, transparent 0%, rgba(123, 190, 255, 0.08) 48%, transparent 57%),
    rgba(255, 255, 255, 0.025);
  transform: translate3d(0, 0, 0);
  animation: companyMediaGlow 8.5s ease-in-out infinite;
}

.company-main-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(137, 193, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: translate3d(0, 0, 0);
  animation: companyMainFloat 9s ease-in-out infinite;
}

.company-main-photo::before {
  content: "";
  position: absolute;
  inset: -24% -42%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 33%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-34%) rotate(2deg);
  animation: companyGlassSweep 7.5s ease-in-out infinite;
}

.company-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 14, 25, 0.82));
  z-index: 1;
}

.company-main-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.035) translate3d(0, 0, 0);
  transform-origin: 50% 48%;
  animation: companyPhotoDrift 15s ease-in-out infinite alternate;
  will-change: transform;
}

.company-main-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(7, 20, 33, 0.62);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.company-photo-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.company-photo-strip::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: -8px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(142, 204, 255, 0.5), transparent);
  transform-origin: center;
  animation: companyStripLine 6.5s ease-in-out infinite;
}

.company-photo-strip img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border: 1px solid rgba(137, 193, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  filter: saturate(1.05) contrast(1.02);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
  animation: companyThumbFloat 7.8s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
  cursor: pointer;
}

.company-photo-strip img:nth-child(2) {
  animation-delay: 0.9s;
}

.company-photo-strip img:nth-child(3) {
  animation-delay: 1.8s;
}

.company-main-photo:hover,
.company-photo-strip img:hover {
  border-color: rgba(151, 211, 255, 0.36);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(102, 179, 255, 0.12);
}

.company-main-photo:hover img {
  transform: scale(1.07) translate3d(0, -1.5%, 0);
}

.company-photo-strip img:hover {
  z-index: 2;
  animation: none !important;
  animation-play-state: paused !important;
  filter: brightness(1.04) saturate(1.08) contrast(1.04) !important;
  transform: translateY(-9px) scale(1.045) !important;
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  justify-content: initial;
  align-items: center;
  padding-right: 20px;
}

.faq-list summary::after {
  justify-self: end;
  align-self: center;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
}

@media (max-width: 980px) {
  .company-trust-layout {
    grid-template-columns: 1fr;
  }

  .company-trust-media {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .company-trust-section {
    padding: 68px 0;
  }

  .company-trust-copy p {
    font-size: 16px;
  }

  .company-trust-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .company-trust-points article {
    min-height: 0;
    padding: 18px;
  }

  .company-photo-strip {
    display: flex;
    gap: 10px;
    margin: 0 -12px;
    padding: 0 12px 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .company-photo-strip::-webkit-scrollbar {
    display: none;
  }

  .company-photo-strip img {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .company-main-photo figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
  }

  .faq-list summary {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 14px;
    padding: 17px 16px;
  }

  .faq-list summary::after {
    width: 30px;
    height: 30px;
  }
}

@keyframes companyMediaGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1.012);
  }
}

@keyframes companyMainFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes companyPhotoDrift {
  0% {
    transform: scale(1.035) translate3d(-1.2%, -0.7%, 0);
  }

  48% {
    transform: scale(1.06) translate3d(1.2%, -1.4%, 0);
  }

  100% {
    transform: scale(1.045) translate3d(0.4%, 0.7%, 0);
  }
}

@keyframes companyGlassSweep {
  0%,
  28% {
    opacity: 0;
    transform: translateX(-42%) rotate(2deg);
  }

  42% {
    opacity: 0.55;
  }

  58% {
    opacity: 0;
    transform: translateX(42%) rotate(2deg);
  }

  100% {
    opacity: 0;
    transform: translateX(42%) rotate(2deg);
  }
}

@keyframes companyThumbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -5px, 18px) scale(1.018);
  }
}

@keyframes companyStripLine {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.74);
  }

  50% {
    opacity: 0.95;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-trust-media::before,
  .company-main-photo,
  .company-main-photo::before,
  .company-main-photo img,
  .company-photo-strip::before,
  .company-photo-strip img {
    animation: none !important;
  }
}

/* Trust block responsive polish + FAQ mobile alignment */
@media (max-width: 1280px) {
  .company-trust-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.92fr);
    gap: 34px;
  }

  .company-trust-copy h2 {
    font-size: clamp(32px, 3.2vw, 48px);
  }

  .company-trust-copy p {
    font-size: 17px;
  }

  .company-trust-points article {
    min-height: 124px;
    padding: 18px;
  }
}

@media (max-width: 1100px) {
  .company-trust-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .company-trust-copy h2,
  .company-trust-copy p {
    max-width: 820px;
  }

  .company-trust-media {
    width: min(100%, 820px);
    margin: 0 auto;
  }

  .faq-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: clip;
  }

  .company-trust-section {
    padding: 62px 0 72px;
  }

  .company-trust-section::before {
    background-size: 44px 44px;
  }

  .company-trust-layout {
    gap: 24px;
  }

  .company-trust-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.12;
  }

  .company-trust-copy p {
    font-size: 15.8px;
    line-height: 1.62;
  }

  .company-trust-points {
    grid-template-columns: 1fr !important;
    gap: 10px;
    margin-top: 22px;
  }

  .company-trust-points article {
    min-height: 0;
    padding: 17px 18px;
  }

  .company-trust-points span {
    margin-bottom: 10px;
  }

  .company-main-photo {
    animation-duration: 11s;
  }

  .company-main-photo img {
    aspect-ratio: 1.15 / 1;
    animation-duration: 18s;
  }

  .company-main-photo::before {
    animation-duration: 9.5s;
  }

  .company-main-photo figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
    font-size: 12px;
  }

  .company-photo-strip {
    display: flex !important;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 0 8px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .company-photo-strip::-webkit-scrollbar {
    display: none;
  }

  .company-photo-strip img {
    flex: 0 0 min(74vw, 300px);
    width: min(74vw, 300px);
    max-width: 300px;
    animation-duration: 9.5s;
    scroll-snap-align: start;
  }

  .faq-section {
    overflow-x: clip;
  }

  .faq-list {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }

  .faq-list details {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .faq-list summary {
    min-width: 0;
    min-height: 68px;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 34px !important;
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 16px 14px 16px 16px !important;
    overflow-wrap: anywhere;
  }

  .faq-list summary::after {
    justify-self: end;
    align-self: center;
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center;
    transform: none !important;
  }

  .faq-list p {
    padding: 0 16px 18px !important;
    overflow-wrap: anywhere;
  }
}

/* Final publish QA: stable FAQ width and crisp photo hover */
.company-photo-strip:hover img:not(:hover) {
  filter: brightness(0.94) saturate(0.96) contrast(0.98);
  transform: translate3d(0, 1px, 0) scale(0.995) !important;
}

.company-photo-strip img:hover {
  border-color: rgba(166, 218, 255, 0.72) !important;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(106, 187, 255, 0.36),
    0 0 34px rgba(47, 140, 255, 0.28) !important;
}

.faq-section .container {
  overflow: visible;
}

.faq-list,
.faq-list details,
.faq-list summary {
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .faq-section .container {
    width: calc(100% - 24px) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    overflow: visible !important;
  }

  .faq-list {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    justify-self: stretch !important;
    transform: none !important;
  }

  .faq-list details {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    transform: none !important;
  }

  .faq-list summary {
    grid-template-columns: minmax(0, 1fr) 32px !important;
    column-gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
    padding: 16px 14px 16px 16px !important;
  }

  .faq-list summary::after {
    width: 30px !important;
    height: 30px !important;
    justify-self: end !important;
  }
}

/* Final publish QA 2: centered FAQ icons and stable trust photo hover */
.faq-list summary::after,
.faq-list details[open] summary::after {
  content: "" !important;
  display: grid !important;
  place-items: center !important;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 8px;
  background-color: var(--blue-soft) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transform: none !important;
}

.faq-list summary::after {
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 9V21M9 15H21' stroke='%230d55b2' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-size: 30px 30px !important;
}

.faq-list details[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 15H21' stroke='%230d55b2' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-size: 30px 30px !important;
}

.company-photo-strip img {
  animation: none !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  filter: brightness(1) saturate(1.04) contrast(1.02) !important;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease !important;
}

.company-photo-strip:hover img:not(:hover) {
  filter: brightness(0.96) saturate(0.98) contrast(0.99) !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.company-photo-strip img:hover {
  animation: none !important;
  filter: brightness(1.035) saturate(1.08) contrast(1.04) !important;
  transform: translate3d(0, -6px, 0) scale(1.025) !important;
  border-color: rgba(166, 218, 255, 0.7) !important;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(106, 187, 255, 0.34),
    0 0 28px rgba(47, 140, 255, 0.22) !important;
}

/* Publish QA 50: stable media loading and smoother scroll */
.car-card,
.case-card,
.review-card,
.review-shot,
.company-main-photo,
.company-photo-strip img {
  will-change: auto !important;
}

.car-card img,
.case-card img,
.review-shot img,
.company-main-photo img,
.company-photo-strip img {
  background-color: #eef3f8;
  backface-visibility: hidden;
}

.case-card img,
.car-card img {
  transform: translateZ(0);
}

@media (max-width: 900px), (hover: none) {
  .car-card:hover,
  .case-card:hover,
  .review-card:hover,
  .review-shot:hover {
    transform: none;
  }

  .car-card:hover img,
  .case-card:hover img {
    transform: translateZ(0);
  }
}

.site-header,
.site-header .nav,
.nav {
  backdrop-filter: none !important;
}

/* Technical update 51: faster first screen and lightweight route map */
html {
  scroll-behavior: auto !important;
}

body {
  background-color: #071421;
}

.hero {
  background:
    radial-gradient(circle at 64% 22%, rgba(47, 140, 255, 0.12), transparent 32%),
    #071421 !important;
}

.hero-media {
  background-color: #071421 !important;
  background-image: url("assets/hero-car.webp") !important;
  background-position: center !important;
  background-size: cover !important;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1.01) !important;
  will-change: auto !important;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 17, 0.94) 0%, rgba(7, 11, 17, 0.68) 43%, rgba(7, 11, 17, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 11, 17, 0.08) 0%, rgba(7, 11, 17, 0.88) 100%) !important;
}

.routes-section {
  contain: layout paint;
}

.routes-section .route-board {
  overflow: visible !important;
  contain: layout paint;
}

.routes-section .route-map-frame {
  isolation: isolate;
  contain: paint;
  background-color: #ffffff !important;
}

.routes-section .route-map-frame::before {
  mix-blend-mode: normal !important;
  opacity: 0.42;
}

.route-map-badge {
  backdrop-filter: none !important;
  animation: none !important;
}

.route-map-badge::before {
  animation-duration: 4.2s !important;
}

.route-network,
.route-network * {
  filter: none !important;
}

.route-blue path,
.route-red path,
.route-dashes use,
.route-point,
.route-main-hub,
.route-point .point-core {
  filter: none !important;
}

.route-blue path {
  stroke-width: 2.5 !important;
  opacity: 0.5 !important;
}

.route-red path {
  stroke-width: 2.8 !important;
  opacity: 0.68 !important;
}

.route-dashes use {
  animation-duration: 4.8s !important;
  stroke-dasharray: 18 26 !important;
  opacity: 0.72 !important;
}

.route-runners {
  display: none !important;
}

.route-main-hub .hub-ring {
  animation-duration: 3.4s !important;
  opacity: 0.38;
}

.route-point .point-ring {
  animation: none !important;
}

.route-point .route-city {
  filter: none !important;
  stroke-width: 3px !important;
}

.route-city-urengoy {
  font-size: 11.6px !important;
}

.route-notes article,
.company-trust-points article,
.hero-panel {
  backdrop-filter: none !important;
}

@media (max-width: 920px) {
  .routes-section .route-board {
    overflow: auto hidden !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .routes-section .route-board::-webkit-scrollbar {
    display: none;
  }

  .routes-section .route-map-frame {
    width: 840px !important;
    max-width: none !important;
    min-width: 840px !important;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overscroll-behavior-y: auto !important;
  }

  .hero {
    min-height: 700px !important;
  }

  .hero-media {
    animation: none !important;
    background-position: 52% 18% !important;
    background-size: auto 100% !important;
    transform: none !important;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 11, 17, 0.28) 0%, rgba(7, 11, 17, 0.64) 40%, rgba(7, 11, 17, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 11, 17, 0.82), rgba(7, 11, 17, 0.38)) !important;
  }

  .hero-inner {
    padding-bottom: 176px !important;
  }

  .routes-section .route-board {
    margin-right: -12px;
    margin-left: -12px;
    padding: 12px 12px 16px !important;
    border-radius: 0 !important;
    overflow: auto hidden !important;
  }

  .routes-section .route-map-frame {
    width: 760px !important;
    max-width: none !important;
    min-width: 760px !important;
    box-shadow: 0 18px 42px rgba(7, 17, 30, 0.22) !important;
  }

  .routes-section .route-map-frame img,
  .routes-section .route-network {
    transform: none !important;
    transform-origin: center !important;
    width: 100% !important;
    max-width: none !important;
  }

  .route-map-badge {
    left: 12px !important;
    right: auto !important;
    top: 12px !important;
    max-width: 330px !important;
    justify-content: flex-start !important;
    padding: 9px 11px !important;
  }

  .route-map-badge span {
    font-size: 10px !important;
  }

  .route-map-badge strong {
    font-size: 11px !important;
    white-space: normal !important;
  }

  .route-dashes use,
  .route-main-hub .hub-ring,
  .route-map-badge::before,
  .routes-section .route-board::before,
  .routes-section .route-notes article::after {
    animation: none !important;
  }

  .route-dashes use {
    opacity: 0.58 !important;
  }

  .route-point .route-city {
    font-size: 10.8px !important;
    stroke-width: 2.4px !important;
  }

  .route-main-hub .route-city-main {
    font-size: 12px !important;
  }

  .routes-section .route-notes {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }

  .review-shot {
    background: rgba(255, 255, 255, 0.96) !important;
  }

  .subfooter span:first-child {
    white-space: normal !important;
  }
}

@media (prefers-reduced-motion: reduce), (update: slow) {
  .hero-media,
  .route-dashes use,
  .route-main-hub .hub-ring,
  .route-map-badge::before,
  .routes-section .route-board::before,
  .routes-section .route-notes article::after,
  .company-main-photo,
  .company-main-photo img,
  .company-photo-strip img {
    animation: none !important;
  }
}

/* Performance tuning 52: stable hero/contact scroll and smoother visible map routes */
.hero {
  contain: paint;
}

.hero-media {
  animation: none !important;
  transform: none !important;
  will-change: auto !important;
}

.hero-panel {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22) !important;
}

.final-cta {
  box-shadow: none !important;
  contain: layout paint;
}

.final-cta .contact-layout {
  contain: layout;
}

.final-cta .contact-form {
  backdrop-filter: none !important;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  contain: layout paint;
}

.final-cta .contact-form::before {
  opacity: 0.22 !important;
}

.final-cta .contact-form input,
.final-cta .contact-form textarea,
.final-cta .call-time select {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.final-cta .contact-choice:hover span,
.final-cta .contact-choice input:checked + span,
.final-cta .contact-form .btn {
  box-shadow: 0 12px 28px rgba(23, 107, 214, 0.2) !important;
}

.floating-social {
  transform: translateZ(0);
}

/* Route readability v57: separated lanes and stable directional markers */
.route-network {
  overflow: visible;
}

.route-dashes {
  display: none !important;
}

.route-paths path {
  fill: none !important;
  stroke-dasharray: none !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke;
  filter: none !important;
}

.route-blue path {
  stroke: #258fec !important;
  stroke-width: 1.65px !important;
  opacity: 0.32 !important;
}

.route-blue #route-vdk-khabarovsk,
.route-blue #route-vdk-kamchatka,
.route-blue #route-vdk-krasnodar {
  stroke-width: 1.95px !important;
  opacity: 0.43 !important;
}

.route-red path {
  stroke: #e93548 !important;
  stroke-width: 2.05px !important;
  opacity: 0.68 !important;
}

.route-runners {
  display: block !important;
  pointer-events: none;
}

.route-runner {
  display: block !important;
  opacity: 0.96 !important;
  animation: none !important;
  filter: none !important;
  stroke: rgba(7, 18, 36, 0.72) !important;
  stroke-width: 1.25px !important;
  stroke-linejoin: round !important;
  paint-order: stroke fill;
  vector-effect: non-scaling-stroke;
}

.route-runners .route-runner-blue {
  fill: #62c5ff !important;
}

.route-runners .route-runner-red {
  fill: #ff4054 !important;
}

@media (max-width: 640px) {
  .route-blue path {
    stroke-width: 1.85px !important;
    opacity: 0.43 !important;
  }

  .route-red path {
    stroke-width: 2.15px !important;
    opacity: 0.72 !important;
  }

  .route-runner {
    opacity: 0.98 !important;
    stroke-width: 1.1px !important;
  }
}

@media (prefers-reduced-motion: reduce), (update: slow) {
  .route-runners {
    display: none !important;
  }
}

/* Form stability v58: keep hidden radio inputs inside their visible cards */
.contact-choice {
  position: relative;
  overflow: hidden;
}

.contact-choice input {
  top: 0 !important;
  left: 0 !important;
}

/* Form/FPS stability v62: selected contact buttons stay in place and scroll stays lighter */
.contact-choice {
  overflow: visible !important;
}

.contact-choice-grid {
  align-items: stretch;
  padding-bottom: 4px;
}

.contact-choice span {
  position: relative;
  z-index: 1;
  transform: none !important;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease !important;
}

.contact-choice:hover span,
.contact-choice input:checked + span {
  transform: none !important;
}

.telegram-contact,
.call-time {
  margin-top: 2px;
}

.nav {
  backdrop-filter: none !important;
}

.hero-media {
  filter: none !important;
}

@supports (content-visibility: auto) {
  .services-section,
  .company-section,
  .routes-section,
  .cases-section,
  .reviews-section,
  .faq-section,
  .safety-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }

  .routes-section {
    contain-intrinsic-size: auto 980px;
  }

  .reviews-section {
    contain-intrinsic-size: auto 760px;
  }
}

/* Interaction polish v63: keep motion, but give controls room so nothing is clipped */
.contact-choice-grid {
  padding-top: 5px;
  padding-bottom: 10px;
  gap: 12px;
}

.contact-choice {
  overflow: visible !important;
}

.contact-choice span {
  transform: translate3d(0, 0, 0) !important;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease !important;
}

.contact-choice:hover span,
.contact-choice input:checked + span {
  transform: translate3d(0, -2px, 0) !important;
}

.telegram-contact,
.call-time {
  margin-top: 4px;
}

.hero-media {
  animation: heroDriftSoftV63 16s ease-in-out infinite alternate !important;
  transform: translate3d(0, 0, 0) scale(1.025) !important;
  will-change: transform !important;
}

@keyframes heroDriftSoftV63 {
  from {
    transform: translate3d(-0.6%, 0, 0) scale(1.025);
  }
  to {
    transform: translate3d(1.1%, -0.8%, 0) scale(1.055);
  }
}

@media (max-width: 640px) {
  .hero-media {
    animation: heroDriftMobileV63 18s ease-in-out infinite alternate !important;
    transform: translate3d(0, 0, 0) scale(1.03) !important;
    will-change: transform !important;
  }

  @keyframes heroDriftMobileV63 {
    from {
      transform: translate3d(-1%, 0, 0) scale(1.03);
    }
    to {
      transform: translate3d(1%, -0.5%, 0) scale(1.055);
    }
  }
}

/* FAQ and hero motion v64: smoother answers and visible GPU-only hero drift */
.faq-list details {
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.faq-list details > p {
  display: block !important;
  max-height: 0;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    max-height 0.46s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.46s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    transform 0.36s ease,
    visibility 0s linear 0.46s;
  will-change: max-height, opacity;
}

.faq-list details:not([open]) > p {
  max-height: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-4px) !important;
}

.faq-list details[open] > p {
  max-height: 260px !important;
  padding-bottom: 20px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  transition:
    max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease 0.03s,
    transform 0.38s ease,
    visibility 0s linear 0s;
}

.faq-list details[data-faq-open="false"] > p {
  max-height: var(--faq-answer-height, 0px) !important;
  padding-bottom: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-4px) !important;
}

.faq-list details[data-faq-open="true"] > p {
  max-height: var(--faq-answer-height, 260px) !important;
  padding-bottom: 20px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.faq-list summary::after {
  transition:
    transform 0.22s ease,
    background-color 0.22s ease !important;
}

.faq-list details[open] summary::after {
  transform: scale(0.96) !important;
}

.hero-media {
  animation: heroDriftLayerV64 11s ease-in-out infinite alternate !important;
  transform: none !important;
  translate: -1.6% 0;
  scale: 1.055;
  will-change: translate, scale !important;
}

@keyframes heroDriftLayerV64 {
  from {
    translate: -1.8% 0.2%;
    scale: 1.055;
  }
  to {
    translate: 1.9% -1.2%;
    scale: 1.105;
  }
}

@media (max-width: 640px) {
  .faq-list details > p {
    max-height: 0;
  }

  .faq-list details[open] > p {
    max-height: 360px;
    padding-bottom: 18px !important;
  }

  .hero-media {
    animation: heroDriftMobileLayerV64 12s ease-in-out infinite alternate !important;
    transform: none !important;
    translate: -1.4% 0;
    scale: 1.055;
    will-change: translate, scale !important;
  }

  @keyframes heroDriftMobileLayerV64 {
    from {
      translate: -2.2% 0.4%;
      scale: 1.055;
    }
    to {
      translate: 2.2% -0.8%;
      scale: 1.095;
    }
  }
}

@media (prefers-reduced-motion: reduce), (update: slow) {
  .faq-list details > p {
    transition-duration: 0.01ms !important;
  }

  .hero-media {
    animation: none !important;
    translate: 0 0;
    scale: 1.04;
    will-change: auto !important;
  }
}

/* Alpha 1.2 hosting update: premium cursor */
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.custom-cursor-enabled,
  html.custom-cursor-enabled * {
    cursor: none !important;
  }

  .premium-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease;
  }

  .premium-cursor.is-visible {
    opacity: 1;
  }

  .premium-cursor__ring,
  .premium-cursor__dot {
    position: fixed;
    left: 0;
    top: 0;
    border-radius: 50%;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    will-change: transform, opacity, border-color, background;
  }

  .premium-cursor__ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(132, 194, 255, 0.56);
    background: radial-gradient(circle, rgba(47, 140, 255, 0.13), rgba(47, 140, 255, 0) 64%);
    box-shadow:
      0 0 18px rgba(47, 140, 255, 0.26),
      inset 0 0 18px rgba(255, 255, 255, 0.08);
    transition:
      width 0.18s ease,
      height 0.18s ease,
      border-color 0.18s ease,
      background 0.18s ease,
      box-shadow 0.18s ease;
  }

  .premium-cursor__dot {
    width: 6px;
    height: 6px;
    background: rgba(222, 242, 255, 0.95);
    box-shadow:
      0 0 10px rgba(132, 194, 255, 0.88),
      0 0 22px rgba(47, 140, 255, 0.36);
  }

  .premium-cursor.is-hovering .premium-cursor__ring {
    width: 48px;
    height: 48px;
    border-color: rgba(191, 224, 255, 0.7);
    background: radial-gradient(circle, rgba(47, 140, 255, 0.2), rgba(47, 140, 255, 0.04) 58%, rgba(47, 140, 255, 0) 72%);
    box-shadow:
      0 0 26px rgba(47, 140, 255, 0.34),
      inset 0 0 22px rgba(255, 255, 255, 0.1);
  }

  .premium-cursor.is-pressed .premium-cursor__ring {
    width: 28px;
    height: 28px;
  }
}

/* Alpha 1.2 concept: animated harbor hero with sky logo and water navigation */
.home-alpha12 .site-header {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  background:
    linear-gradient(180deg, rgba(4, 13, 24, 0.74), rgba(4, 13, 24, 0.36)),
    rgba(4, 13, 24, 0.28);
  border-bottom: 1px solid rgba(159, 209, 255, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(1.12);
}

.home-alpha12 .site-header.is-scrolled {
  background: rgba(4, 13, 24, 0.82);
}

.home-alpha12 .site-header .nav {
  min-height: 70px;
  width: min(1280px, calc(100% - 32px));
  gap: 18px;
}

.home-alpha12 .site-header .logo img {
  width: 88px;
}

.home-alpha12 .site-header .logo-title {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  color: rgba(232, 244, 255, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(177, 209, 241, 0.94) 70%, rgba(98, 145, 197, 0.96));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 10px 22px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(74, 159, 255, 0.18);
}

.home-alpha12 .site-header .nav-links {
  gap: 8px;
}

.home-alpha12 .site-header .nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(159, 209, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(233, 244, 255, 0.82);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.home-alpha12 .site-header .nav-links a:hover {
  border-color: rgba(159, 209, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-alpha12 .site-header .btn-small {
  min-height: 40px;
  padding: 0 17px;
}

.home-alpha12 .hero {
  min-height: 100svh;
  padding: 0;
  display: block;
  background: #06111f;
}

.home-alpha12 .hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: url("assets/hero-alpha12-vladivostok-poster-v10.webp") !important;
  background-position: center center !important;
  background-size: cover !important;
  animation: none !important;
  transform: none !important;
  translate: 0 0 !important;
  scale: 1 !important;
  will-change: auto !important;
}

.home-alpha12 .hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #06111f url("assets/hero-alpha12-vladivostok-poster-v10.webp") center / cover no-repeat;
  animation: none !important;
  transform: none !important;
  translate: 0 0 !important;
  scale: 1 !important;
  will-change: auto !important;
}

.home-alpha12 .hero-shade {
  background:
    radial-gradient(circle at 53% 18%, rgba(47, 140, 255, 0.18), rgba(47, 140, 255, 0) 20%),
    radial-gradient(circle at 16% 28%, rgba(135, 74, 204, 0.18), rgba(135, 74, 204, 0) 26%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.04) 0%, rgba(2, 8, 18, 0.12) 44%, rgba(2, 8, 18, 0.68) 100%),
    linear-gradient(90deg, rgba(2, 8, 18, 0.18) 0%, rgba(2, 8, 18, 0.02) 44%, rgba(2, 8, 18, 0.18) 100%) !important;
}

.home-alpha12 .hero-inner {
  display: none !important;
}

.hero-sky-lockup {
  position: absolute;
  z-index: 3;
  top: clamp(122px, 15vh, 172px);
  left: 50%;
  width: min(880px, calc(100% - 64px));
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #ffffff;
  pointer-events: none;
  text-align: center;
  animation: alpha12-logo-float 6.5s ease-in-out infinite;
}

.hero-sky-lockup::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -58px -92px -48px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(76, 164, 255, 0.34), rgba(47, 140, 255, 0.11) 34%, rgba(47, 140, 255, 0) 70%),
    radial-gradient(circle at 42% 48%, rgba(177, 92, 255, 0.17), rgba(177, 92, 255, 0) 60%);
  filter: blur(12px);
  opacity: 0.78;
  animation: alpha12-va-aura 6.9s ease-in-out infinite;
}

.hero-sky-lockup::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18px;
  left: 50%;
  width: min(500px, 62vw);
  height: clamp(185px, 16vw, 270px);
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 42%, rgba(126, 202, 255, 0.34), rgba(65, 148, 255, 0.12) 32%, rgba(65, 148, 255, 0) 68%),
    radial-gradient(circle at 62% 36%, rgba(64, 168, 255, 0.2), rgba(64, 168, 255, 0) 58%),
    radial-gradient(circle at 36% 60%, rgba(158, 98, 255, 0.11), rgba(158, 98, 255, 0) 62%);
  filter: blur(18px);
  opacity: 0.42;
  animation: alpha12-va-living-glow 6.9s ease-in-out infinite;
}

.hero-sky-lockup img {
  width: clamp(274px, 20.5vw, 400px);
  height: auto;
  opacity: 0.98;
  filter:
    brightness(1.22)
    saturate(1.24)
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 18px rgba(121, 193, 255, 0.46))
    drop-shadow(0 0 42px rgba(47, 140, 255, 0.28));
  animation: alpha12-va-breath 6.9s ease-in-out infinite;
}

.hero-sky-wordmark strong {
  display: block;
  position: relative;
  margin-top: -38px;
  padding-top: 2px;
  padding-bottom: 14px;
  font-family: "Segoe UI Variable Display", "Aptos Display", "Inter", Arial, sans-serif;
  font-size: clamp(56px, 4.85vw, 84px);
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(237, 247, 255, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(229, 241, 253, 0.96) 52%, rgba(157, 194, 232, 0.93) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.1));
  text-shadow:
    0 18px 34px rgba(0, 0, 0, 0.66),
    0 0 14px rgba(82, 166, 255, 0.12),
    0 0 34px rgba(23, 107, 214, 0.1);
}

.hero-sky-wordmark {
  position: relative;
  isolation: isolate;
}

.hero-sky-wordmark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 54%;
  width: 110%;
  height: 42%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 140, 255, 0), rgba(47, 140, 255, 0.2) 48%, rgba(47, 140, 255, 0));
  filter: blur(18px);
  opacity: 0.7;
}

.hero-sky-wordmark::after {
  content: "";
  display: block;
  width: min(430px, 82%);
  height: 1px;
  margin: 11px auto 0;
  background: linear-gradient(90deg, rgba(121, 193, 255, 0), rgba(203, 229, 255, 0.66), rgba(121, 193, 255, 0));
  box-shadow: 0 0 16px rgba(80, 165, 255, 0.32);
}

.hero-sky-wordmark span {
  display: none;
  margin-top: 14px;
  color: rgba(222, 239, 255, 0.82);
  font-size: clamp(12px, 0.95vw, 17px);
  line-height: 1.25;
  font-weight: 800;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.46);
}

.hero-water-panel {
  position: absolute;
  z-index: 4;
  top: auto;
  bottom: clamp(184px, 25vh, 250px);
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%) translateY(18px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-water-panel.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1021px) and (min-height: 850px) {
  .hero-water-panel {
    bottom: clamp(218px, 27vh, 286px);
  }
}

.hero-value-copy {
  width: 100%;
  text-align: center;
}

.hero-value-copy::before {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, rgba(132, 194, 255, 0), rgba(132, 194, 255, 0.76), rgba(132, 194, 255, 0));
  opacity: 0.76;
}

.home-alpha12 .hero .hero-value-copy h1 {
  width: min(680px, 100%);
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  color: rgba(242, 248, 255, 0.93);
  font-size: clamp(24px, 1.78vw, 31px) !important;
  line-height: 1.18;
  font-weight: 820;
  letter-spacing: 0;
  text-shadow:
    0 18px 42px rgba(0, 0, 0, 0.68),
    0 0 20px rgba(86, 162, 255, 0.14);
}

.home-alpha12 .hero .hero-value-copy p {
  width: min(1120px, 100%);
  margin: 16px auto 0;
  text-align: center;
  color: rgba(230, 241, 253, 0.86);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.5;
  font-weight: 650;
  text-shadow:
    0 14px 30px rgba(0, 0, 0, 0.62),
    0 0 18px rgba(16, 70, 130, 0.22);
}

.home-alpha12 .hero .hero-value-copy p span {
  display: block;
}

.hero-main-actions {
  position: static;
  width: min(620px, calc(100% - 48px));
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.hero-main-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 244px;
  min-height: 60px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid rgba(159, 209, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.03)),
    rgba(7, 21, 38, 0.5);
  color: rgba(246, 251, 255, 0.94);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px) saturate(1.12);
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.hero-main-actions a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 34%);
  opacity: 0.38;
  pointer-events: none;
}

.hero-main-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 203, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(10, 32, 54, 0.58);
}

.hero-main-actions a.is-primary {
  min-width: 270px;
  border-color: rgba(117, 184, 255, 0.5);
  background:
    linear-gradient(135deg, rgba(28, 104, 214, 0.95), rgba(14, 73, 160, 0.92) 58%, rgba(8, 43, 104, 0.9));
  box-shadow:
    0 22px 50px rgba(8, 44, 104, 0.42),
    0 0 26px rgba(48, 135, 230, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-scroll-down {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  width: 44px;
  height: 44px;
  transform: translateX(-50%);
  border: 1px solid rgba(159, 209, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 18, 32, 0.28);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px) saturate(1.08);
  opacity: 0.76;
  transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  animation: alpha12-scroll-cue 2.8s ease-in-out infinite;
}

.hero-scroll-down::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 11px;
  border: 0;
  background: rgba(235, 247, 255, 0.88);
  clip-path: polygon(0 0, 50% 62%, 100% 0, 100% 32%, 50% 100%, 0 32%);
  transform: translate(-50%, -44%);
}

.hero-scroll-down:hover {
  opacity: 1;
  border-color: rgba(159, 209, 255, 0.48);
  transform: translateX(-50%) translateY(-2px);
}

@keyframes alpha12-logo-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

@keyframes alpha12-va-aura {
  0%,
  100% {
    opacity: 0.62;
    filter: blur(11px);
  }

  28% {
    opacity: 0.98;
    filter: blur(19px);
  }

  53% {
    opacity: 0.76;
    filter: blur(14px);
  }

  76% {
    opacity: 0.92;
    filter: blur(17px);
  }
}

@keyframes alpha12-va-living-glow {
  0%,
  100% {
    opacity: 0.34;
    transform: translateX(-50%) scale(0.98);
    filter: blur(17px);
  }

  28% {
    opacity: 0.64;
    transform: translateX(-50%) scale(1.04);
    filter: blur(21px);
  }

  53% {
    opacity: 0.42;
    transform: translateX(-50%) scale(1);
    filter: blur(18px);
  }

  76% {
    opacity: 0.56;
    transform: translateX(-50%) scale(1.025);
    filter: blur(20px);
  }
}

@keyframes alpha12-va-breath {
  0%,
  100% {
    filter:
      brightness(1.02)
      saturate(1.08)
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.44))
      drop-shadow(0 0 10px rgba(121, 193, 255, 0.22))
      drop-shadow(0 0 22px rgba(47, 140, 255, 0.13));
  }

  28% {
    filter:
      brightness(1.18)
      saturate(1.27)
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.44))
      drop-shadow(0 0 26px rgba(121, 193, 255, 0.58))
      drop-shadow(0 0 68px rgba(47, 140, 255, 0.38));
  }

  53% {
    filter:
      brightness(1.08)
      saturate(1.14)
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.44))
      drop-shadow(0 0 14px rgba(121, 193, 255, 0.32))
      drop-shadow(0 0 36px rgba(47, 140, 255, 0.2));
  }

  76% {
    filter:
      brightness(1.15)
      saturate(1.22)
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.44))
      drop-shadow(0 0 22px rgba(121, 193, 255, 0.5))
      drop-shadow(0 0 58px rgba(47, 140, 255, 0.32));
  }
}

@keyframes alpha12-scroll-cue {
  0%,
  100% {
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 0 rgba(47, 140, 255, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  50% {
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 22px rgba(47, 140, 255, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
}

html {
  scroll-behavior: smooth !important;
}

@media (max-width: 1020px) {
  .home-alpha12 .site-header .nav {
    min-height: 64px;
  }

  .home-alpha12 .site-header .logo img {
    width: 82px;
  }

  .hero-sky-lockup {
    top: 110px;
    left: 50%;
    width: min(760px, calc(100% - 36px));
  }

  .hero-sky-lockup img {
    width: clamp(230px, 27vw, 320px);
  }

  .hero-sky-wordmark strong {
    font-size: clamp(48px, 6.8vw, 74px);
  }

  .hero-water-panel {
    top: auto;
    bottom: clamp(148px, 20vh, 206px);
    width: min(720px, calc(100% - 36px));
  }

  .hero-main-actions {
    width: min(590px, calc(100% - 32px));
    margin-top: 22px;
    gap: 10px;
  }

  .hero-main-actions a {
    min-width: 0;
    flex: 1 1 0;
    min-height: 54px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero-main-actions a.is-primary {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .home-alpha12 .hero {
    min-height: 100svh;
    min-height: 100dvh;
    height: 100dvh;
  }

  .home-alpha12 .hero-media {
    background-image: url("assets/hero-alpha12-vladivostok-poster-mobile-v10.webp") !important;
    background-position: 38% center !important;
  }

  .home-alpha12 .hero-video {
    object-position: 38% center;
    background-image: url("assets/hero-alpha12-vladivostok-poster-mobile-v10.webp");
    background-position: 38% center;
  }

  .hero-sky-lockup {
    top: 84px;
    left: 50%;
    width: min(360px, calc(100% - 32px));
  }

  .hero-sky-lockup img {
    width: 174px;
  }

  .hero-sky-wordmark strong {
    margin-top: -24px;
    padding-bottom: 12px;
    font-size: clamp(38px, 11.6vw, 52px);
  }

  .hero-water-panel {
    top: auto;
    bottom: 100px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: translateY(16px);
    text-align: center;
  }

  .hero-water-panel.is-visible {
    transform: translateY(0);
  }

  .hero-value-copy {
    width: 100%;
  }

  .home-alpha12 .hero .hero-value-copy h1 {
    font-size: clamp(22px, 6.7vw, 28px) !important;
    line-height: 1.08;
  }

  .hero-value-copy p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

  .hero-main-actions {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-main-actions a {
    min-height: 48px;
    padding: 0 10px;
    font-size: 13px;
    white-space: normal;
    text-align: center;
  }

  .hero-main-actions a.is-primary {
    min-width: 0;
  }

  .hero-scroll-down {
    bottom: 22px;
    width: 40px;
    height: 40px;
  }

  .hero-scroll-down::before {
    top: 50%;
    left: 50%;
  }

  .routes-section .route-board {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 10px !important;
    overflow: hidden !important;
  }

  .routes-section .route-map-frame {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    aspect-ratio: 1286 / 816 !important;
  }

  .routes-section .route-map-frame img,
  .routes-section .route-network {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
  }

  .route-map-badge {
    top: 8px !important;
    right: 8px !important;
    left: 8px !important;
    gap: 7px !important;
    padding: 7px 9px !important;
    transform: none !important;
  }

  .route-map-badge span {
    font-size: 8px !important;
  }

  .route-map-badge strong {
    padding-left: 7px !important;
    font-size: 9px !important;
    white-space: normal !important;
  }
}
