:root {
  --blue: #1478ff;
  --blue-dark: #084fbd;
  --ink: #090b0f;
  --muted: #737985;
  --line: #dfe3e8;
  --paper: #f4f5f7;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.redirect-overlay {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 38%, rgba(20,120,255,.18), transparent 38%),
    rgba(3,5,8,.96);
  backdrop-filter: blur(12px);
}
.redirect-card {
  width: min(520px, 100%);
  padding: 48px 44px 42px;
  text-align: center;
  background: rgba(12,16,23,.9);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.redirect-mark {
  display: flex;
  width: 52px;
  height: 52px;
  margin: 0 auto 26px;
  overflow: hidden;
  transform: skew(-13deg);
}
.redirect-mark span { width: 33.333%; }
.redirect-mark span:nth-child(1) { background: #f5f5f5; }
.redirect-mark span:nth-child(2) { background: var(--blue); }
.redirect-mark span:nth-child(3) { background: #072f76; }
.redirect-kicker {
  margin: 0 0 13px;
  color: #8d97a7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.redirect-card h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  text-transform: uppercase;
}
.redirect-copy {
  max-width: 370px;
  margin: 18px auto 26px;
  color: #aeb6c2;
  font-size: 14px;
  line-height: 1.65;
}
.redirect-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
}
.redirect-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: left;
  animation: redirect-progress .5s linear both;
}
.redirect-card small {
  display: block;
  margin-top: 16px;
  color: #697384;
  font-size: 10px;
  letter-spacing: .6px;
}
@keyframes redirect-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 800; letter-spacing: -.8px; font-size: 19px; }
.brand > span:last-child > span { color: var(--blue); }
.brand-mark { display: flex; width: 30px; height: 30px; overflow: hidden; transform: skew(-13deg); }
.brand-mark i { width: 10px; height: 100%; }
.brand-mark i:nth-child(1) { background: #f5f5f5; }
.brand-mark i:nth-child(2) { background: var(--blue); }
.brand-mark i:nth-child(3) { background: #072f76; }
nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
nav a { opacity: .72; transition: .2s; }
nav a:hover { opacity: 1; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; color: #fff; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s, opacity .2s; }
.header-phone { display: flex; flex-direction: column; text-align: right; font-size: 14px; font-weight: 700; }
.header-phone small { margin-bottom: 3px; color: #8c95a4; font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; }

.hero { min-height: 785px; position: relative; display: flex; align-items: center; color: #fff; overflow: hidden; background: #05070a; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,5,8,.98) 0%, rgba(3,5,8,.9) 30%, rgba(3,5,8,.15) 64%, rgba(3,5,8,.1) 100%),
              linear-gradient(0deg, rgba(0,0,0,.45), transparent 42%);
}
.hero-content { position: relative; z-index: 2; width: 620px; margin-left: 8.6vw; padding-top: 70px; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 12px; color: #a4adba; font-size: 10px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 2px; background: var(--blue); }
.eyebrow.dark { color: var(--muted); }
h1 { margin: 0; text-transform: uppercase; }
.h1-domain { display: block; color: var(--blue); font-size: clamp(61px, 6.6vw, 96px); line-height: .9; letter-spacing: -5.8px; }
.h1-message { display: block; max-width: 650px; margin-top: 15px; font-size: clamp(37px, 3.7vw, 55px); line-height: 1; letter-spacing: -3.4px; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero-copy { width: 470px; margin: 28px 0 30px; color: #9ea6b3; font-size: 15px; line-height: 1.8; }
.vin-form { width: 560px; padding: 18px 20px 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(12px); }
.vin-form label { display: block; margin-bottom: 10px; color: #9fa7b3; font-size: 9px; letter-spacing: 1.3px; text-transform: uppercase; }
.vin-form div { display: flex; gap: 9px; }
.vin-form input { min-width: 0; flex: 1; border: 0; padding: 14px 16px; font: inherit; font-size: 12px; outline: 0; }
.vin-form button, .button { border: 0; padding: 0 23px; color: #fff; background: var(--blue); font: inherit; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; }
.vin-form button b { margin-left: 16px; font-size: 17px; }
.form-status { min-height: 16px; margin: 9px 0 0; color: #9ec4ff; font-size: 10px; line-height: 1.45; }
.hero-facts { display: flex; gap: 38px; margin-top: 34px; }
.hero-facts p { display: flex; gap: 10px; align-items: center; margin: 0; }
.hero-facts strong { font-size: 16px; }
.hero-facts span { color: #747d8b; font-size: 9px; line-height: 1.5; text-transform: uppercase; }
.scroll-hint { position: absolute; z-index: 2; right: 5vw; bottom: 36px; color: #68717f; font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; }
.scroll-hint span { display: inline-grid; place-items: center; margin-left: 12px; width: 30px; height: 30px; border: 1px solid #343b46; color: #fff; }

.section { padding: 100px 8.6vw; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; }
.section h2 { margin: 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.08; letter-spacing: -2.8px; text-transform: uppercase; }
.section-heading > a { padding-bottom: 8px; color: #4e5661; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; border-bottom: 1px solid #b4bac2; }
.section-heading > a span { margin-left: 13px; color: var(--blue); font-size: 17px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { position: relative; min-height: 330px; padding: 27px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: .2s; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(19,31,52,.08); }
.category-card.featured { color: #fff; background: linear-gradient(145deg, #126de9, #074599); }
.category-card > p { margin: 0 0 75px; color: #8a919d; font-size: 9px; letter-spacing: 1.2px; }
.featured > p { color: #9ec4ff; }
.category-card h3 { margin: 0 0 15px; font-size: 24px; line-height: 1.18; text-transform: uppercase; }
.category-card > span { color: #8a919d; font-size: 11px; }
.featured > span { color: #bcd5fb; }
.category-card > a { position: absolute; right: 24px; bottom: 24px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); font-size: 18px; }
.featured > a { border-color: rgba(255,255,255,.3); }
.category-icon { position: absolute; top: 25px; right: 26px; color: var(--blue); font-size: 37px; }
.featured .category-icon { color: #fff; }

.advantages { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; color: #fff; background: #0a0d12; }
.adv-copy > p:not(.eyebrow) { max-width: 510px; margin: 28px 0 38px; color: #858e9b; font-size: 14px; line-height: 1.8; }
.button { display: inline-block; padding: 17px 23px; }
.adv-list { border-top: 1px solid #292f38; }
.adv-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 31px 0; border-bottom: 1px solid #292f38; }
.adv-list b { color: var(--blue); font-size: 10px; }
.adv-list p { margin: 0; }
.adv-list strong { display: block; margin-bottom: 8px; font-size: 17px; text-transform: uppercase; }
.adv-list span { color: #77808d; font-size: 12px; line-height: 1.6; }

.seo { display: grid; grid-template-columns: 280px 1fr; gap: 7vw; max-width: 1280px; margin: 0 auto; }
.seo-aside { padding: 30px 0; border-top: 3px solid var(--blue); }
.seo-aside > span { display: block; color: #d7dce2; font-size: 80px; line-height: 1; font-weight: 800; letter-spacing: -7px; }
.seo-aside strong { color: var(--blue); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.seo article { max-width: 760px; }
.seo article h2 { margin-bottom: 30px; }
.seo article h3 { margin: 34px 0 10px; font-size: 18px; line-height: 1.35; text-transform: uppercase; letter-spacing: -.4px; }
.seo article > p:not(.eyebrow) { color: #59616c; font-size: 14px; line-height: 1.85; }
.seo article strong { color: #181c22; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 40px 8.6vw; color: #fff; background: #05070a; }
footer p { margin: 0 0 5px; color: #747d89; font-size: 11px; }
.footer-note { max-width: 480px; text-align: center; }
.footer-note small { display: block; color: #4d5560; font-size: 8px; line-height: 1.5; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.footer-contact a { color: #747d89; font-size: 11px; }
.footer-contact a:hover { color: #fff; }

@media (max-width: 900px) {
  .site-header { padding: 0 4vw; }
  .site-header .header-phone { margin-left: auto; margin-right: 12px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 4vw 18px;
    background: rgba(5,7,10,.97);
    border-bottom: 1px solid rgba(255,255,255,.12);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .site-header nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-header nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero { min-height: 760px; }
  .hero-image { opacity: .62; object-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,5,8,.96), rgba(3,5,8,.5)); }
  .hero-content { margin: 0 6vw; width: auto; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .redirect-overlay { padding: 16px; }
  .redirect-card { padding: 40px 24px 34px; }
  .redirect-mark { width: 44px; height: 44px; margin-bottom: 22px; }
  .redirect-card h2 { font-size: 29px; letter-spacing: -1.2px; }
  .redirect-copy { font-size: 13px; }
  .site-header { height: 74px; padding: 0 20px; }
  .site-header nav { top: 74px; padding-left: 20px; padding-right: 20px; }
  .header-phone small { display: none; }
  .header-phone { font-size: 11px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 24px; height: 24px; }
  .hero { min-height: 720px; }
  .hero-content { margin: 0 20px; padding-top: 45px; }
  .h1-domain { font-size: 53px; letter-spacing: -3.8px; }
  .h1-message { margin-top: 12px; font-size: 34px; letter-spacing: -2.2px; }
  .hero-copy, .vin-form { width: 100%; }
  .hero-copy { font-size: 13px; }
  .vin-form div { flex-direction: column; }
  .vin-form button { min-height: 48px; }
  .hero-facts { gap: 15px; }
  .hero-facts p { display: block; }
  .scroll-hint { display: none; }
  .section { padding: 70px 20px; }
  .section h2 { font-size: 34px; letter-spacing: -2px; }
  .section-heading > a { display: none; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 260px; }
  .category-card > p { margin-bottom: 45px; }
  .seo { grid-template-columns: 1fr; }
  .seo-aside { display: none; }
  footer { align-items: flex-start; flex-direction: column; gap: 18px; padding: 35px 20px; }
  .footer-note { text-align: left; }
  .footer-contact { align-items: flex-start; }
}
