/* =========================
   SIDE-SEKTIONER
========================= */

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

/* =========================
   GRIDS
========================= */

.services-grid,
.benefits-grid,
.process-grid,
.pricing-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(4, 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;
}

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

/* =========================
   BOKSE
========================= */

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

.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;
}

/* =========================
   IKONER
========================= */

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

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

/* =========================
   PRISER
========================= */

.price-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0;
  color: #111;
  background: transparent;
  padding: 0;
}

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

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

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

/* =========================
   BIL HERO VIDEO
========================= */

.car-video-hero {
  position: relative;
  overflow: hidden;
  background: #111 !important;
  background-image: none !important;
}

.car-video-hero::before,
.car-video-hero::after {
  display: none !important;
  content: none !important;
}

.car-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.car-hero-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.88)
  );
  z-index: 1;
}

.car-video-hero > .container {
  position: relative;
  z-index: 2;
}

/* =========================
   BILLEDER
========================= */

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.before-after {
  background: #f9f9f9;
}

.before-after .section-title {
  color: #111;
}

.before-after .section-text {
  color: #555;
}

.before-after-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.before-after-card {
  width: min(100%, 420px);
  text-align: center;
}

.before-after-card img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 18px;
}

/* =========================
   MOBIL FIX
========================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
}

.hero,
.car-showcase,
.before-after,
.services-section,
.benefits,
.process,
.contact-cta,
.pricing {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1024px) {
  .services-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .hero-grid,
  .services-grid,
  .benefits-grid,
  .process-grid,
  .pricing-grid,
  .car-showcase-grid {
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .container {
    width: 92%;
    max-width: 100%;
  }

  .card,
  .service-box,
  .benefit-box,
  .process-step,
  .price-card,
  .before-after-card,
  .showcase-image {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .btn {
    max-width: 100%;
  }

  .before-after-grid {
    gap: 22px;
  }
}

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