.technical-section {
  padding: var(--sp-space-24) 0;
  border-top: 1px solid var(--sp-color-border);
}

.technical-header {
  text-align: center;
  margin-bottom: var(--sp-space-16);
}

.technical-tagline {
  font-size: var(--sp-text-2xl);
  font-weight: var(--sp-font-semibold);
  color: var(--sp-color-primary);
  margin-bottom: var(--sp-space-4);
}

.technical-section .section-subtitle {
  margin-top: 0;
  margin-bottom: var(--sp-space-16);
}


.differentiator-section {
  margin-bottom: var(--sp-space-16);
}

.differentiator-title {
  text-align: center;
  font-size: var(--sp-text-2xl);
  font-weight: var(--sp-font-bold);
  margin-bottom: var(--sp-space-12);
}

.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-space-6);
}

.differentiator-card {
  text-align: center;
  padding: var(--sp-space-6);
}

.differentiator-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-space-4);
  color: var(--sp-color-primary);
}

.differentiator-card h4 {
  font-size: var(--sp-text-base);
  font-weight: var(--sp-font-semibold);
  margin-bottom: var(--sp-space-1);
}

.differentiator-card p {
  font-size: var(--sp-text-sm);
  color: var(--sp-color-text-secondary);
}


.architecture-note {
  text-align: center;
  padding: var(--sp-space-8);
  background: oklch(0.72 0.17 52 / 0.05);
  border-radius: var(--sp-corners-md);
  margin-top: var(--sp-space-8);
}

.architecture-note h4 {
  font-size: var(--sp-text-base);
  font-weight: var(--sp-font-semibold);
  margin-bottom: var(--sp-space-2);
  color: var(--sp-color-primary);
}

.architecture-note p {
  color: var(--sp-color-text-secondary);
  font-size: var(--sp-text-sm);
}


.technical-ctas {
  display: flex;
  justify-content: center;
  gap: var(--sp-space-6);
}

@media (max-width: 1024px) {
  .differentiator-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .differentiators {
    padding: var(--sp-space-12) 0;
  }

  .differentiator-grid {
    grid-template-columns: 1fr;
  }

  .technical-ctas {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .differentiators {
    padding: var(--sp-space-8) 0;
  }
}
