.why-choose {
    background: #fcfdfe;
    padding: 100px 5%;
    text-align: center;
}

.why-choose h2 {
    color: #0b1220;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.why-choose p {
    color: #5b6770;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.why-item {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f3f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: #0078B8;
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left;
}

.why-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 120, 184, 0.1);
    border-color: #e0e9f0;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item h3 {
    color: #0078B8;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
}

.why-item p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 60px 20px;
    }
    .why-choose h2 {
        font-size: 2.1rem;
    }
    .why-item {
        padding: 35px 25px;
    }
}