/* ===============================
   ATMS Stats Section
================================ */

.atms-stats {
  width: 100%;
  background: #fdfff6;
  padding: 96px 20px 92px;
  font-family: "Geist", Arial, sans-serif;
}

.atms-stats-container {
  width: 100%;
  max-width: 1178px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 63px;
}

.atms-stat-card {
  min-height: 183px;
  padding: 35px 28px 30px;
  border: 1px solid #8e8e8e;
  border-radius: 22px;
  background: transparent;
  color: #5e5e5e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.atms-stat-label {
  margin-bottom: 18px;
  color: #5e5e5e;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.28s ease;
}

.atms-stat-number {
  color: #5e5e5e;
  font-size: 56px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  transition: color 0.28s ease;
}

.atms-stat-text {
  margin-top: 14px;
  color: #5e5e5e;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  transition: color 0.28s ease;
}

/* Hover style from Figma */
.atms-stat-card:hover {
  background: #ffe331;
  border-color: #ffe331;
  color: #5e5e5e;
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.atms-stat-card:hover .atms-stat-label,
.atms-stat-card:hover .atms-stat-number,
.atms-stat-card:hover .atms-stat-text {
  color: #5e5e5e;
}

/* ===============================
   Laptop
================================ */

@media (max-width: 1366px) {
  .atms-stats {
    padding: 76px 20px 74px;
  }

  .atms-stats-container {
    max-width: 980px;
    gap: 42px;
  }

  .atms-stat-card {
    min-height: 158px;
    border-radius: 18px;
  }

  .atms-stat-label {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .atms-stat-number {
    font-size: 46px;
  }

  .atms-stat-text {
    font-size: 17px;
  }
}

/* ===============================
   Tablet
================================ */

@media (max-width: 991px) {
  .atms-stats {
    padding: 64px 24px;
  }

  .atms-stats-container {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .atms-stat-card {
    min-height: 150px;
    padding: 30px 24px;
  }

  .atms-stat-number {
    font-size: 46px;
  }
}

/* ===============================
   Mobile
================================ */

@media (max-width: 480px) {
  .atms-stats {
    padding: 52px 20px;
  }

  .atms-stats-container {
    gap: 18px;
  }

  .atms-stat-card {
    min-height: 138px;
    border-radius: 18px;
  }

  .atms-stat-label {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .atms-stat-number {
    font-size: 40px;
  }

  .atms-stat-text {
    font-size: 15px;
    margin-top: 10px;
  }
}