.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--secondary);
    margin-bottom: 20px;
}

.why-content h2 span {
    color: var(--primary);
}

.why-content>p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.why-feature h4 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.why-feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

.why-image-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-image-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    position: relative;
}

.why-image-card p {
    opacity: 0.9;
    margin-bottom: 24px;
    position: relative;
}

.why-visual ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
}

.why-visual ul li {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    width: max-content;
    max-width: 100%;
    position: relative;
}

.why-visual ul li:before {
    width: 18px;
    height: 18px;
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: '\f00c';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    color: white;
    font-size: 14px;
    line-height: 1;
}

@media only screen and (min-width: 768px) {}

@media only screen and (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}