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

.home-hero{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:white;

    padding:80px 20px;

}

.home-hero-content{

    max-width:1300px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.home-hero-text{

    flex:1;

}

.home-hero-badge{

    display:inline-block;

    background:#16c47f;

    padding:8px 18px;

    border-radius:25px;

    margin-bottom:25px;

    font-size:14px;

}

.home-hero h1{

    font-size:60px;

    line-height:1.15;

    margin-bottom:25px;

}

.home-hero h1 span{

    color:#16c47f;

}

.home-hero p{

    font-size:22px;

    line-height:1.8;

    color:#ddd;

}

.home-hero-buttons{

    display:flex;

    gap:20px;

    margin:40px 0;

}

.btn-primary{

    background:#16c47f;

    color:white;

    padding:16px 28px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

}

.btn-secondary{

    border:2px solid #16c47f;

    color:white;

    padding:16px 28px;

    border-radius:8px;

    text-decoration:none;

}

.home-hero-features{

    display:grid;

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

    gap:15px;

    margin-top:30px;

}

.home-hero-image{

    flex:1;

    text-align:center;

}

.home-hero-image img{

    width:100%;

    max-width:620px;

    height:auto;

}

/* ==========================================================
   INTRO
========================================================== */

.intro{

    padding:70px 20px;

    background:white;

}

.intro h2{

    text-align:center;

    margin-bottom:30px;

}

.intro p{

    max-width:900px;

    margin:20px auto;

    line-height:1.9;

    font-size:18px;

}

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

.features{

    padding:70px 20px;

    background:#f7f9fc;

}

.features .container{

    display:grid;

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

    gap:30px;

}

.feature-card{

    background:white;

    padding:35px;

    border-radius:12px;

    text-align:center;

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

}

.feature-card .icon{

    font-size:48px;

    margin-bottom:20px;

}
/* ==========================================================
   WHY VPN
========================================================== */

.why-vpn{

    padding:80px 20px;

    background:#ffffff;

}

.section-intro{

    max-width:850px;

    margin:20px auto 60px;

    text-align:center;

    font-size:18px;

    line-height:1.8;

}

.benefits-grid{

    display:grid;

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

    gap:30px;

}

.benefit{

    background:#f8fafc;

    padding:35px;

    border-radius:12px;

    text-align:center;

    transition:.3s;

}

.benefit:hover{

    transform:translateY(-6px);

}

.benefit-icon{

    font-size:48px;

    margin-bottom:20px;

}

/* ==========================================================
   VPN EXPLAINED
========================================================== */

.vpn-explained{

    padding:80px 20px;

    background:#eef5fb;

}

.vpn-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.vpn-grid p{

    line-height:1.9;

    margin-top:20px;

}

.vpn-image{

    width:100%;

    max-width:500px;

    display:block;

    margin:auto;

}

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

.vpn-table{

    padding:80px 20px;

}

.vpn-table table{

    width:100%;

    border-collapse:collapse;

    margin-top:40px;

}

.vpn-table th{

    background:#10283d;

    color:white;

    padding:18px;

}

.vpn-table td{

    padding:18px;

    border-bottom:1px solid #e5e7eb;

}

.vpn-table tr:nth-child(even){

    background:#f9fafb;

}

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

@media(max-width:900px){

.vpn-grid{

    grid-template-columns:1fr;

    text-align:center;

}

}
/* ==========================================================
   PRICING
========================================================== */

.pricing{

    padding:90px 20px;

    background:#f8fafc;

}

.pricing h2{

    text-align:center;

    margin-bottom:20px;

}

.pricing-intro{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

}

.pricing-grid{

    display:grid;

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

    gap:35px;

}

.pricing-card{

    background:white;

    border-radius:14px;

    padding:40px;

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

    text-align:center;

    position:relative;

}

.featured{

    border:3px solid #16c47f;

    transform:scale(1.05);

}

.popular{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:#16c47f;

    color:white;

    padding:8px 18px;

    border-radius:20px;

    font-size:14px;

}

.plan-title{

    font-size:28px;

    font-weight:bold;

    margin-bottom:20px;

}

.plan-price{

    font-size:48px;

    color:#16c47f;

    font-weight:bold;

    margin-bottom:30px;

}

.plan-price span{

    font-size:18px;

    color:#666;

}

.pricing-card ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}
.pricing{

    position:relative;

    z-index:100;

}

.pricing-card li{

    padding:12px 0;

    border-bottom:1px solid #eee;

}

.pricing-btn{

    display:inline-block;

    background:#16c47f;

    color:white;

    padding:14px 30px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;
        position:relative;

    z-index:50;

}

.pricing-btn:hover{

    background:#12a96d;

}

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

.cta{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:white;

    text-align:center;

    padding:90px 20px;

}

.cta h2{

    font-size:46px;

    margin-bottom:20px;

}

.cta p{

    font-size:22px;

    max-width:700px;

    margin:0 auto 40px;

    color:#d6d6d6;

}
