.komitmen {
    background-color: #ffffff;
    padding: 120px 30px;
}

.komitmen-container {
    max-width: 1140px;
    margin: 0 auto;
}

.komitmen-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b132b;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.komitmen-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, #d4a537, #e8c368);
}

.komitmen-banner {
    width: 100%;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 56px;
    position: relative;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px rgba(11, 19, 43, 0.1);
}

.komitmen-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.komitmen-banner:hover .komitmen-img {
    transform: scale(1.03);
}

.komitmen-subtitle {
    font-size: 21px;
    font-weight: 600;
    color: #0b132b;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 820px;
    padding-left: 22px;
    position: relative;
}

.komitmen-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    background: #d4a537;
    border-radius: 4px;
}

.komitmen-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 18px;
}

.komitmen-item {
    position: relative;
    font-size: 15.5px;
    font-weight: 500;
    color: #475569;
    line-height: 1.75;
    padding: 20px 22px 20px 62px;
    background-color: #fbf9f4;
    border: 1px solid #f1efe8;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.komitmen-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(11, 19, 43, 0.08);
    border-color: rgba(212, 165, 55, 0.35);
}

.komitmen-item::before {
    content: '\2713';
    position: absolute;
    left: 20px;
    top: 18px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 8px;
    background: rgba(212, 165, 55, 0.14);
    color: #b88e2c;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 992px) {
    .komitmen-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .komitmen {
        padding: 80px 20px;
    }

    .komitmen-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .komitmen-banner {
        height: 260px;
        margin-bottom: 40px;
        border-radius: 16px;
    }

    .komitmen-subtitle {
        font-size: 17px;
        margin-bottom: 26px;
    }

    .komitmen-item {
        font-size: 14px;
        padding: 16px 18px 16px 54px;
    }

    .komitmen-item::before {
        left: 16px;
        top: 15px;
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 11px;
    }
}
