:root{
    --mint:#2FD5A7;
    --mint2:#00FFC6;
    --dark:#07131A;
    --dark2:#0D1F29;
    --white:#ffffff;
    --soft:#c8d5dc;
    --radius:18px;
    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
    radial-gradient(circle at top left, rgba(47,213,167,.12), transparent 30%),
    linear-gradient(180deg,var(--dark),var(--dark2));
    color:var(--white);
    font-family:'Be Vietnam Pro',sans-serif;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1280px,92%);
    margin:auto;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    backdrop-filter:blur(18px);
    background:rgba(7,19,26,.92);
    border-bottom:1px solid rgba(47,213,167,.12);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
}

.logo-wrap img{
    height:62px;
}

.desktop-menu{
    display:flex;
    align-items:center;
    gap:26px;
}

.desktop-menu a{
    color:#d8f5eb;
    font-weight:800;
    font-size:15px;
    transition:.3s;
}

.desktop-menu a:hover{
    color:var(--mint2);
}

.header-cta{
    display:flex;
    align-items:center;
    gap:12px;
}

/* BUTTON */

.glow-btn{
    position:relative;
    overflow:hidden;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:999px;
    border:none;
    cursor:pointer;
    font-size:14px;
    font-weight:900;
    color:#fff;
    text-transform:uppercase;
    background:linear-gradient(
        90deg,
        #ff7b00,
        #ff2d55,
        var(--mint),
        #00bfff,
        #ff7b00
    );
    background-size:400% 400%;
    animation:gradientMove 8s ease infinite;
    transition:.35s;
    text-align:center;
}

.glow-btn:hover{
    transform:translateY(-2px) scale(1.02);
}

.glow-btn::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,.55) 50%,
        transparent 80%
    );
    transform:translateX(-120%);
    animation:shine 3.5s infinite;
}

.glow-btn.mint{
    background:linear-gradient(
        90deg,
        #00ffc6,
        #2FD5A7,
        #00d9a3,
        #00bfff
    );
}

@keyframes gradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

@keyframes shine{
    100%{
        transform:translateX(120%);
    }
}

/* HERO */

.hero{
    padding:45px 0 30px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.hero-content h1{
    font-size:72px;
    line-height:1;
    font-weight:900;
    margin-bottom:20px;
}

.hero-content h1 span{
    background:linear-gradient(90deg,var(--mint2),#fff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    color:var(--soft);
    font-size:18px;
    line-height:1.9;
    margin-bottom:28px;
}

.hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.hero-banner{
    position:relative;
}

.hero-banner img{
    border-radius:28px;
    width:100%;
}

/* TRUST */

.trust-section{
    margin-top:50px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.trust-box{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(47,213,167,.15);
    padding:24px;
    border-radius:24px;
    text-align:center;
    font-weight:800;
}

/* CARD */

.card-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:50px;
}

.neo-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(47,213,167,.18);
    border-radius:24px;
    overflow:hidden;
    transition:.35s;
}

.neo-card:hover{
    transform:translateY(-6px);
}

.neo-card-content{
    padding:20px;
}

.neo-card-content h3{
    font-size:22px;
    margin-bottom:12px;
}

.neo-card-content p{
    color:var(--soft);
    line-height:1.8;
}

/* PAYMENT */

.payment-strip{
    margin-top:60px;
    border-radius:28px;
    padding:24px;
}

.payment-strip h2{
    text-align:center;
    margin-bottom:24px;
    font-size:34px;
}

/* ARTICLE */

.article-wrap{
    margin-top:80px;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(47,213,167,.1);
    padding:50px;
    border-radius:30px;
}

.article-wrap h2{
    font-size:42px;
    margin-bottom:24px;
}

.article-wrap p{
    color:#d4dde3;
    line-height:2;
    margin-bottom:20px;
    font-size:17px;
}

/* FAQ */

.faq-item{
    margin-bottom:18px;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(47,213,167,.12);
    background:rgba(255,255,255,.03);
}

.faq-question{
    padding:22px;
    font-weight:800;
    cursor:pointer;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer-content{
    padding:0 22px 22px;
    color:var(--soft);
    line-height:1.9;
}

/* FOOTER */

.site-footer{
    margin-top:90px;
    background:linear-gradient(180deg,#07131A,#050c10);
    border-top:1px solid rgba(47,213,167,.14);
}

.footer-top{
    padding:70px 0 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo img{
    height:72px;
    margin-bottom:18px;
}

.footer-desc{
    color:#d3dee4;
    line-height:1.9;
}

.footer-title{
    margin-bottom:20px;
    font-size:22px;
    font-weight:900;
    color:var(--mint2);
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.provider-strip{
    margin-top:50px;
    border-radius:24px;
    padding:20px;
}

.footer-bottom{
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.06);
    padding:24px 0 110px;
    text-align:center;
    color:#aebdc5;
    font-size:14px;
}

/* MOBILE NAV */

.mobile-bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:999999;
    background:rgba(7,19,26,.96);
    backdrop-filter:blur(12px);
    display:none;
    padding:10px 12px;
    border-top:1px solid rgba(47,213,167,.15);
}

.mobile-bottom-nav-inner{
    display:grid;
    grid-template-columns:1fr 1.2fr 1fr;
    gap:12px;
    align-items:center;
}

.mobile-nav-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:12px;
    font-weight:700;
}

.mobile-nav-center{
    transform:translateY(-16px);
}

.mobile-nav-center .glow-btn{
    padding:14px 20px;
    font-size:13px;
}

/* RESPONSIVE */

@media(max-width:1100px){

.hero-grid,
.card-grid,
.footer-grid,
.trust-grid{
    grid-template-columns:1fr 1fr;
}

.hero-content h1{
    font-size:54px;
}

}

@media(max-width:768px){

.container{
    width:92%;
}

.desktop-menu{
    display:none;
}

.header-inner{
    gap:12px;
}

.logo-wrap img{
    height:48px;
}

.header-cta{
    gap:8px;
}

.header-cta .glow-btn{
    padding:10px 14px;
    font-size:11px;
}

.hero{
    padding:28px 0 20px;
}

.hero-grid,
.card-grid,
.footer-grid,
.trust-grid{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:28px;
    line-height:1.1;
    margin-bottom:14px;
}

.hero-content p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
}

.hero-actions{
    flex-direction:column;
    gap:12px;
    margin-top:18px;
}

.hero-actions .glow-btn{
    width:100%;
}

.hero-banner{
    margin-top:12px;
}

.hero-banner img{
    border-radius:22px;
}

.trust-box{
    padding:18px;
}

.article-wrap{
    padding:28px;
    margin-top:50px;
}

.article-wrap h2,
.payment-strip h2{
    font-size:28px;
}

.article-wrap p{
    font-size:15px;
    line-height:1.9;
}

.mobile-bottom-nav{
    display:block;
}

.footer-bottom{
    padding-bottom:120px;
}

}

@media(max-width:480px){

.hero-content h1{
    font-size:24px;
}

.glow-btn{
    width:100%;
}

}