/* ====== ACHIEVEMENTS SECTION ====== */

.achievements-section {
  background: white;
  padding: 4rem 0;
}

.achievements-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: hsl(25 25% 25%);
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .achievements-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.achievement-card {
  background: white;
  border: 2px solid hsl(142 76% 36%);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1);
  animation: bounceIn 0.6s ease-out forwards;
  opacity: 0;
}

.achievement-card:nth-child(1) {
  animation-delay: 0.1s;
}

.achievement-card:nth-child(2) {
  animation-delay: 0.2s;
}

.achievement-card:nth-child(3) {
  animation-delay: 0.3s;
}

.achievement-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.achievement-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
  border-color: hsl(200 18% 46%);
  animation: pulse-card 0.6s ease-in-out infinite;
}

@keyframes pulse-card {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
  }
  50% {
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.3);
  }
}

.achievement-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.achievement-number {
  font-size: 2rem;
  font-weight: bold;
  color: hsl(142 76% 36%);
  margin-bottom: 0.5rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.achievement-label {
  font-size: 1rem;
  color: hsl(25 25% 25%);
  font-weight: 500;
  margin: 0;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .achievements-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .achievement-card {
    padding: 1.5rem;
  }

  .achievement-icon {
    font-size: 2rem;
  }

  .achievement-number {
    font-size: 1.5rem;
  }

  .achievement-label {
    font-size: 0.875rem;
  }
}
