.hero {
  width: 100%;
  padding: 60px 12px 12px;
  display: flex;
  justify-content: center;
  animation: fadeIn 1.2s;
}

.hero-card {
  background: rgba(26, 11, 46, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 0;
  border: none;
  padding: 16px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  box-shadow: none;
}

.hero h1 {
  font-size: 2rem;
  color: #f3e8ff;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px #a855f788;
}

.hero p {
  color: #d9cfdb;
  font-size: 0.8rem;
  font-weight: 100;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-btn {
  background: linear-gradient(45deg, #3914de, #1e4c7d, #1c1c1f, #447486, #e1d7e7);
  color: #faf5ff;
  border: 1px solid #79797e;
  padding: 6px 16px; 
  border-radius: 12px; 
  font-size: 0.625rem; 
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5; 
  touch-action: manipulation; 
  margin-bottom: 30px;

}

.cta-btn:active {
  background: linear-gradient(55deg, #13e07d, #1e4c7d, #1c1c1f, #447486, #e1d7e7);
  transform: scale(1.05);
}

.hero-counters {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.counter-item {
  background: none;
  border-radius: 6px;
  padding: 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
  border-bottom: 2px solid rgba(168, 85, 247, 0.12);
}

.counter-item:hover {
  transform: translateY(-2px) scale(1.04);
}

.counter-label {
  color: #bda4e6;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.7px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.counter-value {
  font-family: 'Share Tech Mono', 'Fira Mono', 'Consolas', monospace;
  font-size: 0.8rem;
  color: #faf5ff;
  letter-spacing: 1px;
  line-height: 1.1;
}

@media (min-width: 700px) {
  .hero {
    padding: 80px 24px 24px;
  }

  .hero-card {
    padding: 32px;
    max-width: 700px;
    border-radius: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-counters {
    gap: 18px;
    margin-top: 18px;
  }

  .counter-item {
    padding: 6px 10px;
    min-width: 60px;
  }

  .counter-label {
    font-size: 0.68rem;
    margin-bottom: 12px;
  }

  .counter-value {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) {
  .cta-btn {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: 20px;
  }

  .cta-btn:hover {
    background: linear-gradient(55deg, #13e07d, #1e4c7d, #1c1c1f, #447486, #e1d7e7);
    transform: scale(1.05);
  }
}

@media (max-width: 767px) {
  .cta-btn {
    padding: 12px 24px;
    font-size: 0.625rem;
    border-radius: 12px;
  }
}
