*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#0f172a;
    overflow-x:hidden;
}

/* ======================
   NAVBAR
====================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

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

    padding:0 60px;

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);

    z-index:1000;
    box-shadow:0 2px 20px rgba(0,0,0,.05);
}

.logo img{
    width:170px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#1e293b;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#2563eb;
}

.nav-buttons{
    display:flex;
    gap:12px;
}

.login-btn,
.register-btn{
    padding:12px 24px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.login-btn{
    border:1px solid #2563eb;
    color:#2563eb;
}

.register-btn{
    background:#2563eb;
    color:white;
}

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

.hero{
    position:relative;

    min-height:100vh;

    background:url("../images/hero-banner.png") center/cover no-repeat;

    display:flex;
    align-items:center;

    padding:0 80px;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.85),
        rgba(0,0,0,.55),
        rgba(0,0,0,.15)
    );
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:700px;
    color:white;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;

    border:2px solid #22c55e;
    border-radius:30px;

    color:#22c55e;
    font-weight:700;

    margin-bottom:25px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;

    margin-bottom:25px;
}

.hero h1 span{
    color:#22c55e;
}

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

.hero-btn{
    display:inline-block;

    padding:18px 40px;

    background:#22c55e;
    color:white;

    border-radius:14px;

    text-decoration:none;
    font-weight:700;
}

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

.features{
    width:90%;

    margin:-80px auto 100px;

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

    gap:25px;

    position:relative;
    z-index:10;
}

.feature-card{
    background:white;

    padding:35px;
    border-radius:20px;

    text-align:center;

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

.feature-card i{
    font-size:42px;
    color:#2563eb;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:15px;
}

.feature-card p{
    color:#64748b;
    line-height:1.7;
}

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

.about{
    padding:100px 20px;
    background:rgb(222, 219, 219);
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    color:#22c55e;
    font-weight:700;
}

.section-header h2{
    font-size:48px;
    margin-top:10px;
}

.about-content{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.about-text p{
    margin-bottom:20px;
    line-height:1.9;
    color:#475569;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stat-card{
    background:#f8fafc;
    padding:30px;
    border-radius:18px;
    text-align:center;
}

.stat-card h3{
    color:#2563eb;
    font-size:34px;
    margin-bottom:10px;
}

.stat-card p{
    color:#475569;
}

/* ======================
   TABLETS
====================== */

@media (max-width: 992px){

    .navbar{
        padding:0 20px;
    }

    nav{
        display:none;
    }

    .hero{
        padding:120px 30px 60px;
    }

    .hero h1{
        font-size:56px;
    }

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

    .about-content{
        grid-template-columns:1fr;
    }

}

/* ======================
   MOBILE
====================== */

@media (max-width: 768px){

    .navbar{
        height:auto;
        padding:15px;
    }

    .logo img{
        width:120px;
    }

    .nav-buttons{
        gap:10px;
    }

    .login-btn,
    .register-btn{
        padding:10px 14px;
        font-size:14px;
    }

    .hero{
        min-height:100vh;
        padding:120px 20px 50px;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:17px;
    }

    .features{
        grid-template-columns:1fr;
        margin-top:40px;
    }

    .section-header h2{
        font-size:36px;
    }

    .about-stats{
        grid-template-columns:1fr 1fr;
    }

}

/* ======================
   SMALL PHONES
====================== */

@media (max-width: 480px){

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

    .hero p{
        font-size:15px;
    }

    .hero-btn{
        width:100%;
        text-align:center;
    }

    .about-stats{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:30px;
    }

    .feature-card,
    .stat-card{
        padding:20px;
    }

    .login-btn,
    .register-btn{
        font-size:13px;
        padding:10px 12px;
    }
}
/* ======================
   PACKAGES
====================== */

.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:50px;
}

.package-card{
    position:relative;

    height:340px;

    background-size:cover;
    background-position:center;

    border-radius:20px;
    overflow:hidden;

    transition:.3s;
}

.package-card:hover{
    transform:translateY(-8px);
}

.package-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,9),
        rgba(0,0,0,.15)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:20px;

    color:#fff;
}

.package-overlay h3{
    margin-bottom:10px;
    font-size: 24px;
    font-weight: 700;
}

.package-overlay h4{
    font-size:30px;
    color:#22c55e;
    margin-bottom:10px;
}

.package-overlay p{
    margin-bottom:5px;
    font-weight:600;
}

.package-overlay span{
    opacity:.9;
}
.package-card{
    position:relative;
    height:320px;
    border-radius:20px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
}

.package-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.25)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:25px;
    color:rgb(246, 243, 243);
}

.package-overlay h3{
    margin-bottom:10px;
}

.package-overlay h4{
    color:#22c55e;
    font-size:30px;
    margin-bottom:8px;
}

.package-overlay p{
    margin-bottom:5px;
}
.package-invest-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:#22c55e;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
}

/* ======================
   HOW IT WORKS
====================== */

.how-it-works{
    padding:100px 20px;
    background:#ffffff;
}

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

.step-card{
    position:relative;

    background:#f8fafc;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    transition:.3s;
}

.step-card:hover{
    transform:translateY(-8px);
}

.step-number{
    position:absolute;
    top:15px;
    right:15px;

    width:35px;
    height:35px;

    background:#2563eb;
    color:white;

    border-radius:50%;

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

    font-weight:700;
}

.step-card i{
    font-size:45px;
    color:#075825;
    margin-bottom:20px;
}

.step-card h3{
    margin-bottom:12px;
}

.step-card p{
    color:#5a616c;
    line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

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

}

/* ======================
   REFERRAL PROGRAM
====================== */

.referral-program{
    padding:100px 20px;
    background:#f8fafc;
}

.referral-content{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:50px;
    align-items:center;
}

.referral-text span{
    color:#0c5225;
    font-weight:700;
}

.referral-text h2{
    font-size:48px;
    margin:15px 0 25px;
}

.referral-text p{
    color:#475569;
    line-height:1.9;
    margin-bottom:25px;
}

.referral-text ul{
    list-style:none;
    margin-bottom:30px;
}

.referral-text li{
    margin-bottom:12px;
    font-weight:600;
}

.referral-card{
    background:linear-gradient(
        135deg,
        #023198,
        #032da0
    );

    color:white;

    padding:60px 30px;

    border-radius:25px;

    text-align:center;
}

.referral-icon{
    font-size:60px;
    margin-bottom:20px;
}

.referral-card h3{
    font-size:70px;
    margin-bottom:10px;
}

.referral-card p{
    font-size:20px;
}

/* MOBILE */

@media(max-width:768px){

    .referral-content{
        grid-template-columns:1fr;
    }

    .referral-text h2{
        font-size:34px;
    }

}

/* ======================
   COMMUNITY
====================== */

.community-section{
    padding:100px 20px;
    background:#ffffff;
}

.community-text{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
    color:#64748b;
}

.community-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.community-card{
    padding:50px 30px;
    border-radius:25px;

    text-decoration:none;
    color:white;

    text-align:center;

    transition:.3s;
}

.community-card:hover{
    transform:translateY(-8px);
}

.community-card i{
    font-size:60px;
    margin-bottom:20px;
}

.community-card h3{
    margin-bottom:10px;
}

.whatsapp{
    background:#25D366;
}

.telegram{
    background:#229ED9;
}

@media(max-width:768px){

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

}

/* ======================
   WHY BLUEPEAK
====================== */

.why-bluepeak{
    padding:100px 20px;
    background:#f8fafc;
}

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

.why-card{
    background:white;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:45px;
    color:#2563eb;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.why-card p{
    color:#64748b;
    line-height:1.7;
}

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

.cta-section{
    padding:100px 20px;
    text-align:center;

    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color:white;
}

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

.cta-section p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
    opacity:.95;
}

.cta-section .hero-btn{
    background:#22c55e;
}

/* ======================
   FOOTER
====================== */

.footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.footer img{
    width:180px;
    margin-bottom:20px;
}

.footer p{
    color:#94a3b8;
}

/* ======================
   MOBILE
====================== */

@media(max-width:768px){

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

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

}