:root {
  --ink: #eef5f8;
  --muted: rgba(235, 244, 248, 0.68);
  --line: rgba(255, 255, 255, 0.14);
  --soft: #0b1724;
  --blue: #2f75b5;
  --teal: #35a7a4;
  --gold: #c79635;
  --white: #ffffff;
  --dark: #071019;
  --panel: rgba(12, 25, 38, 0.72);
  --panel-strong: rgba(13, 31, 48, 0.92);
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #050a0f 0%, #08131d 36%, #0b1724 100%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 32px;
  background: rgba(7, 11, 16, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, #14324d, var(--gold));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #fff;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

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

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

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.language-switch button {
  min-height: 34px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.language-switch button.active {
  color: #071019;
  background: linear-gradient(135deg, #b8872c, #f2d68b);
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.primary-btn {
  background: linear-gradient(135deg, #b8872c, #f2d68b);
  color: #071019;
  box-shadow: 0 12px 30px rgba(199, 150, 53, 0.22);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(199, 150, 53, 0.5);
  backdrop-filter: blur(12px);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
}

main {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 150, 53, 0.05), transparent 18%, rgba(47, 117, 181, 0.08) 58%, transparent 100%),
    #071019;
  background-size: 110px 110px, 100% 100%, 100% 100%;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 128px);
  height: min(820px, calc(100vh - 72px));
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #050a0f;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1200ms ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide.active .hero-img {
  animation: heroKenBurns 8500ms ease forwards;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mobile-frame {
  display: none;
}

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

.hero-motion::before,
.hero-motion::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-motion::before {
  top: 0;
  bottom: 0;
  width: 34%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.18) 44%, transparent 70%);
  transform: translateX(-120%) skewX(-12deg);
  animation: lightSweep 5200ms ease-in-out infinite;
}

.hero-motion::after {
  right: 6%;
  top: 16%;
  width: 34%;
  height: 64%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left-color: rgba(199, 150, 53, 0.55);
  transform: perspective(700px) rotateY(-18deg);
  animation: specFloat 5200ms ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 15, 0.88) 0%, rgba(8, 18, 29, 0.68) 46%, rgba(8, 18, 29, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 10, 15, 0.52) 0%, rgba(5, 10, 15, 0.04) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 120px);
  padding: 56px 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.hero-offer {
  display: none;
}

.hero-spec {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 7vw, 110px);
  top: 50%;
  width: min(320px, 28vw);
  padding: 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 17, 24, 0.76), rgba(10, 17, 24, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateY(-48%);
  backdrop-filter: blur(14px);
}

.hero-spec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.spec-kicker,
.hero-spec small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.hero-spec strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 30px;
  letter-spacing: 0;
}

.hero-spec ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.motion-ticker {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  height: 46px;
  white-space: nowrap;
  animation: tickerMove 24s linear infinite;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  background: var(--gold);
  vertical-align: middle;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 4vw, 64px);
  bottom: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.film-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding: clamp(64px, 8vw, 108px) clamp(20px, 7vw, 104px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 18, 26, 0.96), rgba(8, 13, 18, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 120px);
}

.film-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

.film-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.film-points span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(199, 150, 53, 0.28);
}

.film-stage {
  position: relative;
  height: min(520px, 56vw);
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050a0f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.dealer-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 22%, transparent 72%, rgba(0, 0, 0, 0.4)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 42%, rgba(0, 0, 0, 0.42));
}

.film-frame {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: filmFrames 15s infinite;
}

.film-dynamic:nth-child(1) {
  opacity: 1;
}

.film-a {
  background-image: url("./assets/hero-li-l9.png");
}

.film-b {
  background-image: url("./assets/hero-xiaomi.png");
  animation-delay: 5s;
}

.film-c {
  background-image: url("./assets/hero-byd.png");
  animation-delay: 10s;
}

.play-badge {
  position: absolute;
  z-index: 5;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.play-badge span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--gold);
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, 0, 0);
  }
}

@keyframes lightSweep {
  0%, 24% {
    transform: translateX(-120%) skewX(-12deg);
  }
  62%, 100% {
    transform: translateX(360%) skewX(-12deg);
  }
}

@keyframes specFloat {
  0%, 100% {
    transform: perspective(700px) rotateY(-18deg) translateY(0);
  }
  50% {
    transform: perspective(700px) rotateY(-18deg) translateY(-12px);
  }
}

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

@keyframes filmFrames {
  0%, 28% {
    opacity: 1;
    transform: scale(1.05);
  }
  34%, 100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

.hero-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 30px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--gold);
}

.qualification-strip {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  background:
    linear-gradient(90deg, rgba(199, 150, 53, 0.22), rgba(12, 27, 42, 0.96) 44%, rgba(7, 16, 25, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 96px);
  border-top: 1px solid rgba(199, 150, 53, 0.3);
  border-bottom: 1px solid rgba(199, 150, 53, 0.26);
  color: #f5dfad;
}

.section {
  padding: clamp(60px, 8vw, 104px) clamp(20px, 7vw, 104px);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(8, 20, 31, 0.94), rgba(5, 10, 15, 0.98)),
    linear-gradient(90deg, rgba(199, 150, 53, 0.06), transparent 34%, rgba(47, 117, 181, 0.08));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.copy-block {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(6, 14, 21, 0.98), rgba(10, 23, 35, 0.96));
}

.metric-panel {
  min-height: 150px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.metric-num {
  display: block;
  margin-bottom: 12px;
  color: #f0d083;
  font-size: 36px;
  font-weight: 800;
}

.metric-label {
  color: var(--muted);
  line-height: 1.45;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.command-room {
  background:
    linear-gradient(135deg, rgba(5, 12, 19, 0.98), rgba(11, 31, 47, 0.95)),
    linear-gradient(90deg, rgba(199, 150, 53, 0.08), transparent 36%, rgba(53, 167, 164, 0.06));
}

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

.command-grid article {
  min-height: 230px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(7, 16, 25, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.command-grid article span {
  display: block;
  margin-bottom: 34px;
  color: rgba(240, 208, 131, 0.86);
  font-weight: 800;
}

.command-grid article p,
.process-rail article p,
.stock-stories p {
  color: var(--muted);
  line-height: 1.55;
}

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

.feature-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.feature-grid h3 {
  color: #fff;
}

.feature-grid p,
.benefit-list span,
.apply-copy p,
.check-list,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 18, 27, 0.98), rgba(8, 31, 48, 0.94)),
    repeating-linear-gradient(90deg, rgba(199, 150, 53, 0.08) 0 1px, transparent 1px 140px);
  color: #fff;
}

.dark-band p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.process-section {
  background:
    linear-gradient(135deg, rgba(6, 15, 23, 0.98), rgba(8, 24, 37, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(199, 150, 53, 0.24);
  background: rgba(255, 255, 255, 0.045);
}

.process-rail article {
  position: relative;
  min-height: 240px;
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.process-rail article:last-child {
  border-right: 0;
}

.process-rail article span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 38px;
  color: #071019;
  background: linear-gradient(135deg, #b8872c, #f2d68b);
  font-weight: 800;
}

.route-list {
  display: grid;
  gap: 10px;
}

.route-list span {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.075);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--gold);
}

.stock-section {
  background:
    linear-gradient(135deg, rgba(6, 15, 23, 0.98), rgba(12, 27, 42, 0.96)),
    linear-gradient(90deg, transparent, rgba(199, 150, 53, 0.05) 48%, transparent);
}

.stock-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.stock-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.35);
}

.benefit-list {
  display: grid;
  gap: 12px;
  background: transparent;
}

.benefit-list div {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  margin-bottom: 8px;
  color: #f0d083;
}

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

.story-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 15, 0.05), rgba(5, 10, 15, 0.88)),
    linear-gradient(90deg, rgba(5, 10, 15, 0.7), transparent);
}

.story-card h3,
.story-card p {
  position: relative;
  z-index: 1;
}

.story-l9 {
  background-image: url("./assets/hero-li-l9.png");
}

.story-xiaomi {
  background-image: url("./assets/hero-xiaomi.png");
}

.story-byd,
.story-aito {
  background-image: url("./assets/hero-byd.png");
}

.markets {
  background:
    linear-gradient(135deg, rgba(6, 13, 20, 0.98), rgba(9, 28, 42, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-list span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(199, 150, 53, 0.26);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(7, 16, 25, 0.98), rgba(10, 30, 45, 0.96)),
    linear-gradient(90deg, rgba(199, 150, 53, 0.07), transparent 34%, rgba(53, 167, 164, 0.06));
}

.check-list {
  padding-left: 18px;
}

.check-list li {
  margin: 10px 0;
}

.lead-form {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(7, 16, 25, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

label {
  display: block;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(2, 8, 13, 0.58);
  color: #fff;
  font: inherit;
}

select option {
  color: #17212b;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(199, 150, 53, 0.22);
  border-color: rgba(240, 208, 131, 0.72);
}

.form-warning {
  padding: 12px;
  color: #ffb5aa;
  background: rgba(180, 35, 24, 0.14);
  border: 1px solid rgba(255, 181, 170, 0.28);
}

.form-note {
  padding: 12px;
  background: rgba(47, 117, 181, 0.14);
  border: 1px solid rgba(111, 174, 225, 0.28);
  font-size: 13px;
}

.button-row {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.policy-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
}

.policy-row input {
  width: auto;
  margin-top: 2px;
}

.policy-row a {
  color: #f0d083;
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 24px 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 26px 20px;
  color: var(--muted);
  background: #050a0f;
  border-top: 1px solid rgba(199, 150, 53, 0.2);
}

.footer a {
  color: #f0d083;
}

.social-dock {
  position: fixed;
  right: 12px;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
  animation: socialFloat 5.5s ease-in-out infinite;
  width: max-content;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.social-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  color: #fff;
  background: rgba(12, 22, 31, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  transform: translateZ(0) scale(1);
  animation: socialButtonLift 3.6s ease-in-out infinite;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.social-pill:nth-child(2) {
  animation-delay: 0.45s;
}

.social-pill:nth-child(3) {
  animation-delay: 0.9s;
}

.social-pill:hover {
  transform: translateZ(0) scale(1.06);
  animation-play-state: paused;
  justify-content: flex-start;
  gap: 10px;
  width: auto;
  min-width: 160px;
  padding: 10px 14px;
  border-color: rgba(240, 208, 131, 0.55);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
  background: rgba(16, 28, 39, 0.98);
}

.social-whatsapp {
  width: 58px;
  min-width: 58px;
  height: 58px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #073824, #128c5a);
  border-color: rgba(240, 208, 131, 0.78);
  box-shadow:
    0 0 0 1px rgba(240, 208, 131, 0.18),
    0 0 24px rgba(18, 140, 90, 0.48),
    0 18px 38px rgba(0, 0, 0, 0.44);
  animation: whatsappBreathe 1.8s ease-in-out infinite;
}

.social-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(240, 208, 131, 0.58);
  opacity: 0;
  transform: scale(0.82);
  animation: whatsappRing 1.8s ease-out infinite;
  pointer-events: none;
}

.social-whatsapp::after {
  content: "Chat";
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  padding: 6px 9px;
  color: #071019;
  background: linear-gradient(135deg, #b8872c, #f2d68b);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.96;
  transform: translateY(-50%);
  pointer-events: none;
}

.social-whatsapp .social-icon {
  color: #fff;
}

@keyframes socialFloat {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(4px);
  }
}

@keyframes socialButtonLift {
  0%, 100% {
    transform: translateZ(0) scale(1);
  }
  50% {
    transform: translateZ(0) scale(1.04);
  }
}

@keyframes whatsappBreathe {
  0%, 100% {
    transform: translateZ(0) scale(1);
    box-shadow:
      0 0 0 1px rgba(240, 208, 131, 0.18),
      0 0 22px rgba(18, 140, 90, 0.45),
      0 18px 38px rgba(0, 0, 0, 0.44);
  }
  50% {
    transform: translateZ(0) scale(1.08);
    box-shadow:
      0 0 0 1px rgba(240, 208, 131, 0.38),
      0 0 34px rgba(18, 140, 90, 0.72),
      0 22px 44px rgba(0, 0, 0, 0.5);
  }
}

@keyframes whatsappRing {
  0% {
    opacity: 0.72;
    transform: scale(0.82);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #f0d083;
}

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

.social-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.24s ease, opacity 0.18s ease;
}

.social-pill:hover .social-label {
  max-width: 110px;
  opacity: 1;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .brand,
[dir="rtl"] .topbar,
[dir="rtl"] .nav,
[dir="rtl"] .header-tools,
[dir="rtl"] .hero-actions,
[dir="rtl"] .hero-proof,
[dir="rtl"] .qualification-strip,
[dir="rtl"] .footer,
[dir="rtl"] .social-dock,
[dir="rtl"] .film-points {
  flex-direction: row-reverse;
}

[dir="rtl"] .social-dock {
  left: 18px;
  right: auto;
  top: 50%;
  bottom: auto;
}

[dir="rtl"] .hero-content {
  margin-right: clamp(20px, 8vw, 120px);
  margin-left: 0;
}

[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(5, 10, 15, 0.88) 0%, rgba(8, 18, 29, 0.68) 46%, rgba(8, 18, 29, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 10, 15, 0.52) 0%, rgba(5, 10, 15, 0.04) 46%);
}

[dir="rtl"] .hero-spec {
  left: clamp(24px, 7vw, 110px);
  right: auto;
}

[dir="rtl"] .hero-spec::before {
  right: 0;
  left: auto;
}

[dir="rtl"] .route-list span {
  border-right: 3px solid var(--gold);
  border-left: 0;
}

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

  .split,
  .dark-band,
  .stock-layout,
  .apply-section,
  .film-section {
    grid-template-columns: 1fr;
  }

  .hero-spec {
    display: none;
  }

  .metrics,
  .feature-grid,
  .command-grid,
  .stock-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .process-rail article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-rail article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .topbar {
    width: 100%;
    max-width: 100vw;
    height: 60px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 0 10px;
    overflow: hidden;
  }

  .topbar > * {
    min-width: 0;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    font-size: 15px;
  }

  .brand strong {
    max-width: 108px;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-tools {
    justify-self: end;
    gap: 6px;
    min-width: 0;
  }

  .language-switch {
    gap: 2px;
    padding: 2px;
    width: max-content;
  }

  .language-switch button {
    min-width: 28px;
    min-height: 32px;
    padding: 0 4px;
    font-size: 12px;
  }

  .hero {
    align-items: stretch;
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: 0;
    max-height: none;
    background:
      radial-gradient(circle at 80% 26%, rgba(47, 117, 181, 0.18), transparent 42%),
      linear-gradient(180deg, #071019 0%, #050a0f 100%);
  }

  .hero-slider,
  .hero-slide {
    position: relative;
    inset: auto;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-slide {
    display: none;
    opacity: 1;
    transform: none;
    transition: none;
    padding-bottom: 18px;
    pointer-events: none;
  }

  .hero-slide.active {
    display: block;
    transform: none;
    pointer-events: auto;
  }

  .hero-slide.active .hero-img {
    animation: none;
  }

  .hero-motion::before,
  .hero-motion::after {
    animation: none;
  }

  .hero-img {
    z-index: 0;
    opacity: 0.2;
    object-position: center top;
    transform: none;
    filter: blur(1px);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 10, 15, 0.78) 0%, rgba(5, 10, 15, 0.34) 58%, rgba(5, 10, 15, 0.8) 100%),
      linear-gradient(90deg, rgba(5, 10, 15, 0.78) 0%, rgba(8, 18, 29, 0.32) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 3;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-width: 0;
    margin-left: 0;
    padding: 34px 18px 14px;
  }

  [dir="rtl"] .hero-content {
    margin-right: 0;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  h1 {
    margin-bottom: 14px;
    width: 100%;
    max-width: calc(100vw - 36px);
    font-size: clamp(24px, 7.2vw, 28px);
    line-height: 1.1;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: balance;
    hyphens: none;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
    min-width: 0;
    font-size: 14px;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .qualification-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-controls {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    justify-content: center;
    display: flex;
    margin: 8px 0 12px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    gap: 8px;
  }

  .hero-dots button {
    width: 24px;
    height: 4px;
    background: rgba(255, 255, 255, 0.42);
    border-radius: 999px;
  }

  .hero-actions .secondary-btn {
    display: none;
  }

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

  .hero-proof {
    display: none;
  }

  .hero-mobile-frame {
    position: relative;
    z-index: 4;
    display: block;
    width: calc(100vw - 36px);
    aspect-ratio: 16 / 9;
    margin: 6px 18px 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 78%, rgba(199, 150, 53, 0.16), transparent 42%),
      rgba(5, 10, 15, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  }

  .hero-mobile-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-offer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 5;
    display: grid;
    gap: 4px;
    margin: 0 18px;
    padding: 12px 14px;
    color: #071019;
    background: linear-gradient(135deg, #b8872c, #f2d68b);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
  }

  .hero-offer strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-offer span {
    font-size: 12px;
    line-height: 1.35;
  }

  .social-dock {
    left: auto;
    right: 8px;
    top: 56%;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    transform: translateY(-50%);
    animation: none;
  }

  [dir="rtl"] .social-dock {
    left: 10px;
    right: auto;
  }

  .social-pill {
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    background: rgba(6, 15, 24, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  }

  .social-whatsapp {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .social-whatsapp::before {
    inset: -7px;
  }

  .social-whatsapp::after {
    content: "WhatsApp";
    right: calc(100% + 7px);
    padding: 5px 7px;
    font-size: 11px;
  }

  .social-label {
    display: none;
  }

  .social-icon {
    width: 18px;
    height: 18px;
  }

  .social-whatsapp .social-icon,
  .social-whatsapp .social-icon svg {
    width: 22px;
    height: 22px;
  }

  .motion-ticker {
    display: none;
  }

  .film-stage {
    min-height: 300px;
    height: 72vw;
  }

  .primary-btn,
  .secondary-btn,
  .ghost-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    white-space: normal;
  }

  .metrics,
  .feature-grid,
  .command-grid,
  .stock-stories {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 18px;
  }

  .lead-form {
    padding: 18px;
  }

  .button-row {
    grid-template-columns: 1fr;
  }
}
