/* ===========================
   RESET & VARIABLES
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #1a56ff;
  --blue-dark: #0a3bbf;
  --white: #ffffff;
  --black: #0d0d0d;
  --gray: #555555;
  --navbar-h: 60px;
  --stats-h: 110px;
  --font: 'Poppins', sans-serif;
}

html, body {
  font-family: var(--font);
  background: #fff;
  color: var(--black);
  overflow-x: hidden;
  height: 100%;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--navbar-h);
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--blue);
  font-weight: 600;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--blue);
}

/* ===========================
   PAGE WRAPPER
   =========================== */
.page-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-top: var(--navbar-h);
}

/* ===========================
   HERO
   =========================== */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  gap: 32px;
  overflow: hidden;
}

.hero-left {
  flex: 0 0 42%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-title {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.hero-title .blue {
  color: var(--blue);
}

.hero-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--gray);
  max-width: 400px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  box-shadow: 0 4px 18px rgba(26, 86, 255, 0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 86, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid #ccc;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* HERO RIGHT */
.hero-right {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 16px 0;
}

.vehicle-img {
  width: 100%;
  max-width: 780px;
  max-height: 95%;
  object-fit: contain;
  display: block;
}

/* ===========================
   STATS
   =========================== */
.stats {
  height: var(--stats-h);
  background: linear-gradient(110deg, #2060ff 0%, #0f35c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  border-radius: 16px 16px 0 0;
  position: relative;
  z-index: 2;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-value {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .navbar { padding: 0 20px; }
  .logo-img { height: 36px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--navbar-h); left: 0; right: 0;
    background: #fff;
    padding: 24px 28px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero {
    flex-direction: column;
    padding: 32px 20px 20px;
    text-align: center;
    gap: 20px;
  }
  .hero-left {
    max-width: 100%;
    align-items: center;
    flex: unset;
    gap: 16px;
  }
  .hero-right {
    width: 100%;
    max-width: 340px;
    flex: unset;
  }
  .hero-desc { text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-title { font-size: clamp(28px, 7vw, 40px); }

  .page-wrapper { height: auto; min-height: 100vh; }

  .stats {
    height: auto;
    padding: 24px 16px;
    border-radius: 12px 12px 0 0;
  }
}

@media (max-width: 480px) {
  .hero { padding: 24px 16px 16px; }
  .btn { padding: 11px 24px; font-size: 13px; }

  .stats {
    flex-direction: column;
    gap: 20px;
    padding: 28px 16px;
  }
  .stat-divider { width: 50px; height: 1px; }
  .stat-value { font-size: 32px; }
}