:root {
  --bg: #101528;
  --bg2: #17203a;
  --card: rgba(255, 255, 255, 0.08);
  --card2: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #b9c4d6;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #00d1ff;
  --accent2: #7c3cff;
  --accent3: #20e3b2;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(124, 60, 255, 0.34),
      transparent 32%
    ),
    radial-gradient(circle at 78% 18%, rgba(0, 209, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #101528 0%, #251858 45%, #0d1830 100%);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 18, 34, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(0, 209, 255, 0.24);
}
.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.menu a {
  font-weight: 700;
  font-size: 14px;
  color: #dce8ff;
}
.menu a:hover {
  color: #fff;
}
.nav-cta {
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 14px 28px rgba(0, 209, 255, 0.18);
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.hero {
  position: relative;
  padding: 86px 0 58px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d9f7ff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  font-size: 13px;
}
.eyebrow i {
  color: var(--accent);
}
h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  margin: 20px 0 22px;
  letter-spacing: -0.065em;
}
.grad {
  background: linear-gradient(90deg, #fff, var(--accent), #b69cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 20px;
  line-height: 1.62;
  color: #d5deef;
  max-width: 650px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  border: 0;
  border-radius: 16px;
  padding: 15px 22px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    0.25s transform,
    0.25s box-shadow,
    0.25s background;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: white;
  box-shadow: 0 18px 42px rgba(0, 209, 255, 0.22);
}
.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.visual {
  position: relative;
}
.car-card {
  min-height: 430px;
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px;
}
.car-illustration {

  border-radius: 26px;
  background:
    radial-gradient(
      circle at 70% 22%,
      rgba(0, 209, 255, 0.52),
      transparent 26%
    ),
    linear-gradient(140deg, #151f38, #263475);
  position: relative;
  overflow: hidden;
}
.car-illustration:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0 34%,
    rgba(255, 255, 255, 0.09) 35% 42%,
    transparent 43% 100%
  );
  animation: shine 4.2s linear infinite;
}
.car {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 42px;
  height: 104px;
  background: linear-gradient(180deg, #eaf3ff, #9bb2c8);
  border-radius: 70px 105px 30px 30px;
  box-shadow: 0 24px 0 rgba(0, 0, 0, 0.13);
}
.car:before {
  content: "";
  position: absolute;
  left: 18%;
  top: -58px;
  width: 48%;
  height: 78px;
  background: linear-gradient(135deg, #9adfff, #d7fbff);
  clip-path: polygon(18% 100%, 36% 0, 76% 0, 100% 100%);
  border-radius: 18px 22px 0 0;
}
.wheel {
  position: absolute;
  bottom: -26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #111827;
  border: 10px solid #6e7e99;
}
.wheel.left {
  left: 17%;
}
.wheel.right {
  right: 17%;
}
.badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent3), var(--accent));
  font-weight: 900;
  color: #082032;
  box-shadow: 0 18px 34px rgba(32, 227, 178, 0.25);
}
.floating {
  position: absolute;
  top: 36px;
  right: -18px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.mini-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}
.mini-stats strong {
  display: block;
  color: var(--accent);
  font-size: 22px;
}
.section {
  padding: 82px 0;
}
.section.alt {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 209, 255, 0.05),
    rgba(124, 60, 255, 0.05)
  );
}
.center {
  text-align: center;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}
.section-sub {
  max-width: 760px;
  margin: 0 auto 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: linear-gradient(145deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.13);
}
.icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.card h3 {
  font-size: 24px;
  margin: 0 0 12px;
}
.card p,
.muted {
  color: var(--muted);
  line-height: 1.6;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-list {
  display: grid;
  gap: 18px;
}
.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: linear-gradient(135deg, var(--accent3), var(--accent));
  color: #082032;
}
.image-panel {
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}
.fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-item {
  overflow: hidden;
}
.car-top {
  height: 150px;
  border-radius: 22px;
  background: linear-gradient(135deg, #24365f, #5d35c8);
  position: relative;
  margin-bottom: 18px;
}
.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.13);
  color: #9fefff;
  border: 1px solid rgba(0, 209, 255, 0.22);
  font-weight: 800;
  font-size: 12px;
}
.price {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
}
.list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.list li {
  display: flex;
  gap: 9px;
  color: #cbd7e9;
}
.list i {
  color: var(--accent3);
  margin-top: 4px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.metric {
  text-align: center;
}
.metric strong {
  font-size: clamp(34px, 4vw, 54px);
  display: block;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.steps {
  counter-reset: s;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
}
.step:before {
  counter-increment: s;
  content: "0" counter(s);
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  font-weight: 900;
  margin-bottom: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: start;
}
.form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
label {
  font-weight: 800;
  font-size: 14px;
}
.field {
  margin-bottom: 16px;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}
select option {
  color: #111;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 209, 255, 0.12);
}
.map-box {
  min-height: 330px;
  border-radius: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(124, 60, 255, 0.16)),
    url("../img/map-placeholder.png") center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}
.contact-card {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 14px 0;
  color: #dce8ff;
}
.contact-row i {
  color: var(--accent);
  width: 22px;
  margin-top: 3px;
}
.footer {
  background: #081120;
  padding: 52px 0 26px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}
.footer a,
.footer p {
  color: #aebbd0;
}
.footer a:hover {
  color: #fff;
}
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 24px;
  color: #8fa0b8;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.page-hero {
  padding: 80px 0 50px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(42px, 5vw, 70px);
}
.timeline {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent2));
}
.timeline-item {
  width: 46%;
  padding: 24px;
}
.timeline-item:nth-child(even) {
  margin-left: 54%;
}
.cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: none;
}
.cookie.show {
  display: block;
}
.cookie-inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(8, 17, 32, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.cookie p {
  margin: 0;
  color: #ccd8eb;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex: none;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (max-width: 900px) {
  .menu {
    display: none;
  }
  .burger {
    display: block;
  }
  .menu.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: #101a31;
    border: 1px solid var(--line);
    border-radius: 20px;
  }
  .hero-grid,
  .split,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cards,
  .fleet,
  .metrics,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline:before {
    left: 24px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: auto;
    margin-left: 48px;
  }
}
@media (max-width: 620px) {
  .cards,
  .fleet,
  .metrics,
  .steps,
  .footer-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 52px;
  }
  .actions,
  .cookie-inner,
  .legal {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .car-card {
    min-height: 360px;
  }
  .car-illustration {
    height: 240px;
  }
}

.car-top {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px;
  background: #f3f4f6;
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}