.s-support .l-base {
  position: absolute;
  inset: 0;
  background: hsl(222 26% 6%);
}

.s-support .l-dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 28px 28px;
}

.s-support .l-bloom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.05);
  filter: blur(160px);
  pointer-events: none;
}

.s-support .l-topfade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, hsl(222 22% 7%), transparent);
}

.s-support .l-botfade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to top, hsl(222 24% 5%), transparent);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.support-card {
  position: relative;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: hsl(222 22% 8%);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.support-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.support-card .shimmer {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.support-card .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.02), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.support-card:hover .glow {
  opacity: 1;
}

.support-card .body {
  position: relative;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.support-card .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.support-card .ic {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
}

.support-card .ic .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.support-card .pin {
  font-size: 10px;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  color: hsl(var(--foreground));
}

.support-card .info {
  flex: 1;
}

.support-card .info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--foreground));
}

.support-card .info .handle {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.125rem;
  color: hsl(var(--foreground) / 0.8);
}

.support-card .info .desc {
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.82);
  margin-top: 0.5rem;
  line-height: 1.625;
}

.support-card .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.support-card .cta:hover {
  transform: scale(1.02);
}

.support-card .cta .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.support-card .cta:hover .icon {
  transform: translateX(4px);
}

.ch-whatsapp .ic {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

.ch-whatsapp .ic .icon {
  color: #25d366;
}

.ch-whatsapp .cta {
  background: #25d366;
  color: #fff;
}

.ch-whatsapp .cta:hover {
  background: #20bd5a;
}

.ch-telegram .ic {
  background: rgba(0, 136, 204, 0.1);
  border-color: rgba(0, 136, 204, 0.2);
}

.ch-telegram .ic .icon {
  color: #0088cc;
}

.ch-telegram .cta {
  background: #0088cc;
  color: #fff;
}

.ch-telegram .cta:hover {
  background: #0077b3;
}

.ch-email .ic {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.ch-email .ic .icon {
  color: hsl(var(--muted-foreground));
}

.ch-email .cta {
  background: rgba(255, 255, 255, 0.07);
  color: hsl(var(--foreground));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-email .cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

