/*==================================================
LOGNEXUS HOMEPAGE
==================================================*/

:root{

    --primary:#2563eb;
    --secondary:#06b6d4;
    --success:#22c55e;

    --bg:#020617;
    --surface:#0f172a;
    --surface-light:#162033;

    --border:rgba(255,255,255,.08);

    --text:#ffffff;
    --muted:#94a3b8;

    --radius:24px;

    --transition:.35s ease;

}

/*=========================================
GLOBAL
=========================================*/

body{

    background:var(--bg);

    color:var(--text);

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

}

.container{

    width:min(1400px,92%);

    margin:auto;

}

section{

    padding:120px 0;

}

.section-header{

    text-align:center;

    max-width:760px;

    margin:auto auto 70px;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(37,99,235,.12);

    border:1px solid rgba(37,99,235,.25);

    color:#60a5fa;

    font-weight:600;

    margin-bottom:20px;

}

.section-header h2{

    font-size:48px;

    margin-bottom:18px;

}

.section-header p{

    color:var(--muted);

    line-height:1.8;

}

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

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:14px;

    background:linear-gradient(135deg,#2563eb,#06b6d4);

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:var(--transition);

    border:none;

    cursor:pointer;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(37,99,235,.35);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:14px;

    border:1px solid var(--border);

    color:white;

    text-decoration:none;

    transition:var(--transition);

    background:transparent;

}

.btn-outline:hover{

    background:rgba(255,255,255,.05);

}

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

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(2,6,23,.72);

    border-bottom:1px solid var(--border);

}

.nav-container{

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

}

.logo-box{

    width:48px;

    height:48px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#2563eb,#06b6d4);

    color:white;

    font-size:22px;

}

.logo-text h2{

    font-size:26px;

    color:white;

}

.logo-text span{

    color:#60a5fa;

}

.logo-text small{

    color:var(--muted);

}

.nav-links{

    display:flex;

    gap:34px;

}

.nav-links a{

    text-decoration:none;

    color:var(--muted);

    transition:var(--transition);

    font-weight:500;

}

.nav-links a:hover,

.nav-links .active{

    color:white;

}

.search-box{

    width:270px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:999px;

    background:var(--surface);

    border:1px solid var(--border);

}

.search-box input{

    background:none;

    border:none;

    outline:none;

    color:white;

    width:100%;

}

.search-box i{

    color:var(--muted);

}

.nav-actions{

    display:flex;

    gap:15px;

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    radial-gradient(circle at right,#1d4ed830,transparent 35%),
    radial-gradient(circle at left,#06b6d420,transparent 30%),
    var(--bg);

    padding-top:100px;

}

.hero-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    padding:12px 20px;

    border-radius:999px;

    background:#0f172a;

    border:1px solid var(--border);

    color:#60a5fa;

    margin-bottom:24px;

}

.hero h1{

    font-size:68px;

    line-height:1.05;

    margin-bottom:24px;

}

.hero h1 span{

    color:#60a5fa;

}

.hero p{

    color:var(--muted);

    line-height:1.9;

    font-size:18px;

    margin-bottom:35px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:40px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:8px;

}

.hero-features i{

    color:var(--success);

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.hero-trust{

    color:var(--muted);

}

.hero-right{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.product-preview{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:24px;

    padding:30px;

    transition:var(--transition);

}

.product-preview:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 20px 45px rgba(37,99,235,.2);

}

.live-badge{

    display:inline-block;

    padding:6px 12px;

    border-radius:999px;

    background:#22c55e20;

    color:#22c55e;

    font-size:12px;

    margin-bottom:16px;

}

.product-preview h2{

    color:#60a5fa;

    margin-top:12px;

}
/*==================================================
STATISTICS
==================================================*/

.stats-section{

    background:#07111f;

}

.stats-grid{

    display:grid;

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

    gap:30px;

}

.stat-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:24px;

    padding:40px;

    text-align:center;

    transition:var(--transition);

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#2563eb;

    box-shadow:0 20px 40px rgba(37,99,235,.18);

}

.stat-icon{

    width:75px;

    height:75px;

    margin:auto auto 25px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#2563eb,#06b6d4);

    color:white;

    font-size:30px;

}

.stat-card h2{

    font-size:42px;

    margin-bottom:10px;

}

.stat-card p{

    color:var(--muted);

}

/*==================================================
LIVE MARKETPLACE
==================================================*/

.activity-section{

    background:var(--bg);

}

.activity-list{

    max-width:900px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.activity-item{

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:18px;

    padding:20px 24px;

    transition:var(--transition);

}

.activity-item:hover{

    transform:translateX(8px);

    border-color:#2563eb;

}

.activity-left{

    display:flex;

    align-items:center;

    gap:16px;

}

.activity-avatar{

    width:48px;

    height:48px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#06b6d4);

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-weight:700;

}

.activity-title{

    color:white;

    font-weight:600;

}

.activity-time{

    color:var(--muted);

    font-size:14px;

}

/*==================================================
FEATURED PRODUCTS
==================================================*/

.featured-section{

    background:#07111f;

}

.featured-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.product-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-10px);

    border-color:#2563eb;

    box-shadow:0 25px 50px rgba(37,99,235,.18);

}

.product-image{

    height:220px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#111c31;

}

.product-image img{

    width:90px;

    height:90px;

    object-fit:contain;

}

.product-body{

    padding:28px;

}

.product-category{

    display:inline-block;

    padding:6px 14px;

    border-radius:999px;

    background:#1e293b;

    color:#60a5fa;

    font-size:13px;

    margin-bottom:18px;

}

.product-body h3{

    font-size:24px;

    margin-bottom:10px;

}

.product-body p{

    color:var(--muted);

    margin-bottom:20px;

}

.product-price{

    font-size:30px;

    font-weight:700;

    color:#60a5fa;

    margin-bottom:22px;

}

.product-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.stock{

    color:#22c55e;

    font-weight:600;

}

.stock i{

    margin-right:6px;

}

.loading-products{

    grid-column:1/-1;

    text-align:center;

    padding:80px;

    color:var(--muted);

}

.loading-products i{

    font-size:42px;

    color:#60a5fa;

    margin-bottom:20px;

}

/*==================================================
CATEGORIES
==================================================*/

.categories-section{

    background:var(--bg);

}

.categories-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.category-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:var(--transition);

}

.category-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(37,99,235,.18);

}

.category-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    font-size:32px;

}

.category-card h3{

    margin-bottom:15px;

    color:var(--text);

}

.category-card p{

    color:var(--muted);

    line-height:1.7;

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-section{

    background:#07111f;

}

.why-grid{

    display:grid;

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

    gap:30px;

}

.why-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

}

.why-card i{

    width:70px;

    height:70px;

    margin-bottom:20px;

    border-radius:18px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:white;

    font-size:28px;

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    color:var(--muted);

    line-height:1.7;

}

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

.how-section{

    background:var(--bg);

}

.steps-grid{

    display:grid;

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

    gap:30px;

}

.step-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:var(--transition);

    position:relative;

}

.step-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(37,99,235,.18);

}

.step-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:white;

    font-size:32px;

}

.step-card h3{

    margin-bottom:15px;

}

.step-card p{

    color:var(--muted);

    line-height:1.7;

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

.faq-section{

    background:#07111f;

}

.faq-grid{

    display:grid;

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

    gap:30px;

}

.faq-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    transition:var(--transition);

}

.faq-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.faq-card h3{

    margin-bottom:15px;

    color:var(--text);

}

.faq-card p{

    color:var(--muted);

    line-height:1.8;

}

/*==================================================
NEWSLETTER
==================================================*/

.newsletter-section{

    background:linear-gradient(135deg,#2563eb,#06b6d4);

    padding:90px 0;

}

.newsletter-container{

    text-align:center;

}

.newsletter-container h2{

    color:white;

    font-size:42px;

    margin-bottom:20px;

}

.newsletter-container p{

    color:rgba(255,255,255,.9);

    margin-bottom:35px;

}

.newsletter-form{

    max-width:650px;

    margin:auto;

    display:flex;

    gap:15px;

}

.newsletter-form input{

    flex:1;

    padding:18px 22px;

    border:none;

    outline:none;

    border-radius:14px;

    font-size:16px;

}

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

.footer{

    background:#01050f;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer h2{

    color:white;

    margin-bottom:18px;

}

.footer h2 span{

    color:var(--primary);

}

.footer h3{

    color:white;

    margin-bottom:20px;

}

.footer p{

    color:var(--muted);

    line-height:1.8;

}

.footer a{

    display:block;

    margin-bottom:12px;

    color:var(--muted);

    text-decoration:none;

    transition:var(--transition);

}

.footer a:hover{

    color:white;

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--surface);

    border-radius:50%;

    border:1px solid var(--border);

}

.footer-bottom{

    text-align:center;

    padding-top:30px;

    border-top:1px solid var(--border);

    color:var(--muted);

}

/*==================================================
ANIMATIONS
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

html{

    scroll-behavior:smooth;

}

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

@media(max-width:1100px){

.hero-container,

.footer-grid,

.why-grid,

.steps-grid,

.stats-grid{

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

}

.nav-links,

.search-box{

display:none;

}

.menu-toggle{

display:block;

background:none;

border:none;

color:white;

font-size:28px;

cursor:pointer;

}

}

@media(max-width:768px){

.hero{

text-align:center;

}

.hero-container,

.stats-grid,

.categories-grid,

.featured-grid,

.why-grid,

.steps-grid,

.faq-grid,

.footer-grid{

grid-template-columns:1fr;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-features{

justify-content:center;

}

.newsletter-form{

flex-direction:column;

}

.section-header h2{

font-size:34px;

}

.hero h1{

font-size:44px;

}

}
/*=========================================
FLOATING SOCIAL ICONS
=========================================*/

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:500px;

}

.floating-icons{

    position:absolute;

    display:flex;

    flex-direction:column;

    gap:35px;

}

.left-icons{

    left:20px;

}

.right-icons{

    right:20px;

}

.social-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:white;

    cursor:pointer;

    transition:.4s;

    animation:float 4s ease-in-out infinite;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

}
.facebook{

    background:#1877F2;

}

.instagram{

    background:linear-gradient(
        135deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );

}

.tiktok{

    background:#000;

}

.telegram{

    background:#229ED9;

}
.social-icon:hover{

    transform:scale(1.15);

    box-shadow:0 20px 40px rgba(37,99,235,.4);

}
@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}
.left-icons .social-icon:nth-child(2){

animation-delay:.8s;

}

.left-icons .social-icon:nth-child(3){

animation-delay:1.6s;

}

.right-icons .social-icon:nth-child(2){

animation-delay:1s;

}

.right-icons .social-icon:nth-child(3){

animation-delay:2s;

}

/*==================================================
COMMUNITY & SUPPORT
==================================================*/

.community-section{

    background:#07111f;

}

.community-grid{

    display:grid;

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

    gap:25px;

    max-width:1000px;

    margin:auto;

}

.community-card{

    display:flex;

    align-items:center;

    gap:22px;

    padding:28px;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:22px;

    text-decoration:none;

    transition:var(--transition);

}

.community-card:hover{

    transform:translateY(-7px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(37,99,235,.18);

}

.community-icon{

    min-width:65px;

    width:65px;

    height:65px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:30px;

}

.telegram-icon{

    background:#229ED9;

    box-shadow:0 10px 25px rgba(34,158,217,.25);

}

.whatsapp-icon{

    background:#25D366;

    box-shadow:0 10px 25px rgba(37,211,102,.2);

}

.community-card h3{

    color:var(--text);

    font-size:20px;

    margin-bottom:8px;

}

.community-card p{

    color:var(--muted);

    line-height:1.6;

    margin-bottom:10px;

}

.community-card span{

    color:#60a5fa;

    font-weight:600;

    font-size:14px;

}

.community-card:hover span{

    color:#93c5fd;

}


/*==================================================
FLOATING CONTACT BUTTONS
==================================================*/

.floating-contact{

    position:fixed;

    right:22px;

    bottom:25px;

    z-index:999;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.floating-contact a{

    width:54px;

    height:54px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    text-decoration:none;

    font-size:25px;

    box-shadow:0 8px 25px rgba(0,0,0,.35);

    transition:.3s ease;

}

.floating-contact a:hover{

    transform:scale(1.12);

}

.floating-whatsapp{

    background:#25D366;

}

.floating-telegram{

    background:#229ED9;

}


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

@media(max-width:768px){

    .community-grid{

        grid-template-columns:1fr;

    }

    .community-card{

        padding:22px;

    }

    .community-icon{

        min-width:55px;

        width:55px;

        height:55px;

        font-size:25px;

    }

    .community-card h3{

        font-size:18px;

    }

}