/* ========================================
   Homepage — Why It Matters (dark CTA card)
   ======================================== */

.hp-why {
    padding: 48px 0;
}

.hp-why__card {
    background: var(--hp-dark);
    border-radius: var(--hp-radius-section);
    padding: 72px 24px;
    overflow: hidden;
    text-align: center;
    color: var(--hp-white);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Particles network canvas */
#why-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-why__title,
.hp-why__desc,
.hp-why__card .hp-btn {
    z-index: 1;
}

/* Subtle radial decorative element */
.hp-why__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(130, 255, 158, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hp-why__title {
    font-family: 'FbMetali', 'Almoni Tzar', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 40px;
    color: var(--hp-white);
    position: relative;
}

.hp-why__desc {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: var(--hp-white);
    max-width: 303px;
    margin: 0 auto;
    position: relative;
}

.hp-why__card .hp-btn {
    position: relative;
}

@media (min-width: 1300px) {
    .hp-why__card {
        padding: 72px 48px;
    }

    .hp-why__desc {
        max-width: 500px;
    }
}
