:root {
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-800: #0b1726;
  --navy-700: #0e1d30;
  --blue-600: #4986ff;
  --cyan-500: #29d9ff;
  --cyan-300: #8ee9ff;
  --gold-400: #ffcd70;
  --ink: #f7fbff;
  --pa-muted: #9fb0c5;
  --pa-line: rgba(255, 255, 255, .10);
  --surface: #050b14;
  --surface-soft: #07111f;
  --success: #47e0a1;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.40);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1240px;
}

body {
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
  border-radius: 999px;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 48px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #fff;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.35;
  color: var(--ink);
}

.lead {
  color: #c9d9e8;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  max-width: 650px;
}

.section-copy {
  color: var(--pa-muted);
  font-size: 1.05rem;
}

.hero-shell {
  position: relative;
}

.hero {
  position: relative;
  min-height: 920px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(41, 217, 255, 0.22), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(73, 134, 255, 0.28), transparent 36%),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 52%, #0c3556 100%);
  overflow: hidden;
  padding: 150px 0 105px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 92%);
}

.hero-orb {
  position: absolute;
  width: 520px;
  aspect-ratio: 1;
  right: -170px;
  bottom: -210px;
  border: 1px solid rgba(142, 233, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(41, 217, 255, 0.025),
    0 0 0 150px rgba(41, 217, 255, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 68px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(142, 233, 255, 0.25);
  border-radius: 999px;
  background: rgba(41, 217, 255, 0.08);
  color: #c6f5fb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-300);
  box-shadow: 0 0 0 5px rgba(142, 233, 255, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #041421;
  background: linear-gradient(135deg, #b9f3f7, var(--cyan-500));
  box-shadow: 0 14px 34px rgba(41, 217, 255, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b9f3f7, var(--cyan-500));
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(41, 217, 255, 0.34);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero-note {
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 620px;
  color: #9fb4c7;
  font-size: 0.86rem;
}

.hero-note svg {
  width: 17px;
  flex: 0 0 17px;
  margin-top: 3px;
}

.visual-shell {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.visual-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.visual-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 233, 255, 0.24), transparent 66%);
}

.visual-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.visual-kicker {
  color: #9fb7cb;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.visual-title {
  margin-top: 5px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.status-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(11, 155, 117, 0.17);
  color: #97f2d4;
  font-size: .74rem;
  font-weight: 700;
  white-space: nowrap;
}

.car-stage {
  position: relative;
  height: 235px;
  margin: 32px 0 20px;
  display: grid;
  place-items: center;
}

.car-stage::before {
  content: "";
  position: absolute;
  inset: 28px 8px 4px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(41, 217, 255, 0.12), rgba(73, 134, 255, 0.03));
  border: 1px solid rgba(142, 233, 255, 0.1);
}

.car-stage svg {
  position: relative;
  z-index: 2;
  width: 92%;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.28));
}

.visual-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(2, 14, 28, 0.22);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: .92rem;
}

.metric span {
  display: block;
  margin-top: 3px;
  color: #8fa9be;
  font-size: .72rem;
}

.float-card {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(8, 30, 53, 0.82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.float-card.one {
  left: -22px;
  top: 80px;
}

.float-card.two {
  right: -10px;
  bottom: 68px;
}

.float-card b {
  display: block;
  color: #fff;
  font-size: .9rem;
}

.float-card span {
  color: #9bb5c9;
  font-size: .74rem;
}

.trust-strip {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy-800);
  border: 1px solid var(--pa-line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
  border-right: 1px solid var(--pa-line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 13px;
  color: var(--blue-600);
  background: rgba(73, 134, 255, 0.14);
}

.trust-icon svg {
  width: 21px;
  height: 21px;
}

.trust-item strong {
  display: block;
  font-size: .91rem;
  color: var(--ink);
}

.trust-item span {
  display: block;
  margin-top: 2px;
  font-size: .76rem;
  color: var(--pa-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 74px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(73, 134, 255, 0.88), rgba(8, 30, 53, 0.94)),
    linear-gradient(45deg, #4986ff, #050b14);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual::before {
  content: attr(data-pa-code);
  position: absolute;
  right: -20px;
  bottom: -42px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 11rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #d9fbff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-icon svg {
  width: 38px;
  height: 38px;
}

.about-quote {
  max-width: 390px;
  color: #fff;
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.about-sub {
  margin-top: 16px;
  color: #b7d1e5;
  max-width: 430px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.feature-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
}

.feature-row .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-600);
  background: rgba(73, 134, 255, 0.14);
}

.feature-row .icon svg {
  width: 22px;
  height: 22px;
}

.feature-row p {
  margin: 4px 0 0;
  color: var(--pa-muted);
  font-size: .94rem;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vehicle-card {
  position: relative;
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--pa-line);
  border-radius: 24px;
  background: var(--navy-800);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.vehicle-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(41, 217, 255, 0.4);
}

.vehicle-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 217, 255, 0.12), transparent 68%);
}

.vehicle-illustration {
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  color: var(--blue-600);
  background: linear-gradient(145deg, rgba(41, 217, 255, 0.10), rgba(41, 217, 255, 0.03));
}

.vehicle-illustration svg {
  width: 74px;
  height: 74px;
}

.vehicle-card p {
  color: var(--pa-muted);
  font-size: .9rem;
}

.vehicle-tag {
  display: inline-flex;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(41, 217, 255, 0.14);
  color: #8ee9ff;
  font-size: .72rem;
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 30px;
  border-radius: 24px;
  background: var(--navy-800);
  border: 1px solid var(--pa-line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.benefit-number {
  margin-bottom: 22px;
  color: #8bb7d3;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.benefit-card p {
  color: var(--pa-muted);
  font-size: .94rem;
  margin-bottom: 0;
}

.process-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 66px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 130px;
}

.process-list {
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 20px;
  left: 24px;
  width: 2px;
  background: linear-gradient(var(--cyan-500), rgba(255, 255, 255, 0.08));
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding-bottom: 24px;
}

.process-dot {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 6px solid var(--surface-soft);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 8px 20px rgba(73, 134, 255, 0.2);
  font-weight: 700;
  font-size: .84rem;
}

.process-content {
  padding: 20px 22px;
  border: 1px solid var(--pa-line);
  border-radius: 18px;
  background: var(--navy-800);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.process-content:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.process-content p {
  margin-bottom: 0;
  color: var(--pa-muted);
  font-size: .91rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.doc-card {
  padding: 28px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  overflow: hidden;
  position: relative;
}

.doc-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(41, 217, 255, 0.14);
}

.doc-card .doc-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #bdf6fb;
  background: rgba(255, 255, 255, 0.08);
}

.doc-icon svg {
  width: 23px;
  height: 23px;
}

.doc-card h3 {
  color: #fff;
}

.doc-card p {
  color: #b8cedf;
  margin-bottom: 0;
  font-size: .92rem;
}

.notice {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold-400);
  border-radius: 0 16px 16px 0;
  color: #ffe1a8;
  background: rgba(255, 205, 112, 0.10);
  font-size: .9rem;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--pa-line);
  border-radius: 18px;
  background: var(--navy-800);
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(41, 217, 255, 0.4);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-button:focus-visible { outline: 2px solid var(--cyan); outline-offset: -3px; }

.faq-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  transition: transform .25s var(--ease);
}

.faq-item.open .faq-button svg {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s var(--ease);
}

.faq-panel p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--pa-muted);
}

.cta-section {
  padding: 0 0 104px;
}

.cta-shell {
  position: relative;
  padding: 54px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(41, 217, 255, 0.34), transparent 38%),
    linear-gradient(135deg, var(--navy-950), #0b3d64);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-shell::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -180px;
  bottom: -220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.025), 0 0 0 150px rgba(255, 255, 255, 0.018);
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-shell h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-shell p {
  color: #bfd2e2;
  margin-bottom: 0;
  max-width: 700px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-bottom: 145px;
  }

  .hero-grid,
  .about-grid,
  .process-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .visual-shell {
    min-height: 520px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--pa-line);
  }

  .about-grid {
    gap: 42px;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-intro {
    position: static;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 132px;
  }

  .float-card.one {
    left: 0;
  }

  .float-card.two {
    right: 0;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 116px 0 205px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .visual-shell {
    min-height: 460px;
  }

  .visual-card {
    min-height: 390px;
    padding: 20px;
    border-radius: 26px;
  }

  .car-stage {
    height: 205px;
  }

  .visual-metrics {
    grid-template-columns: 1fr;
  }

  .metric:nth-child(n+2) {
    display: none;
  }

  .float-card {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--pa-line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--pa-line);
  }

  .about-visual {
    min-height: 440px;
  }

  .about-visual-inner {
    padding: 26px;
  }

  .vehicle-grid,
  .benefit-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .process-list::before {
    left: 20px;
  }

  .process-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .process-dot {
    width: 42px;
    height: 42px;
    border-width: 5px;
  }

  .process-content {
    padding: 17px;
  }

  .cta-shell {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
