.why-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    border-top: 1px solid var(--border);
    background:
        linear-gradient(
            180deg,
            rgba(7, 17, 31, 0.35),
            rgba(4, 9, 18, 0.92)
        );
}

.why-glow {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 680px;
    height: 300px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    filter: blur(120px);
    pointer-events: none;
}

.why-heading {
    position: relative;
    max-width: 820px;
    margin-bottom: 62px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.why-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.058em;
}

.why-heading h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            #ffffff,
            #60a5fa 65%
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.why-heading p {
    max-width: 690px;
    margin: 28px 0 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.why-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.why-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            155deg,
            rgba(15, 27, 46, 0.82),
            rgba(6, 14, 27, 0.86)
        );
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: var(--border-bright);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.32),
        0 0 45px rgba(37, 99, 235, 0.07);
}

.why-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border: 1px solid var(--border-bright);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(20, 184, 166, 0.15),
            rgba(37, 99, 235, 0.2)
        );
}

.why-card-icon span {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.why-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.025em;
}

.why-card p {
    margin: 18px 0 28px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.75;
}

.why-card small {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

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

    .why-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .why-section {
        padding: 95px 0;
    }

    .why-heading {
        margin-bottom: 42px;
    }

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