.hero-welcome {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'MomoTrustSans', sans-serif;
  color: var(--color-white);
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  font-family: 'MomoTrustSans', sans-serif;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(10, 36, 78, 0.9) 0%,
    rgba(10, 36, 78, 0.9) 30%,
    rgba(10, 36, 78, 0.7) 60%, 
    rgba(10, 36, 78, 0.1) 90%, 
    transparent 100% 
);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 10%; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-white);
  text-align: center;
  max-width: 1000px;
  width: 90%;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'MomoTrustSans', sans-serif;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  font-family: 'MomoTrustSans', sans-serif;
  margin-bottom: 30px;
  line-height: 1.5;
  color: var(--color-white);
  max-width: 700px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'MomoTrustSans', sans-serif;
  border-radius: 48px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 1px 1px 2px var(--color-black);
}

.hero-cta:hover {
  background-color: var(--color-tertiary);
  color: var(--color-white);
}

/* --- CARDS HERO --- */
.hero-cards-container {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin-top: -80px;
  padding: 0 40px;
  flex-wrap: wrap;
}

.hero-card {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 28px;
  padding: 30px 25px;
  width: 100%;
  max-width: 350px;
  max-height: 300px;
  box-shadow: 0 8px 25px rgba(10, 36, 78, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 20px;
}

.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(10, 36, 78, 0.2);
}

.card-icon {
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'MomoTrustSans', sans-serif;
  color: var(--color-white);
  margin-bottom: 15px;
  line-height: 1.3;
  justify-self: center;
}

.card-text {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'MomoTrustSans', sans-serif;
  color: var(--color-white);
  line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-content {
    top: 15%;
    max-width: 90%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-image-container {
    height: 500px;
  }

  .hero-content {
    top: 10%;
    max-width: 95%;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .hero-cta {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .hero-cards-container {
    padding: 0 20px;
    gap: 20px;
    margin-top: -80px;
  }

  .hero-card {
    max-width: 100%;
    padding: 25px 20px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    height: 400px;
  }
  
  .hero-content {
    top: 8%;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}