.why-section {
    position: relative;
    isolation: isolate;
    padding: 140px 0;
    overflow: clip;
    background: var(--background);
}

.why-section > .container {
    position: relative;
    z-index: 1;
}

.why-header {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.why-header h2 {
    margin: 20px 0 25px;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.06em;
}

.why-header p {
    max-width: 720px;
    margin: auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
}

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

.why-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        rgba(15,27,46,.90),
        rgba(8,17,31,.95)
    );
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-bright);
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.why-number {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.why-card h3 {
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 1.7rem;
    letter-spacing: -.03em;
}

.why-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.why-footer {
    margin-top: 90px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.why-footer h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem,4vw,3.2rem);
    letter-spacing: -.05em;
}

@media (max-width:991px){

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

}

@media (max-width:767px){

    .why-section {
        padding: 105px 0 145px;
    }

    .why-card{
        padding:26px;
    }

}
