/**
 * Warranty Section Styles
 * 숨카(SUMCAR) 프로젝트 - 100% 무상 A/S 보증 섹션
 */

/* ========================================
   Warranty Section
   ======================================== */
.warranty {
    position: relative;
    width: 100%;
    background: #000000;
    padding: 120px 24px;
    padding: var(--space-120, 120px) var(--space-24, 24px);
}

.warranty__container {
    position: relative;
    max-width: 1200px;
    max-width: var(--container-max-width, 1200px);
    width: 100%;
    margin: 0 auto;
}

/* ========================================
   Header
   ======================================== */
.warranty__header {
    text-align: center;
    margin-bottom: 80px;
    margin-bottom: var(--space-80, 80px);
}

.warranty__title-line1 {
    font-size: 28px;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.warranty__title-line2 {
    font-size: 42px;
    font-weight: 700;
    font-weight: var(--fw-bold, 700);
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
}

.warranty__highlight {
    color: #00BFEF;
}

/* ========================================
   Conversation Area
   ======================================== */
.warranty__conversation {
    display: flex;
    flex-direction: column;
    gap: 40px;
    gap: var(--space-40, 40px);
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   Conversation Image
   ======================================== */
.warranty__conversation-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.warranty__conversation-image img {
    max-width: 120%;
    height: auto;
    display: block;
}

/* ========================================
   Guarantee (중앙)
   ======================================== */
.warranty__guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    gap: var(--space-16, 16px);
    /* margin-top: 80px; */
}

.warranty__guarantee-percent {
    font-size: 144px;
    font-weight: 700;
    font-weight: var(--fw-bold, 700);
    color: #00BFEF;
    line-height: 1;
}

.warranty__guarantee-text {
    font-size: 144px;
    font-weight: 700;
    font-weight: var(--fw-bold, 700);
    color: #00BFEF;
    line-height: 1;
}

.warranty__insurance-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    gap: var(--space-12, 12px);
}

.warranty__insurance {
    background: #FFD700;
    padding: 12px 24px;
    padding: var(--space-12, 12px) var(--space-24, 24px);
    border-radius: 8px;
    border-radius: var(--radius-md, 8px);
    display: inline-flex;
    align-items: center;
}

.warranty__insurance-text {
    font-size: 36px;
    font-weight: 700;
    font-weight: var(--fw-bold, 700);
    color: #0E0E0E;
}

.warranty__insurance-company {
    font-size: 36px;
    font-weight: 700;
    font-weight: var(--fw-bold, 700);
    color: #FFFFFF;
}

/* ========================================
   Tablet Responsive
   ======================================== */
@media (max-width: 991px) {
    .warranty {
        padding: 80px 32px;
        padding: var(--space-80, 80px) var(--space-32, 32px);
    }

    .warranty__header {
        margin-bottom: 60px;
        margin-bottom: var(--space-60, 60px);
    }

    .warranty__title-line1 {
        font-size: 24px;
    }

    .warranty__title-line2 {
        font-size: 36px;
    }

    .warranty__conversation {
        gap: 24px;
        gap: var(--space-24, 24px);
    }

    .warranty__conversation-image {
        margin-bottom: 24px;
    }

    .warranty__guarantee-percent {
        font-size: 144px;
    }

    .warranty__guarantee-text {
        font-size: 72px;
    }

    .warranty__insurance-text,
    .warranty__insurance-company {
        font-size: 16px;
        font-size: var(--fs-h6, 16px);
    }
}

/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 767px) {
    .warranty {
        padding: 60px 16px;
        padding: var(--space-60, 60px) var(--space-16, 16px);
    }

    .warranty__header {
        margin-bottom: 48px;
        margin-bottom: var(--space-48, 48px);
    }

    .warranty__title-line1 {
        font-size: 18px;
    }

    .warranty__title-line2 {
        font-size: 28px;
    }

    .warranty__conversation {
        gap: 32px;
        gap: var(--space-32, 32px);
    }

    .warranty__conversation-image {
        margin-bottom: 16px;
    }

    .warranty__guarantee-percent {
        font-size: 112px;
    }

    .warranty__guarantee-text {
        font-size: 56px;
    }

    .warranty__insurance {
        padding: 10px 20px;
        padding: var(--space-10, 10px) var(--space-20, 20px);
    }

    .warranty__insurance-text,
    .warranty__insurance-company {
        font-size: 14px;
        font-size: var(--fs-small, 14px);
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes warrantyFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.warranty__header {
    animation: warrantyFadeInUp 600ms ease-out;
    animation-fill-mode: both;
}

.warranty__conversation-image {
    animation: warrantyFadeInUp 600ms ease-out 200ms;
    animation-fill-mode: both;
}

.warranty__guarantee {
    animation: warrantyFadeInUp 600ms ease-out 300ms;
    animation-fill-mode: both;
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .warranty__header,
    .warranty__conversation-image,
    .warranty__guarantee {
        animation: none;
    }
}
