.hero {
  padding: 6rem 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;

  padding: 0.5rem 1rem;

  background: #fff7ed;
  color: #ea580c;

  border-radius: 999px;

  font-weight: 600;

  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;

  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.8;

  color: #64748b;

  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-image img {
  width: 100%;
  height: 550px;

  object-fit: cover;

  border-radius: 24px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ====================
   FEATURES
==================== */

.features {
  padding: 4rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;

  padding: 2rem;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ====================
   VEHICLES
==================== */

.featured-vehicles {
  padding: 6rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
}

.section-header a {
  text-decoration: none;
  color: var(--accent);
}

/* ====================
   WHY US
==================== */

.why-us {
  padding: 6rem 0;
}

.why-box {
  background: var(--primary);

  color: white;

  text-align: center;

  padding: 5rem 2rem;

  border-radius: 24px;
}

.why-box h2 {
  font-size: 3rem;

  margin-bottom: 1rem;
}

.why-box p {
  max-width: 700px;

  margin: 0 auto 2rem;

  color: rgba(255, 255, 255, 0.8);
}

/* ====================
   BUTTONS
==================== */

.home-button {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 1rem;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  border: none;
}
.home-button-secondary {
  display: block;
  text-align: center;
  padding: 1rem;

  border: 1px solid #cbd5e1;

  border-radius: 12px;

  text-decoration: none;
  color: var(--primary);
}
.about-button {
  margin: auto;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 1rem;
  border-radius: 12px;
  background: var(--background);
  color: var(--primary);
  border: none;
  width: fit-content;
}

/* ====================
   MOBILE
==================== */

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    gap: 1rem;
    align-items: start;
  }
}
