/* ============================================================
   Section 02b — "What makes Skyportal different"
   Explicit differentiators list. Sits right after the
   "Why Skyportal" toggle section to expand on the comparison
   with scannable, AEO-friendly value props.
   ============================================================ */

.nl-differentiators-section {
    background: #0f172b;
    padding: clamp(48px, 7vw, 96px) 0;
    position: relative;
}

.nl-differentiators-section__inner {
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 64px);
}

.nl-differentiators-section__header {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 48px);
}

.nl-differentiators-section__heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.nl-differentiators-section__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 960px;
    display: grid;
    gap: clamp(16px, 2vw, 24px);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .nl-differentiators-section__list {
        grid-template-columns: 1fr 1fr;
    }
}

.nl-differentiators-section__list li {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: clamp(16px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
}

/* Icon at the top of each differentiator card.
   Decorative — alt="" so screen readers skip it; the <strong> title
   that follows carries the meaning. */
.nl-differentiator__icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    /* The icons are themed to the site's brand blue (#3B82F6) by the
       designer; no further color treatment needed here. */
}

.nl-differentiators-section__list li strong {
    color: #ffffff;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.3;
}

.nl-differentiators-section__list li p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}
