﻿/* =========================================================
   FAQ HERO
========================================================= */

.sx-inner-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 20px 90px;
    background: linear-gradient( 135deg, #07152b 0%, #16395f 100% );
    text-align: center;
}

    .sx-inner-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('/images/hex-pattern.png');
        background-size: cover;
        opacity: 0.08;
        pointer-events: none;
    }

    .sx-inner-hero .container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
    }

.sx-hero-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.sx-inner-hero h1 {
    max-width: 1100px;
    margin: 0 auto 24px;
    font-size: 72px;
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -3px;
    color: #ffffff;
}

.sx-inner-hero p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.9;
    color: rgba(255,255,255,0.95);
}

/* =========================================================
   FAQ SECTION
========================================================= */

.sx-faq-section {
    padding: 90px 20px 110px;
    background: #f4f8fc;
}

    .sx-faq-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }

/* =========================================================
   CATEGORY
========================================================= */

.sx-faq-category {
    margin-bottom: 70px;
}

    .sx-faq-category h2 {
        margin-bottom: 30px;
        font-size: 42px;
        line-height: 1.2;
        color: #163c8f;
        font-weight: 900;
        letter-spacing: -1px;
    }

/* =========================================================
   FAQ ITEM
========================================================= */

.sx-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sx-faq-item {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #dbe4f0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
    transition: all 0.25s ease;
}

    .sx-faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    }

    .sx-faq-item summary {
        list-style: none;
        cursor: pointer;
        position: relative;
        padding: 28px 80px 28px 34px;
        font-size: 24px;
        font-weight: 800;
        line-height: 1.5;
        color: #111827;
    }

        .sx-faq-item summary::-webkit-details-marker {
            display: none;
        }

        .sx-faq-item summary::after {
            content: "+";
            position: absolute;
            top: 50%;
            right: 32px;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #eef3ff;
            color: #163c8f;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 700;
            transition: all 0.25s ease;
        }

    .sx-faq-item[open] summary::after {
        content: "−";
        background: #163c8f;
        color: #ffffff;
    }

    .sx-faq-item p {
        margin: 0;
        padding: 0 34px 34px;
        font-size: 18px;
        line-height: 2;
        color: #4b5563;
    }

/* =========================================================
   CONTACT BOX
========================================================= */

.sx-contact-box {
    padding: 55px;
    border-radius: 32px;
    background: linear-gradient(135deg,#163c8f 0%,#295ad1 100%);
    text-align: center;
    box-shadow: 0 25px 60px rgba(22,60,143,0.18);
}

    .sx-contact-box h3 {
        margin-bottom: 18px;
        font-size: 42px;
        color: #ffffff;
        font-weight: 900;
    }

    .sx-contact-box p {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 18px;
        line-height: 1.9;
        color: rgba(255,255,255,0.92);
    }

.sx-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    border-radius: 999px;
    background: #ffffff;
    color: #163c8f;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    transition: all 0.25s ease;
}

    .sx-contact-btn:hover {
        transform: translateY(-2px);
        background: #eef3ff;
    }

    /* =========================================================
   ACCESSIBILITY
========================================================= */

    .sx-faq-item summary:focus-visible,
    .sx-contact-btn:focus-visible {
        outline: 3px solid #111827;
        outline-offset: 4px;
    }

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .sx-inner-hero h1 {
        font-size: 52px;
    }

    .sx-inner-hero p {
        font-size: 18px;
    }

    .sx-faq-category h2 {
        font-size: 34px;
    }

    .sx-faq-item summary {
        font-size: 21px;
    }

    .sx-contact-box {
        padding: 40px 28px;
    }

        .sx-contact-box h3 {
            font-size: 34px;
        }
}

@media (max-width: 768px) {

    .sx-inner-hero {
        padding: 80px 16px 70px;
    }

        .sx-inner-hero h1 {
            font-size: 38px;
            line-height: 1.12;
            letter-spacing: -1px;
        }

        .sx-inner-hero p {
            font-size: 16px;
            line-height: 1.8;
        }

    .sx-faq-section {
        padding: 60px 14px 80px;
    }

    .sx-faq-category {
        margin-bottom: 50px;
    }

        .sx-faq-category h2 {
            font-size: 28px;
            margin-bottom: 22px;
        }

    .sx-faq-item {
        border-radius: 20px;
    }

        .sx-faq-item summary {
            padding: 22px 70px 22px 22px;
            font-size: 18px;
            line-height: 1.6;
        }

            .sx-faq-item summary::after {
                right: 18px;
                width: 36px;
                height: 36px;
                font-size: 22px;
            }

        .sx-faq-item p {
            padding: 0 22px 24px;
            font-size: 15px;
            line-height: 1.9;
        }

    .sx-contact-box {
        padding: 34px 22px;
        border-radius: 24px;
    }

        .sx-contact-box h3 {
            font-size: 28px;
        }

        .sx-contact-box p {
            font-size: 15px;
        }

    .sx-contact-btn {
        width: 100%;
        min-height: 54px;
        font-size: 15px;
    }
}

/* =========================================================
   UMC HERO
========================================================= */

.sx-umc-hero {
    background: linear-gradient( 135deg, #07152b 0%, #16395f 100% );
}