/* Premium gradient icons — social "why follow" cards */
.social-why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  border: 3px solid rgba(255, 255, 255, 0.45);
}
.social-why-card-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0, 102, 204, 0.12);
  transition: all 0.4s ease;
}
.social-why-card:nth-child(1) .social-why-card-icon {
  background: linear-gradient(145deg, #0052a3 0%, #0066cc 45%, #4da3ff 100%);
}
.social-why-card:nth-child(2) .social-why-card-icon {
  background: linear-gradient(145deg, #e55a00 0%, #ff6600 45%, #ff9944 100%);
}
.social-why-card:nth-child(2) .social-why-card-icon::before {
  border-color: rgba(255, 102, 0, 0.15);
}
.social-why-card:nth-child(3) .social-why-card-icon {
  background: linear-gradient(145deg, #0a7a71 0%, #0d9488 45%, #2dd4bf 100%);
}
.social-why-card:nth-child(3) .social-why-card-icon::before {
  border-color: rgba(13, 148, 136, 0.15);
}
.social-why-card:nth-child(4) .social-why-card-icon {
  background: linear-gradient(145deg, #5b21b6 0%, #6c5ce7 45%, #a29bfe 100%);
}
.social-why-card:nth-child(4) .social-why-card-icon::before {
  border-color: rgba(108, 92, 231, 0.18);
}
.social-why-card-icon svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}
.social-why-card:hover .social-why-card-icon {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.social-why-card:hover .social-why-card-icon::before {
  inset: -9px;
  opacity: 0.9;
}
