/* Used Cars Styles */
:root {
  --primary-color: #dc2626; /* Red */
  --secondary-color: #b91c1c;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --bg-main: #09090b; /* Very dark slate */
  --bg-card: #18181b;
  --font-family: 'Prompt', sans-serif;
  --header-font: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
}

.navbar {
  padding: 1.5rem 0;
  background: rgba(9, 9, 11, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--header-font);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: white;
}

.logo span {
  color: var(--primary-color);
}

.nav-links a {
  margin-left: 1.5rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: white;
}

.nav-links .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.nav-links .btn-outline:hover {
  background: white;
  color: black;
  border-color: white;
}

.btn-primary {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.hero {
  padding-top: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--header-font);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-color);
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  transform: scale(1.1) translateX(5%);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

.benefits {
  background: var(--bg-card);
  position: relative;
  z-index: 3;
}

.section-title h2 {
  font-family: var(--header-font);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-5px);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card .icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 4rem;
  }
  .hero-text p {
    margin: 0 auto 2.5rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image img {
    transform: scale(1) translateX(0);
  }
}
