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

body{
    font-family:'Poppins',sans-serif;
    background:#07111f;
    color:white;
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    width:700px;
    height:700px;
    background:#22c55e;
    filter:blur(180px);
    opacity:.12;

    top:-200px;
    left:-200px;

    z-index:-1;
}

body::after{
    content:'';
    position:fixed;
    width:600px;
    height:600px;

    background:#2563eb;

    filter:blur(180px);
    opacity:.12;

    bottom:-200px;
    right:-200px;

    z-index:-1;
}

/* NAVBAR */

.navbar{
    width:100%;
    padding:20px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    z-index:1000;

    background:rgba(8,15,30,.7);
    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.05);
}

.logo{
    padding:10px 14px;

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

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    backdrop-filter:blur(10px);
}

.logo img{
    width:40px;
    height:auto;

    object-fit:contain;

    filter:
    drop-shadow(0 0 12px rgba(34,197,94,.35));

    transition:.3s;
}

.logo img:hover{
    transform:scale(1.06);
}

.navbar ul{
    display:flex;
    gap:30px;
    list-style:none;
}

.navbar ul li a{
    position:relative;
    transition:.3s;
}

.navbar ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#22c55e;
    transition:.3s;
}

.navbar ul li a:hover::after{
    width:100%;
}

.navbar a{
    color:white;
    text-decoration:none;
}

.btn-demo{
    background:linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    padding:14px 28px;
    border-radius:14px;
    text-decoration:none;
    color:white;
    font-weight:600;

    box-shadow:
    0 10px 30px rgba(34,197,94,.3);
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:120px 7%;
    gap:60px;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;

    z-index:-1;
}

.hero-left{
    flex:1;
}

.hero-left h1{
    font-size:68px;
    line-height:1.1;
    margin:20px 0;

    background:linear-gradient(
        to right,
        #ffffff,
        #22c55e
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-left p{
    color:#94a3b8;
    font-size:18px;
    max-width:600px;
    line-height:1.8;
}

.hero-left,
.hero-right{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.badge{
    background:rgba(34,197,94,.15);
    color:#22c55e;
    padding:10px 20px;
    border-radius:999px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-primary{
    background:#22c55e;
    color:white;
    padding:16px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    box-shadow: 0 10px 30px rgba(34,197,94,.35);

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

.btn-primary,
.btn-demo{
    transition:.3s;
}

.btn-primary:hover,
.btn-demo:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(34,197,94,.4);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.2);
    padding:16px 28px;
    border-radius:14px;
    text-decoration:none;
    color:white;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    position:relative;
}

.hero-right::before{
    content:'';
    position:absolute;

    width:400px;
    height:400px;

    background:#22c55e;
    filter:blur(140px);

    opacity:.12;

    z-index:-1;
}

.glass-card{
    width:100%;
    max-width:560px;
    padding:20px;
    transition:.4s;

    overflow:hidden;
    background:rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:32px;

    backdrop-filter:blur(30px);

    box-shadow:
    0 20px 80px rgba(0,0,0,.5),
    inset 0 1px 1px rgba(255,255,255,.08);

    animation:float 6s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }

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

    100%{
        transform:translateY(0px);
    }
}

.glass-card img{
    width:100%;
    border-radius:20px;
}

.glass-card:hover{
    transform:translateY(-8px) scale(1.01);
}

.particle{
    position:fixed;
    border-radius:50%;
    background:#22c55e;
    filter:blur(120px);
    opacity:.12;
    z-index:-1;

    animation:floatParticle 8s infinite ease-in-out;
}

.p1{
    width:300px;
    height:300px;
    top:10%;
    left:-100px;
}

.p2{
    width:250px;
    height:250px;
    bottom:10%;
    right:-80px;
}

.p3{
    width:200px;
    height:200px;
    top:50%;
    left:40%;
}

@keyframes floatParticle{

    0%{
        transform:translateY(0px);
    }

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

    100%{
        transform:translateY(0px);
    }
}

/* FEATURES */

.features{
    padding:120px 7%;
    position:relative;
}

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

.section-header h2{
    font-size:52px;
    margin:20px 0;

    background:linear-gradient(
        to right,
        #ffffff,
        #22c55e
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-header p{
    color:#94a3b8;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

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

    gap:30px;
}

.feature-card{
    background:rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:35px;

    backdrop-filter:blur(20px);

    transition:.4s;

    position:relative;
    overflow:hidden;
}

.feature-card::before{
    content:'';
    position:absolute;

    width:160px;
    height:160px;

    background:#22c55e;

    filter:blur(100px);

    opacity:.08;

    top:-50px;
    right:-50px;
}

.feature-card:hover{
    transform:
    translateY(-10px);

    border-color:
    rgba(34,197,94,.4);

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.feature-icon{
    font-size:42px;
    margin-bottom:20px;
}

.feature-card h3{
    font-size:24px;
    margin-bottom:14px;
}

.feature-card p{
    color:#94a3b8;
    line-height:1.8;
}

/* DASHBOARD */

.dashboard-section{
    padding:120px 7%;
    position:relative;
}

.dashboard-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
    margin-top:70px;
}

.dashboard-left,
.dashboard-right{
    flex:1;
}

.dashboard-card{
    display:grid;

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

    gap:25px;
}

.dashboard-stat{
    background:rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:35px;

    backdrop-filter:blur(20px);

    transition:.4s;
}

.dashboard-stat:hover{
    transform:translateY(-10px);

    border-color:
    rgba(34,197,94,.35);

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.dashboard-stat span{
    color:#94a3b8;
    font-size:14px;
}

.dashboard-stat h3{
    font-size:38px;
    margin:14px 0;
}

.dashboard-stat small{
    color:#22c55e;
}

.dashboard-preview{
    background:rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:20px;

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 80px rgba(0,0,0,.45);

    animation:float 6s ease-in-out infinite;
}

.dashboard-preview img{
    width:100%;
    border-radius:20px;
}

/* PRICING */

.pricing-section{
    padding:120px 7%;
    position:relative;
}

.pricing-wrapper{
    display:grid;

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

    gap:30px;

    margin-top:70px;
}

.pricing-card{
    position:relative;

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

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:45px 35px;

    overflow:hidden;

    backdrop-filter:blur(20px);

    transition:.4s;
}

.pricing-card:hover{
    transform:translateY(-10px);

    border-color:
    rgba(34,197,94,.3);

    box-shadow:
    0 20px 80px rgba(0,0,0,.45);
}

.pricing-card.active{
    transform:scale(1.04);

    border:
    1px solid rgba(34,197,94,.4);

    box-shadow:
    0 20px 90px rgba(34,197,94,.18);
}

.pricing-glow{
    position:absolute;

    width:240px;
    height:240px;

    background:#22c55e;

    filter:blur(120px);

    opacity:.08;

    top:-120px;
    right:-120px;
}

.active-glow{
    opacity:.15;
}

.blue-glow{
    background:#3b82f6;
}

.popular-badge{
    position:absolute;

    top:20px;
    right:20px;

    background:#22c55e;

    color:white;

    font-size:13px;
    font-weight:600;

    padding:8px 18px;

    border-radius:999px;

    box-shadow:
    0 10px 30px rgba(34,197,94,.35);
}

.plan-label{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

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

    font-size:14px;
}

.plan-label.premium{
    background:
    rgba(34,197,94,.15);

    color:#22c55e;
}

.plan-label.enterprise{
    background:
    rgba(59,130,246,.15);

    color:#60a5fa;
}

.pricing-top h3{
    font-size:34px;
    margin:25px 0 20px;
}

.price-area{
    display:flex;
    align-items:end;
    gap:10px;

    margin-bottom:20px;
}

.price-area h1{
    font-size:58px;
    color:#22c55e;
}

.price-area span{
    color:#94a3b8;
    margin-bottom:10px;
}

.pricing-top p{
    color:#94a3b8;
    line-height:1.8;
}

.pricing-feature{
    list-style:none;

    margin:40px 0;

    display:flex;
    flex-direction:column;

    gap:18px;
}

.pricing-feature li{
    color:#e2e8f0;
}

.pricing-button{
    display:block;

    text-align:center;

    padding:18px;

    border-radius:18px;

    text-decoration:none;

    color:white;

    border:
    1px solid rgba(255,255,255,.1);

    transition:.3s;
}

.pricing-button:hover{
    background:#22c55e;

    border-color:#22c55e;

    transform:translateY(-4px);
}

.active-btn{
    background:#22c55e;

    border-color:#22c55e;

    box-shadow:
    0 10px 30px rgba(34,197,94,.3);
}

.pricing-note{
    text-align:center;

    margin-top:40px;

    color:#94a3b8;
}

/* CONTACT */

.contact-section{
    padding:120px 7%;
    position:relative;
}

.contact-glow{
    position:absolute;

    width:400px;
    height:400px;

    background:#22c55e;

    filter:blur(140px);

    opacity:.08;

    top:50px;
    left:-120px;

    z-index:-1;
}

.contact-wrapper{
    display:flex;
    gap:40px;

    margin-top:70px;
}

.contact-info,
.contact-cta{
    flex:1;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-card{
    background:rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:28px;

    display:flex;
    align-items:center;
    gap:20px;

    backdrop-filter:blur(20px);

    transition:.4s;
}

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

    border-color:
    rgba(34,197,94,.35);

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.contact-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    background:
    rgba(34,197,94,.15);

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

    font-size:30px;
}

.contact-card span{
    display:block;

    color:#94a3b8;

    margin-bottom:6px;
}

.contact-card a{
    color:white;

    text-decoration:none;

    font-size:18px;
    font-weight:600;
}

.cta-card{
    height:100%;

    background:
    linear-gradient(
        135deg,
        rgba(34,197,94,.15),
        rgba(59,130,246,.08)
    );

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:50px;

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

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 80px rgba(0,0,0,.35);
}

.cta-card h3{
    font-size:42px;
    line-height:1.2;

    margin-bottom:20px;
}

.cta-card p{
    color:#94a3b8;

    line-height:1.8;

    margin-bottom:40px;
}

.cta-button{
    display:inline-flex;

    width:max-content;

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

    padding:18px 30px;

    border-radius:18px;

    background:#22c55e;

    color:white;

    text-decoration:none;

    font-weight:600;

    box-shadow:
    0 10px 30px rgba(34,197,94,.35);

    transition:.3s;
}

.cta-button:hover{
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .hero{
        flex-direction:column;
        text-align:center;
        padding-top:160px;
    }

    .hero-left h1{
        font-size:56px;
    }
    
    .hero-left{
        max-width:700px;
    }

    .hero-left p{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }
}

@media(max-width:1100px){

    .pricing-wrapper{
        grid-template-columns:1fr;
    }

    .pricing-card.active{
        transform:none;
    }
}

@media(max-width:992px){

    .dashboard-wrapper{
        flex-direction:column;
    }

    .dashboard-card{
        grid-template-columns:1fr;
    }
    
    .contact-wrapper{
        flex-direction:column;
    }
}

@media(max-width:768px){

    .navbar{
        padding:20px;
    }

    .navbar ul{
        display:none;
    }

    .hero{
        padding:140px 20px 60px;
    }

    .hero-left h1{
        font-size:42px;
    }

    .hero-left p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }
    
    .hero-left h1 br{
        display:none;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .glass-card{
        margin-top:20px;
    }
    
    .contact-section{
        padding:80px 20px;
    }

    .contact-card{
        flex-direction:column;
        text-align:center;
    }

    .cta-card{
        padding:35px;
        text-align:center;
    }

    .cta-card h3{
        font-size:32px;
    }

    .cta-button{
        width:100%;
    }
}