main {
  padding: 40px 6%;
}

.work-hero {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.work-hero h2 {
  margin-top: 30px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
  color: #00fff7;
  text-shadow: 0 0 10px #00fff7;
}

.work-hero p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 35px;
}

.work-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.work-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.work-btn.primary {
  background: linear-gradient(135deg, #00ffff, #7f00ff);
  color: #000;
}

.work-btn.primary:hover {
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.8);
}

.work-btn.outline {
  border: 1px solid #00ffff;
  color: #00ffff;
}

.work-btn.outline:hover {
  background: rgba(0, 255, 255, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 22px;
  max-width: 850px;
  margin: auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(99, 226, 226, 0.82);
}

.contact-card i {
  font-size: 1.6rem;
  color: #00ffff;
  margin-bottom: 12px;
}

.contact-card h5 {
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-card a,
.contact-card span {
  color: #cfcfcf;
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-card a:hover {
  color: #00ffff;
}
