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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#071018;
    color:#fff;
    overflow-x:hidden;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(7,16,24,0.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#00bfff;
}

.logo span{
    color:#fff;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#fff;
    transition:0.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:#00bfff;
}

.nav-btn{
    background:#00bfff;
    color:#071018;
    text-decoration:none;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

.menu-btn{
    display:none;
    font-size:24px;
    cursor:pointer;
}

/* HERO */

.hero,
.page-hero{
    padding-top:140px;
    padding-bottom:70px;
}

.hero-box{
    background:linear-gradient(135deg,#0d1723,#101e2c);
    border-radius:30px;
    padding:60px;
    border:1px solid rgba(255,255,255,0.08);
    position:relative;
    overflow:hidden;
}

.hero-box::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:#00bfff;
    filter:blur(180px);
    opacity:0.12;
    top:-120px;
    right:-120px;
}

.hero-box h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero-box p{
    color:#c7d0d9;
    line-height:1.8;
}

/* SECTION */

.section{
    padding-bottom:90px;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#b8c1cb;
    line-height:1.8;
}

/* CARDS */

.card{
    background:#0d1723;
    border-radius:28px;
    border:1px solid rgba(255,255,255,0.08);
}

/* COLORS */

.green{
    color:#00c853;
}

.red{
    color:#ff5252;
}

/* CTA */

.cta-box{
    background:linear-gradient(135deg,#00bfff,#0066ff);
    border-radius:30px;
    padding:70px 50px;
    text-align:center;
}

.cta-box h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:800px;
    margin:auto;
    line-height:1.9;
    margin-bottom:35px;
}

.cta-box a{
    display:inline-block;
    background:#fff;
    color:#071018;
    text-decoration:none;
    padding:18px 36px;
    border-radius:14px;
    font-weight:700;
}

/* FOOTER */

.footer{
    padding:60px 0 30px;
    border-top:1px solid rgba(255,255,255,0.08);
}

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

.footer-about p{
    margin-top:20px;
    color:#b8c1cb;
    line-height:1.8;
}

.footer-links h4{
    margin-bottom:20px;
}

.footer-links a{
    display:block;
    text-decoration:none;
    color:#b8c1cb;
    margin-bottom:12px;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    color:#8d99a6;
}

/* MOBILE */

@media(max-width:768px){

.nav-links{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#071018;
    flex-direction:column;
    padding:30px;
    display:none;
}

.nav-links.active{
    display:flex;
}

.menu-btn{
    display:block;
}

.nav-btn{
    display:none;
}

.hero-box{
    padding:40px 25px;
}

.hero-box h1{
    font-size:38px;
}

.section-title h2,
.cta-box h2{
    font-size:32px;
}

.cta-box{
    padding:45px 25px;
}

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

}


.offer-popup{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.80);

    display:flex;

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

    padding:20px;

    z-index:9999;
}

.offer-box{
    width:min(95vw,700px);
    max-height:90vh;

    overflow-y:auto;

    background:#0d1723;
    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:30px;

    position:relative;

    box-shadow:0 0 50px rgba(0,0,0,.5);
}

.offer-close{
    position:absolute;
    top:15px;
    right:0px;
    font-size:30px;
    cursor:pointer;
    color:#fff;
}

.offer-title{
    color:#00bfff;
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
    text-align:center;
}

.offer-subtitle{
    text-align:center;
    color:#c7d0d9;
    line-height:1.8;
    margin-bottom:25px;
}

.offer-highlight{
    background:#101e2c;
    border-radius:16px;
    padding:20px;
    margin-bottom:25px;
}

.offer-highlight h3{
    color:#00c853;
    margin-bottom:10px;
}

.offer-highlight p{
    line-height:1.8;
}

.investment-table{
    width:100%;
    min-width:100%;
}

.investment-table th,
.investment-table td{
    padding:12px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}

.investment-table th{
    background:#101e2c;
    color:#00bfff;
}

.profit-box{
    background:linear-gradient(
        135deg,
        #00bfff,
        #0066ff
    );
    border-radius:16px;
    padding:20px;
    text-align:center;
    margin-bottom:25px;
}

.profit-box h3{
    margin-bottom:10px;
}

.offer-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#00c853;
    color:#fff;
    text-decoration:none;
    padding:16px;
    border-radius:14px;
    font-weight:700;
    font-size:18px;
}

.offer-close{
    position:sticky;
    top:0;
    float:right;

    width:40px;
    height:40px;

    border-radius:50%;

    background:#ff5252;

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

    cursor:pointer;
    font-size:24px;
}

/* MOBILE */

@media(max-width:768px){

.offer-box{
    padding:20px;
    max-height:90vh;
    overflow-y:auto;
}
	
.offer-popup{
    padding:10px;
}
	
.offer-box{
    width:100%;
    max-width:100%;
    max-height:95vh;
    padding:20px;
}

.offer-title{
    font-size:24px;
}

.offer-subtitle{
    font-size:14px;
}

.investment-table{
    font-size:13px;
}

.investment-table th,
.investment-table td{
    padding:8px;
    font-size:13px;
}

.offer-btn{
    font-size:15px;
    padding:14px;
}

}

@media(min-width:1600px){

.offer-box{
    max-width:800px;
}

}