.differentiators {
  padding: 110px 5%;
  background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue-primary) 100%);
  position: relative;
  overflow: hidden;
}
.differentiators::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
}

.diff-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}
.diff-head {
  margin-bottom: 3.5rem;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.diff-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  gap: 1.5rem;
  transition: background 0.25s, border-color 0.25s;
}
.diff-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 120, 9, 0.3);
}
.diff-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(232, 120, 9, 0.22);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.diff-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.diff-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr; }
}
