/* ============================================
   WHY SPIRAFY
   ============================================ */

.why-section {
  min-height: 80vh;
  padding: 120px 80px;
  background: transparent;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.why-left {}

.why-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 60px);
  color: var(--white);
  line-height: 1.3;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.differentiator {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.differentiator:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.diff-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  line-height: 1.3;
}

.diff-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}
