* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
  color: #111827;
  line-height: 1.6;
}

.hero {
  min-height: 92vh;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 10, 20, .90), rgba(5, 10, 20, .55)),
    url('images/engine-repair.jpeg');
  background-size: cover;
  background-position: center;
  padding: 24px;
}

.navbar {
  max-width: 1180px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon {
  background: #0b72ff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.brand strong {
  font-size: 22px;
  display: block;
}

.brand small {
  color: #cbd5e1;
}

.nav-call {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.45);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-content {
  max-width: 850px;
  margin: 140px auto 0;
  text-align: center;
}

.badge {
  display: inline-block;
  background: rgba(11, 114, 255, .18);
  border: 1px solid rgba(96, 165, 250, .55);
  padding: 8px 14px;
  border-radius: 999px;
  color: #dbeafe;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-text {
  font-size: 22px;
  color: #e5e7eb;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 800;
}

.primary {
  background: #0b72ff;
  color: white;
}

.outline {
  border: 1px solid white;
  color: white;
}

.trust {
  max-width: 1100px;
  margin: -55px auto 0;
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.trust div {
  padding: 26px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}

.trust div:last-child {
  border-right: none;
}

.trust strong {
  display: block;
  font-size: 28px;
  color: #0b72ff;
}

.trust span {
  color: #4b5563;
  font-weight: 700;
}

.section {
  max-width: 1180px;
  margin: auto;
  padding: 85px 24px;
  text-align: center;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0b72ff;
  font-weight: 900;
  margin-bottom: 10px;
}

h2 {
  font-size: 40px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, .08);
  text-align: left;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.card p {
  color: #4b5563;
}

.dark {
  max-width: none;
  background: #07111f;
  color: white;
}

.blue {
  color: #60a5fa;
}

.gallery {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

figure {
  background: #0f172a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
}

figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

figcaption {
  padding: 14px;
  font-weight: 700;
  color: #e5e7eb;
}

.about {
  max-width: 1180px;
  margin: auto;
  padding: 85px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
}

.about h2 {
  margin-bottom: 18px;
}

.about p {
  color: #4b5563;
  font-size: 18px;
  margin-bottom: 18px;
}

.about ul {
  list-style: none;
}

.about li {
  padding: 10px 0;
  font-weight: 700;
}

.about li::before {
  content: "✓";
  color: #0b72ff;
  margin-right: 8px;
}

.cta {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, #0b72ff, #083c88);
  color: white;
}

.cta p {
  font-size: 20px;
  margin-bottom: 25px;
}

.cta .primary {
  background: white;
  color: #0b3b84;
}

footer {
  background: #020617;
  color: white;
  text-align: center;
  padding: 28px;
}

footer p {
  color: #94a3b8;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-content {
    margin-top: 95px;
  }

  .trust, .cards, .gallery, .about {
    grid-template-columns: 1fr;
  }

  .trust {
    margin: 0;
    border-radius: 0;
  }

  .trust div {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  figure img, .about img {
    height: 320px;
  }
}
