/* CONNECT / CONTACT SECTION */

.connect-section {
  padding: 120px 0 160px;
  text-align: center;
}

.connect-title {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 20px;
  background: linear-gradient(to bottom, #ffffff, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.connect-subtitle {
  max-width: 520px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA */
.connect-actions {
  margin-bottom: 50px;
}

.connect-cta {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #0070f3, #7209b7);
  box-shadow:
    0 0 30px rgba(114, 9, 183, 0.6),
    0 0 60px rgba(0, 112, 243, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.connect-cta:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 40px rgba(114, 9, 183, 0.9),
    0 0 80px rgba(0, 112, 243, 0.6);
}

/* Icons */
.connect-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.connect-icons a {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Neon hover */
.connect-icons a:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow:
    0 0 20px rgba(114, 9, 183, 0.8),
    0 0 40px rgba(3, 113, 239, 0.5);
}

/* Mobile */
@media (max-width: 640px) {
  .connect-icons {
    gap: 20px;
  }

  .connect-cta {
    font-size: 16px;
    padding: 14px 32px;
  }
}
