:root {
  --bg: #f5f7fb;
  --bg-2: #eef4ff;
  --white: #ffffff;
  --black: #101828;
  --text: #1d2939;
  --muted: #667085;
  --line: #e4e7ec;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eff6ff;
  --green: #12b76a;
  --orange: #f79009;
  --radius: 26px;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--blue);
  color: #fff;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--black);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  transition: color 0.2s ease;
}

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

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

.lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: #f2f4f7;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 900;
  font-size: 14px;
}

.lang a.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--black);
  margin: 4px auto;
  border-radius: 99px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu__inner {
  display: grid;
  gap: 10px;
  padding: 18px 0 22px;
}

.mobile-menu a {
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  font-weight: 800;
}

.hero {
  position: relative;
  padding: 86px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -220px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(18, 183, 106, 0.09), transparent 68%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 52px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 9px 15px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.badge span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: 0.2s ease;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24);
}

.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--black);
  border-color: var(--line);
}

.btn--light:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 640px;
}

.stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.stat strong {
  display: block;
  color: var(--black);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.search-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.search-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.search-card h2 {
  margin-bottom: 6px;
  color: var(--black);
  font-size: 26px;
  letter-spacing: -0.05em;
}

.soon {
  padding: 7px 11px;
  background: #ecfdf3;
  color: #027a48;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

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

.tab {
  padding: 12px;
  background: #f8fafc;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.tab.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.field div {
  color: var(--black);
  font-weight: 900;
}

.search-btn {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
}

.car-visual {
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(135deg, #f8fafc, #eef4ff);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.car-visual__road {
  height: 8px;
  margin-top: -18px;
  background: #d0d5dd;
  border-radius: 99px;
  opacity: 0.75;
}

.section {
  padding: 68px 0;
}

.section__head {
  max-width: 790px;
  margin-bottom: 36px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h2 {
  margin-bottom: 16px;
  color: var(--black);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.section__text {
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.045);
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 22px;
  letter-spacing: -0.045em;
}

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

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.panel {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.list li {
  list-style: none;
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: #ecfdf3;
  color: #039855;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.seo-box {
  min-height: 100%;
  padding: 36px;
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.seo-box h2 {
  color: #fff;
}

.seo-box p {
  margin-top: 14px;
  color: #d0d5dd;
}

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

.tag {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

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

.step {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.step span {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  background: var(--black);
  color: #fff;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
  color: var(--black);
  letter-spacing: -0.035em;
}

.step p {
  color: var(--muted);
  font-size: 15px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.brand-link {
  min-height: 76px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--black);
  font-weight: 900;
  transition: 0.2s ease;
}

.brand-link:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

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

details {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

summary {
  color: var(--black);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}

details p {
  margin-top: 12px;
  color: var(--muted);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.cta p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  padding: 36px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--black);
  font-weight: 800;
}

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

  .mobile-toggle {
    display: block;
  }

  .hero__grid,
  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding: 48px 0 42px;
  }

  .header__inner {
    min-height: 68px;
  }

  .logo {
    font-size: 18px;
  }

  .logo__mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 13px;
  }

  .stats,
  .cards,
  .steps,
  .form-grid,
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .search-card,
  .panel,
  .seo-box,
  .cta {
    padding: 24px;
    border-radius: 24px;
  }

  .section {
    padding: 48px 0;
  }

  .header__right {
    gap: 8px;
  }

  .lang a {
    padding: 7px 10px;
  }
}
