@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800;900&family=Roboto+Mono:wght@400;700&display=swap");

::selection {
  background: var(--red-glow);
  color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
  box-shadow: 0 0 10px var(--red-glow);
}

:root {
  --bg: #0a0c10;
  --surface: rgba(18, 22, 28, 0.92);
  --surface-panel: rgba(22, 27, 34, 0.76);
  --ink: #edeff2;
  --muted: #8e95a1;
  --line: rgba(255, 255, 255, 0.08);
  --dark: #07080a;
  --red: #e6233a;
  --red-glow: rgba(230, 35, 58, 0.35);
  --radius: 14px;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
  --container: min(1240px, calc(100vw - 44px));
  --mouse-x: 0px;
  --mouse-y: 0px;
  --panel-border: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  --tech-red-glow: rgba(230, 35, 58, 0.15);
  --font-mono: "Roboto Mono", monospace;
}

.digital-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: white;
  opacity: 0.1;
  animation: floatParticle 22s linear infinite;
}

@keyframes floatParticle {
  from { transform: translateY(100vh) translateX(0); }
  to { transform: translateY(-100px) translateX(40px); }
}

/* Boot Loader */
.boot-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), visibility 800ms;
}

.boot-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.boot-content {
  text-align: center;
  width: 280px;
}

.boot-content label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.boot-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
  overflow: hidden;
}

.boot-progress {
  width: 0%;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 15px var(--red-glow);
  animation: bootProgress 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.boot-content span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes bootProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

section {
  position: relative;
  overflow: hidden;
}

section:not(.hero)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  content: "";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: -10%;
  width: 120%;
  height: 120%;
  z-index: 100;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(50% + var(--mouse-x) * 2) calc(40% + var(--mouse-y) * 2), var(--red-glow), transparent 32rem),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: auto, 100px 100px, 100px 100px;
  content: "";
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--mouse-x) * -0.5), calc(var(--mouse-y) * -0.5), 0);
  transition: transform 600ms cubic-bezier(0.2, 0, 0.2, 1);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 101;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  content: "";
}

.ambient-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  filter: blur(140px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  animation: glowDrift 30s ease-in-out infinite;
}

@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10vw, 5vh) scale(1.1); }
  66% { transform: translate(-5vw, 15vh) scale(0.9); }
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.scrolled {
  background: rgba(17, 19, 22, 0.88);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}

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

.brand img {
  width: clamp(150px, 13.5vw, 198px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.footer .brand img {
  width: 172px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone {
  color: white;
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-weight: 850;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.38) 45%, transparent 58%);
  content: "";
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.button:hover {
  background: var(--red-dark);
  box-shadow: 0 14px 34px rgba(215, 25, 52, 0.26);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(130%);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.button-wide {
  width: 100%;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section-pad {
  padding: clamp(80px, 10vw, 132px) 0;
  scroll-margin-top: 92px;
}

section:not(.hero) {
  background: var(--bg);
  color: white;
}

section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px;
  content: "";
  opacity: 0.42;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.section-head {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  padding: clamp(136px, 15vh, 174px) 0 clamp(64px, 8vh, 92px);
  isolation: isolate;
}

.hero-media,
.lead-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms ease;
}

.hero-shade,
.lead::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 42%, rgba(215, 25, 52, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(17, 19, 22, 0.98), rgba(17, 19, 22, 0.7) 44%, rgba(17, 19, 22, 0.34)),
    linear-gradient(0deg, rgba(17, 19, 22, 0.75), rgba(17, 19, 22, 0));
}

.motion-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.motion-stage::before {
  position: absolute;
  inset: 12% 4% 4%;
  opacity: 0.32;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.2) 48.1% 48.2%, transparent 48.3%),
    linear-gradient(0deg, transparent 0 49%, rgba(255, 255, 255, 0.12) 49.1% 49.2%, transparent 49.3%);
  background-size: 180px 180px;
  content: "";
  mask-image: radial-gradient(circle at 62% 45%, black, transparent 70%);
}

.motion-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: translate3d(calc(var(--mouse-x) * 0.08), calc(var(--mouse-y) * 0.08), 0);
}

.motion-orbit::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 26px rgba(215, 25, 52, 0.82);
  content: "";
}

.motion-orbit-one {
  right: 11%;
  top: 19%;
  width: 420px;
  height: 420px;
  animation: orbitDrift 12s linear infinite;
}

.motion-orbit-one::after {
  top: 46px;
  left: 80px;
}

.motion-orbit-two {
  right: 3%;
  top: 36%;
  width: 250px;
  height: 250px;
  animation: orbitDrift 9s linear infinite reverse;
}

.motion-orbit-two::after {
  right: 22px;
  bottom: 58px;
}

.route-beam {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(215, 25, 52, 0.1), rgba(255, 255, 255, 0.64), transparent);
  filter: drop-shadow(0 0 18px rgba(215, 25, 52, 0.45));
  transform-origin: left center;
  animation: routeSweep 4.8s ease-in-out infinite;
}

.route-beam-one {
  top: 36%;
  left: 48%;
  width: 430px;
  transform: rotate(-13deg);
}

.route-beam-two {
  top: 61%;
  left: 52%;
  width: 330px;
  transform: rotate(10deg);
  animation-delay: 1.4s;
}

.logistics-node {
  position: absolute;
  display: grid;
  min-width: 140px;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(18, 22, 28, 0.62);
  color: white;
  padding: 14px 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  animation: nodeFloat 6s ease-in-out infinite;
  transition: transform 300ms cubic-bezier(0.2, 0, 0.2, 1), box-shadow 300ms ease;
}

.logistics-node span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logistics-node strong {
  font-size: 15px;
  font-weight: 800;
}

.logistics-node small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.02em;
}

.pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.node-la {
  right: 33%;
  top: 24%;
}

.node-shanghai {
  right: 24%;
  top: 16%;
  animation-delay: 0.55s;
}

.node-seoul {
  right: 16%;
  top: 71%;
  animation-delay: 1.8s;
}

.node-bishkek {
  right: 8%;
  top: 53%;
  animation-delay: 1.2s;
}

.telemetry-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  padding: 14px 18px;
  backdrop-filter: blur(28px);
  animation: telemetryDrift 8s ease-in-out infinite;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.telemetry-card span {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.telemetry-card strong {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.telemetry-one {
  right: 41%;
  top: 42%;
}

.telemetry-two {
  right: 10%;
  top: 73%;
  animation-delay: 1.6s;
}

.signal-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.34), 0 0 28px rgba(255, 255, 255, 0.9);
  animation: signalPulse 2.4s ease-out infinite;
}

.signal-one {
  right: 30%;
  top: 47%;
}

.signal-two {
  right: 18%;
  top: 66%;
  animation-delay: 0.9s;
}

.signal-three {
  right: 11%;
  top: 31%;
  animation-delay: 1.7s;
}

.hero-grid,
.lead-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 430px;
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  animation: heroCopyIn 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.015em;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(46px, 5.2vw, 68px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.1;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 0;
  max-width: 620px;
}

.proof-row span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.44);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 260ms ease;
}

.proof-row span:hover {
  border-color: var(--red);
  background: rgba(230, 35, 58, 0.08);
  color: white;
  transform: translateY(-2px);
}

.hero-panel,
.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(30, 35, 45, 0.94), rgba(15, 18, 22, 0.98));
  color: white;
  padding: 32px;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 40px 90px rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(24px);
}

.hero-panel {
  animation: heroPanelIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 140ms both;
  transform-style: preserve-3d;
}

.panel-kicker {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-size: 30px;
}

.hero-panel p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
}

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

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
  color: white;
  padding: 0 16px;
  outline: none;
  transition: border 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

input:focus,
select:focus {
  border-color: var(--red);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 18px rgba(230, 35, 58, 0.12);
}

form small {
  min-height: 18px;
  color: var(--red);
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0d1014, #07080a);
  color: white;
  padding: 28px 0 24px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: transparent;
}

.strip-item {
  position: relative;
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(215, 25, 52, 0.13), rgba(255, 255, 255, 0.04)) border-box;
  padding: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.strip-item:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.strip-item span {
  color: var(--red);
  font-weight: 950;
}

.strip-item strong {
  font-size: 22px;
}

.strip-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.stats-section {
  padding-block: 42px;
  background: #0a0c10;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: transparent;
}

.stat-card {
  position: relative;
  min-height: 146px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) padding-box,
    var(--panel-border) border-box;
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.stat-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 32px 80px rgba(0, 0, 0, 0.42);
  transform: translateY(-4px);
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.4;
}

.stat-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: rgba(230, 35, 58, 0.1);
  color: var(--red);
  box-shadow: 0 8px 24px rgba(230, 35, 58, 0.15);
}

.stat-icon svg {
  width: 20px;
  height: 20px;
}

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

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.direction-card {
  position: relative;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(18, 22, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  isolation: isolate;
}

.direction-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0% 30%, rgba(230, 35, 58, 0.08) 45%, rgba(255, 255, 255, 0.12) 50%, rgba(230, 35, 58, 0.08) 55%, transparent 70% 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  content: "";
  z-index: 2;
  pointer-events: none;
  transition: background-position 900ms cubic-bezier(0.4, 0, 0.2, 1);
}

.direction-card:hover::before {
  background-position: 0 0;
}

.direction-card:hover {
  border-color: rgba(0, 242, 255, 0.4);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.6), 
    0 0 40px rgba(0, 242, 255, 0.08),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  transform: translateY(-12px) scale(1.02);
}

.direction-card img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(0.2);
  transition: all 600ms ease;
}

.direction-card:hover img {
  opacity: 0.9;
  transform: scale(1.05);
}

.direction-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px;
}

.direction-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--tech-cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direction-card h3 {
  font-size: 24px;
  font-weight: 850;
  margin-bottom: 16px;
}

.direction-card p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.direction-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.direction-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.direction-card li::before {
  content: "»";
  color: var(--red);
  font-family: var(--font-mono);
  font-weight: 700;
}

.direction-card-toplink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 50px;
  margin: -57px auto 24px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #ff3a54 0%, #e6233a 100%);
  box-shadow: 0 18px 38px rgba(215, 25, 52, 0.28);
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
  position: relative;
  z-index: 4;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.direction-card:hover .direction-card-toplink,
.direction-card-toplink:focus-visible {
  background: linear-gradient(180deg, #ff4a62 0%, #ef2741 100%);
  box-shadow: 0 22px 42px rgba(215, 25, 52, 0.34);
  transform: translateY(-2px);
}

.comparison-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 35, 58, 0.16), transparent 34%),
    linear-gradient(180deg, #0b0d11, #07080a);
}

.comparison-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  opacity: 0.28;
}

.comparison-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  background: rgba(17, 20, 26, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.comparison-card::after {
  position: absolute;
  inset: auto -20% -42% -20%;
  height: 220px;
  background: radial-gradient(circle, rgba(230, 35, 58, 0.18), transparent 62%);
  content: "";
  opacity: 0.7;
}

.comparison-card-muted {
  opacity: 0.82;
}

.comparison-card-strong {
  border-color: rgba(230, 35, 58, 0.36);
  background:
    linear-gradient(145deg, rgba(230, 35, 58, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(17, 20, 26, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 80px rgba(0, 0, 0, 0.34);
}

.comparison-card span {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-card h3 {
  max-width: 560px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(28px, 3vw, 42px);
}

.comparison-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.comparison-card li::before {
  flex: 0 0 auto;
  color: var(--red);
  content: "—";
  font-weight: 900;
}

.comparison-card-strong li {
  color: rgba(255, 255, 255, 0.84);
}

.lead-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.lead-points span {
  border: 1px solid rgba(230, 35, 58, 0.28);
  border-radius: 999px;
  background: rgba(230, 35, 58, 0.08);
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 850;
}

/* About company page */
.about-page {
  background: var(--bg);
}

.about-hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  isolation: isolate;
}

.about-hero-media,
.about-hero-media::after {
  position: absolute;
  inset: 0;
}

.about-hero-media {
  z-index: -3;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.58);
  animation: carsusaHeroDrift 26s ease-in-out infinite alternate;
}

.about-hero-media::after {
  content: "";
  background:
    radial-gradient(circle at 70% 26%, rgba(230, 35, 58, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.95) 0%, rgba(7, 9, 12, 0.72) 50%, rgba(7, 9, 12, 0.46) 100%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.38), var(--bg) 100%);
}

.about-hero-motion {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.about-orbit,
.about-route,
.about-node {
  position: absolute;
  display: block;
}

.about-orbit {
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: aboutOrbit 18s linear infinite;
}

.about-orbit-one {
  right: 9%;
  top: 20%;
}

.about-orbit-two {
  right: 20%;
  bottom: 10%;
  width: 300px;
  height: 300px;
  animation-direction: reverse;
}

.about-route {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 35, 58, 0.35), rgba(255, 255, 255, 0.7), transparent);
  box-shadow: 0 0 24px rgba(230, 35, 58, 0.28);
  transform-origin: left center;
  animation: routeSweep 5.2s ease-in-out infinite;
}

.about-route-one {
  left: 52%;
  top: 38%;
  width: 360px;
  transform: rotate(-9deg);
}

.about-route-two {
  left: 49%;
  top: 62%;
  width: 460px;
  transform: rotate(8deg);
  animation-delay: 1.2s;
}

.about-node {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(14, 17, 22, 0.6);
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.about-node-auction {
  left: 55%;
  top: 29%;
}

.about-node-poti {
  right: 12%;
  top: 44%;
}

.about-node-bishkek {
  right: 18%;
  bottom: 18%;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.about-hero-copy {
  max-width: 780px;
}

.about-hero-copy h1 {
  margin: 14px 0 24px;
  font-size: clamp(42px, 4.35vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.44;
}

.about-hero-actions,
.about-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-hero-actions {
  margin-top: 34px;
}

.about-proof-row {
  max-width: 720px;
  margin-top: 28px;
}

.about-proof-row span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero-panel {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(230, 35, 58, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(17, 20, 26, 0.82);
  padding: clamp(28px, 4vw, 42px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 34px 90px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(20px);
}

.about-hero-panel > span,
.about-strength-card span,
.about-process-step span,
.about-safety-list span,
.about-infra-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-hero-panel strong {
  color: white;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.about-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.about-hero-panel dl {
  display: grid;
  gap: 12px;
  margin: 6px 0 0;
}

.about-hero-panel dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.about-hero-panel dt,
.about-hero-panel dd {
  margin: 0;
}

.about-hero-panel dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero-panel dd {
  color: white;
  font-weight: 850;
}

.about-intro-grid,
.about-safety-grid,
.about-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.about-intro-text {
  display: grid;
  gap: 18px;
  border-left: 1px solid rgba(230, 35, 58, 0.38);
  padding-left: clamp(22px, 4vw, 42px);
}

.about-intro-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

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

.about-strength-card,
.about-process-step,
.about-safety-list article,
.about-infra-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(16, 19, 24, 0.72);
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.about-strength-card:hover,
.about-process-step:hover,
.about-safety-list article:hover,
.about-infra-list article:hover {
  border-color: rgba(230, 35, 58, 0.3);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.about-strength-card h3,
.about-process-step h3 {
  margin-top: 18px;
  color: white;
}

.about-strength-card p,
.about-process-step p,
.about-infra-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.58;
}

.about-infra-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.about-infra-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(130deg, rgba(230, 35, 58, 0.2), rgba(255, 255, 255, 0.035) 48%, rgba(0, 0, 0, 0.22)),
    url("https://images.unsplash.com/photo-1559297434-fae8a1916a79?auto=format&fit=crop&w=1600&q=82") center / cover;
  background-size: 82px 82px, 82px 82px, auto, cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.about-infra-map::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.86), rgba(7, 9, 12, 0.42), rgba(7, 9, 12, 0.72));
  content: "";
}

.about-infra-line {
  position: absolute;
  z-index: 1;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.78), var(--red));
  box-shadow: 0 0 30px rgba(230, 35, 58, 0.45);
}

.about-infra-dot {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 0 0 14px rgba(230, 35, 58, 0.14), 0 18px 42px rgba(0, 0, 0, 0.38);
}

.about-dot-one { left: calc(12% - 31px); top: calc(50% - 31px); }
.about-dot-two { left: calc(27% - 31px); top: calc(42% - 31px); }
.about-dot-three { left: calc(42% - 31px); top: calc(56% - 31px); }
.about-dot-four { left: calc(58% - 31px); top: calc(44% - 31px); }
.about-dot-five { left: calc(74% - 31px); top: calc(54% - 31px); }
.about-dot-six { left: calc(88% - 31px); top: calc(48% - 31px); }

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

.about-infra-list article {
  padding: 22px;
}

.about-infra-list strong {
  display: block;
  margin: 10px 0 8px;
  color: white;
  font-size: 18px;
}

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

.about-process-step {
  min-height: 260px;
  padding: 22px;
}

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

.about-safety-list article {
  display: grid;
  gap: 8px;
  min-height: 104px;
}

.about-safety-list strong {
  color: white;
  font-size: 20px;
  line-height: 1.22;
}

.about-mission-card {
  max-width: 980px;
  border: 1px solid rgba(230, 35, 58, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 20%, rgba(230, 35, 58, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  padding: clamp(34px, 6vw, 72px);
}

.about-mission-card h2,
.about-final-copy h2 {
  max-width: 940px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
}

.about-mission-card p:not(.eyebrow),
.about-final-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.58;
}

.about-final {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.95), rgba(8, 9, 11, 0.76)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.about-final-grid {
  align-items: center;
}

@keyframes aboutOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 7vw, 80px);
  align-items: start;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit,
.trust-card,
.lot-card,
.cost-list,
.faq-list {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(35, 42, 52, 0.82), rgba(18, 22, 28, 0.95)) padding-box,
    var(--panel-border) border-box;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.benefit {
  padding: 30px;
  transition: transform 300ms cubic-bezier(0.2, 0, 0.2, 1), box-shadow 300ms ease;
}

.benefit:hover {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 40px 90px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(230, 35, 58, 0.1);
  transform: translateY(-8px);
}

.benefit > *,
.trust-card > *,
.lot-card > *,
.cost-list > *,
.faq-list > *,
.strip-item > *,
.stat-card > *,
.step > * {
  position: relative;
  z-index: 1;
}

.icon {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--red);
  font-weight: 900;
}

.route-section {
  position: relative;
  background: #0a0c10;
  padding-block: 80px;
}

.route-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  content: "";
  opacity: 0.22;
}

.route-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.route-map {
  position: relative;
  display: grid;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(32, 38, 48, 0.88), rgba(15, 18, 22, 0.96)) padding-box,
    var(--panel-border) border-box;
  padding: 32px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.07),
    0 40px 110px rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(28px);
  overflow: hidden;
}

.route-map::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -34%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(215, 25, 52, 0.08), transparent);
  content: "";
  animation: panelScan 4.5s ease-in-out infinite;
}

.route-line {
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 52px;
  width: 1px;
  background: linear-gradient(var(--red), rgba(215, 25, 52, 0.08));
  transform-origin: top;
  animation: routeGrow 1.4s ease both;
}

.route-map article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 18px;
  min-height: 78px;
}

.route-map article span {
  z-index: 1;
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #252a31, #111316);
  color: white;
  font-weight: 950;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 28px rgba(17, 19, 22, 0.22);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.route-map article:hover span {
  background: linear-gradient(180deg, #f12a44, var(--red-dark));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 32px rgba(215, 25, 52, 0.34);
  transform: scale(1.08);
}

.route-map article strong {
  align-self: end;
  font-size: 20px;
}

.route-map article p {
  margin: 0;
  color: var(--muted);
}

.route-visual {
  grid-column: 1 / -1;
  position: relative;
  min-height: clamp(420px, 34vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 1px),
    radial-gradient(ellipse at 19% 45%, rgba(215, 25, 52, 0.18), transparent 34%),
    radial-gradient(ellipse at 84% 48%, rgba(215, 25, 52, 0.2), transparent 26%),
    radial-gradient(ellipse at 58% 18%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(135deg, #11151b 0%, #1d222b 52%, #14171c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -64px 120px rgba(0, 0, 0, 0.24),
    0 34px 110px rgba(31, 34, 38, 0.26);
  transform-style: preserve-3d;
}

.route-visual::before,
.route-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.route-visual::before {
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.08) 49.8% 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49%, rgba(255, 255, 255, 0.06) 49.8% 50%, transparent 50.2%);
  background-size: 220px 220px;
  opacity: 0.24;
}

.route-visual::after {
  background:
    linear-gradient(90deg, rgba(17, 19, 22, 0.34), transparent 18%, transparent 82%, rgba(17, 19, 22, 0.34)),
    linear-gradient(180deg, rgba(17, 19, 22, 0.28), transparent 28%, transparent 72%, rgba(17, 19, 22, 0.3));
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(215, 25, 52, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 25, 52, 0.12) 1px, transparent 1px);
  background-size: 70px 70px, 70px 70px, 280px 280px, 280px 280px;
  animation: mapGridMove 22s linear infinite;
}

.route-coast {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  filter: blur(0.1px);
  opacity: 0.55;
}

.coast-america {
  left: 6%;
  top: 18%;
  width: 23%;
  height: 54%;
  clip-path: polygon(6% 16%, 45% 3%, 88% 18%, 78% 36%, 92% 59%, 55% 91%, 18% 76%, 0 46%);
}

.coast-asia {
  right: 6%;
  top: 15%;
  width: 38%;
  height: 62%;
  clip-path: polygon(0 23%, 21% 2%, 56% 8%, 88% 28%, 100% 54%, 72% 77%, 38% 92%, 14% 69%);
}

.coast-caucasus {
  right: 22%;
  top: 43%;
  width: 17%;
  height: 28%;
  clip-path: polygon(8% 32%, 32% 8%, 72% 12%, 94% 45%, 72% 76%, 34% 88%, 0 62%);
}

.route-scene-head,
.route-status,
.route-corridor {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 19, 22, 0.54);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.route-scene-head {
  top: 24px;
  left: 24px;
  display: grid;
  gap: 2px;
  min-width: 250px;
  padding: 16px 18px;
}

.route-scene-head span,
.route-status span,
.route-corridor {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.route-scene-head strong,
.route-status strong {
  color: white;
  font-size: 15px;
}

.route-scene-head em {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-style: normal;
}

.route-status {
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
}

.route-status::before {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.7);
  content: "";
}

.route-corridor {
  padding: 8px 10px;
  font-size: 10px;
}

.corridor-ocean {
  left: 27%;
  top: 69%;
}

.corridor-land {
  right: 17%;
  top: 30%;
}

.map-route {
  position: absolute;
  z-index: 3;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(215, 25, 52, 0.9), rgba(255, 255, 255, 0.8), rgba(215, 25, 52, 0.72), transparent);
  filter: drop-shadow(0 0 16px rgba(215, 25, 52, 0.42));
  opacity: 0.72;
  transform-origin: left center;
}

.map-route::before,
.map-route::after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.85), 0 0 28px rgba(215, 25, 52, 0.42);
  content: "";
  transform: translate(-50%, -50%);
}

.map-route::before {
  left: 0;
  opacity: 0.36;
}

.map-route::after {
  right: 0;
  opacity: 0.72;
}

.map-route i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(215, 25, 52, 0.12), 0 0 28px rgba(215, 25, 52, 0.72);
  transform: translate(-50%, -50%);
  animation: shipmentMove 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.route-usa {
  left: 16%;
  top: 47%;
  width: 68%;
  transform: rotate(3deg);
}

.route-china {
  left: 43%;
  top: 40%;
  width: 40%;
  transform: rotate(8deg);
}

.route-korea {
  left: 55%;
  top: 63%;
  width: 29%;
  transform: rotate(-18deg);
}

.route-georgia {
  left: 70%;
  top: 43%;
  width: 15%;
  transform: rotate(22deg);
}

.route-china i {
  animation-delay: 0.85s;
}

.route-korea i {
  animation-delay: 1.55s;
}

.route-georgia i {
  animation-delay: 2.2s;
}

.map-pin {
  position: absolute;
  z-index: 5;
  display: grid;
  min-width: 72px;
  padding: 10px 14px;
  background: rgba(18, 22, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  backdrop-filter: blur(12px);
  animation: pinPulse 4s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.map-pin b {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.map-pin small {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  color: var(--tech-cyan);
  letter-spacing: 0.05em;
}

.pin-usa {
  left: 11%;
  top: 39%;
}

.pin-china {
  left: 39%;
  top: 31%;
  animation-delay: 0.45s;
}

.pin-korea {
  left: 51%;
  top: 61%;
  animation-delay: 0.9s;
}

.pin-georgia {
  left: 66%;
  top: 34%;
  animation-delay: 1.35s;
}

.pin-bishkek {
  left: 80%;
  top: 46%;
  min-width: 78px;
  background:
    linear-gradient(180deg, #f12a44, var(--red-dark));
  box-shadow: 0 18px 48px rgba(215, 25, 52, 0.28), 0 0 0 9px rgba(215, 25, 52, 0.08);
  animation-delay: 1.8s;
}

.process {
  background:
    linear-gradient(180deg, rgba(17, 19, 22, 0.9), rgba(17, 19, 22, 0.98)),
    url("https://images.unsplash.com/photo-1486496572940-2bb2341fdbdf?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.step span {
  display: block;
  margin-bottom: 32px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.step p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.5;
}

.lot-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 260ms ease;
}

.chip.active,
.chip:hover {
  border-color: var(--red);
  background: rgba(230, 35, 58, 0.1);
  color: white;
  box-shadow: 0 0 20px rgba(230, 35, 58, 0.15);
  transform: translateY(-2px);
}

.lots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lot-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms ease, opacity 160ms ease, box-shadow 220ms ease;
}

.lot-card.is-hidden {
  display: none;
}

.lot-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 32px 92px rgba(31, 34, 38, 0.17),
    0 0 0 1px rgba(215, 25, 52, 0.08);
  transform: translateY(-7px);
}

.lot-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.lot-card:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.07);
}

.lot-body {
  display: grid;
  grid-template-rows: auto minmax(58px, auto) 1fr auto;
  flex: 1;
  padding: 24px;
}

.lot-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.lot-top strong {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.lot-body h3 {
  display: -webkit-box;
  min-height: 58px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.18;
}

dl {
  display: grid;
  align-self: start;
  gap: 8px;
  margin: 20px 0 24px;
}

.lot-body .button {
  align-self: end;
  justify-self: start;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 900;
}

.cost-section {
  position: relative;
  background: var(--bg);
  padding-block: 80px;
}

.cost-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cost-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  transition: all 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.cost-card-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(230, 35, 58, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.cost-card-v2:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(230, 35, 58, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cost-card-v2:hover::before {
  opacity: 1;
}

.cost-card-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  z-index: 1;
}

.lot-card.is-hidden-lot {
  display: none;
}

.lots-footer {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

#show-more-lots {
  padding: 16px 42px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cost-num-v2,
.cost-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  opacity: 0.95;
  text-shadow: 0 0 15px var(--red-glow);
}

.cost-card-main h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 850;
  color: white;
}

.cost-tag-v2 {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
}

.cost-card-v2 p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  z-index: 1;
}

@media (max-width: 992px) {
  .cost-grid-v2 {
    grid-template-columns: 1fr;
  }
}

.faq-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
}

@media (max-width: 992px) {
  .faq-grid, .trust-grid {
    grid-template-columns: 1fr;
  }
}

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

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.01);
  transition: all 300ms ease;
}

.faq-list details[open] {
  border-color: rgba(230, 35, 58, 0.4);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.faq-list summary {
  padding: 24px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  transition: all 200ms ease;
}

.faq-list summary:hover {
  color: var(--red);
}

.faq-list summary span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  margin-right: 16px;
  opacity: 0.7;
}

.faq-list summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 24px;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-list details[open] summary::after {
  content: "—";
  color: var(--red);
  transform: rotate(180deg);
}

.faq-list p {
  padding: 0 24px 24px 46px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid .section-head {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.trust-card {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(35, 42, 52, 0.8), rgba(18, 22, 28, 0.94)) padding-box,
    var(--panel-border) border-box;
  padding: 32px;
  min-height: 190px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.07),
    0 24px 80px rgba(0, 0, 0, 0.42);
  transition: transform 300ms cubic-bezier(0.2, 0, 0.2, 1), box-shadow 300ms ease;
}

.trust-card:hover {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 40px 100px rgba(0, 0, 0, 0.58),
    0 0 20px var(--red-glow);
  transform: translateY(-8px);
}

.lead {
  position: relative;
  overflow: hidden;
}

.lead::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px, 88px 88px;
  content: "";
  opacity: 0.22;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
}

.lead-grid {
  grid-template-columns: minmax(0, 1fr) 430px;
}

.lead-form {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(30, 35, 45, 0.96), rgba(15, 18, 22, 0.98));
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(32px);
}

.footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #07080a;
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 24px;
}

.footer a, .footer span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
  transition: color 200ms ease;
}

.footer a:hover {
  color: white;
}

/* Floating WhatsApp pulse */
.floating-whatsapp {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 100;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: transform 300ms ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp .ping {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pingPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes pingPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Form refinement */
input, select, textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: white;
  transition: all 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: inset 0 0 0 0 rgba(230, 35, 58, 0);
}

select {
  color-scheme: dark;
}

select option {
  background: #15181f;
  color: #ffffff;
}

input:focus, select:focus {
  outline: none;
  border-color: rgba(230, 35, 58, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 
    0 0 30px rgba(230, 35, 58, 0.1),
    inset 0 0 10px rgba(230, 35, 58, 0.05);
  transform: translateY(-2px);
}

.button-wide {
  position: relative;
  overflow: hidden;
}

.button-wide::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  animation: shimmerLoop 4s infinite;
}

@keyframes shimmerLoop {
  0% { left: -100%; }
  30% { left: 200%; }
  100% { left: 200%; }
}

.lot-page-body { background: var(--bg); }
.lot-page { min-height: 100vh; }

.lot-detail-hero {
  position: relative;
  min-height: 700px;
  padding: 160px 0 80px;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

.lot-detail-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: 
    linear-gradient(to bottom, rgba(7, 8, 10, 0.4), var(--bg)),
    radial-gradient(circle at 80% 20%, rgba(230, 35, 58, 0.08), transparent 40%);
}

.lot-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s ease;
}

.back-link:hover { color: var(--red); }

.lot-detail-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

/* Gallery System */
.gallery-hub {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lot-detail-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  background: #111;
}

.lot-detail-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.lot-detail-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 20px 24px;
  background: rgba(10, 12, 16, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: grid;
  gap: 4px;
}

.lot-detail-badge span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
}

.lot-detail-badge strong {
  font-size: 32px;
  color: white;
}

.thumb-grid {
  display: flex;
  gap: 12px;
}

.thumb-card {
  flex: 1;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.thumb-card img { width: 100%; height: 100%; object-fit: cover; }
.thumb-card:hover { opacity: 0.9; transform: translateY(-2px); }
.thumb-card.active { border-color: var(--red); opacity: 1; }

/* Specs Hub */
.specs-roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

.sub-head {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 32px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.spec-card {
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.spec-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(230, 35, 58, 0.3);
}

.spec-card strong {
  display: block;
  font-size: 18px;
  margin-top: 8px;
  color: white;
}

.vin-card {
  grid-column: span 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-color: rgba(230, 35, 58, 0.2);
}

.verify-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--red);
  padding: 4px 10px;
  border: 1px solid var(--red);
  border-radius: 4px;
  text-transform: uppercase;
}

/* Pricing Roadmap */
.financial-block {
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.pricing-roadmap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.road-step {
  position: relative;
  padding-left: 24px;
}

.road-point {
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-glow);
}

.road-step::after {
  content: "";
  position: absolute;
  left: 3.5px;
  top: 20px;
  bottom: -20px;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

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

.road-content header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.road-content header span { font-size: 10px; color: var(--muted); }
.road-content header strong { color: white; }
.road-content p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

.road-total {
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  text-align: right;
}

.road-total small { display: block; font-size: 10px; color: var(--muted); margin-bottom: 4px; }
.road-total strong { font-size: 38px; color: var(--red); text-shadow: 0 0 20px var(--red-glow); }

.shipping-info { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(32px) scale(0.96);
  transition: 
    opacity 1000ms cubic-bezier(0.2, 0.8, 0.2, 1), 
    transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.reveal-stagger > * {
  --reveal-stagger-base: 100ms;
}

/* Data Flows */
.logistics-pulse-line {
  stroke-dasharray: 10 5;
  animation: pulseMove 2s linear infinite;
}

@keyframes pulseMove {
  to { stroke-dashoffset: -15; }
}

.motion-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #0c0d0f;
  color: white;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 16px 0;
  animation: tickerMove 30s linear infinite;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- ATMOSPHERIC SYSTEM (Optimized) --- */
.atm-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--bg);
  padding-block: 80px;
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.atm-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.4;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.atm-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), var(--gc, rgba(230, 35, 58, 0.12)), transparent 50%);
  opacity: 0.6;
}

/* Specific Overrides */
#directions { --gx: 10%; --gy: 20%; --gc: rgba(230, 35, 58, 0.18); }
.surface { --gx: 80%; --gy: 60%; --gc: rgba(255, 255, 255, 0.08); }
.route-section { --gx: 70%; --gy: 30%; --gc: rgba(230, 35, 58, 0.15); }
#lots { --gx: 20%; --gy: 40%; --gc: rgba(230, 35, 58, 0.12); }
.cost-section { --gx: 90%; --gy: 10%; --gc: rgba(255, 255, 255, 0.06); }
.faq-section { --gx: 10%; --gy: 50%; --gc: rgba(230, 35, 58, 0.1); }

/* --- COMPONENTS --- */
.cost-grid, .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 8vw, 100px);
  align-items: start;
}

.cost-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.cost-list div {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  background: rgba(18, 22, 28, 0.8);
  padding: 32px;
  transition: all 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cost-list div:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cost-list div:hover {
  background: rgba(255, 255, 255, 0.04);
}

.cost-num {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--tech-cyan);
  font-weight: 800;
}

.tech-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 300ms ease;
}

.faq-list details[open] {
  border-color: var(--tech-cyan-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.faq-list summary {
  padding: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-list summary span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  margin-right: 16px;
}

.faq-list p {
  padding: 0 24px 24px 50px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.trust-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: all 300ms ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(230, 35, 58, 0.1);
}

.lead-form {
  padding: 40px;
  background: rgba(18, 22, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}

.footer {
  padding-block: 80px 40px;
  background: #07080a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .cost-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .process-flow-line { display: none; }
}

.direction-card,
.benefit,
.lot-card,
.cost-list,
.faq-list,
.route-map {
  color: var(--ink);
}

.direction-card h3,
.benefit h3,
.lot-card h3,
.cost-list h3,
.faq-list h3,
.route-map h3,
.direction-card strong,
.lot-card strong,
.cost-list strong,
.faq-list strong,
.route-map strong,
.lot-card dd,
.cost-list dd,
.faq-list summary {
  color: var(--ink);
}

.direction-card p,
.direction-card li,
.benefit p,
.lot-card dt,
.cost-list p,
.faq-list p,
.route-map p {
  color: var(--muted);
}

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

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translate3d(24px, 34px, 0) rotateX(4deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0);
  }
}

@keyframes orbitDrift {
  to {
    rotate: 360deg;
  }
}

@keyframes routeSweep {
  0%,
  100% {
    opacity: 0.1;
    clip-path: inset(0 100% 0 0);
  }
  45%,
  55% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes telemetryDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -10px, 0);
  }
}

@keyframes signalPulse {
  to {
    box-shadow: 0 0 0 24px rgba(255, 255, 255, 0), 0 0 28px rgba(255, 255, 255, 0.9);
  }
}

@keyframes panelScan {
  0%,
  20% {
    transform: translateX(0);
  }
  70%,
  100% {
    transform: translateX(420%);
  }
}

@keyframes routeGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatAction {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes mapGridMove {
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes pinPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(215, 25, 52, 0.26);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(215, 25, 52, 0);
    transform: translateY(-6px);
  }
}

@keyframes shipmentMove {
  0% {
    left: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes sectionGridDrift {
  to {
    background-position: 0 0, 86px 86px, 86px 86px, 0 0;
  }
}

@keyframes sectionBeam {
  0%,
  100% {
    opacity: 0.34;
    transform: translate3d(-18%, 0, 0) skewX(-13deg);
  }
  48% {
    opacity: 0.78;
    transform: translate3d(16%, 0, 0) skewX(-13deg);
  }
}

@keyframes premiumCardScan {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-42%);
  }
  54% {
    opacity: 0.72;
  }
  72%,
  100% {
    opacity: 0;
    transform: translateX(42%);
  }
}

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

@media (max-width: 980px) {
  .phone,
  .header-actions .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(17, 19, 22, 0.96);
    box-shadow: var(--shadow);
    padding: 22px;
  }

  .nav.open {
    display: grid;
    gap: 16px;
    animation: menuPanelIn 400ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .nav a {
    font-family: var(--font-mono);
    font-size: 16px;
    letter-spacing: 0.05em;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  @keyframes menuPanelIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-grid,
  .lead-grid,
  .split,
  .lot-detail-grid,
  .lot-detail-content,
  .cost-grid,
  .faq-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

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

  .lot-detail-hero {
    min-height: auto;
    padding-top: 124px;
  }

  .motion-stage {
    opacity: 0.58;
  }

  .telemetry-card,
  .node-shanghai,
  .node-seoul {
    display: none;
  }

  .hero-panel,
  .lead-form,
  .lot-detail-media {
    max-width: 520px;
  }

  .stats-grid,
  .directions-grid,
  .comparison-grid,
  .lot-detail-specs,
  .lots-grid,
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-hero {
    min-height: auto;
    padding: 128px 0 70px;
  }

  .about-hero-grid,
  .about-intro-grid,
  .about-safety-grid,
  .about-final-grid,
  .about-infra-stage {
    grid-template-columns: 1fr;
  }

  .about-hero-panel,
  .about-intro-text {
    max-width: 640px;
  }

  .about-strength-grid,
  .about-infra-list,
  .about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-motion {
    opacity: 0.58;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    min-height: 760px;
    padding-top: 72px;
    padding-bottom: 46px;
  }

  .hero-grid {
    gap: clamp(34px, 5vw, 70px);
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(46px, 4.4vw, 62px);
    line-height: 0.98;
  }

  .hero-text {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero-panel {
    padding: 24px;
  }

  .hero-panel h2 {
    font-size: 25px;
  }

  .hero-panel form {
    gap: 12px;
  }

  .hero-panel input,
  .hero-panel select {
    min-height: 48px;
  }

  .hero-panel .button-wide {
    min-height: 50px;
  }

  .proof-row {
    margin-top: 0;
  }

  .hero-actions {
    margin-top: 22px;
  }
}

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

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 138px;
  }

  .footer .brand img {
    width: 148px;
  }

  h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions,
  .proof-row,
  .lot-toolbar {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .stats-grid,
  .directions-grid,
  .comparison-grid,
  .benefits-grid,
  .lot-detail-specs,
  .timeline,
  .lots-grid,
  .strip-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 118px;
  }

  .hero-panel,
  .lead-form {
    padding: 20px;
  }

  .about-hero {
    padding: 112px 0 56px;
  }

  .about-hero-copy h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .about-hero-copy > p:not(.eyebrow),
  .about-intro-text p,
  .about-mission-card p:not(.eyebrow),
  .about-final-copy p {
    font-size: 16px;
  }

  .about-hero-actions,
  .about-proof-row {
    display: grid;
  }

  .about-hero-panel,
  .about-strength-card,
  .about-process-step,
  .about-safety-list article,
  .about-mission-card {
    padding: 22px;
  }

  .about-strength-grid,
  .about-infra-list,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-infra-map {
    min-height: 320px;
  }

  .about-infra-dot {
    width: 46px;
    height: 46px;
    box-shadow: 0 0 0 10px rgba(230, 35, 58, 0.12), 0 12px 28px rgba(0, 0, 0, 0.34);
  }

  .about-dot-one { left: calc(12% - 23px); top: calc(50% - 23px); }
  .about-dot-two { left: calc(27% - 23px); top: calc(42% - 23px); }
  .about-dot-three { left: calc(42% - 23px); top: calc(56% - 23px); }
  .about-dot-four { left: calc(58% - 23px); top: calc(44% - 23px); }
  .about-dot-five { left: calc(74% - 23px); top: calc(54% - 23px); }
  .about-dot-six { left: calc(88% - 23px); top: calc(48% - 23px); }

  .about-orbit,
  .about-route,
  .about-node {
    display: none;
  }

  .about-mission-card h2,
  .about-final-copy h2 {
    font-size: 34px;
  }

  .direction-card {
    min-height: auto;
  }

  .direction-card-toplink {
    width: auto;
    max-width: calc(100% - 32px);
  }

  .comparison-card {
    min-height: auto;
    padding: 24px;
  }

  .strip-item {
    min-height: auto;
    padding: 24px;
  }

  .route-map {
    padding: 22px;
  }

  .route-line {
    left: 46px;
  }

  .route-map article {
    grid-template-columns: 48px 1fr;
  }

  .route-visual {
    min-height: 360px;
  }

  .route-scene-head {
    top: 14px;
    left: 14px;
    min-width: 0;
    max-width: 210px;
    padding: 12px;
  }

  .route-status {
    right: 14px;
    bottom: 14px;
    padding: 11px 12px;
  }

  .route-corridor,
  .route-scene-head em {
    display: none;
  }

  .lot-detail-badge {
    right: 12px;
    bottom: 12px;
    min-width: 128px;
    padding: 12px;
  }

  .lot-detail-panel,
  .lot-detail-specs article {
    padding: 20px;
  }

  #directions::after,
  .surface::after,
  .route-section::after,
  #lots::after,
  .cost-section::after,
  .faq-section::after,
  #trust::after,
  .process::after,
  .stats-section::after {
    opacity: 0.34;
  }

  #directions::before,
  .surface::before,
  .route-section::before,
  #lots::before,
  .cost-section::before,
  .faq-section::before,
  .process::before,
  #trust::before,
  .trust-strip::before,
  .stats-section::before,
  .lead::after {
    opacity: 0.38;
  }

  .map-pin {
    min-width: 46px;
    min-height: 42px;
    font-size: 12px;
  }

  .map-pin small {
    display: none;
  }

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

/* --- USA DIRECTION PAGE STYLES --- */
.usa-page {
  background: var(--bg);
}

.usa-hero {
  position: relative;
  min-height: 80vh;
  padding: 160px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.usa-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: 
    linear-gradient(to right, rgba(7, 8, 10, 0.94), rgba(7, 8, 10, 0.2)),
    url('https://images.unsplash.com/photo-1614200179396-2bdb77ebf81b?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.usa-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, var(--red-glow), transparent 60%);
  opacity: 0.4;
}

.usa-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.text-glow {
  color: #fff;
  text-shadow: 0 0 30px var(--red-glow);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.trust-chips .chip {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

/* Glass Form Card */
.form-glass-card {
  padding: 40px;
  background: rgba(18, 21, 28, 0.64);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.form-glass-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.form-glass-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
}

/* Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.pillar {
  padding: 40px;
  background: var(--bg);
  transition: background 0.3s ease;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.02);
}

.pillar small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--red);
  margin-bottom: 16px;
}

.pillar h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

/* Why USA & FAQ */
.why-usa-grid {
  display: grid;
  gap: 60px;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(230, 35, 58, 0.2);
}

.faq-item summary {
  padding: 10px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  color: var(--red);
  font-size: 20px;
}

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

.faq-item p {
  padding: 10px 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile Fixes for USA Page */
@media (max-width: 992px) {
  .usa-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .usa-hero {
    padding-top: 120px;
    text-align: center;
  }
  
  .usa-hero-actions, 
  .trust-chips {
    justify-content: center;
  }
}

/* Trust Claim Card */
.trust-claim-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.trust-claim-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

.claim-icon {
  width: 80px;
  height: 80px;
  background: rgba(230, 35, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.claim-text h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #fff;
}

.claim-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .trust-claim-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }
  .claim-icon {
    margin: 0 auto 20px;
  }
}

/* Glass Table for Pricing */
.glass-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  margin-top: 16px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row span {
  color: var(--muted);
}

.table-row strong {
  color: white;
}

.trust-badge-mini {
  margin-top: 20px;
  padding: 12px;
  background: rgba(230, 35, 58, 0.05);
  border: 1px solid rgba(230, 35, 58, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.glass-loader {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}

/* Trust & Pillars Section */
.pillars-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pillar-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(230, 35, 58, 0.3);
  transform: translateY(-5px);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: rgba(230, 35, 58, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.pillar-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contract-banner {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(90deg, rgba(230, 35, 58, 0.1) 0%, transparent 100%);
  border: 1px solid rgba(230, 35, 58, 0.2);
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.contract-text h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contract-text p {
  color: var(--muted);
  max-width: 500px;
}

/* Deposit Section */
.deposit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.deposit-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.deposit-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
}

.deposit-list li span {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.deposit-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
  .contract-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .deposit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .deposit-visual img {
    height: 300px;
  }
}

/* USA Rebirth Premium Styles */
.usa-hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
}

.usa-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 50%),
              linear-gradient(90deg, var(--bg) 0%, transparent 100%);
  z-index: 1;
}

.hero-v2-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-v2-text {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin: 32px 0;
  line-height: 1.6;
}

.hero-v2-badges {
  display: flex;
  gap: 32px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-item img { width: 24px; opacity: 0.7; }
.badge-item span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* Quiz Card */
.quiz-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.quiz-header h3 { font-size: 24px; margin-bottom: 8px; }
.quiz-header p { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.quiz-step { margin-bottom: 20px; }
.quiz-step label { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }

/* Stats v2 */
.stats-v2-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-v2-item strong { font-size: 48px; color: white; display: block; }
.stat-v2-item p { font-size: 12px; color: var(--muted); text-transform: uppercase; margin-top: 8px; }

.stat-v2-line { width: 1px; height: 60px; background: var(--line); }

/* Advantage Hub */
.adv-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.adv-card {
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.adv-num {
  font-size: 64px;
  font-family: var(--font-accent);
  color: rgba(230, 35, 58, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  font-weight: 900;
}

/* Verification System */
.ver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ver-steps {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.ver-step-item {
  display: flex;
  gap: 20px;
}

.ver-dot {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--red);
}

.carfax-sample-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  color: #1a1e23;
  transform: rotate(3deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.carfax-sample-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f0f2f5;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.sample-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
  font-size: 14px;
}

.sample-line strong.green { color: #27ae60; }

/* Logistics v2 Map */
.log-v2-map-placeholder {
  margin-top: 60px;
  height: 400px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 32px;
  position: relative;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg');
  background-size: cover;
  background-position: center;
  filter: invert(1) opacity(0.15);
}

.pulse-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
}

.pulse-point::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid white;
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

.pulse-point span {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.pulse-point.red { background: var(--red); }
.pulse-point.red::after { border-color: var(--red); }

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

@media (max-width: 992px) {
  .hero-v2-grid, .ver-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-v2-grid { flex-direction: column; gap: 32px; text-align: center; }
  .stat-v2-line { width: 60px; height: 1px; }
  .usa-hero-v2 { padding: 80px 0; }
}
/* --- USA REBIRTH: PREMIUM LAYOUTS --- */
.formula-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr auto 1fr auto 1fr auto 1.5fr;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}
.formula-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
}
.formula-val { font-size: 14px; font-weight: 700; color: white; text-transform: uppercase; margin-bottom: 8px; }
.formula-desc { font-size: 11px; color: var(--muted); line-height: 1.4; }
.formula-plus, .formula-equal { font-size: 24px; color: var(--red); font-weight: 300; }
.formula-total {
  padding: 40px;
  background: linear-gradient(135deg, rgba(230, 35, 58, 0.15), rgba(7, 8, 10, 0.4));
  border: 2px solid var(--red);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 0 40px rgba(230, 35, 58, 0.2);
}
.total-val { font-size: 18px; font-weight: 800; color: white; text-transform: uppercase; }
.total-savings { font-size: 12px; color: var(--red); font-weight: 700; margin-top: 8px; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.case-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.case-card:hover { transform: translateY(-10px); border-color: var(--red); }
.case-img img { width: 100%; height: 240px; object-fit: cover; }
.case-info { padding: 24px; }
.case-info h3 { font-size: 18px; margin-bottom: 16px; }
.case-stats { display: grid; gap: 12px; }
.c-stat { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.c-stat strong { color: white; }
.c-stat.highlight strong { color: var(--red); font-size: 16px; }

.deposit-v2-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.dep-v2-list { list-style: none; margin-top: 32px; display: grid; gap: 16px; font-size: 14px; }
.dep-v2-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); }
.dep-v2-list li svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 1200px) {
  .formula-grid { grid-template-columns: 1fr; gap: 20px; }
  .formula-plus, .formula-equal { display: none; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cases-grid { grid-template-columns: 1fr; }
  .deposit-v2-grid { grid-template-columns: 1fr; gap: 40px; }
}






/* USA PAGE: CINEMATIC UPGRADE */
.usa-page {
    background: #050608;
}

/* Atmosphere Layer */
.usa-atmosphere {
    position: fixed;
    inset: 0;
    z-index: -100;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.8;
}

.mesh-gradient {
    position: absolute;
    width: 150vw;
    height: 150vh;
    top: -25%;
    left: -25%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 35, 58, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(18, 22, 28, 0.8) 0%, transparent 100%);
    filter: blur(100px);
    will-change: transform;
}

main {
    position: relative;
    z-index: 1;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.text-glow {
    text-shadow: 0 0 30px rgba(230, 35, 58, 0.4);
}

/* Premium Card Styles */
.lot-card, .case-card, .pillar-card, .formula-card, .quiz-card {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.6), rgba(10, 12, 16, 0.8)) !important;
    backdrop-filter: blur(16px);
}

.lot-card:hover, .case-card:hover, .pillar-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(230, 35, 58, 0.4) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(230, 35, 58, 0.15);
}

/* Route & Pulse Elements */
.pulse-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px white;
    z-index: 10;
}

.pulse-point::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid white;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-point.red {
    background: var(--red);
    box-shadow: 0 0 20px var(--red);
}

.pulse-point.red::after {
    border-color: var(--red);
}

@keyframes ping {
    75%, 100% {
        transform: scale(3);
        opacity: 0;
    }
}

.route-svg-path {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    width: 100%;
    height: 100%;
}

/* Cinematic Overlays */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(5,6,8,0.2) 0%, rgba(5,6,8,1) 95%);
    z-index: 1;
}

.cinematic-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.cinematic-reveal-stagger > * {
    opacity: 0;
}

.stat-v2-item strong {
    background: linear-gradient(90deg, #fff, var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 54px;
}

.stat-v2-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* Fix Scroll Issue (Lenis compatibility) */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Ensure bootloader is removed */
.boot-loader.loaded {
    display: none;
}


/* ==========================================
   PRODUCTION READY USA REBUILD (v3)
   ========================================== */

.usa-page {
    background: #0a0c10;
    color: #fff;
    overflow-x: hidden;
}

/* Atmosphere System */
.usa-atmosphere {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.mesh-gradient {
    position: absolute;
    inset: -50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(230, 35, 58, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(230, 35, 58, 0.1) 0%, transparent 50%);
    filter: blur(80px);
    opacity: 0.6;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
}

/* Hero Section v3 */
.usa-hero-v3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(0.5) brightness(0.6);
}

.hero-v3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 12, 16, 0.8), rgba(10, 12, 16, 1));
}

.hero-v3-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-v3-content h1 {
    font-size: clamp(48px, 8vw, 84px);
    line-height: 0.95;
    margin: 24px 0;
    font-weight: 900;
}

.hero-v3-content .tagline {
    font-family: var(--font-mono);
    color: var(--red);
    letter-spacing: 0.2em;
    font-size: 11px;
    text-transform: uppercase;
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-item .icon { font-size: 24px; }
.feature-item strong { display: block; font-size: 14px; }
.feature-item small { color: var(--muted); font-size: 11px; }

/* Quiz v3 */
.quiz-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.quiz-intro h3 { font-size: 24px; margin-bottom: 8px; }
.quiz-intro p { color: var(--muted); font-size: 14px; margin-bottom: 32px; }

.quiz-v3-form .input-group {
    margin-bottom: 20px;
}

.quiz-v3-form label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.quiz-v3-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: inherit;
}

/* Stats Horizon */
.stats-horizon-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 0;
}

.stats-horizon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.horizon-stat strong {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.horizon-stat span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Inventory v3 */
.lots-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.lot-card-v3 {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 400ms ease, border-color 400ms ease;
}

.lot-card-v3:hover {
    transform: translateY(-8px);
    border-color: var(--red);
}

.lot-image {
    position: relative;
    aspect-ratio: 16/10;
}

.lot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lot-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--red);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.lot-details {
    padding: 24px;
}

.lot-details h3 { font-size: 18px; margin-bottom: 16px; min-height: 48px; }

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--muted);
}

.price-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 12px;
    color: #fff;
    font-weight: 700;
}

/* Logistics v3 */
.logistics-v3-section { padding: 120px 0; }
.log-v3-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }

.hub-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.hub-item strong { display: block; font-size: 18px; color: var(--red); }
.hub-item span { font-size: 13px; color: var(--muted); }

.map-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 32px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--red);
}

.pin span {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.pin-start { left: 20%; top: 40%; }
.pin-end { right: 20%; top: 60%; }

/* Mobile Adaptability */
@media (max-width: 992px) {
    .hero-v3-inner, .log-v3-grid { grid-template-columns: 1fr; gap: 48px; }
    .stats-horizon-grid { grid-template-columns: repeat(2, 1fr); }
    .usa-hero-v3 { padding: 160px 0 80px; text-align: center; }
    .hero-features { justify-content: center; }
}

/* Cars From USA page */
.carsusa-page {
  --carsusa-motion-x: 0px;
  --carsusa-motion-y: 0px;
  overflow-x: hidden;
  background: #08090b;
  color: #fff;
}

.carsusa-page main {
  position: relative;
  z-index: 1;
}

.carsusa-page section {
  overflow: clip;
}

.carsusa-hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  padding: 128px 0 72px;
  isolation: isolate;
}

.carsusa-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(0deg, #08090b 0%, rgba(8, 9, 11, 0));
  content: "";
}

.carsusa-hero-media {
  position: absolute;
  inset: -18px;
  z-index: -2;
  background: #0d1015;
  transform: translate3d(calc(var(--carsusa-motion-x) * -0.28), calc(var(--carsusa-motion-y) * -0.24), 0);
  transition: transform 900ms cubic-bezier(0.2, 0, 0.2, 1);
}

.carsusa-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.76) 44%, rgba(8, 9, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.9) 0%, rgba(8, 9, 11, 0.04) 48%, rgba(8, 9, 11, 0.62) 100%);
  content: "";
}

.carsusa-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: carsusaHeroDrift 24s ease-in-out infinite alternate;
}

.direction-motion-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.direction-motion-stage::before {
  position: absolute;
  inset: 11% 4% 5%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.16) 48.1% 48.22%, transparent 48.3%),
    linear-gradient(0deg, transparent 0 49%, rgba(255, 255, 255, 0.11) 49.1% 49.22%, transparent 49.3%);
  background-size: 160px 160px;
  content: "";
  mask-image: radial-gradient(circle at 62% 46%, black, transparent 72%);
  opacity: 0.3;
  transform: translate3d(calc(var(--direction-x, 0px) * 0.12), calc(var(--direction-y, 0px) * 0.12), 0);
  animation: directionGridDrift 26s linear infinite;
}

.direction-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  opacity: 0.58;
  transform: translate3d(calc(var(--direction-x, 0px) * 0.16), calc(var(--direction-y, 0px) * 0.16), 0);
}

.direction-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 28px rgba(230, 35, 58, 0.82);
  content: "";
}

.direction-orbit-one {
  right: 11%;
  top: 18%;
  width: 420px;
  height: 420px;
  animation: directionOrbitDrift 13s linear infinite;
}

.direction-orbit-one::after {
  top: 52px;
  left: 86px;
}

.direction-orbit-two {
  right: 4%;
  top: 44%;
  width: 248px;
  height: 248px;
  animation: directionOrbitDrift 9s linear infinite reverse;
}

.direction-orbit-two::after {
  right: 24px;
  bottom: 58px;
}

.direction-beam {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 35, 58, 0.12), rgba(255, 255, 255, 0.62), transparent);
  filter: drop-shadow(0 0 18px rgba(230, 35, 58, 0.42));
  transform-origin: left center;
  animation: directionBeamSweep 5.2s ease-in-out infinite;
}

.direction-beam-one {
  right: 10%;
  top: 35%;
  width: 410px;
  transform: rotate(-12deg);
}

.direction-beam-two {
  right: 13%;
  top: 62%;
  width: 330px;
  transform: rotate(10deg);
  animation-delay: 1.35s;
}

.direction-node,
.direction-telemetry {
  position: absolute;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(13, 16, 22, 0.58);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

.direction-node {
  min-width: 132px;
  padding: 13px 16px;
  transform: translate3d(calc(var(--direction-x, 0px) * 0.08), calc(var(--direction-y, 0px) * 0.08), 0);
  animation: directionNodeFloat 6s ease-in-out infinite;
}

.direction-node span,
.direction-telemetry span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direction-node strong {
  font-size: 15px;
  font-weight: 900;
}

.direction-node small {
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.02em;
}

.direction-node-origin { right: 38%; top: 23%; }
.direction-node-check { right: 21%; top: 16%; animation-delay: 0.45s; }
.direction-node-port { right: 28%; top: 69%; animation-delay: 1.35s; }
.direction-node-finish { right: 7%; top: 52%; animation-delay: 0.9s; }

.direction-telemetry {
  min-width: 146px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.045);
  transform: translate3d(calc(var(--direction-x, 0px) * -0.06), calc(var(--direction-y, 0px) * -0.06), 0);
  animation: directionTelemetryDrift 8s ease-in-out infinite;
}

.direction-telemetry strong {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.direction-telemetry i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(230, 35, 58, 0.85);
  animation: directionStatusPulse 2s ease-in-out infinite;
}

.direction-telemetry-one { right: 43%; top: 43%; }
.direction-telemetry-two { right: 9%; top: 73%; animation-delay: 1.7s; }

.direction-signal {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.32), 0 0 28px rgba(255, 255, 255, 0.9);
  animation: directionSignalPulse 2.4s ease-out infinite;
}

.direction-signal-one { right: 31%; top: 47%; }
.direction-signal-two { right: 18%; top: 66%; animation-delay: 0.9s; }
.direction-signal-three { right: 11%; top: 31%; animation-delay: 1.7s; }

.direction-usa-motion .direction-node-origin { right: 40%; top: 24%; }
.direction-usa-motion .direction-node-check { right: 23%; top: 18%; }
.direction-usa-motion .direction-node-port { right: 29%; top: 70%; }
.direction-usa-motion .direction-node-finish { right: 8%; top: 54%; }

.direction-china-motion .direction-node-origin { right: 39%; top: 22%; }
.direction-china-motion .direction-node-check { right: 20%; top: 17%; }
.direction-china-motion .direction-node-port { right: 31%; top: 70%; }
.direction-china-motion .direction-node-finish { right: 8%; top: 53%; }

.direction-korea-motion .direction-node-origin { right: 39%; top: 23%; }
.direction-korea-motion .direction-node-check { right: 21%; top: 18%; }
.direction-korea-motion .direction-node-port { right: 30%; top: 69%; }
.direction-korea-motion .direction-node-finish { right: 8%; top: 53%; }

.direction-georgia-motion .direction-node-origin { right: 39%; top: 23%; }
.direction-georgia-motion .direction-node-check { right: 21%; top: 18%; }
.direction-georgia-motion .direction-node-port { right: 30%; top: 69%; }
.direction-georgia-motion .direction-node-finish { right: 8%; top: 53%; }

.carsusa-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.74fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.carsusa-hero-copy h1 {
  max-width: 760px;
  margin: 16px 0 24px;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: 0;
}

.carsusa-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 22px);
}

.carsusa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.carsusa-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.carsusa-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.carsusa-proof-row span,
.carsusa-card-kicker,
.carsusa-lot-media span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.carsusa-lead-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 16, 21, 0.74);
  backdrop-filter: blur(22px);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.45);
  transform: translate3d(calc(var(--carsusa-motion-x) * 0.08), calc(var(--carsusa-motion-y) * 0.08), 0);
  transition: transform 500ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.carsusa-lead-card:hover {
  border-color: rgba(230, 35, 58, 0.36);
  box-shadow: 0 46px 120px rgba(0, 0, 0, 0.52), 0 0 34px rgba(230, 35, 58, 0.12);
}

.carsusa-lead-card h2 {
  margin: 18px 0 24px;
  font-size: clamp(26px, 3vw, 40px);
}

.carsusa-form,
.carsusa-final-form {
  display: grid;
  gap: 14px;
}

.carsusa-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.carsusa-form small,
.carsusa-final-form small {
  display: none;
  color: #fff;
  font-weight: 800;
}

.carsusa-form small.is-visible,
.carsusa-final-form small.is-visible {
  display: block;
}

.carsusa-stats {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: #101318;
}

.carsusa-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.carsusa-stats-grid div {
  min-height: 134px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.carsusa-stats-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.carsusa-stats-grid strong {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.carsusa-stats-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.carsusa-section {
  background: #08090b;
}

.carsusa-surface {
  background: #101318;
}

.carsusa-lots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.carsusa-lots-grid .lot-card {
  min-height: 585px;
  border-radius: 8px;
}

.carsusa-lots-grid .lot-card img {
  height: 230px;
}

.carsusa-lots-grid .lot-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.carsusa-lots-grid .lot-top {
  align-items: center;
  min-height: 24px;
}

.carsusa-lots-grid .lot-body h3 {
  min-height: 72px;
  margin: 0;
  font-size: clamp(21px, 1.45vw, 27px);
  line-height: 1.14;
}

.carsusa-lots-grid .lot-body dl {
  margin: 18px 0 24px;
}

.carsusa-lots-grid .lot-body .button {
  margin-top: auto;
  justify-self: start;
  min-width: 176px;
}

.carskorea-page {
  --korea-accent: var(--red);
}

.carskorea-page .carsusa-hero::after {
  background:
    radial-gradient(circle at 72% 26%, rgba(230, 35, 58, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(5, 8, 10, 0.92) 0%, rgba(7, 10, 13, 0.76) 48%, rgba(7, 10, 13, 0.42) 100%);
}

.carskorea-page .carsusa-hero-media img {
  filter: saturate(0.9) contrast(1.08) brightness(0.72);
}

.carskorea-page .carsusa-proof-row span,
.carskorea-page .carsusa-card-kicker,
.carskorea-page .carsusa-feature span,
.carskorea-page .carsusa-process span,
.carskorea-page .carsusa-route-card > span {
  color: var(--korea-accent);
}

.carskorea-page .carsusa-proof-row span {
  background: rgba(230, 35, 58, 0.08);
  border-color: rgba(230, 35, 58, 0.24);
}

.carskorea-page .carsusa-lead-card,
.carskorea-page .carsusa-inspection-visual,
.carskorea-page .carsusa-route-card,
.carskorea-cost-table {
  box-shadow: 0 28px 90px rgba(46, 10, 16, 0.34);
}

.carskorea-clean-band {
  background:
    radial-gradient(circle at 16% 12%, rgba(230, 35, 58, 0.09), transparent 32%),
    #08090b;
}

.carskorea-page .carsusa-route-progress,
.carskorea-page .carsusa-route-marker.is-active,
.carskorea-page .carsusa-route-marker.is-complete {
  background: var(--red);
}

.carskorea-page .carsusa-route-marker.is-active,
.carskorea-page .carsusa-route-marker.is-complete {
  box-shadow: 0 16px 38px rgba(230, 35, 58, 0.22), 0 0 0 12px rgba(230, 35, 58, 0.12);
}

.carskorea-page .carsusa-route-marker:nth-of-type(1) { left: calc(10% - 29px); top: calc(54% - 29px); }
.carskorea-page .carsusa-route-marker:nth-of-type(2) { left: calc(26% - 29px); top: calc(54% - 29px); }
.carskorea-page .carsusa-route-marker:nth-of-type(3) { left: calc(42% - 29px); top: calc(54% - 29px); }
.carskorea-page .carsusa-route-marker:nth-of-type(4) { left: calc(58% - 29px); top: calc(54% - 29px); }
.carskorea-page .carsusa-route-marker:nth-of-type(5) { left: calc(74% - 29px); top: calc(54% - 29px); }
.carskorea-page .carsusa-route-marker:nth-of-type(6) { left: calc(90% - 29px); top: calc(54% - 29px); }

.carskorea-cost {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
}

.carskorea-cost > div:first-child p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
  margin: 18px 0 28px;
  max-width: 620px;
}

.carskorea-cost-table {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(230, 35, 58, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(10, 13, 17, 0.9);
  overflow: hidden;
}

.carskorea-cost-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.carskorea-cost-table div:last-child {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.04);
}

.carskorea-cost-table span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.carskorea-cost-table strong {
  color: #fff;
  text-align: right;
}

.carskorea-final {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.95), rgba(8, 9, 11, 0.72)),
    url("https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.carschina-page {
  --china-accent: var(--red);
  --china-soft: rgba(230, 35, 58, 0.16);
}

.carschina-page .carsusa-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 76% 46%, rgba(255, 255, 255, 0.16), transparent 0 3px, transparent 4px),
    radial-gradient(circle at 84% 28%, rgba(230, 35, 58, 0.55), transparent 0 4px, transparent 5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08), transparent 0 1px, transparent 2px);
  background-size: 88px 88px, 88px 88px, 100% 100%, 100% 100%, 100% 100%;
  content: "";
  mask-image: radial-gradient(circle at 62% 48%, black, transparent 78%);
  opacity: 0.42;
  animation: carschinaGridDrift 24s linear infinite;
}

.carschina-page .carsusa-hero::after {
  background:
    linear-gradient(100deg, transparent 0 42%, rgba(255, 255, 255, 0.09) 42.15%, transparent 42.4% 58%, rgba(230, 35, 58, 0.2) 58.1%, transparent 58.3%),
    radial-gradient(circle at 66% 30%, rgba(230, 35, 58, 0.22), transparent 32%),
    radial-gradient(circle at 22% 74%, rgba(230, 35, 58, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(5, 8, 10, 0.92) 0%, rgba(7, 10, 13, 0.74) 48%, rgba(7, 10, 13, 0.42) 100%);
  animation: carschinaScanSweep 7s ease-in-out infinite alternate;
}

.carschina-page .carsusa-hero-media img {
  filter: saturate(0.84) contrast(1.08) brightness(0.68);
}

.carschina-page .carsusa-proof-row span,
.carschina-page .carsusa-card-kicker,
.carschina-page .carsusa-feature span,
.carschina-page .carsusa-process span,
.carschina-page .carsusa-route-card > span {
  color: var(--china-accent);
}

.carschina-page .carsusa-proof-row span {
  background: rgba(230, 35, 58, 0.08);
  border-color: rgba(230, 35, 58, 0.24);
}

.carschina-page .carsusa-lead-card,
.carschina-page .carsusa-inspection-visual,
.carschina-page .carsusa-route-card {
  box-shadow: 0 28px 90px rgba(46, 10, 16, 0.36);
}

.carschina-tech-band {
  background:
    radial-gradient(circle at 18% 20%, rgba(230, 35, 58, 0.1), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.04), transparent 28%),
    #08090b;
}

.carschina-page .carsusa-route-progress,
.carschina-page .carsusa-route-marker.is-active,
.carschina-page .carsusa-route-marker.is-complete {
  background: var(--red);
}

.carschina-page .carsusa-route-marker.is-active,
.carschina-page .carsusa-route-marker.is-complete {
  box-shadow: 0 16px 38px rgba(230, 35, 58, 0.22), 0 0 0 12px rgba(230, 35, 58, 0.12);
}

.carschina-page .carsusa-route-marker:nth-of-type(1) { left: calc(10% - 29px); top: calc(54% - 29px); }
.carschina-page .carsusa-route-marker:nth-of-type(2) { left: calc(26% - 29px); top: calc(54% - 29px); }
.carschina-page .carsusa-route-marker:nth-of-type(3) { left: calc(42% - 29px); top: calc(54% - 29px); }
.carschina-page .carsusa-route-marker:nth-of-type(4) { left: calc(58% - 29px); top: calc(54% - 29px); }
.carschina-page .carsusa-route-marker:nth-of-type(5) { left: calc(74% - 29px); top: calc(54% - 29px); }
.carschina-page .carsusa-route-marker:nth-of-type(6) { left: calc(90% - 29px); top: calc(54% - 29px); }

.carschina-page .carskorea-cost-table {
  background:
    linear-gradient(145deg, rgba(230, 35, 58, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(10, 13, 17, 0.9);
}

.carschina-final {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.95), rgba(8, 9, 11, 0.72)),
    url("https://images.unsplash.com/photo-1619767886558-efdc259cde1a?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.carsgeorgia-page {
  --georgia-accent: var(--red);
}

.carsgeorgia-page .carsusa-hero::after {
  background:
    radial-gradient(circle at 68% 36%, rgba(230, 35, 58, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(5, 8, 10, 0.93) 0%, rgba(7, 10, 13, 0.76) 48%, rgba(7, 10, 13, 0.38) 100%);
}

.carsgeorgia-page .carsusa-hero-media img {
  filter: saturate(0.82) contrast(1.08) brightness(0.68);
}

.carsgeorgia-fast-band {
  background:
    radial-gradient(circle at 14% 22%, rgba(230, 35, 58, 0.09), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(255, 255, 255, 0.04), transparent 26%),
    #08090b;
}

.carsgeorgia-page .carsusa-route-progress,
.carsgeorgia-page .carsusa-route-marker.is-active,
.carsgeorgia-page .carsusa-route-marker.is-complete {
  background: var(--red);
}

.carsgeorgia-page .carsusa-route-marker.is-active,
.carsgeorgia-page .carsusa-route-marker.is-complete {
  box-shadow: 0 16px 38px rgba(230, 35, 58, 0.22), 0 0 0 12px rgba(230, 35, 58, 0.12);
}

.carsgeorgia-page .carsusa-route-marker:nth-of-type(1) { left: calc(10% - 29px); top: calc(54% - 29px); }
.carsgeorgia-page .carsusa-route-marker:nth-of-type(2) { left: calc(26% - 29px); top: calc(54% - 29px); }
.carsgeorgia-page .carsusa-route-marker:nth-of-type(3) { left: calc(42% - 29px); top: calc(54% - 29px); }
.carsgeorgia-page .carsusa-route-marker:nth-of-type(4) { left: calc(58% - 29px); top: calc(54% - 29px); }
.carsgeorgia-page .carsusa-route-marker:nth-of-type(5) { left: calc(74% - 29px); top: calc(54% - 29px); }
.carsgeorgia-page .carsusa-route-marker:nth-of-type(6) { left: calc(90% - 29px); top: calc(54% - 29px); }

.carsgeorgia-page .carskorea-cost-table {
  background:
    linear-gradient(145deg, rgba(230, 35, 58, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(10, 13, 17, 0.9);
}

.carsgeorgia-final {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.95), rgba(8, 9, 11, 0.72)),
    url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.carsusa-lot,
.carsusa-feature,
.carsusa-process article,
.carsusa-guarantees div,
.carsusa-faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.carsusa-lot:hover,
.carsusa-feature:hover,
.carsusa-process article:hover,
.carsusa-guarantees div:hover,
.carsusa-faq details:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 35, 58, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(230, 35, 58, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.carsusa-lot {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.carsusa-lot-media {
  position: relative;
  display: block;
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
}

.carsusa-lot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.carsusa-lot:hover .carsusa-lot-media img {
  transform: scale(1.055);
}

.carsusa-lot-media span {
  position: absolute;
  left: 14px;
  bottom: 14px;
}

.carsusa-lot-body {
  display: grid;
  grid-template-rows: 22px 52px 88px auto;
  gap: 14px;
  padding: 18px;
}

.carsusa-lot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.carsusa-lot-top span,
.carsusa-lot-top strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.carsusa-lot-top strong {
  color: var(--red);
  text-align: right;
}

.carsusa-lot h3,
.carsusa-feature h3,
.carsusa-process h3 {
  margin: 0;
  font-size: 20px;
}

.carsusa-lot h3 {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.carsusa-lot p,
.carsusa-feature p,
.carsusa-process p,
.carsusa-guarantees span,
.carsusa-faq p,
.carsusa-split > div > p,
.carsusa-inspection > div > p,
.carsusa-final-inner > p {
  color: rgba(255, 255, 255, 0.66);
}

.carsusa-lot p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.carsusa-lot .button {
  align-self: end;
  width: 100%;
}

.carsusa-split,
.carsusa-inspection {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

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

.carsusa-feature,
.carsusa-process article,
.carsusa-guarantees div {
  padding: 24px;
}

.carsusa-feature span,
.carsusa-process span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.carsusa-inspection-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #11151b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform: translate3d(calc(var(--carsusa-motion-x) * -0.08), calc(var(--carsusa-motion-y) * -0.08), 0);
  transition: transform 500ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.carsusa-inspection-visual:hover {
  border-color: rgba(230, 35, 58, 0.32);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.4), 0 0 32px rgba(230, 35, 58, 0.1);
}

.carsusa-inspection-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 9, 11, 0.92) 0%, rgba(8, 9, 11, 0.18) 54%, rgba(8, 9, 11, 0.32) 100%),
    radial-gradient(circle at 70% 24%, rgba(230, 35, 58, 0.28), transparent 34%);
  content: "";
}

.carsusa-inspection-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.carsusa-scan-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 92px;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.62);
  backdrop-filter: blur(16px);
}

.carsusa-scan-card span,
.carsusa-scan-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.carsusa-scan-card strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.carsusa-scan-grid {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.carsusa-scan-grid span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  animation: carsusaSoftPulse 3.8s ease-in-out infinite;
}

.carsusa-scan-grid span:nth-child(2) {
  animation-delay: 420ms;
}

.carsusa-scan-grid span:nth-child(3) {
  animation-delay: 840ms;
}

.carsusa-check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.74);
}

.carsusa-route {
  margin-top: 46px;
}

.carsusa-route-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.carsusa-route-map {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96), rgba(8, 9, 11, 0.78)),
    url("https://images.unsplash.com/photo-1494961104209-3c223057bd26?auto=format&fit=crop&w=1600&q=82") center / cover,
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 42%, rgba(230, 35, 58, 0.26), transparent 22%),
    radial-gradient(circle at 82% 46%, rgba(255, 255, 255, 0.16), transparent 20%),
    #08090b;
  overflow: hidden;
  --route-progress: 0%;
  --route-line-start: 14%;
  --route-line-width: 72%;
  transform: translate3d(calc(var(--carsusa-motion-x) * -0.04), calc(var(--carsusa-motion-y) * -0.04), 0);
  transition: transform 500ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.carsusa-route-map:hover {
  border-color: rgba(230, 35, 58, 0.3);
  box-shadow: inset 0 0 0 1px rgba(230, 35, 58, 0.1), 0 26px 70px rgba(0, 0, 0, 0.24);
}

.carsusa-route-map::before,
.carsusa-route-progress {
  position: absolute;
  left: var(--route-line-start);
  top: 54%;
  height: 2px;
  content: "";
  transform-origin: left center;
}

.carsusa-route-map::before {
  z-index: 1;
  width: var(--route-line-width);
  background: rgba(255, 255, 255, 0.24);
}

.carsusa-route-progress {
  z-index: 1;
  width: calc(var(--route-line-width) * var(--route-progress) / 100);
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.92));
  box-shadow: 0 0 26px rgba(230, 35, 58, 0.45);
  transition: width 320ms ease;
  animation: carsusaRouteGlow 2.8s ease-in-out infinite;
}

.carsusa-route-map::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(8, 9, 11, 0.42), rgba(8, 9, 11, 0.42)),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  content: "";
}

.carsusa-route-marker {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 9, 11, 0.72);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.carsusa-route-marker.is-active,
.carsusa-route-marker.is-complete {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 13px rgba(230, 35, 58, 0.16), 0 18px 42px rgba(0, 0, 0, 0.34);
}

.carsusa-route-marker.is-active {
  transform: scale(1.08);
  animation: carsusaMarkerPulse 1.9s ease-in-out infinite;
}

.carsusa-route-marker:nth-of-type(1) { left: calc(14% - 29px); top: calc(54% - 29px); }
.carsusa-route-marker:nth-of-type(2) { left: calc(32% - 29px); top: calc(54% - 29px); }
.carsusa-route-marker:nth-of-type(3) { left: calc(50% - 29px); top: calc(54% - 29px); }
.carsusa-route-marker:nth-of-type(4) { left: calc(68% - 29px); top: calc(54% - 29px); }
.carsusa-route-marker:nth-of-type(5) { left: calc(86% - 29px); top: calc(54% - 29px); }

.carsusa-route-card {
  display: grid;
  align-content: end;
  gap: 16px;
  min-height: 420px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(230, 35, 58, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  transform: translate3d(calc(var(--carsusa-motion-x) * 0.05), calc(var(--carsusa-motion-y) * 0.05), 0);
  transition: transform 500ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.carsusa-route-card:hover {
  border-color: rgba(230, 35, 58, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.carsusa-route-card > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.carsusa-route-card h3 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1;
}

.carsusa-route-card p,
.carsusa-route-card small {
  color: rgba(255, 255, 255, 0.68);
}

.carsusa-route-card div {
  display: grid;
  gap: 7px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.carsusa-route-card strong {
  font-size: 22px;
}

.carsusa-route-steps,
.carsusa-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.carsusa-route-steps button {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.carsusa-route-steps button:hover,
.carsusa-route-steps button.is-active {
  border-color: rgba(230, 35, 58, 0.72);
  background: rgba(230, 35, 58, 0.14);
  color: #fff;
}

.carsusa-route-steps button.is-active {
  transform: translateY(-2px);
}

.carsusa-route-steps button span {
  color: var(--red);
}

.carsusa-process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
}

.carsusa-guarantees div {
  display: grid;
  gap: 8px;
}

.carsusa-guarantees strong {
  font-size: 18px;
}

.carsusa-faq-wrap {
  max-width: 920px;
}

.carsusa-faq {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.carsusa-faq details {
  padding: 22px 24px;
}

.carsusa-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.carsusa-faq p {
  margin: 14px 0 0;
}

.carsusa-final {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.72)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.carsusa-final-inner {
  max-width: 860px;
}

.carsusa-final-inner h2 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
}

.carsusa-final-form {
  grid-template-columns: minmax(220px, 360px) auto;
  align-items: center;
  margin-top: 30px;
}

.carsusa-final-form small {
  grid-column: 1 / -1;
}

.reveal-lite {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes carsusaHeroDrift {
  0% {
    transform: scale(1.04) translate3d(-8px, -6px, 0);
  }
  100% {
    transform: scale(1.09) translate3d(10px, 8px, 0);
  }
}

@keyframes directionGridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 160px 80px, 80px 160px;
  }
}

@keyframes directionOrbitDrift {
  from {
    transform: translate3d(calc(var(--direction-x, 0px) * 0.16), calc(var(--direction-y, 0px) * 0.16), 0) rotate(0deg);
  }
  to {
    transform: translate3d(calc(var(--direction-x, 0px) * 0.16), calc(var(--direction-y, 0px) * 0.16), 0) rotate(360deg);
  }
}

@keyframes directionBeamSweep {
  0%, 100% {
    opacity: 0.18;
    clip-path: inset(0 82% 0 0);
  }
  50% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes directionNodeFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes directionTelemetryDrift {
  0%, 100% {
    translate: 0 0;
    border-color: rgba(255, 255, 255, 0.08);
  }
  50% {
    translate: 8px -8px;
    border-color: rgba(230, 35, 58, 0.22);
  }
}

@keyframes directionSignalPulse {
  0% {
    opacity: 0.25;
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28), 0 0 24px rgba(255, 255, 255, 0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
    box-shadow: 0 0 0 22px rgba(255, 255, 255, 0), 0 0 24px rgba(255, 255, 255, 0);
  }
}

@keyframes directionStatusPulse {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes carsusaMarkerPulse {
  0%, 100% {
    box-shadow: 0 0 0 13px rgba(230, 35, 58, 0.16), 0 18px 42px rgba(0, 0, 0, 0.34);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(230, 35, 58, 0.06), 0 18px 42px rgba(0, 0, 0, 0.34);
  }
}

@keyframes carsusaRouteGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.35);
  }
}

@keyframes carsusaSoftPulse {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
  }
  50% {
    border-color: rgba(230, 35, 58, 0.35);
    background: rgba(230, 35, 58, 0.12);
  }
}

@keyframes carschinaGridDrift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    transform: translate3d(0, 0, 0);
  }
  100% {
    background-position: 88px 44px, 44px 88px, 0 0, 0 0, 0 0;
    transform: translate3d(16px, -10px, 0);
  }
}

@keyframes carschinaScanSweep {
  0% {
    background-position: -180px 0, 0 0, 0 0, 0 0;
    filter: brightness(1);
  }
  100% {
    background-position: 180px 0, 0 0, 0 0, 0 0;
    filter: brightness(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .carsusa-hero-media,
  .carsusa-lead-card,
  .carsusa-inspection-visual,
  .carsusa-route-map,
  .carsusa-route-card {
    transform: none !important;
  }

  .carschina-page .carsusa-hero::before,
  .carschina-page .carsusa-hero::after,
  .direction-motion-stage,
  .direction-motion-stage * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .direction-node,
  .direction-telemetry {
    opacity: 0.52;
    transform: scale(0.88);
  }

  .direction-node-origin,
  .direction-telemetry-one {
    display: none;
  }

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

  .carsusa-hero-grid,
  .carsusa-split,
  .carsusa-inspection,
  .carsusa-route-stage,
  .carskorea-cost {
    grid-template-columns: 1fr;
  }

  .carsusa-lead-card {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .direction-motion-stage {
    opacity: 0.36;
  }

  .direction-node,
  .direction-telemetry {
    display: none;
  }

  .direction-orbit-one {
    right: -32%;
    top: 12%;
    width: 340px;
    height: 340px;
  }

  .direction-orbit-two,
  .direction-beam,
  .direction-signal {
    display: none;
  }

  .carsusa-hero {
    min-height: auto;
    padding: 116px 0 54px;
  }

  .carsusa-route {
    display: flex;
    flex-direction: column;
  }

  .carsusa-hero-grid,
  .carsusa-feature-grid,
  .carsusa-guarantees,
  .carsusa-process,
  .carsusa-route-steps,
  .carsusa-stats-grid,
  .carsusa-final-form,
  .carskorea-cost {
    grid-template-columns: 1fr;
  }

  .carskorea-cost {
    gap: 28px;
  }

  .carskorea-cost-table div {
    display: grid;
    padding: 18px 20px;
  }

  .carskorea-cost-table strong {
    text-align: left;
  }

  .carsusa-route-steps {
    order: -1;
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    margin: 0 0 16px;
    scroll-snap-type: x mandatory;
  }

  .carsusa-route-card {
    order: -1;
  }

  .carsusa-lots-grid {
    grid-template-columns: 1fr;
  }

  .carsusa-stats-grid div,
  .carsusa-stats-grid div:last-child {
    border-inline: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .carsusa-route-map {
    min-height: 300px;
  }

  .carsusa-route-card {
    min-height: auto;
  }

  .carsusa-route-marker {
    width: 48px;
    height: 48px;
  }

  .carsusa-route-steps button {
    flex: 0 0 188px;
    justify-content: flex-start;
    scroll-snap-align: start;
  }
}

/* SEO articles */
.article-page {
  background: #08090d;
}

.article-hero {
  min-height: 520px;
  padding: 150px 0 76px;
  display: flex;
  align-items: end;
}

.article-hero-grid,
.article-layout,
.article-related-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.article-hero h1 {
  max-width: 940px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.95;
}

.article-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.article-sidebox,
.article-link-panel,
.article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 24px;
}

.article-sidebox span,
.article-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.article-sidebox strong {
  display: block;
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
}

.article-content {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.75;
}

.article-content h2 {
  margin: 42px 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  color: #fff;
}

.article-content p {
  margin: 0 0 18px;
}

.article-link-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
}

.article-link-panel h3 {
  margin: 0 0 8px;
}

.article-link-panel a,
.article-related-links a,
.article-card a:not(.button) {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 4px;
}

.article-related-band {
  background: rgba(255,255,255,0.025);
}

.article-related-links {
  display: grid;
  gap: 12px;
}

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

.article-card {
  display: grid;
  gap: 12px;
}

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

.article-card p {
  color: var(--muted);
  margin: 0;
}

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

.offer-page {
  background: #08090d;
  overflow-x: hidden;
}

.offer-page .section-pad {
  padding: clamp(84px, 9vw, 120px) 0;
}

.offer-hero {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: center;
  padding: 92px 0 42px;
  isolation: isolate;
}

.offer-hero-media {
  position: absolute;
  inset: 0;
}

.offer-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.03);
}

.offer-hero .hero-shade {
  background:
    radial-gradient(circle at 68% 34%, rgba(215, 25, 52, 0.24), transparent 24%),
    linear-gradient(90deg, rgba(9, 11, 16, 0.98) 0%, rgba(9, 11, 16, 0.84) 34%, rgba(9, 11, 16, 0.52) 58%, rgba(9, 11, 16, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 11, 16, 0.58) 0%, rgba(9, 11, 16, 0.16) 30%, rgba(9, 11, 16, 0.72) 100%);
}

.offer-hero-grid,
.offer-route-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(28px, 4.8vw, 60px);
  align-items: center;
}

.offer-route-grid {
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.offer-copy {
  max-width: 700px;
}

.offer-copy h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(62px, 6.4vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

.offer-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.48;
}

.offer-proof-row,
.offer-contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-proof-row {
  max-width: 600px;
  margin-bottom: 20px;
}

.offer-proof-row span,
.offer-contact-points span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
}

.offer-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(165deg, rgba(20, 24, 31, 0.92), rgba(10, 12, 17, 0.98));
  padding: 30px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  align-self: end;
  margin-bottom: 22px;
}

.offer-panel-list {
  display: grid;
  gap: 16px;
}

.offer-panel-list article {
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.offer-panel-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.offer-panel-list strong {
  font-size: 20px;
  line-height: 1.15;
}

.offer-panel-list span {
  color: var(--muted);
  line-height: 1.55;
}

.offer-value-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  max-width: 700px;
}

.offer-value-row article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 18px 18px 16px;
}

.offer-value-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.1;
}

.offer-value-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.offer-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0c0e13, #08090d);
  padding: 26px 0 24px;
}

.offer-screen {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.offer-screen::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

.offer-screen::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.offer-advantages {
  background:
    radial-gradient(circle at 16% 18%, rgba(230, 35, 58, 0.08), transparent 28%),
    linear-gradient(180deg, #090b10 0%, #0d1016 100%);
}

.offer-screen-advantages::before {
  background-image: url("./uploads/cars/jeep-wrangler/1776796051589-2023-jeep-wrangler100872391.jpg");
  background-position: center right;
  opacity: 0.18;
}

.offer-screen-advantages::after {
  background:
    linear-gradient(90deg, rgba(9, 11, 16, 0.96) 0%, rgba(9, 11, 16, 0.82) 40%, rgba(9, 11, 16, 0.96) 100%),
    radial-gradient(circle at 80% 36%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 96px 96px, 96px 96px;
  opacity: 0.72;
}

.offer-route {
  background:
    radial-gradient(circle at 78% 18%, rgba(92, 225, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #0d1118 0%, #090b10 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-screen-route::before {
  background-image: url("./uploads/cars/chevrolet-tahoe/1776797541986-fc3a0081.jpg");
  background-position: center center;
  opacity: 0.16;
}

.offer-screen-route::after {
  background:
    linear-gradient(90deg, rgba(10, 13, 20, 0.98) 0%, rgba(10, 13, 20, 0.74) 42%, rgba(10, 13, 20, 0.98) 100%),
    radial-gradient(circle at 18% 52%, rgba(230, 35, 58, 0.14), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 100px 100px, 100px 100px;
  opacity: 0.76;
}

#trust.section-pad {
  background:
    radial-gradient(circle at 20% 28%, rgba(230, 35, 58, 0.06), transparent 26%),
    linear-gradient(180deg, #090b10 0%, #0b0e14 100%);
}

.offer-screen-trust::before {
  background-image: url("./uploads/cars/jeep-wrangler/1776795925331-2e730674fec110673ea1878757c84981.jpg");
  background-position: center left;
  opacity: 0.14;
}

.offer-screen-trust::after {
  background:
    linear-gradient(90deg, rgba(9, 11, 16, 0.98) 0%, rgba(9, 11, 16, 0.84) 100%),
    radial-gradient(circle at 78% 24%, rgba(230, 35, 58, 0.12), transparent 18%),
    url("./assets/logo/lion-trans-head-color.png") right 8% bottom 14% / 220px auto no-repeat;
  opacity: 0.56;
}

.offer-strip-grid,
.offer-adv-grid,
.offer-trust-grid {
  display: grid;
  gap: 16px;
}

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

.offer-strip .strip-item {
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
  padding: 20px 22px;
}

.offer-strip .strip-item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.offer-strip .strip-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.05;
}

.offer-strip .strip-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.offer-adv-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.offer-adv-card {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.offer-screen-advantages .section-head {
  max-width: 720px;
}

.offer-adv-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.05;
}

.offer-adv-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.offer-route-stage {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(230, 35, 58, 0.14), transparent 30%),
    radial-gradient(circle at 82% 42%, rgba(92, 225, 255, 0.12), transparent 24%),
    linear-gradient(165deg, rgba(13, 16, 22, 0.96), rgba(8, 10, 14, 0.98));
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  padding: 34px;
  min-width: 0;
}

.offer-route-stage::after {
  position: absolute;
  inset: auto 24px 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
}

.offer-route-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 980px;
}

.offer-route-head span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-route-head strong {
  max-width: 780px;
  font-size: 34px;
  line-height: 0.98;
}

.offer-route-head p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.58;
}

.offer-route-story {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: 34px;
  align-self: start;
  align-items: start;
  min-width: 0;
}

.offer-route-visual {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    url("./uploads/cars/chevrolet-tahoe/1776797541986-fc3a0081.jpg") center center / cover no-repeat;
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.offer-route-visual::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(10, 12, 18, 0.22) 0%, rgba(10, 12, 18, 0.18) 28%, rgba(10, 12, 18, 0.48) 100%),
    linear-gradient(90deg, rgba(10, 12, 18, 0.26) 0%, rgba(10, 12, 18, 0.08) 42%, rgba(10, 12, 18, 0.2) 100%);
  content: "";
}

.offer-route-visual > * {
  position: relative;
  z-index: 1;
}

.offer-route-visual-kicker,
.offer-trust-stage-copy span,
.offer-closing-stage span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-route-track {
  display: grid;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 24px;
}

.offer-route-track span {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.offer-route-track span::before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.offer-route-track span:not(:last-child)::after {
  position: absolute;
  left: 2.5px;
  top: 18px;
  bottom: -12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.offer-route-visual-card {
  max-width: 390px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(9, 12, 18, 0.88);
  padding: 18px 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  justify-self: start;
  align-self: end;
}

.offer-route-visual-card strong,
.offer-trust-stage-copy strong,
.offer-closing-stage strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.04;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
}

.offer-route-visual-card p,
.offer-trust-stage-copy p,
.offer-closing-stage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

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

.offer-route-phase-grid {
  margin-bottom: 18px;
}

.offer-route-phase {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.022));
  padding: 26px 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-height: 100%;
  min-width: 0;
}

.offer-route-phase-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  min-width: 0;
}

.offer-route-phase-top span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 35, 58, 0.32);
  background: rgba(230, 35, 58, 0.14);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 0 0 10px rgba(230, 35, 58, 0.06);
}

.offer-route-phase-top strong {
  font-size: 20px;
  line-height: 1.04;
  min-width: 0;
}

.offer-route-phase > p,
.offer-route-assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.offer-route-bullets {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.offer-route-bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.offer-route-bullets li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.offer-route-phase-accent {
  background:
    radial-gradient(circle at 78% 16%, rgba(230, 35, 58, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.024));
}

.offer-route-assurance article {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.offer-route-assurance span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-route-assurance strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.18;
}

.offer-trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 42px;
}

.offer-trust-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(165deg, rgba(11, 14, 20, 0.84), rgba(11, 14, 20, 0.52));
  padding: 30px;
  backdrop-filter: blur(14px);
  min-width: 0;
}

.offer-trust-stage-copy {
  max-width: 620px;
}

.offer-trust-stage-points {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: stretch;
  align-self: end;
}

.offer-trust-stage-points span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  min-height: 58px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.offer-page #trust .section-head,
.offer-page .offer-advantages .section-head,
.offer-page .offer-route .section-head {
  margin-bottom: 40px;
}

.offer-page .reveal,
.offer-page .reveal.visible {
  opacity: 1;
  filter: none;
  transform: none;
}

.offer-final .final-cta-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.96fr) 440px;
  gap: clamp(28px, 4.5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 14, 0.72);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  min-width: 0;
}

.offer-final .lead-form {
  min-width: 0;
}

.offer-final {
  background:
    radial-gradient(circle at 82% 22%, rgba(230, 35, 58, 0.1), transparent 24%),
    linear-gradient(180deg, #0b0e14 0%, #08090d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-screen-final::before {
  background-image: url("./uploads/cars/chevrolet-tahoe/1776797541986-fc3a0081.jpg");
  background-position: center right;
  opacity: 0.12;
}

.offer-screen-final::after {
  background:
    linear-gradient(90deg, rgba(11, 14, 20, 0.98) 0%, rgba(11, 14, 20, 0.82) 100%),
    radial-gradient(circle at 18% 28%, rgba(230, 35, 58, 0.12), transparent 16%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 88px 88px, 88px 88px;
  opacity: 0.68;
}

@media (min-width: 1025px) {
  .offer-screen::before {
    background-attachment: fixed;
    transform: scale(1.03);
  }

  .offer-route-stage {
    margin-top: 2px;
  }

  .offer-final .lead-form {
    position: sticky;
    top: 108px;
  }
}

.offer-final-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.offer-final-note {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
  padding: 24px 24px 22px;
}

.offer-closing-stage {
  min-height: 260px;
  display: grid;
  align-content: end;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    url("./uploads/cars/jeep-wrangler/1776795925331-2e730674fec110673ea1878757c84981.jpg") center center / cover no-repeat;
  padding: 24px;
}

.offer-closing-stage::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(12, 14, 20, 0.18) 0%, rgba(12, 14, 20, 0.24) 22%, rgba(12, 14, 20, 0.7) 100%),
    linear-gradient(90deg, rgba(12, 14, 20, 0.2) 0%, rgba(12, 14, 20, 0.5) 100%);
  content: "";
}

.offer-closing-stage > * {
  position: relative;
  z-index: 1;
}

.offer-closing-stage strong {
  max-width: 520px;
}

.offer-closing-stage p {
  max-width: 480px;
}

.offer-final-note strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.05;
}

.offer-final-note ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.offer-final-note li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.offer-final-note li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.offer-inline-link {
  display: inline-block;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.offer-intent-chip,
.offer-quick-pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.offer-intent-chip:hover,
.offer-quick-pill:hover {
  border-color: rgba(230, 35, 58, 0.36);
  background: rgba(230, 35, 58, 0.08);
  transform: translateY(-1px);
}

.offer-form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.offer-form-head strong {
  font-size: 24px;
  line-height: 1.04;
}

.offer-form-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.offer-form-quickrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-quick-pill {
  padding-inline: 16px;
}

.offer-form-details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.offer-form-details summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.offer-form-details summary::-webkit-details-marker {
  display: none;
}

.offer-form-details-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.offer-form-trustline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.offer-form-trustline a {
  color: #fff;
  font-weight: 700;
}

.offer-mobile-leadbar {
  display: none;
}

@media (max-width: 980px) {
  .offer-hero-grid,
  .offer-route-grid,
  .offer-strip-grid,
  .offer-adv-grid,
  .offer-trust-grid,
  .offer-final .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .offer-hero {
    min-height: auto;
    padding: 110px 0 52px;
  }

  .offer-value-row {
    grid-template-columns: 1fr;
  }

  .offer-route-stage {
    min-height: auto;
  }

  .offer-route-story,
  .offer-trust-stage {
    grid-template-columns: 1fr;
  }

  .offer-route-phase-grid,
  .offer-route-assurance {
    grid-template-columns: 1fr;
  }

  .offer-intent-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-screen::before {
    opacity: 0.1;
  }
}

@media (max-width: 640px) {
  .offer-page .section-pad {
    padding: 68px 0;
  }

  .offer-hero {
    min-height: auto;
    padding: 102px 0 36px;
  }

  .offer-hero-grid {
    gap: 22px;
  }

  .offer-copy h1 {
    margin-bottom: 18px;
    font-size: 29px;
    line-height: 0.98;
    max-width: 320px;
  }

  .offer-closing-stage strong,
  .offer-closing-stage p,
  .offer-route-head strong,
  .offer-route-head p,
  .offer-trust-stage-copy {
    max-width: none;
  }

  .offer-lead {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.48;
    max-width: 100%;
  }

  .offer-proof-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .offer-proof-row span {
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
  }

  .offer-proof-row span:nth-child(n+3) {
    display: none;
  }

  .offer-copy .hero-actions {
    gap: 10px;
    margin-top: 0;
  }

  .offer-value-row {
    gap: 10px;
    margin-top: 18px;
  }

  .offer-value-row article {
    padding: 14px 16px;
  }

  .offer-value-row strong {
    font-size: 14px;
  }

  .offer-value-row p {
    font-size: 12px;
    line-height: 1.45;
  }

  .offer-panel {
    display: none;
  }

  .offer-strip {
    padding: 14px 0;
  }

  .offer-intent-grid {
    grid-template-columns: 1fr;
  }

  .offer-form-head strong {
    font-size: 20px;
  }

  .offer-form-head p {
    font-size: 14px;
    line-height: 1.45;
  }

  .offer-form-quickrow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .offer-form-details {
    padding-top: 14px;
  }

  .offer-form-details summary {
    font-size: 13px;
  }

  .offer-form-trustline {
    display: grid;
    gap: 8px;
    font-size: 12px;
  }

  .offer-strip-grid,
  .offer-adv-grid,
  .offer-trust-grid {
    gap: 12px;
  }

  .offer-strip .strip-item,
  .offer-adv-card,
  .offer-trust-grid .trust-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .offer-strip .strip-item strong,
  .offer-adv-card h3,
  .offer-route-list strong,
  .offer-trust-grid .trust-card h3 {
    font-size: 18px;
    line-height: 1.12;
  }

  .offer-strip .strip-item p,
  .offer-adv-card p,
  .offer-route-list p,
  .offer-trust-grid .trust-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .offer-final-note {
    padding: 18px 16px;
  }

  .offer-final-note strong {
    font-size: 18px;
  }

  .offer-final-note li {
    font-size: 14px;
    line-height: 1.45;
  }

  .offer-mobile-leadbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 9, 13, 0.94);
    backdrop-filter: blur(20px);
  }

  .offer-mobile-leadbar .button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .floating-whatsapp {
    bottom: 86px;
  }

  .offer-final {
    padding-bottom: 120px;
  }

  .offer-advantages .section-head,
  .offer-route .section-head,
  #trust .section-head,
  .offer-final .final-cta-grid > div {
    margin-bottom: 28px;
  }

  .offer-advantages .section-head h2,
  .offer-route .section-head h2,
  #trust .section-head h2,
  .offer-final h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .offer-advantages .section-head p,
  .offer-route .section-head p,
  #trust .section-head p,
  .offer-final p {
    font-size: 16px;
    line-height: 1.55;
  }

  .offer-route-stage {
    padding: 22px 16px;
  }

  .offer-route-head strong {
    font-size: 22px;
  }

  .offer-route-visual,
  .offer-trust-stage,
  .offer-closing-stage {
    padding: 18px 16px;
  }

  .offer-route-visual-card {
    max-width: none;
    padding: 14px 16px;
  }

  .offer-route-visual {
    min-height: 300px;
  }

  .offer-route-visual-card strong,
  .offer-trust-stage-copy strong,
  .offer-closing-stage strong {
    font-size: 20px;
  }

  .offer-route-head p {
    font-size: 14px;
    line-height: 1.5;
  }

  .offer-route-phase,
  .offer-route-assurance article {
    padding: 18px 16px;
  }

  .offer-route-phase-top {
    margin-bottom: 14px;
  }

  .offer-route-phase-top strong {
    font-size: 20px;
  }

  .offer-route-phase > p,
  .offer-route-assurance p {
    font-size: 14px;
    line-height: 1.5;
  }

  .offer-route-bullets {
    gap: 8px;
    margin-top: 14px;
  }

  .offer-route-bullets li {
    font-size: 14px;
    line-height: 1.45;
  }

  .offer-route-assurance strong {
    font-size: 16px;
    line-height: 1.2;
  }

  .offer-trust-stage-points {
    grid-template-columns: 1fr;
  }

  .contract-banner {
    margin-top: 28px;
    padding: 24px 18px;
  }

  .offer-contact-points {
    display: grid;
    gap: 10px;
  }

  .offer-contact-points span {
    justify-content: center;
    text-align: center;
    min-height: 46px;
  }

  .offer-final .lead-form {
    margin-top: 6px;
  }

  .offer-screen::before {
    background-attachment: scroll;
    background-position: center center;
    opacity: 0.08;
    transform: none;
  }

  .offer-screen::after {
    opacity: 0.34;
    background-size: auto, auto, 72px 72px, 72px 72px;
  }
}

.campaign-hero .article-sidebox {
  min-height: 100%;
}

.campaign-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.campaign-proof span,
.utm-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.74);
  padding: 10px 14px;
  font-size: 13px;
}

.utm-panel {
  gap: 16px;
}

.utm-chip-grid,
.campaign-benefits {
  display: grid;
  gap: 12px;
}

.utm-chip {
  justify-content: space-between;
  border-radius: 14px;
}

.utm-chip strong {
  color: #fff;
  font-size: 12px;
}

.campaign-note {
  margin-top: 20px;
  border: 1px solid rgba(230, 35, 58, 0.18);
  border-radius: 8px;
  background: rgba(230, 35, 58, 0.08);
  color: rgba(255, 255, 255, 0.78);
  padding: 16px 18px;
}

@media (max-width: 980px) {
  .article-hero-grid,
  .article-layout,
  .article-related-grid,
  .final-cta-grid,
  .article-list-grid,
  .article-faq .faq-grid {
    grid-template-columns: 1fr;
  }

  .article-link-panel {
    position: static;
  }

  .article-hero {
    min-height: auto;
    padding: 126px 0 54px;
  }
}

