/*
  Compiled from assets/scss/cards.scss - do not edit directly if you have a
  Sass build step; otherwise this file is safe to edit by hand.

  Two card families identified in the Figma file (same shadow + corner
  radius within each family, so every card of a family should get the
  matching CSS class added in Elementor -> Advanced -> CSS Classes):

  .card-glass  -> "Cases" project cards (large, rounded 30px, glass/blur effect)
  .card-stat   -> "Why" icon/stat cards (smaller, rounded 20px, soft shadow + border)
*/

.card-glass {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-glass:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.card-glass .card-glass__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #7b61ff;
}

.card-glass .card-glass__title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 12px;
}

.card-stat {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: clamp(20px, 2.3vw, 30px);
  text-align: center;
}

.card-stat .card-stat__icon {
  width: 44px;
  height: 44px;
  margin-inline: auto 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-stat .card-stat__value {
  color: #ffffff;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 700;
}

.card-stat .card-stat__label {
  color: #dddde3;
  font-size: 14px;
  margin-top: 4px;
}
