.services-section,
.benefits,
.process,
.car-showcase,
.before-after,
.pricing {
  padding: 80px 0;
}

.services-grid,
.benefits-grid,
.process-grid,
.pricing-grid,
.before-after-grid,
.car-showcase-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 35px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.before-after-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 35px;
}

.car-showcase-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  margin-top: 35px;
}

.service-box,
.benefit-box,
.process-step,
.price-card,
.before-after-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  box-sizing: border-box;
}

.service-icon,
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0051ff;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.service-box h3,
.benefit-box h3,
.process-step h3,
.price-card h3,
.before-after-card h3 {
  margin: 0 0 10px;
  color: #111;
}

.service-box p,
.benefit-box p,
.process-step p,
.before-after-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.price-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  margin: 8px 0;
}

.price-card.featured {
  transform: scale(1.03);
  border: 2px solid #111;
}

.car-hero {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
    url('../img/bil-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.showcase-image img,
.before-after-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.showcase-image.large img {
  height: 100%;
  object-fit: cover;
}

.before-after {
  background: #f9f9f9;
}

@media (max-width: 900px) {
  .services-grid,
  .benefits-grid,
  .pricing-grid,
  .car-showcase-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}