.hero-cover {
  position: relative;
  /* height: 480px; */
  height: calc(100vh - 150px);
  overflow: hidden;
  margin-top: 80px;
}

.hero-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-cover .overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-cover h1 {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-cover p {
  margin: 0 0 32px;
  color: #f3f4f6;
  font-size: 15px;
  line-height: 1.6;
  max-width: 600px;
}

.cta-group {
  display: flex;
  gap: 16px;
}

.why {
  background: #fff;
  padding: 100px 0;
}

.why .section-title {
  margin-bottom: 80px;
  font-size: 32px;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 0;
  border: none;
  background: transparent;
}

.why-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.why-text h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #d42229;
}

.why-text p {
  width: 220px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #2c3e50;
}

.verticals {
  background: #fff;
  padding: 100px 0;
}

.verticals .section-title {
  margin-bottom: 80px;
  font-size: 32px;
  font-weight: 700;
}

.verticals .vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.verticals .v-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
}

.verticals .v-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.verticals .v-item span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 1024px) {
  .hero-cover {
    height: 400px;
  }

  .hero-cover h1 {
    font-size: 36px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .verticals .vertical-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .hero-cover {
    height: 350px;
    margin-top: 60px;
  }

  .hero-cover h1 {
    font-size: 28px;
  }

  .hero-cover p {
    font-size: 14px;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .why-item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
  }

  .why-icon img {
    width: 60px;
    height: 60px;
  }

  .why-text h3 {
    font-size: 16px;
  }

  .why-text p {
    font-size: 13px;
  }

  .verticals .vertical-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .verticals .v-item img {
    width: 80px;
    height: 80px;
  }
}
