/* ===========================
   GOOGLE FONT & RESET
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#222;
    line-height:1.6;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===========================
   REUSABLE
=========================== */

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

section{
    padding:40px 0;
}

.section-title{
    text-align:center;
    margin-bottom:30px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#1d3557;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
}

/* ===========================
   BUTTONS
=========================== */

.btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#ff6b00;
    color:#fff;
}

.btn-primary:hover{
    background:#e55f00;
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #0b5fff;
    color:#0b5fff;
}

.btn-secondary:hover{
    background:#0b5fff;
    color:#fff;
    transform:translateY(-3px);
}

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

.navbar{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    left:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.nav-container{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:150px;
}

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

.nav-links a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#ff6b00;
}

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

.hero{
    background:linear-gradient(135deg,#ffffff,#eef4ff);
}

.hero-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-content{
    flex:1;
}

.hero-image{
    flex:1;
}

.tag{
    display:inline-block;
    background:#dbeafe;
    color:#0b5fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:55px;
    line-height:1.2;
    margin-bottom:25px;
    color:#1d3557;
}

.hero h1 span{
    color:#ff6b00;
}

.hero p{
    color:#555;
    font-size:18px;
    margin-bottom:35px;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-image img{
    width:100%;
    animation:float 4s ease-in-out infinite;
}

/* Floating Image */

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:992px){

.hero-container{

    flex-direction:column-reverse;
    text-align:center;

}

.hero p{

    margin:auto auto 35px;

}

.hero-buttons{

    justify-content:center;

}

.hero h1{

    font-size:42px;

}

}

@media(max-width:768px){

.nav-links{

    display:none;

}

.logo img{

    width:150px;

}

.hero{

    padding:70px 0;

}

.hero h1{

    font-size:34px;

}

.hero p{

    font-size:16px;

}

.section-title h2{

    font-size:30px;

}

}

@media(max-width:480px){

.container{

    width:92%;

}

.btn{

    width:100%;
    text-align:center;

}

.hero-buttons{

    flex-direction:column;

}

.hero h1{

    font-size:28px;

}

}



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

.features{
    background:#fff;
}

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

.feature-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;
    border:1px solid #edf2f7;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.feature-card h3{
    color:#1d3557;
    font-size:22px;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    font-size:15px;
    line-height:1.7;
}


/*==================================
        COMPARISON TABLE
==================================*/

.comparison{
    background:#f8fafc;
}

.table-wrapper{
    overflow-x:auto;
    background:#fff;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:850px;
}

table thead{
    background:#0B5FFF;
    color:#fff;
}

table th,
table td{
    padding:18px;
    text-align:center;
}

table th{
    font-size:17px;
    font-weight:600;
}

table tbody tr{
    border-bottom:1px solid #eee;
    transition:.3s;
}

table tbody tr:nth-child(even){
    background:#fafafa;
}

table tbody tr:hover{
    background:#edf4ff;
}

table td:first-child{
    text-align:left;
    font-weight:600;
    color:#1d3557;
}


/*==================================
        TESTIMONIALS
==================================*/

.reviews{
    background:#fff;
}

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

.review-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #FF6B00;
}

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

.review-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
    font-style:italic;
}

.review-card h4{
    color:#1d3557;
    margin-bottom:5px;
}

.review-card span{
    color:#777;
    font-size:14px;
}


/*==================================
        STATS SECTION
==================================*/

.stats{
    background:linear-gradient(135deg,#0B5FFF,#0038b8);
    color:#fff;
}

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

.stat-box{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(6px);
    text-align:center;
    padding:40px 20px;
    border-radius:18px;
}

.stat-box h2{
    font-size:42px;
    margin-bottom:10px;
    font-weight:700;
}

.stat-box p{
    font-size:17px;
    color:#f3f3f3;
}


/*==================================
        RESPONSIVE
==================================*/

@media(max-width:992px){

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

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

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

}


@media(max-width:768px){

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

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

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

.feature-card,
.review-card{
    padding:28px;
}

table th,
table td{
    padding:14px;
    font-size:14px;
}

.stat-box h2{
    font-size:34px;
}

}

/*==================================
        SELLER CTA
==================================*/

.seller-cta{
    background:#ffffff;
    text-align:center;
}

.seller-cta .container{
    max-width:850px;
}

.seller-cta h2{
    font-size:42px;
    color:#1d3557;
    margin-bottom:20px;
}

.seller-cta p{
    color:#666;
    margin-bottom:35px;
    font-size:17px;
}


/*==================================
        BUYER CTA
==================================*/

.buyer-cta{
    background:#f8fafc;
    text-align:center;
}

.buyer-cta .container{
    max-width:850px;
}

.buyer-cta h2{
    font-size:42px;
    color:#1d3557;
    margin-bottom:20px;
}

.buyer-cta p{
    color:#666;
    margin-bottom:35px;
    font-size:17px;
}


/*==================================
        INVESTOR
==================================*/

.investor{
    background:linear-gradient(135deg,#0B5FFF,#0038B8);
    color:#fff;
    text-align:center;
}

.investor .container{
    max-width:850px;
}

.investor h2{
    font-size:42px;
    margin-bottom:20px;
}

.investor p{
    margin-bottom:35px;
    font-size:17px;
    color:#e8e8e8;
}

.investor .btn-primary{
    background:#FF6B00;
}

.investor .btn-primary:hover{
    background:#e55b00;
}


/*==================================
            FAQ
==================================*/

.faq{
    background:#fff;
}

.faq-item{
    max-width:850px;
    margin:0 auto 18px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.faq-item button{
    width:100%;
    border:none;
    background:#fff;
    padding:22px 25px;
    cursor:pointer;
    text-align:left;
    font-size:18px;
    font-weight:600;
    color:#1d3557;
}

.faq-content{
    display:none;
    padding:0 25px 22px;
    color:#666;
    line-height:1.8;
    background:#fff;
}

.faq-item.active .faq-content{
    display:block;
}


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

footer{
    background:#111827;
    color:#fff;
    padding:20px 0 10px;
}

.footer-content{
    text-align:center;
}

.footer-content img{
    width:170px;
    margin:auto;
    margin-bottom:25px;
}

.footer-content p{
    color:#d1d5db;
    margin-bottom:12px;
}


/*==================================
        RESPONSIVE
==================================*/

@media(max-width:992px){

.seller-cta h2,
.buyer-cta h2,
.investor h2{

    font-size:34px;

}

}


@media(max-width:768px){

section{

    padding:70px 0;

}

.seller-cta h2,
.buyer-cta h2,
.investor h2{

    font-size:28px;

}

.seller-cta p,
.buyer-cta p,
.investor p{

    font-size:15px;

}

.faq-item button{

    font-size:16px;
    padding:18px;

}

.faq-content{

    padding:0 18px 18px;

}

.footer-content img{

    width:140px;

}

}

.nav-links a.active{
    color:#ff6b00;
    font-weight:600;
}