:root{
    --green:#84CC16;
    --dark:#07111f;
    --card:#0d1b2f;
    --text:#ffffff;
    --gray:#b9c3d3;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Exo 2' ,sans-serif;
    background:var(--dark);
    color:var(--text);
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

header{
    height:90px;
    padding:0 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    background:rgba(6,16,29,.88);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(132,204,22,.2);
    overflow:visible;
}

.logo{
    position: relative;
    z-index: 100;
}

.logo img{
    height: 170px;
    width: auto;

    position: relative;
    top: 15px;

    transition: .3s;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:#fff;
    font-weight:600;
}

nav a:hover{
    color:var(--green);
}

.hero{
    min-height:90vh;

    background:
    linear-gradient(
    rgba(7,17,31,.85),
    rgba(7,17,31,.85)
    ),
    url("../images/ligaflow-banner.png");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    padding-top: 90px;
    padding:0 8%;
}

.hero-content{
    max-width:750px;
}

.hero h1{
    font-size:70px;
    line-height:1.1;
}

.hero h1 span{
    color:var(--green);
}

.hero p{
    margin-top:25px;
    color:var(--gray);
    font-size:22px;
}

.buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn{
    padding:16px 32px;
    border-radius:10px;
    font-weight:700;
}

.btn-primary{
    background:var(--green);
    color:#000;
}

.btn-outline{
    border:2px solid var(--green);
    color:var(--green);
}

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
}

.section-title p{
    color:var(--gray);
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:var(--card);
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(132,204,22,.15);
}

.card h3{
    margin-bottom:15px;
}

.presentation{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.presentation h2{
    font-size:42px;
    margin-bottom:20px;
}

.presentation p{
    color:var(--gray);
    margin-bottom:20px;
}

.presentation ul{
    list-style:none;
}

.presentation li{
    margin-bottom:12px;
}

.presentation li::before{
    content:"✓ ";
    color:var(--green);
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.pricing-card{
    background:var(--card);
    padding:40px;
    border-radius:20px;
    text-align:center;
}

.featured{
    border:2px solid var(--green);
}

.price{
    font-size:40px;
    color:var(--green);
    font-weight:800;
    margin:20px 0;
}

.cta{
    text-align:center;
    background:
    linear-gradient(
    135deg,
    #84CC16,
    #22C55E
    );
}

.cta h2{
    font-size:48px;
    color:#06101d;
}

.cta p{
    color:#06101d;
    margin:20px 0 35px;
}

.cta a{
    display:inline-block;
    padding:16px 35px;
    border-radius:10px;
    background:#06101d;
    color:#fff;
    font-weight:700;
}

footer{
    text-align:center;
    padding:30px;
    background:#050b14;
}

@media(max-width:992px){

    .features-grid,
    .pricing-grid,
    .presentation{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:48px;
    }

    nav{
        display:none;
    }

}
.header-buttons{
    display:flex;
    gap:15px;
    align-items:center;
}

.login-btn{
    color:#fff;
    padding:12px 20px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:10px;
    transition:.3s;
}

.login-btn:hover{
    border-color:#84CC16;
    color:#84CC16;
}

.register-btn{
    background:#84CC16;
    color:#07111f;
    font-weight:700;
    padding:12px 22px;
    border-radius:10px;
    transition:.3s;
}

.register-btn:hover{
    transform:translateY(-2px);
    background:#9ee31f;
}
.modal{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.75);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;
}

.modal.show{
    opacity:1;
    visibility:visible;
}

.modal-content{

    width:90%;
    max-width:500px;

    background:#0d1b2f;

    border:1px solid rgba(132,204,22,.3);

    border-radius:20px;

    padding:40px;

    position:relative;

    box-shadow:
        0 0 30px rgba(132,204,22,.15);
}

.modal-content h2{
    color:#84CC16;
    margin-bottom:10px;
}

.modal-subtitle{
    color:#b9c3d3;
    margin-bottom:30px;
}

.contact-item{
    margin-bottom:18px;
    font-size:18px;
}

.contact-item a{
    color:#84CC16;
}

.contact-item a:hover{
    text-decoration:underline;
}

.close-modal{
    position:absolute;
    right:20px;
    top:15px;

    font-size:32px;
    cursor:pointer;

    color:#fff;
}

.close-modal:hover{
    color:#84CC16;
}
.pricing-table-wrapper{
    overflow-x:auto;
    background:#0d1b2f;
    border:1px solid rgba(132,204,22,.2);
    border-radius:20px;
    padding:20px;
}

.pricing-table{
    width:100%;
    border-collapse:collapse;
    min-width:850px;
}

.pricing-table th,
.pricing-table td{
    padding:18px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.pricing-table th:first-child,
.pricing-table td:first-child{
    text-align:left;
}

.pricing-table th{
    color:#84CC16;
    font-size:18px;
}

.pricing-table td{
    color:#d7deea;
}

.pricing-table tr:last-child td{
    border-bottom:none;
}

.pricing-table tbody tr:hover{
    background:rgba(132,204,22,.06);
}