/* why-me.css */
/* ==========================================
   WHY WORK WITH ME - Differentiator Section
   ========================================== */

.why-me {
  position: relative;
  overflow: hidden;
}

.why-me-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, 
    rgba(168, 85, 247, 0.3), 
    rgba(236, 72, 153, 0.2)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.why-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(236, 72, 153, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.why-card:hover .why-icon::before {
  opacity: 1;
}

.why-card:hover .why-icon {
  transform: scale(1.05);
  background: rgba(168, 85, 247, 0.15);
}

.why-icon svg {
  color: var(--accent-1);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
  .why-me-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .why-card {
    padding: 24px;
  }

  .why-icon {
    width: 48px;
    height: 48px;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }
}
