:root {
  --bg: #050507;
  --panel: rgba(16, 17, 22, 0.82);
  --panel-strong: rgba(24, 25, 31, 0.96);
  --text: #f5f3ef;
  --muted: #a9a5a0;
  --line: rgba(255, 255, 255, 0.13);
  --red: #ff2626;
  --red-dark: #8f0505;
  --red-soft: rgba(255, 38, 38, 0.18);
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 38, 38, 0.22), transparent 28rem),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 20rem),
    linear-gradient(135deg, #050507 0%, #101015 46%, #060608 100%);
  font-family: "Bahnschrift", "Segoe UI Condensed", "Arial Narrow", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    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: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

#speed-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 22px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(5, 5, 7, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 38, 38, 0.7);
  border-radius: 14px;
  overflow: hidden;
  background: #08080a;
  box-shadow: 0 0 32px rgba(255, 38, 38, 0.42);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong {
  display: block;
  letter-spacing: 0.08em;
}

.brand strong span {
  color: var(--red);
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a,
.phone-link {
  color: var(--text);
  text-decoration: none;
}

.nav a {
  color: var(--muted);
}

.phone-link {
  padding: 12px 16px;
  border: 1px solid rgba(255, 38, 38, 0.48);
  border-radius: 999px;
  background: var(--red-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 116px);
  padding: 70px 0 32px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 46px;
  height: 2px;
  content: "";
  background: var(--red);
  box-shadow: 0 0 24px var(--red);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6.4vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.lead {
  max-width: 650px;
  color: #d2cec8;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: var(--text);
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 44px rgba(255, 38, 38, 0.34);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.stats div {
  min-width: 130px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1;
}

.stats span {
  margin-top: 6px;
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  perspective: 1000px;
}

.photo-card {
  position: relative;
  min-height: 580px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 38, 38, 0.28), transparent 18rem),
    linear-gradient(145deg, rgba(24, 24, 29, 0.92), rgba(6, 6, 8, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 34px 120px rgba(0, 0, 0, 0.62),
    0 0 80px rgba(255, 38, 38, 0.14);
}

.photo-card::before {
  position: absolute;
  left: -20%;
  top: 18%;
  width: 140%;
  height: 120px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 38, 38, 0.22), transparent);
  transform: rotate(-18deg);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.62));
}

.photo-card img {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 1;
  width: min(105%, 760px);
  max-width: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 32px 52px rgba(0, 0, 0, 0.58));
}

.photo-card-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(5, 5, 7, 0.62);
  backdrop-filter: blur(12px);
}

.photo-card-head span {
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.88rem;
}

.photo-card-head strong {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.performance-card {
  position: relative;
  height: 580px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 22%),
    radial-gradient(circle at 72% 36%, rgba(255, 38, 38, 0.34), transparent 18rem),
    linear-gradient(145deg, rgba(24, 24, 29, 0.95), rgba(6, 6, 8, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 34px 120px rgba(0, 0, 0, 0.62),
    0 0 80px rgba(255, 38, 38, 0.14);
  transform: rotateY(-10deg) rotateX(4deg);
  transform-style: preserve-3d;
}

.performance-card::before,
.performance-card::after {
  position: absolute;
  inset: auto;
  content: "";
  pointer-events: none;
}

.performance-card::before {
  left: -18%;
  top: 18%;
  width: 130%;
  height: 110px;
  background: linear-gradient(90deg, transparent, rgba(255, 38, 38, 0.24), transparent);
  transform: rotate(-19deg);
}

.performance-card::after {
  right: -30%;
  bottom: -26%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 18deg,
    rgba(255, 255, 255, 0.09) 0deg 8deg,
    transparent 8deg 16deg
  );
  opacity: 0.52;
}

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.card-topline strong {
  color: var(--red);
  font-size: 1.4rem;
}

.metal-unit {
  position: absolute;
  left: 50%;
  top: 43%;
  width: min(430px, 82%);
  height: 300px;
  transform: translate(-50%, -50%) rotate(-9deg);
  transform-style: preserve-3d;
}

.unit-body {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 36px 54px 42px 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.035)),
    linear-gradient(160deg, #555a60, #17191d 48%, #08090b);
  box-shadow:
    inset 0 16px 30px rgba(255, 255, 255, 0.08),
    inset 0 -24px 42px rgba(0, 0, 0, 0.5),
    0 30px 80px rgba(0, 0, 0, 0.58);
  transform: translate(-50%, -50%);
}

.unit-body::before {
  position: absolute;
  left: 44px;
  top: 38px;
  width: 86px;
  height: 86px;
  border: 14px solid rgba(8, 9, 11, 0.86);
  border-radius: 50%;
  content: "";
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.18),
    0 0 30px rgba(255, 38, 38, 0.18);
}

.unit-body::after {
  position: absolute;
  right: 32px;
  bottom: 34px;
  width: 118px;
  height: 44px;
  border-radius: 18px;
  content: "";
  background: linear-gradient(90deg, #15171a, #5f666d, #17191d);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.5);
}

.bolt {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #b9bdc2;
  box-shadow: inset 0 -3px 4px rgba(0, 0, 0, 0.48);
}

.bolt-a {
  left: 22px;
  top: 24px;
}

.bolt-b {
  right: 28px;
  top: 22px;
}

.bolt-c {
  left: 28px;
  bottom: 26px;
}

.bolt-d {
  right: 34px;
  bottom: 26px;
}

.unit-label {
  position: absolute;
  right: 28px;
  top: 34px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.unit-shaft {
  position: absolute;
  top: 50%;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(180deg, #9ca2a7, #2a2d31 58%, #07080a);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.46);
}

.shaft-left {
  left: 0;
  width: 170px;
  transform: translateY(-50%);
}

.shaft-right {
  right: 0;
  width: 160px;
  transform: translateY(-50%);
}

.unit-gear {
  position: absolute;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    #b9bec3 0deg 9deg,
    #25282c 9deg 18deg
  );
  box-shadow:
    inset 0 0 0 16px #111317,
    inset 0 0 0 25px rgba(255, 255, 255, 0.12),
    0 18px 46px rgba(0, 0, 0, 0.45);
}

.gear-main {
  right: 26px;
  top: 42px;
  width: 98px;
  height: 98px;
  animation: spin 8s linear infinite;
}

.gear-small {
  left: 78px;
  bottom: 34px;
  width: 68px;
  height: 68px;
  animation: spin 5s linear reverse infinite;
}

.vin-plate {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 150px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 38, 38, 0.42);
  border-radius: 18px;
  background: rgba(5, 5, 7, 0.74);
  box-shadow: 0 18px 60px rgba(255, 38, 38, 0.16);
  backdrop-filter: blur(12px);
}

.vin-plate span {
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
}

.vin-plate strong {
  color: var(--text);
  letter-spacing: 0.08em;
}

.flag-grid {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flag-card {
  display: grid;
  gap: 8px;
  min-height: 94px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.flag-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
}

.flag-europe {
  background:
    radial-gradient(circle at 50% 18%, #ffd93b 0 1.5px, transparent 2px),
    radial-gradient(circle at 64% 26%, #ffd93b 0 1.5px, transparent 2px),
    radial-gradient(circle at 72% 50%, #ffd93b 0 1.5px, transparent 2px),
    radial-gradient(circle at 64% 74%, #ffd93b 0 1.5px, transparent 2px),
    radial-gradient(circle at 50% 82%, #ffd93b 0 1.5px, transparent 2px),
    radial-gradient(circle at 36% 74%, #ffd93b 0 1.5px, transparent 2px),
    radial-gradient(circle at 28% 50%, #ffd93b 0 1.5px, transparent 2px),
    radial-gradient(circle at 36% 26%, #ffd93b 0 1.5px, transparent 2px),
    #173c96;
}

.flag-japan {
  background: radial-gradient(circle at center, #bc002d 0 8px, transparent 8.5px), #f7f7f7;
}

.flag-china {
  background:
    radial-gradient(circle at 28% 32%, #ffde45 0 4px, transparent 4.5px),
    radial-gradient(circle at 48% 22%, #ffde45 0 1.8px, transparent 2.2px),
    radial-gradient(circle at 56% 36%, #ffde45 0 1.8px, transparent 2.2px),
    radial-gradient(circle at 56% 54%, #ffde45 0 1.8px, transparent 2.2px),
    radial-gradient(circle at 48% 68%, #ffde45 0 1.8px, transparent 2.2px),
    #de2910;
}

.flag-korea {
  background: #f7f7f7;
}

.flag-korea::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(#cd2e3a 0 50%, #0047a0 50% 100%);
  transform: translate(-50%, -50%) rotate(28deg);
}

.flag-korea::after {
  position: absolute;
  inset: 6px;
  content: "";
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
  opacity: 0.75;
}

.flag-card strong {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 38, 38, 0.34);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(20, 20, 26, 0.94), rgba(8, 8, 10, 0.92));
  box-shadow: var(--shadow);
}

.form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.form-head p {
  margin: 0;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
}

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

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

label span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label span em {
  color: rgba(169, 165, 160, 0.72);
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
}

.full {
  grid-column: span 2;
}

input,
select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: 600 1rem "Segoe UI", system-ui, sans-serif;
  padding: 0 14px;
}

select option {
  color: #111;
}

input:focus,
select:focus {
  border-color: rgba(255, 38, 38, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 38, 38, 0.12);
}

.is-invalid {
  border-color: #ff7070;
}

.submit-button {
  width: min(360px, 100%);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.form-status[data-state="success"] {
  color: #8dffb1;
}

.form-status[data-state="error"] {
  color: #ff8d8d;
}

.form-status[data-state="pending"] {
  color: #ffd28d;
}

.trust-strip,
.process,
.final-cta {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

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

.trust-strip article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip span {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.trust-strip h3 {
  margin: 22px 0 12px;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip p,
.process li span,
.final-cta p {
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  padding: 34px;
}

.process ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 18px 18px 76px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  counter-increment: step;
}

.process li::before {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  content: counter(step);
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.process li strong {
  font-size: 1.08rem;
  text-transform: uppercase;
}

.final-cta {
  margin-bottom: 50px;
  padding: 46px;
  text-align: center;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

.legal-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 18px;
  padding: 18px 4px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
}

.legal-info strong {
  color: var(--text);
}

@keyframes machineFloat {
  0%,
  100% {
    transform: rotateX(58deg) rotateZ(-32deg) translateY(0);
  }
  50% {
    transform: rotateX(60deg) rotateZ(-28deg) translateY(-18px);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) translateZ(-20px) rotateZ(360deg);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 380px;
    order: -1;
  }

  .photo-card {
    height: 440px;
    min-height: 440px;
    transform: none;
  }

  .photo-card img {
    top: 45%;
    width: min(118%, 680px);
  }

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

  .flag-card {
    min-height: 68px;
    grid-template-columns: auto 1fr;
    justify-content: start;
    padding: 10px 14px;
    background: linear-gradient(180deg, rgba(18, 18, 22, 0.94), rgba(8, 8, 10, 0.9));
  }

  .form-grid,
  .trust-strip,
  .process {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 12px;
  }

  .topbar {
    position: relative;
    top: 0;
  }

  .phone-link {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .hero-visual {
    min-height: 530px;
  }

  .photo-card {
    height: 530px;
    min-height: 530px;
    padding: 18px;
  }

  .photo-card-head {
    align-items: start;
    flex-direction: column;
  }

  .photo-card img {
    top: 39%;
    width: 116%;
    opacity: 0.92;
  }

  .flag-grid {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .flag-icon {
    width: 40px;
    height: 26px;
  }

  .lead-form,
  .process,
  .final-cta {
    padding: 20px;
  }

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