/* Hero 6: Background triangle top, Text bottom centered */
.hero6 {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 40px 60px;
  background-color: var(--main-bg);
  position: relative;
  overflow: hidden;
}

.hero6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 350px;
  background-image: url('../img/img13pc.webp');
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.hero6-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero6-content {
  width: 100%;
  max-width: 800px;
}

.hero6-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 15px 0;
  line-height: 1.2;
  font-family: Arial, sans-serif;
}

.hero6-subtitle {
  font-size: 28px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
  .hero6 {
    height: auto;
    min-height: 500px;
    padding: 0 20px 40px;
  }

  .hero6::before {
    height: 280px;
    width: 150%;
    background-image: url('../img/img13mob.webp');
  }

  .hero6-title {
    font-size: 32px;
  }

  .hero6-subtitle {
    font-size: 18px;
  }
}
