/* ==========================================================
   SMI TERMINAL MEMBERSHIP
========================================================== */

:root{

    --zed-black:#05070D;
    --card:#0D111C;
    --powder:#18D8FF;
    --white:#FFFFFF;
    --muted:#A9B4C7;

}


/* ==========================================================
   BODY
========================================================== */

body{

    margin:0;
    padding:0;

    background:var(--zed-black);

    color:var(--white);

    font-family:
    Inter,
    "Segoe UI",
    sans-serif;

}



/* ==========================================================
   HERO
========================================================== */

#membershipHero{

    position:relative;

    min-height:30vh;

    padding-top:40px;

    display:flex;

    align-items:center;

    padding:80px 0 30px;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    radial-gradient(circle at top,
    rgba(24,216,255,.15),
    transparent 60%),
    linear-gradient(
    180deg,
    #05070D,
    #090D18
    );

}



.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(255,255,255,.02),

    transparent

    );

}



.hero-content{

    position:relative;

    z-index:2;

    width:min(900px,90%);

}



.hero-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:999px;

    border:1px solid rgba(24,216,255,.25);

    color:var(--powder);

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:30px;

    background:rgba(24,216,255,.05);

}



.hero-content h1{

    font-size:68px;

    line-height:1.1;

    margin:0;

    font-weight:800;

}



.hero-content h1 span{

    color:var(--powder);

}



.hero-content p{

    width:min(760px,100%);

    margin:24px auto 36PX;

    color:var(--muted);

    font-size:20px;

    line-height:1.8;

}



.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}



.btn-primary{

    background:var(--powder);

    color:#05070D;

    text-decoration:none;

    padding:16px 36px;

    border-radius:14px;

    font-weight:700;

    transition:.25s;

    box-shadow:

    0 0 35px rgba(24,216,255,.18);

}



.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:

    0 0 45px rgba(24,216,255,.35);

}



.btn-secondary{

    border:1px solid rgba(24,216,255,.25);

    color:var(--powder);

    text-decoration:none;

    padding:16px 36px;

    border-radius:14px;

    transition:.25s;

}



.btn-secondary:hover{

    background:var(--powder);

    color:#05070D;

}



@media(max-width:900px){

.hero-content h1{

font-size:46px;

}

.hero-content p{

font-size:18px;

}

}

/* ==========================================================
   PRICING
==========================================================*/
#pricingSection{

    position:relative;

}

#pricingSection::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:220px;

    height:2px;

    background:#18D8FF;

    box-shadow:

    0 0 20px rgba(24,216,255,.4);

}


#pricingSection{

    padding:70px 0 120px;

    background:#05070D;

}

.container{

    width:min(1400px,92%);

    margin:auto;

}

.pricing-header{

    text-align:center;

    margin-bottom:60px;

}

.pricing-header h2{

    font-size:46px;

    margin-bottom:12px;

}

.pricing-header p{

    color:#A9B4C7;

    font-size:18px;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:28px;

}

.membership-card{

    position:relative;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.02),
        rgba(255,255,255,.01)
    );

    border:1px solid rgba(24,216,255,.12);

    border-radius:22px;

    padding:42px 30px 30px;

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    backdrop-filter:blur(14px);

}

.membership-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#18D8FF;

    opacity:.35;

}

.membership-card:hover{

    transform:
    translateY(-12px);

    border-color:#18D8FF;

    box-shadow:

        0 0 25px rgba(24,216,255,.12),

        0 20px 60px rgba(0,0,0,.45);

}

.membership-card h3{

    text-align:center;

    font-size:32px;

    font-weight:700;

    margin-top:18px;

    margin-bottom:12px;

}

.duration{

    text-align:center;

    color:#8D9CB5;

    font-size:17px;

    margin-bottom:36px;

}

.new-price{

    text-align:center;

    font-size:56px;

    font-weight:800;

    color:#18D8FF;

    letter-spacing:-1px;

    margin-bottom:38px;

}

.old-price{

    text-align:center;

    margin-top:30px;

    color:#777;

    text-decoration:line-through;

    font-size:18px;

}

.buy-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    background:#18D8FF;

    color:#05070D;

    font-size:18px;

    font-weight:700;

    transition:.25s;

}

.buy-btn:hover{

    background:white;

    transform:translateY(-2px);

}

.featured{

    border:2px solid #18D8FF;

    background:

    linear-gradient(

        180deg,

        rgba(24,216,255,.10),

        rgba(24,216,255,.03)

    );

    box-shadow:

    0 0 45px rgba(24,216,255,.18);

}

.featured:hover{

    transform:

    translateY(-12px)

    scale(1.02);

}

.popular-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:#18D8FF;

    color:#05070D;

    padding:8px 14px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

}

@media (max-width:1200px){

    .pricing-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media (max-width:900px){

    .hero-content h1{

        font-size:46px;

    }

    .hero-content p{

        font-size:18px;

    }

    .pricing-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:600px){

    .pricing-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================================
   FEATURES
==========================================================*/

#featuresSection{

    padding:110px 0;

    background:#070B14;

}

.section-title{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;

}

.section-title span{

    color:#18D8FF;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    margin:16px 0;

    font-size:48px;

    color:#FFF;

}

.section-title p{

    color:#A9B4C7;

    font-size:18px;

    line-height:1.8;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.feature-card{

    background:#0D111C;

    border:1px solid rgba(24,216,255,.12);

    border-radius:20px;

    padding:35px;

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:#18D8FF;

    box-shadow:0 0 35px rgba(24,216,255,.15);

}

.feature-icon{

    width:64px;

    height:64px;

    border-radius:16px;

    background:rgba(24,216,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:24px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:14px;

}

.feature-card p{

    color:#A9B4C7;

    line-height:1.8;

}

@media(max-width:992px){

    .feature-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .feature-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================================
   HELP VIDEOS
========================================================== */

#helpVideos{
    padding:70px 0 30px;
    background:#05070D;
}

.video-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.video-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:18px;

    background:#0D111C;

    border:1px solid rgba(24,216,255,.12);

    border-radius:18px;

    transition:.3s;

}

.video-card:hover{

    transform:translateY(-6px);

    border-color:#18D8FF;

    box-shadow:0 0 30px rgba(24,216,255,.18);

}

.video-thumbnail{

    position:relative;

    width:260px;

    min-width:260px;

    height:150px;

    border-radius:14px;

    overflow:hidden;

}

.video-thumbnail img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.play-button{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:white;

    background:rgba(0,0,0,.35);

}

.video-content{

    flex:1;

}

.video-part{

    display:inline-block;

    padding:6px 16px;

    border-radius:30px;

    border:1px solid #18D8FF;

    color:#18D8FF;

    font-size:12px;

    font-weight:700;

    margin-bottom:16px;

}

.video-content h3{

    font-size:22px;

    line-height:1.35;

    margin-bottom:14px;

}

.video-content p{

    color:#A9B4C7;

    line-height:1.7;

    margin-bottom:22px;

}

.youtube-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:10px 18px;

font-size:15px;

border-radius:12px;

background:#18D8FF;

color:#05070D;

font-weight:700;

text-decoration:none;

transition:.25s;

}

.youtube-btn:hover{

background:white;

transform:translateY(-2px);

}

@media(max-width:1100px){

.video-grid{

grid-template-columns:1fr;

}

.video-card{

    gap:28px;

    padding:22px;

    min-height:220px;

}
.video-thumbnail{

    width:340px;

    min-width:340px;

    height:190px;

}
}

/* ==========================================================
   BROKER CENTER
========================================================== */

#brokerCenter{
    padding:30px 0 20px;
    background:#070B14;
}

.broker-selector{

    display:flex;

    justify-content:center;

    margin-top:50px;

}

#brokerSelectorBtn{

    width:420px;

    height:64px;

    border:none;

    border-radius:18px;

    background:#0D111C;

    color:white;

    font-size:18px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 24px;

    cursor:pointer;

    border:1px solid rgba(24,216,255,.15);

    transition:.3s;

}

#brokerSelectorBtn:hover{

    border-color:#18D8FF;

    box-shadow:

    0 0 35px rgba(24,216,255,.18);

}

/* ==========================================================
   BROKER MODAL
========================================================== */

.broker-modal{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(8px);

    z-index:9999;

}

.broker-modal.show{

    display:flex;

}

.broker-modal-box{

    width:min(650px,92vw);

    max-height:80vh;

    overflow:auto;

    background:#0D111C;

    border:1px solid rgba(24,216,255,.15);

    border-radius:22px;

    box-shadow:0 0 60px rgba(24,216,255,.15);

}

.broker-modal-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 28px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.broker-modal-header h2{

    margin:0;

    color:#fff;

    font-size:28px;

}

#closeBrokerModal{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#111827;

    color:#fff;

    cursor:pointer;

    font-size:26px;

}

.broker-search{

    padding:24px;

}

#brokerSearch{

    width:100%;

    height:52px;

    border-radius:14px;

    border:1px solid rgba(24,216,255,.15);

    background:#05070D;

    color:#fff;

    padding:0 18px;

    font-size:16px;

}

.broker-list{

    padding:0 24px 24px;

}

.broker-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 20px;

    margin-bottom:14px;

    background:#111827;

    border-radius:14px;

    border:1px solid transparent;

}

.broker-item.active{

    cursor:pointer;

}

.broker-item.active:hover{

    border-color:#18D8FF;

}

.status-active{

    color:#16D66A;

    font-weight:700;

}

.status-coming{

    color:#8B95A7;

    font-weight:700;

}

/* ==========================================================
   GUIDE MODAL
========================================================== */

.guide-modal{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(8px);

    z-index:10000;

}

.guide-modal.show{

    display:flex;

}

.guide-modal-box{

    width:min(900px,95vw);

    height:min(85vh,850px);

    background:#0D111C;

    border:1px solid rgba(24,216,255,.18);

    border-radius:24px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    box-shadow:

    0 0 70px rgba(24,216,255,.18);

}

.guide-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 32px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.guide-header h2{

    margin:0;

    color:white;

    font-size:34px;

}

.guide-header p{

    margin-top:8px;

    color:#A9B4C7;

}

#closeGuideModal{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#111827;

    color:white;

    font-size:28px;

    cursor:pointer;

    transition:.25s;

}

#closeGuideModal:hover{

    background:#18D8FF;

    color:#05070D;

}

.guide-language-tabs{

    display:flex;

    gap:16px;

    padding:24px 32px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.guide-tab{

    height:46px;

    padding:0 26px;

    border-radius:40px;

    border:1px solid rgba(24,216,255,.30);

    background:transparent;

    color:white;

    cursor:pointer;

    transition:.25s;

}

.guide-tab.active{

    background:#18D8FF;

    color:#05070D;

    font-weight:700;

}

.guide-content{

    flex:1;

    overflow:auto;

    padding:32px;

}

.guide-placeholder{

    text-align:center;

    margin-top:120px;

}

.guide-placeholder h3{

    color:#18D8FF;

    font-size:34px;

    margin-bottom:20px;

}

.guide-placeholder p{

    color:#A9B4C7;

    font-size:18px;

}

/* ==========================================================
   GUIDE CONTENT
========================================================== */

.guide-content{

    padding:30px;

}

/* ==========================================================
   TOOLBAR
========================================================== */

.guide-toolbar{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:24px;

}

.guide-action{

    height:46px;

    padding:0 24px;

    border:none;

    border-radius:30px;

    background:#131A2B;

    color:#FFFFFF;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.guide-action:hover{

    background:#1B2740;

}

.guide-action.active{

    background:#23C9F5;

    color:#071019;

}

.guide-download{

    margin-left:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    height:46px;

    padding:0 26px;

    border-radius:30px;

    background:#23C9F5;

    color:#071019;

    font-weight:700;

    text-decoration:none;

    transition:.25s;

}

.guide-download:hover{

    transform:translateY(-2px);

}

/* ==========================================================
   PDF VIEWER
========================================================== */

.guide-viewer{

    width:100%;

    height:72vh;

    background:#FFFFFF;

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

#guidePDF{

    width:100%;

    height:100%;

    border:none;

    display:block;

}

/* ==========================================
   SAVINGS
========================================== */

.old-price{

    margin-top:18px;

    color:#8A94A6;

    font-size:22px;

    font-weight:600;

    text-decoration:line-through;

}

.new-price{

    margin-top:8px;

    font-size:50px;

    font-weight:800;

    color:#16D9FF;

    line-height:1;

}

.save-price{

    margin-top:10px;

    color:#2EEA84;

    font-size:16px;

    font-weight:700;

}

/* ==========================================
   MEMBERSHIP FEATURES
========================================== */

.membership-features{

    margin:28px 0;

    padding:0;

    list-style:none;

}

.membership-features li{

    display:flex;

    align-items:center;

    gap:10px;

    padding:10px 0;

    font-size:15px;

    color:#EAF3FF;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.membership-features li:last-child{

    border-bottom:none;

}

.membership-features li:first-child{

    color:#18D8FF;

    font-size:16px;

    font-weight:700;

}

/* ==========================================================
   PAYMENT MODAL
========================================================== */

.payment-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;

    align-items:flex-start;

    overflow-y:auto;

    padding:25px 0;

    z-index:99999;

    backdrop-filter:blur(10px);

}

.payment-modal.show{

    display:flex;

}

.payment-box{

    width:100%;
    max-width:560px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    box-shadow:0 30px 80px rgba(0,0,0,.5);

    animation:paymentPopup .25s ease;

}

@keyframes paymentPopup{

    from{

        transform:translateY(25px) scale(.96);

        opacity:0;

    }

    to{

        transform:none;

        opacity:1;

    }

}

.payment-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.payment-header h2{

    color:#fff;

    font-size:28px;

}

.payment-header button{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    font-size:24px;

    color:#fff;

    background:#ef4444;

}

.payment-plan{

    text-align:center;

    margin-bottom:30px;

}

.payment-plan h3{

    color:#cbd5e1;

    margin-bottom:10px;

}

.payment-plan h1{

    color:#00d4ff;

    font-size:42px;

}

.payment-form{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:25px;

}

.payment-form input{

    background:#1f2937;

    color:#fff;

    border:1px solid #374151;

    border-radius:12px;

    padding:10px 14px;

    font-size:14px;

    outline:none;

}

.payment-form input:focus{

    border-color:#00d4ff;

}

.payment-details{

    background:#0f172a;

    border-radius:16px;

    padding:20px;

    margin-bottom:25px;

}

.payment-details h3{

    color:#fff;

    margin-bottom:15px;

}

.payment-details p{

    color:#cbd5e1;

    margin:10px 0;

    line-height:1.6;

}

#paidBtn{

    width:100%;

    height:55px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-size:18px;

    font-weight:700;

    background:linear-gradient(90deg,#00d4ff,#2563eb);

    color:#fff;

}

.success-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.success-modal.show{

    display:flex;

}

.success-box{

    width:450px;

    background:#111827;

    border-radius:20px;

    padding:35px;

    text-align:center;

}

.success-icon{

    font-size:70px;

    margin-bottom:20px;

}

.success-box h2{

    color:#fff;

}

.success-box p{

    color:#cbd5e1;

    line-height:1.8;

    margin:20px 0;

}

.success-box button{

    width:100%;

    height:52px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    background:linear-gradient(90deg,#00d4ff,#2563eb);

    color:#fff;

    font-size:17px;

}

/* ==========================================================
PAYMENT FORM
========================================================== */

.payment-form{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:20px;

}

.payment-label{

    font-size:13px;

    margin-bottom:2px;

}

.payment-note{

    font-size:11px;

    margin-bottom:6px;

}

.payment-form input{

    width:100%;

    padding:14px 16px;

    border-radius:12px;

    border:1px solid #2f3f5d;

    background:#101827;

    color:#fff;

    font-size:15px;

    transition:.25s;

}

.payment-form input:focus{

    border-color:#00d4ff;

    box-shadow:0 0 18px rgba(0,212,255,.20);

    outline:none;

}

/* ==========================================================
PAYMENT DETAILS
========================================================== */

.payment-details{

    margin-top:18px;

    padding:16px;

    border-radius:18px;

    background:#101827;

    border:1px solid #273654;

}

.payment-details h3{

    text-align:center;

    color:#fff;

    margin-bottom:20px;

}

/* ==========================================================
QR
========================================================== */

.payment-qr{

    text-align:center;

    margin-bottom:25px;

}

.payment-qr img{

    width:160px;

    height:160px;

    object-fit:contain;

    border-radius:14px;

    background:#fff;

    padding:10px;

    animation:qrGlow 2s infinite alternate;

}

.payment-qr{

    text-align:center;

    margin:15px 0 20px;

}

@keyframes qrGlow{

    from{

        box-shadow:0 0 8px rgba(0,212,255,.25);

    }

    to{

        box-shadow:0 0 28px rgba(0,212,255,.55);

    }

}

/* ==========================================================
INFO ROW
========================================================== */

.info-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:9px 0;

    border-bottom:1px solid #24324d;

}

.info-row:last-child{

    border-bottom:none;

}

.info-row span{

    color:#8ea7cb;

}

.info-row strong{

    color:#fff;

}

/* ==========================================================
COPY BUTTON
========================================================== */

.copy-btn{

    margin-left:8px;

    padding:6px 12px;

    border:none;

    border-radius:10px;

    background:#00b7ff;

    color:#fff;

    cursor:pointer;

    font-weight:600;

    transition:.25s;

}

.copy-btn:hover{

    background:#0095d4;

}



/* ==========================================================
BUTTON
========================================================== */

.buy-btn{

    width:100%;

    margin-top:16px;

    padding:13px;

    border:none;

    border-radius:12px;

    background:linear-gradient(90deg,#00c6ff,#0072ff);

    color:#fff;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.buy-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 25px rgba(0,180,255,.30);

}

/* ==========================================================
   BANK DETAILS MODAL
========================================================== */

.bank-modal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(8px);

    z-index:999999;

}

.bank-modal.show{

    display:flex;

}

.bank-box{

    width:430px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px;

    box-shadow:0 25px 70px rgba(0,0,0,.45);

    animation:bankPopup .25s ease;

}

@keyframes bankPopup{

    from{

        transform:translateY(20px) scale(.96);

        opacity:0;

    }

    to{

        transform:none;

        opacity:1;

    }

}

.bank-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.bank-header h2{

    color:#fff;

    font-size:26px;

}

.bank-header button{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#ef4444;

    color:#fff;

    font-size:24px;

    cursor:pointer;

}

.bank-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.bank-row span{

    color:#94a3b8;

}

.bank-row strong{

    color:#fff;

}

.bank-row div{

    display:flex;

    align-items:center;

    gap:10px;

}

/* ==========================================================
   SUCCESS MODAL
========================================================== */

.success-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.success-modal.show{

    display:flex;

}

.success-box{

    width:420px;

    max-width:92%;

    background:#141c2d;

    border-radius:18px;

    padding:35px;

    text-align:center;

    border:1px solid #2e3f62;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.success-icon{

    font-size:64px;

    margin-bottom:15px;

}

.success-box h2{

    color:#fff;

    margin-bottom:15px;

}

.success-box p{

    color:#cfd7e7;

    line-height:1.7;

    margin-bottom:30px;

}

.success-list{

    margin:20px 0;

    padding-left:22px;

    text-align:left;

    color:#ffffff;

    line-height:2;

}

.success-note{

    margin-top:18px;

    color:#38d9ff;

    font-weight:600;

}

/*======================================================
                DESKTOP NOTICE
======================================================*/

.desktop-notice{

    padding:30px 0 15px;

}

.desktop-notice-box{

    width:min(1200px,92%);

    margin:auto;

    display:flex;

    align-items:center;

    gap:30px;

    padding:28px 35px;

    border-radius:18px;

    background:linear-gradient(135deg,#0d1625,#10253c);

    border:1px solid rgba(0,212,255,.18);

    box-shadow:0 0 40px rgba(0,212,255,.08);

}

.desktop-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    background:rgba(0,212,255,.12);

    flex-shrink:0;

}

.desktop-content h3{

    margin:0;

    color:#dfefff;

    font-size:22px;

    font-weight:700;

}

.desktop-content h3 span{

    color:#25d9ff;

}

.desktop-content h2{

    margin:12px 0;

    color:#25d9ff;

    font-size:34px;

    font-weight:800;

    letter-spacing:1px;

}

.desktop-content p{

    margin:0;

    color:#c7d5e8;

    line-height:1.8;

    font-size:17px;

}

.desktop-note{

    margin-top:18px;

    display:inline-block;

    padding:12px 18px;

    border-radius:10px;

    background:rgba(255,193,7,.12);

    color:#ffd86b;

    border:1px solid rgba(255,193,7,.25);

    font-weight:600;

}