/* =========================================================
   VSTARPAY WEBSITE - MAIN STYLE
   Theme: Black + Cream / Off-White
========================================================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    margin:0;
    padding:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f3f0;
    color:#252525;
    line-height:1.75;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}

button,
a{
    -webkit-tap-highlight-color:transparent;
}


/* =========================================================
   ROOT COLORS
========================================================= */

:root{

    --primary:#111111;
    --primary-dark:#000000;
    --primary-light:#f3eee5;

    --cream:#f4ecdf;
    --cream-light:#faf7f1;
    --cream-dark:#e5d9c9;

    --black:#080808;
    --black-soft:#151515;

    --text:#292929;
    --muted:#6e6a65;

    --white:#ffffff;

    --border:#e4ded6;

    --green:#3c7d52;
    --green-light:#edf6ef;

    --red:#b53b3b;
    --red-light:#fff0f0;

    --gold:#a67c35;
    --gold-light:#faf3e3;

    --shadow:0 10px 35px rgba(0,0,0,.07);

    --radius:22px;
    --radius-small:14px;

}


/* =========================================================
   HEADER
========================================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    width:100%;
    background:rgba(8,8,8,.98);
    border-bottom:1px solid #292929;
    box-shadow:0 4px 20px rgba(0,0,0,.12);
}

.header-inner{
    width:100%;
    max-width:820px;
    min-height:76px;
    margin:0 auto;
    padding:10px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--cream);
    font-size:23px;
    font-weight:800;
    letter-spacing:-.4px;
}

.brand img{
    width:52px;
    height:52px;
    object-fit:contain;
    border-radius:10px;
    background:#000;
}

.brand span{
    color:#f4ecdf;
}


/* =========================================================
   MENU BUTTON
========================================================= */

.menu-toggle{
    width:46px;
    height:42px;

    border:1px solid #454545;
    border-radius:12px;

    background:#151515;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;

    cursor:pointer;
    padding:0;
}

.menu-toggle span{
    display:block;
    width:21px;
    height:2px;
    background:#f4ecdf;
    border-radius:5px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-menu{
    width:100%;
    max-width:820px;
    margin:0 auto;

    display:none;
    flex-direction:column;

    padding:8px 20px 18px;

    background:#080808;
}

.main-menu.active{
    display:flex;
}

.main-menu a{
    color:#f4ecdf;
    padding:11px 13px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;

    transition:.2s ease;
}

.main-menu a:hover{
    background:#242424;
    color:#ffffff;
}


/* =========================================================
   PAGE CONTAINER
========================================================= */

.page-container{
    width:100%;
    max-width:820px;
    margin:0 auto;
    padding:22px 15px 50px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section{
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(circle at top center,#343434 0%,#151515 42%,#050505 100%);

    border-radius:28px;
    margin-bottom:22px;

    border:1px solid #292929;

    box-shadow:0 16px 45px rgba(0,0,0,.16);
}

.hero-section:before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;

    top:-150px;
    right:-100px;

    border-radius:50%;

    background:rgba(244,236,223,.06);
}

.hero-section:after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;

    bottom:-130px;
    left:-100px;

    border-radius:50%;

    background:rgba(244,236,223,.04);
}

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;

    padding:42px 20px 38px;
}

.hero-badge{
    display:inline-block;

    padding:7px 15px;

    margin-bottom:20px;

    border:1px solid rgba(244,236,223,.3);
    border-radius:50px;

    background:rgba(244,236,223,.07);

    color:#f4ecdf;

    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.hero-logo{
    width:250px;
    height:190px;

    object-fit:contain;

    margin:0 auto 12px;

    border-radius:18px;
    background:#000;
}

.hero-content h1{
    margin:12px auto 15px;

    max-width:700px;

    color:#f8f1e8;

    font-size:36px;
    line-height:1.22;

    font-weight:800;
    letter-spacing:-1px;
}

.hero-text{
    max-width:650px;

    margin:0 auto;

    color:#d8d2ca;

    font-size:16px;
    line-height:1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:11px;

    margin-top:25px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:48px;

    padding:11px 19px;

    border-radius:13px;

    font-size:14px;
    font-weight:700;

    text-align:center;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:#f4ecdf;
    color:#0a0a0a;

    border:1px solid #f4ecdf;

    box-shadow:0 8px 22px rgba(0,0,0,.18);
}

.btn-primary:hover{
    background:#ffffff;
}

.btn-outline{
    background:transparent;
    color:#f4ecdf;

    border:1px solid #8b8379;
}

.btn-outline:hover{
    background:#f4ecdf;
    color:#0a0a0a;
}

.btn-download{
    background:#242424;
    color:#f4ecdf;

    border:1px solid #4a4a4a;
}

.btn-download:hover{
    background:#303030;
}

.btn-secondary{
    background:#171717;
    color:#f4ecdf;

    border:1px solid #333333;
}

.btn-telegram{
    background:#202020;
    color:#f4ecdf;

    border:1px solid #444444;
}

.hero-note{
    margin-top:20px;

    color:#a9a39c;

    font-size:12px;
}

.hero-note strong{
    color:#e8e0d6;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.content-card{
    background:#ffffff;

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:28px 25px;

    margin-bottom:20px;

    box-shadow:var(--shadow);
}

.content-card h2{
    margin:0;

    color:#161616;

    font-size:26px;
    line-height:1.3;

    font-weight:800;
}

.content-card h3{
    margin:24px 0 10px;

    color:#181818;

    font-size:19px;
    line-height:1.4;

    font-weight:750;
}

.content-card p{
    margin:0 0 15px;

    color:#55514c;

    font-size:15px;
}

.content-card p:last-child{
    margin-bottom:0;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading{
    display:flex;
    align-items:flex-start;
    gap:15px;

    margin-bottom:20px;
}

.section-number{
    flex:0 0 auto;

    width:43px;
    height:43px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:#111111;
    color:#f4ecdf;

    font-size:13px;
    font-weight:800;
}

.section-heading h2{
    margin-bottom:4px;
}

.section-heading p{
    margin:0;

    color:#858079;

    font-size:13px;
}


/* =========================================================
   INFO BOX
========================================================= */

.info-box{
    margin-top:20px;

    padding:17px 18px;

    border-left:4px solid #111111;

    border-radius:0 14px 14px 0;

    background:#f5f1eb;
}

.info-box strong{
    display:block;

    margin-bottom:6px;

    color:#171717;

    font-size:15px;
}

.info-box p{
    margin:0;

    color:#625d57;

    font-size:14px;
}


/* =========================================================
   LISTS
========================================================= */

.content-card ul,
.content-card ol{
    margin:12px 0 18px;

    padding-left:23px;

    color:#55514c;
}

.content-card li{
    margin-bottom:8px;

    padding-left:3px;

    font-size:15px;
}

.content-card li::marker{
    color:#111111;
    font-weight:700;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.feature-grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;

    margin-top:18px;
}

.feature-box{
    padding:20px;

    background:#faf8f5;

    border:1px solid #e8e2da;

    border-radius:16px;
}

.feature-box h3{
    margin:0 0 8px;

    color:#161616;

    font-size:17px;
}

.feature-box p{
    margin:0;

    font-size:13px;
    line-height:1.65;

    color:#706a63;
}


/* =========================================================
   SCREENSHOT AREA
========================================================= */

.screenshot-area{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:13px;

    margin-top:20px;
}

.screenshot-placeholder{
    min-height:220px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:18px 12px;

    border:2px dashed #d9d1c7;

    border-radius:17px;

    background:#faf8f5;
}

.screenshot-placeholder span{
    display:inline-block;

    margin-bottom:8px;

    padding:5px 9px;

    border-radius:20px;

    background:#171717;
    color:#f4ecdf;

    font-size:10px;
    font-weight:700;
}

.screenshot-placeholder strong{
    color:#252525;

    font-size:14px;

    line-height:1.4;
}

.screenshot-placeholder p{
    margin:8px 0 0;

    color:#8a847d;

    font-size:11px;
    line-height:1.5;
}


/* =========================================================
   STEPS
========================================================= */

.steps-grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;

    margin-top:20px;
}

.step-box{
    position:relative;

    padding:21px;

    border:1px solid #e5ded5;

    border-radius:17px;

    background:#faf8f5;
}

.step-box > span{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:35px;
    height:35px;

    margin-bottom:10px;

    border-radius:10px;

    background:#111111;
    color:#f4ecdf;

    font-size:11px;
    font-weight:800;
}

.step-box h3{
    margin:0 0 7px;

    font-size:17px;
}

.step-box p{
    margin:0;

    font-size:13px;
    line-height:1.65;
}


/* =========================================================
   ACTION ROW
========================================================= */

.action-row{
    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;
}


/* =========================================================
   PROS & CONS
========================================================= */

.pros-cons-grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-top:20px;
}

.pros-box,
.cons-box{
    padding:20px;

    border-radius:17px;
}

.pros-box{
    background:var(--green-light);
    border:1px solid #d7eadb;
}

.cons-box{
    background:var(--red-light);
    border:1px solid #f0d8d8;
}

.pros-box h3,
.cons-box h3{
    margin:0 0 12px;

    font-size:18px;
}

.pros-box h3{
    color:#356d46;
}

.cons-box h3{
    color:#a43838;
}

.pros-box ul,
.cons-box ul{
    margin:0;
}

.pros-box li,
.cons-box li{
    font-size:14px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-item{
    margin-bottom:11px;

    padding:17px 18px;

    border:1px solid #e5ded5;

    border-radius:15px;

    background:#faf8f5;
}

.faq-item:last-of-type{
    margin-bottom:20px;
}

.faq-item h3{
    margin:0 0 7px;

    color:#171717;

    font-size:16px;
}

.faq-item p{
    margin:0;

    color:#66615b;

    font-size:14px;
    line-height:1.65;
}


/* =========================================================
   FINAL / CONCLUSION
========================================================= */

.conclusion-card{
    background:
        linear-gradient(135deg,#111111,#222222);

    border-color:#2e2e2e;
}

.conclusion-card h2{
    color:#f4ecdf;
}

.conclusion-card .section-heading p{
    color:#aaa39a;
}

.conclusion-card .section-number{
    background:#f4ecdf;
    color:#111111;
}

.conclusion-card > p{
    color:#d3ccc4;
}

.final-buttons{
    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-top:22px;
}

.final-buttons .btn-primary{
    background:#f4ecdf;
    color:#111111;
}

.final-buttons .btn-outline{
    color:#f4ecdf;
    border-color:#686158;
}

.final-buttons .btn-secondary{
    background:#292929;
    border-color:#454545;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    background:#080808;

    border-top:1px solid #252525;

    color:#d8d0c6;
}

.footer-inner{
    width:100%;
    max-width:820px;

    margin:0 auto;

    padding:35px 20px 20px;
}

.footer-brand{
    display:flex;
    align-items:flex-start;

    gap:15px;

    margin-bottom:25px;
}

.footer-brand img{
    width:66px;
    height:66px;

    object-fit:contain;

    border-radius:12px;

    background:#000;
}

.footer-brand h3{
    margin:0 0 5px;

    color:#f4ecdf;

    font-size:20px;
}

.footer-brand p{
    margin:0;

    max-width:580px;

    color:#9f9992;

    font-size:13px;
    line-height:1.7;
}

.footer-links{
    display:flex;

    flex-wrap:wrap;

    gap:7px;

    padding-bottom:25px;

    border-bottom:1px solid #292929;
}

.footer-links a{
    padding:7px 10px;

    border-radius:8px;

    color:#aaa39b;

    font-size:12px;

    transition:.2s ease;
}

.footer-links a:hover{
    background:#1c1c1c;
    color:#f4ecdf;
}

.footer-bottom{
    padding-top:20px;

    text-align:center;
}

.footer-bottom p{
    margin:0;

    color:#77716a;

    font-size:12px;
}


/* =========================================================
   TABLE / EXTRA CONTENT
========================================================= */

.table-wrap{
    width:100%;

    overflow-x:auto;

    margin:18px 0;
}

table{
    width:100%;

    border-collapse:collapse;

    min-width:500px;
}

th,
td{
    padding:12px;

    border:1px solid #e2dbd2;

    text-align:left;

    font-size:14px;
}

th{
    background:#111111;
    color:#f4ecdf;
}

td{
    background:#ffffff;
    color:#5e5953;
}


/* =========================================================
   FORM ELEMENTS
========================================================= */

input,
textarea,
select{
    width:100%;

    padding:12px 14px;

    border:1px solid #dcd5cc;

    border-radius:11px;

    background:#ffffff;

    color:#292929;

    font-family:inherit;

    font-size:14px;

    outline:none;
}

input:focus,
textarea:focus,
select:focus{
    border-color:#111111;

    box-shadow:0 0 0 3px rgba(17,17,17,.07);
}

textarea{
    min-height:130px;

    resize:vertical;
}


/* =========================================================
   REFER CODE
========================================================= */

.refer-label{
    display:block;

    margin-top:20px;

    text-align:center;
}

.refer-label h2{
    font-size:20px;
}

.refer-code{
    display:flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    max-width:400px;

    margin:10px auto 0;

    padding:10px;

    border:1px solid #ded6cc;

    border-radius:13px;

    background:#faf8f5;
}

.refer-code span{
    font-weight:800;

    letter-spacing:1px;

    color:#111111;
}

.copy-btn{
    border:0;

    padding:8px 13px;

    border-radius:9px;

    background:#111111;

    color:#f4ecdf;

    font-size:12px;

    font-weight:700;

    cursor:pointer;
}


/* =========================================================
   SCROLL TOP / UTILITY
========================================================= */

::selection{
    background:#111111;
    color:#f4ecdf;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width:768px){

    .header-inner{
        min-height:80px;
    }

    .menu-toggle{
        display:none;
    }

    .main-menu{
        display:flex;

        flex-direction:row;

        align-items:center;

        gap:2px;

        padding:0 20px 12px;

        overflow-x:auto;

        scrollbar-width:none;
    }

    .main-menu::-webkit-scrollbar{
        display:none;
    }

    .main-menu a{
        white-space:nowrap;
    }

    .hero-content{
        padding:52px 35px 46px;
    }

    .hero-logo{
        width:280px;
        height:210px;
    }

    .content-card{
        padding:32px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:767px){

    .page-container{
        padding:15px 12px 35px;
    }

    .content-card{
        padding:23px 18px;

        border-radius:19px;
    }

    .hero-section{
        border-radius:22px;
    }

    .hero-content{
        padding:35px 16px 32px;
    }

    .hero-logo{
        width:235px;
        height:180px;
    }

    .hero-content h1{
        font-size:29px;
        letter-spacing:-.6px;
    }

    .hero-text{
        font-size:14px;
    }

    .section-heading{
        gap:11px;
    }

    .section-number{
        width:39px;
        height:39px;
    }

    .content-card h2{
        font-size:23px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:560px){

    .header-inner{
        min-height:68px;

        padding:8px 13px;
    }

    .brand{
        font-size:19px;
    }

    .brand img{
        width:46px;
        height:46px;
    }

    .main-menu{
        padding-left:13px;
        padding-right:13px;
    }

    .hero-buttons{
        flex-direction:column;

        align-items:stretch;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .hero-content h1{
        font-size:27px;
    }

    .hero-logo{
        width:220px;
        height:165px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .steps-grid{
        grid-template-columns:1fr;
    }

    .pros-cons-grid{
        grid-template-columns:1fr;
    }

    .screenshot-area{
        grid-template-columns:1fr;
    }

    .screenshot-placeholder{
        min-height:180px;
    }

    .action-row{
        flex-direction:column;
    }

    .action-row .btn{
        width:100%;
    }

    .final-buttons{
        flex-direction:column;
    }

    .final-buttons .btn{
        width:100%;
    }

    .footer-brand{
        align-items:center;
    }

    .footer-brand img{
        width:56px;
        height:56px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:380px){

    .hero-content h1{
        font-size:24px;
    }

    .hero-text{
        font-size:13px;
    }

    .content-card{
        padding:20px 15px;
    }

    .content-card h2{
        font-size:21px;
    }

    .content-card h3{
        font-size:17px;
    }

    .content-card p,
    .content-card li{
        font-size:14px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *:before,
    *:after{
        transition:none !important;
        animation:none !important;
    }

}