    /* =====================================================
    ROOT
    ===================================================== */

    :root{

        --primary:#f97316;
        --primary-dark:#ea580c;

        --dark:#111827;
        --gray:#6b7280;

        --bg:#f8fafc;
        --card:#ffffff;

        --border:#e5e7eb;

    }

    /* =====================================================
    BODY
    ===================================================== */

    body{

        background:var(--bg);

        font-family:
        Inter,
        system-ui,
        sans-serif;

        color:var(--dark);
    }

    /* =====================================================
    SECTION
    ===================================================== */

    .section-space{
        padding:90px 0;
    }

    /* =====================================================
    HERO
    ===================================================== */

    .contact-hero{

        background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937
        );

        border-radius:32px;

        padding:90px;

        overflow:hidden;

        position:relative;

        color:#fff;
    }

    .contact-hero::before{

        content:"";

        position:absolute;

        width:700px;
        height:700px;

        background:
        radial-gradient(
            rgba(249,115,22,.2),
            transparent 70%
        );

        right:-200px;
        top:-250px;
    }

    .hero-badge{

        display:inline-block;

        padding:
        10px 16px;

        border-radius:999px;

        background:
        rgba(255,255,255,.08);

        margin-bottom:24px;

        font-size:14px;
        font-weight:700;
    }

    .hero-title{

        font-size:64px;
        font-weight:900;

        margin-bottom:24px;
    }

    .hero-title span{
        color:var(--primary);
    }

    .hero-desc{

        max-width:700px;

        line-height:1.9;

        color:#d1d5db;

        font-size:18px;
    }

    /* =====================================================
    CONTACT GRID
    ===================================================== */

    .contact-grid{

        display:grid;

        grid-template-columns:
        repeat(4,1fr);

        gap:24px;

        margin-top:-60px;

        position:relative;
        z-index:10;
    }

    /* =====================================================
    CARD
    ===================================================== */

    .contact-card{

        background:#fff;

        border-radius:28px;

        padding:34px;

        border:1px solid var(--border);

        transition:.35s ease;

        box-shadow:
        0 10px 30px rgba(0,0,0,.04);
    }

    .contact-card:hover{

        transform:
        translateY(-8px);

        box-shadow:
        0 20px 40px rgba(0,0,0,.08);

        border-color:
        rgba(249,115,22,.3);
    }

    .contact-icon{

        width:72px;
        height:72px;

        border-radius:22px;

        background:#fff7ed;

        display:flex;

        align-items:center;
        justify-content:center;

        color:var(--primary);

        font-size:30px;

        margin-bottom:22px;
    }

    .contact-title{

        font-size:22px;
        font-weight:800;

        margin-bottom:10px;
    }

    .contact-text{

        color:var(--gray);

        line-height:1.8;
    }

    /* =====================================================
    FORM
    ===================================================== */

    .contact-form{

        background:#fff;

        border-radius:32px;

        padding:50px;

        border:1px solid var(--border);

        box-shadow:
        0 10px 30px rgba(0,0,0,.04);
    }

    .section-title{

        font-size:35px;
        font-weight:900;

        margin-bottom:18px;
    }

    .section-subtitle{

        color:var(--gray);

        margin-bottom:40px;
    }

    /* =====================================================
    INPUT
    ===================================================== */

    .form-control{

        height:58px;

        border-radius:16px;

        border:1px solid #e5e7eb;

        background:#f9fafb;

        padding-left:18px;
    }

    textarea.form-control{

        height:180px;

        padding-top:18px;
    }

    .form-control:focus{

        border-color:var(--primary);

        box-shadow:
        0 0 0 4px rgba(249,115,22,.12);
    }

    /* =====================================================
    BUTTON
    ===================================================== */

    .btn-main{

        height:58px;

        border:none;

        border-radius:16px;

        background:var(--primary);

        color:#fff;

        font-weight:700;

        padding:0 34px;

        transition:.25s ease;
    }

    .btn-main:hover{

        background:var(--primary-dark);
    }

    /* =====================================================
    MAP
    ===================================================== */

    .map-wrapper{

        overflow:hidden;

        border-radius:32px;

        height:100%;

        min-height:620px;

        border:1px solid var(--border);
    }

    .map-wrapper iframe{

        width:100%;
        height:100%;

        border:none;
    }

    /* =====================================================
    FAQ
    ===================================================== */

    .accordion-item{

        border:none;

        border-radius:20px !important;

        overflow:hidden;

        margin-bottom:16px;

        border:1px solid var(--border);
    }

    .accordion-button{

        padding:24px;

        font-weight:700;
    }

    .accordion-button:not(.collapsed){

        background:#fff7ed;

        color:var(--primary);
    }


    /* =====================================================
    RESPONSIVE
    ===================================================== */

    @media(max-width:992px){

        .contact-grid{

            grid-template-columns:
            repeat(2,1fr);
        }

        .hero-title{
            font-size:44px;
        }

    }

    @media(max-width:768px){

        .contact-grid{
            grid-template-columns:1fr;
        }

        .contact-hero{

            padding:50px 32px;
        }

        .hero-title{
            font-size:34px;
        }

        .section-title{
            font-size:30px;
        }

        .contact-form{

            padding:30px;
        }

    }

    /* =====================================================
    WHY SECTION
    ===================================================== */

    .why-section{

        padding:90px 0;

        background:#f8fafc;
    }

    /* =====================================================
    TITLE
    ===================================================== */

    .why-title{

        font-size:42px;
        font-weight:900;

        color:#111827;

        margin-bottom:16px;
    }

    .why-subtitle{

        font-size:16px;

        color:#6b7280;

        max-width:700px;

        margin:auto;

        line-height:1.8;
    }

    /* =====================================================
    GRID
    ===================================================== */

    .why-grid{

        display:grid;

        grid-template-columns:
        repeat(4,1fr);

        gap:24px;
    }

    /* =====================================================
    CARD
    ===================================================== */

    .why-card{

        background:#fff;

        border-radius:28px;

        padding:34px;

        text-align:center;

        border:1px solid #e5e7eb;

        transition:.35s ease;

        position:relative;

        overflow:hidden;
    }

    .why-card::before{

        content:"";

        position:absolute;

        width:180px;
        height:180px;

        background:
        radial-gradient(
            rgba(249,115,22,.06),
            transparent 70%
        );

        right:-80px;
        top:-80px;
    }

    .why-card:hover{

        transform:
        translateY(-8px);

        box-shadow:
        0 20px 40px rgba(0,0,0,.08);

        border-color:
        rgba(249,115,22,.3);
    }

    /* =====================================================
    ICON
    ===================================================== */

    .why-icon{

        width:82px;
        height:82px;

        border-radius:24px;

        background:#fff7ed;

        color:#f97316;

        display:flex;

        align-items:center;
        justify-content:center;

        font-size:34px;

        margin:
        0 auto 26px;
    }

    /* =====================================================
    TEXT
    ===================================================== */

    .why-card-title{

        font-size:22px;
        font-weight:800;

        color:#111827;

        margin-bottom:14px;
    }

    .why-card-desc{

        color:#6b7280;

        line-height:1.8;

        font-size:15px;
    }

    /* =====================================================
    RESPONSIVE
    ===================================================== */

    @media(max-width:992px){

        .why-grid{

            grid-template-columns:
            repeat(2,1fr);
        }

    }

    @media(max-width:768px){

        .why-title{
            font-size:32px;
        }

        .why-grid{

            grid-template-columns:1fr;

            gap:18px;
        }

        .why-card{

            padding:28px;
        }

    }

    /* =====================================================
    ABOUT COMPANY
    ===================================================== */

    .about-company-section{

        padding:100px 0;

        background:#ffffff;
    }

    /* =====================================================
    WRAPPER
    ===================================================== */

    .about-company-wrapper{

        display:grid;

        grid-template-columns:
        1.1fr .9fr;

        gap:60px;

        align-items:center;
    }

    /* =====================================================
    BADGE
    ===================================================== */

    .about-badge{

        display:inline-flex;

        align-items:center;

        height:42px;

        padding:
        0 18px;

        border-radius:999px;

        background:#fff7ed;

        color:#f97316;

        font-size:13px;
        font-weight:800;

        letter-spacing:.5px;

        margin-bottom:24px;
    }

    /* =====================================================
    TITLE
    ===================================================== */

    .about-title{

        font-size:45px;
        font-weight:900;

        line-height:1.2;

        color:#111827;

        margin-bottom:30px;
    }

    /* =====================================================
    DESCRIPTION
    ===================================================== */

    .about-description{

        color:#6b7280;

        line-height:2;

        font-size:16px;

        margin-bottom:24px;
    }

    .about-description strong{

        color:#111827;
    }

    /* =====================================================
    FEATURES
    ===================================================== */

    .about-features{

        display:grid;

        grid-template-columns:
        repeat(2,1fr);

        gap:18px;

        margin-top:40px;
    }

    .about-feature-item{

        display:flex;

        align-items:center;

        gap:14px;

        background:#f8fafc;

        border-radius:18px;

        padding:18px 20px;

        border:1px solid #e5e7eb;
    }

    .about-feature-item i{

        color:#f97316;

        font-size:18px;
    }

    .about-feature-item span{

        font-weight:700;

        color:#111827;

        font-size:15px;
    }

    /* =====================================================
    IMAGE
    ===================================================== */

    .about-company-image{

        position:relative;
    }

    .about-company-image img{

        width:100%;

        border-radius:36px;

        object-fit:cover;

        box-shadow:
        0 30px 60px rgba(0,0,0,.08);
    }

    /* =====================================================
    IMAGE GLOW
    ===================================================== */

    .about-company-image::before{

        content:"";

        position:absolute;

        width:300px;
        height:300px;

        background:
        radial-gradient(
            rgba(249,115,22,.18),
            transparent 70%
        );

        top:-80px;
        right:-80px;

        z-index:-1;
    }

    /* =====================================================
    RESPONSIVE
    ===================================================== */

    @media(max-width:992px){

        .about-company-wrapper{

            grid-template-columns:1fr;

            gap:40px;
        }

        .about-title{
            font-size:42px;
        }

    }

    @media(max-width:768px){

        .about-company-section{

            padding:70px 0;
        }

        .about-title{

            font-size:34px;
        }

        .about-features{

            grid-template-columns:1fr;
        }

        .about-description{

            line-height:1.9;
        }

    }

    /* =====================================================
    ORDER CHANNEL SECTION
    ===================================================== */

    .order-channel-section{

        padding:100px 0;

        background:#f8fafc;
    }

    /* =====================================================
    GRID
    ===================================================== */

    .order-channel-grid{

        display:grid;

        grid-template-columns:
        repeat(3,1fr);

        gap:28px;
    }

    /* =====================================================
    CARD
    ===================================================== */

    .order-channel-card{

        background:#fff;

        border-radius:32px;

        padding:40px;

        border:1px solid #e5e7eb;

        position:relative;

        overflow:hidden;

        transition:.35s ease;

        box-shadow:
        0 10px 30px rgba(0,0,0,.04);
    }

    .order-channel-card:hover{

        transform:
        translateY(-10px);

        box-shadow:
        0 25px 50px rgba(0,0,0,.08);

        border-color:
        rgba(249,115,22,.3);
    }

    /* =====================================================
    FEATURED
    ===================================================== */

    .order-channel-card.featured{

        border:
        2px solid #06c755;
    }

    .recommend-badge{

        position:absolute;

        top:24px;
        right:24px;

        background:#06c755;

        color:#fff;

        padding:
        8px 14px;

        border-radius:999px;

        font-size:13px;
        font-weight:800;
    }

    /* =====================================================
    ICON
    ===================================================== */

    .order-channel-icon{

        width:84px;
        height:84px;

        border-radius:26px;

        background:#fff7ed;

        color:#f97316;

        display:flex;

        align-items:center;
        justify-content:center;

        font-size:36px;

        margin-bottom:28px;
    }

    .order-channel-icon.line{

        background:
        rgba(6,199,85,.1);

        color:#06c755;
    }

    /* =====================================================
    NUMBER
    ===================================================== */

    .order-channel-number{

        font-size:25px;
        font-weight:800;

        color:#f97316;

        margin-bottom:12px;
    }

    /* =====================================================
    TITLE
    ===================================================== */

    .order-channel-title{

        font-size:28px;
        font-weight:900;

        color:#111827;

        margin-bottom:18px;
    }

    /* =====================================================
    DESC
    ===================================================== */

    .order-channel-desc{

        color:#6b7280;

        line-height:1.9;

        margin-bottom:26px;
    }

    /* =====================================================
    LINK
    ===================================================== */

    .order-channel-link{

        display:inline-flex;

        align-items:center;

        height:52px;

        padding:
        0 22px;

        border-radius:16px;

        background:#fff7ed;

        color:#f97316;

        font-weight:800;

        text-decoration:none;
    }

    /* =====================================================
    LINE ID
    ===================================================== */

    .line-id{

        display:inline-flex;

        align-items:center;

        justify-content:center;

        height:56px;

        padding:
        0 24px;

        border-radius:18px;

        background:#06c755;

        color:#fff;

        font-size:22px;
        font-weight:900;

        margin-bottom:28px;
    }

    /* =====================================================
    INFO BOX
    ===================================================== */

    .line-info-box{

        background:#f8fafc;

        border-radius:22px;

        padding:24px;

        border:1px solid #e5e7eb;
    }

    .line-info-title{

        font-size:16px;
        font-weight:800;

        margin-bottom:18px;
    }

    .line-info-list{

        margin:0;
        padding-left:18px;
    }

    .line-info-list li{

        margin-bottom:10px;

        color:#6b7280;

        line-height:1.8;
    }

    /* =====================================================
    ORDER CONFIRM
    ===================================================== */

    .order-confirm-section{

        padding-bottom:100px;
    }

    /* =====================================================
    WRAPPER
    ===================================================== */

    .order-confirm-wrapper{

        background:#111827;

        border-radius:40px;

        padding:70px;

        color:#fff;

        display:grid;

        grid-template-columns:
        .9fr 1.1fr;

        gap:60px;

        position:relative;

        overflow:hidden;
    }

    .order-confirm-wrapper::before{

        content:"";

        position:absolute;

        width:600px;
        height:600px;

        background:
        radial-gradient(
            rgba(249,115,22,.18),
            transparent 70%
        );

        right:-180px;
        top:-220px;
    }

    /* =====================================================
    BADGE
    ===================================================== */

    .confirm-badge{

        display:inline-flex;

        align-items:center;

        height:42px;

        padding:
        0 18px;

        border-radius:999px;

        background:
        rgba(255,255,255,.08);

        margin-bottom:26px;

        font-size:13px;
        font-weight:800;
    }

    /* =====================================================
    TITLE
    ===================================================== */

    .confirm-title{

        font-size:48px;
        font-weight:900;
        color:#d1d5db;
        line-height:1.2;

        margin-bottom:24px;
    }

    /* =====================================================
    DESC
    ===================================================== */

    .confirm-desc{

        color:#d1d5db;

        line-height:1.9;
    }

    /* =====================================================
    STEP ITEM
    ===================================================== */

    .confirm-step-item{

        display:flex;

        gap:24px;

        background:
        rgba(255,255,255,.04);

        border-radius:26px;

        padding:28px;

        margin-bottom:24px;

        border:1px solid
        rgba(255,255,255,.08);
    }

    /* =====================================================
    STEP NUMBER
    ===================================================== */

    .confirm-step-number{

        width:72px;
        height:72px;

        border-radius:22px;

        background:#fff7ed;

        color:#f97316;

        display:flex;

        align-items:center;
        justify-content:center;

        font-size:24px;
        font-weight:900;

        flex-shrink:0;
    }

    /* =====================================================
    STEP TITLE
    ===================================================== */

    .confirm-step-title{

        font-size:24px;
        font-weight:800;
        color:#d1d5db;

        margin-bottom:14px;
    }

    /* =====================================================
    STEP DESC
    ===================================================== */

    .confirm-step-desc{

        color:#d1d5db;

        line-height:1.9;

        margin:0;
    }

    /* =====================================================
    RESPONSIVE
    ===================================================== */

    @media(max-width:992px){

        .order-channel-grid{

            grid-template-columns:1fr;
        }

        .order-confirm-wrapper{

            grid-template-columns:1fr;

            gap:40px;
        }

    }

    @media(max-width:768px){

        .order-channel-section{

            padding:70px 0;
        }

        .order-channel-card{

            padding:30px;
        }

        .confirm-title{

            font-size:34px;
        }

        .order-confirm-wrapper{

            padding:40px 28px;
        }

        .confirm-step-item{

            flex-direction:column;
        }

    }    

/* =====================================================
ROOT
===================================================== */

:root{

    --primary:#f97316;
    --primary-dark:#ea580c;

    --dark:#111827;

    --gray:#6b7280;

    --bg:#f8fafc;

    --border:#e5e7eb;
}

/* =====================================================
BODY
===================================================== */

body{

    background:var(--bg);

    font-family:
    Inter,
    sans-serif;

    color:var(--dark);
}

/* =====================================================
SECTION
===================================================== */

.section-space{

    padding:100px 0;
}

/* =====================================================
HERO
===================================================== */

.hero-section{

    background:
    linear-gradient(
        135deg,
        #111827,
        #1f2937
    );

    border-radius:36px;

    padding:90px;

    color:#fff;

    overflow:hidden;

    position:relative;
}

.hero-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(
        rgba(249,115,22,.18),
        transparent 70%
    );

    right:-200px;
    top:-250px;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    height:42px;

    padding:0 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    margin-bottom:26px;

    font-size:13px;
    font-weight:800;
}

.hero-title{

    font-size:64px;
    font-weight:900;

    line-height:1.1;

    margin-bottom:24px;
}

.hero-title span{

    color:var(--primary);
}

.hero-desc{

    max-width:720px;

    line-height:1.9;

    color:#d1d5db;

    font-size:18px;
}

.btn-main{

    height:58px;

    border:none;

    border-radius:16px;

    background:var(--primary);

    color:#fff;

    font-weight:700;

    padding:0 34px;

    margin-top:32px;

    transition:.3s ease;
}

.btn-main:hover{

    background:var(--primary-dark);
}

/* =====================================================
TITLE
===================================================== */

.section-title{

    font-size:46px;
    font-weight:900;

    margin-bottom:18px;

    text-align:center;
}

.section-subtitle{

    max-width:760px;

    margin:auto auto 70px;

    text-align:center;

    color:var(--gray);

    line-height:1.9;
}

/* =====================================================
PAYMENT GRID
===================================================== */

.payment-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:28px;
}

/* =====================================================
CARD
===================================================== */

.payment-card{

    background:#fff;

    border-radius:32px;

    padding:40px;

    border:1px solid var(--border);

    transition:.35s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);
}

.payment-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.08);

    border-color:
    rgba(249,115,22,.3);
}

.payment-icon{

    width:82px;
    height:82px;

    border-radius:24px;

    background:#fff7ed;

    color:var(--primary);

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:34px;

    margin-bottom:28px;
}

.payment-title{

    font-size:28px;
    font-weight:900;

    margin-bottom:18px;
}

.payment-desc{

    color:var(--gray);

    line-height:1.9;
}

/* =====================================================
BANK SECTION
===================================================== */

.bank-section{

    padding-bottom:100px;
}

.bank-wrapper{

    background:#111827;

    border-radius:40px;

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;
}

.bank-wrapper::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:
    radial-gradient(
        rgba(249,115,22,.18),
        transparent 70%
    );

    right:-180px;
    top:-220px;
}

.bank-badge{

    display:inline-flex;

    align-items:center;

    height:42px;

    padding:0 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    margin-bottom:28px;

    font-size:13px;
    font-weight:800;
}

.bank-title{

    font-size:52px;
    font-weight:900;
	color:#d1d5db;
	
    line-height:1.2;

    margin-bottom:24px;
}

.bank-desc{

    color:#d1d5db;

    line-height:1.9;

    max-width:760px;
}

/* =====================================================
BANK ITEM
===================================================== */

.bank-list{

    margin-top:50px;
}

.bank-item{

    display:flex;

    align-items:center;

    gap:24px;

    background:
    rgba(255,255,255,.04);

    border-radius:28px;

    padding:28px;

    border:1px solid
    rgba(255,255,255,.08);
}

.bank-logo{

    width:90px;
    height:90px;

    border-radius:24px;

    background:#fff;

    color:#111827;

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:900;

    font-size:26px;
}

.bank-name{

    font-size:24px;
    font-weight:800;

    margin-bottom:10px;
}

.bank-number{

    color:#d1d5db;

    font-size:18px;
}

/* =====================================================
TIMELINE
===================================================== */

.timeline{

    position:relative;
}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;
    bottom:0;

    width:4px;

    background:
    linear-gradient(
        to bottom,
        var(--primary),
        transparent
    );

    transform:translateX(-50%);
}

.step-item{

    position:relative;

    margin-bottom:80px;
}

.step-card{

    background:#fff;

    border-radius:32px;

    padding:40px;

    border:1px solid var(--border);

    transition:.35s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);
}

.step-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.08);

    border-color:
    rgba(249,115,22,.3);
}

.step-number{

    width:82px;
    height:82px;

    border-radius:24px;

    background:#fff7ed;

    color:var(--primary);

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:900;

    margin-bottom:26px;
}

.step-title{

    font-size:28px;
    font-weight:900;

    margin-bottom:18px;
}

.step-desc{

    color:var(--gray);

    line-height:1.9;
}

/* =====================================================
INVOICE GRID
===================================================== */

.invoice-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:28px;
}

.invoice-card{

    background:#fff;

    border-radius:32px;

    padding:40px;

    border:1px solid var(--border);

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);

    transition:.35s ease;
}

.invoice-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.08);
}

.invoice-icon{

    width:82px;
    height:82px;

    border-radius:24px;

    background:#fff7ed;

    color:var(--primary);

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:34px;

    margin-bottom:28px;
}

.invoice-title{

    font-size:28px;
    font-weight:900;

    margin-bottom:24px;
}

.invoice-list{

    margin:0;
    padding-left:20px;
}

.invoice-list li{

    margin-bottom:14px;

    color:var(--gray);

    line-height:1.8;
}

/* =====================================================
FAQ
===================================================== */

.accordion-item{

    border:none;

    border-radius:24px !important;

    overflow:hidden;

    margin-bottom:18px;

    border:1px solid var(--border);
}

.accordion-button{

    padding:26px;

    font-weight:700;
}

.accordion-button:not(.collapsed){

    background:#fff7ed;

    color:var(--primary);
}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:992px){

    .payment-grid{

        grid-template-columns:1fr;
    }

    .invoice-grid{

        grid-template-columns:1fr;
    }

    .timeline::before{

        left:40px;
    }

}

@media(max-width:768px){

    .hero-section{

        padding:50px 32px;
    }

    .hero-title{

        font-size:36px;
    }

    .section-title{

        font-size:32px;
    }

    .bank-title{

        font-size:36px;
    }

    .bank-wrapper{

        padding:40px 28px;
    }

    .timeline::before{

        display:none;
    }

    .step-item{

        margin-bottom:30px;
    }

}    