.why-choose {
    padding: 100px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #061b32 0%,
            #082544 55%,
            #103b65 100%
        );
}

.why-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.5fr;
    gap: 70px;
    align-items: center;
}

.why-intro {
    max-width: 480px;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #f5b82e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.why-intro h2 {
    margin-bottom: 24px;
    font-size: 44px;
    line-height: 1.25;
}

.why-intro p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.8;
}

.why-button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 28px;
    align-items: center;
    justify-content: center;
    color: #082544;
    background: #f5b82e;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.why-button:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.why-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.why-icon {
    flex: 0 0 50px;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    color: #082544;
    background: #f5b82e;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
}

.why-card h3 {
    margin-bottom: 9px;
    font-size: 20px;
    line-height: 1.35;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1050px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-intro {
        max-width: 760px;
    }
}

@media (max-width: 700px) {
    .why-choose {
        padding: 70px 0;
    }

    .why-intro h2 {
        font-size: 34px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}