.warranty-section {
    background-color: var(--color-white);
    padding: 64px 120px;
}

.warranty-inner {
    position: relative;
    height: 364px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 88px 64px;
    box-sizing: border-box;
}

.warranty-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.warranty-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.warranty-content {
    position: relative;
    display: flex;
    gap: 64px;
    align-items: flex-start;
    width: 100%;
}

.warranty-title {
    font-family: var(--font-neo);
    font-size: 60px;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -2px;
    color: var(--color-white);
    white-space: nowrap;
    flex-shrink: 0;
}

.warranty-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.warranty-desc {
    font-family: var(--font-inter);
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    color: var(--color-white);
}

.warranty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 315px;
    height: 60px;
    background-color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-neo);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-black);
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 1170px) {
    .warranty-section {
        padding: 0;
    }

    .warranty-inner {
        height: auto;
        padding: 44px 24px;
        max-width: 100%;
    }

    .warranty-content {
        flex-direction: column;
        gap: 24px;
    }

    .warranty-title {
        font-size: 36px;
        line-height: 42px;
        letter-spacing: -1px;
        white-space: normal;
    }

    .warranty-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .warranty-btn {
        width: 100%;
        height: 44px;
        font-size: 16px;
    }
}
