.hook-text,
.counter-container {
  position: relative;
  z-index: 2;
}

.hook-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-radius: 20px;        
  padding: 2rem;
}

.hook-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, cyan, #00ffb2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* .hero-text p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  text-align: justify;
  color: #f2f2f2;
} */

.cta-btn {
  background: linear-gradient(90deg, cyan, #00ffb2);
  color: #000;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px cyan;
}

/* Right Cards */
.container-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  /* padding: 2rem 1rem; */
  text-align: center;
  opacity: 1; 
}

.container-card:hover {
  box-shadow: 0 0 25px cyan;
}

.counter {
  font-size: 2.2rem;
  font-weight: 700;
  color: cyan;
  display: inline-block;
}

.suffix {
  font-size: 1.8rem;
  font-weight: 600;
  color: cyan;
  margin-left: 2px;
}

.container-card p {
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.85;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-split-section {
    flex-direction: column;
    padding: 50px 5%;
  }

  .counter-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .counter-container {
    grid-template-columns: 1fr;
  }
}
