/* ==========================================
   TRENZYCH VPN HOME CSS v2.0
========================================== */

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

.hero{
    position:relative;
    overflow:hidden;
    padding:90px 20px;
    text-align:center;
    background:
        radial-gradient(circle at top,rgba(0,230,118,.12),transparent 45%),
        linear-gradient(180deg,#07101d 0%,#0b1220 100%);
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at center,
        rgba(0,230,118,.08),
        transparent 60%);
    pointer-events:none;
    z-index:0;
}

.hero-content{
    position:relative;
    max-width:760px;
    margin:auto;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:14px 34px;
    border-radius:999px;
    border:1px solid rgba(0,230,118,.25);
    background:rgba(0,230,118,.08);
    color:#00e676;
    font-size:18px;
    font-weight:700;
    margin-bottom:28px;
    backdrop-filter:blur(10px);
}

.hero h1{
    font-size:72px;
    line-height:1;
    font-weight:800;
    margin-bottom:24px;
    color:#D4AF37;
    letter-spacing:2px;
    text-shadow:
        0 2px 4px rgba(0,0,0,.35),
        0 0 8px rgba(212,175,55,.18);
}

.hero-subtitle{
    max-width:680px;
    margin:0 auto 40px;
    color:#cbd5e1;
    font-size:24px;
    line-height:1.8;
}

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

.hero-buttons .btn{
    min-width:260px;
    padding:18px 32px;
    border-radius:18px;
    font-size:20px;
    font-weight:700;
}

.btn-outline{
    background:#be123c;
}/* ========= STATS ========= */

.stats{
    padding:80px 20px;
}

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

.stat-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:230px;
    padding:30px;
    border-radius:24px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    background:rgba(15,23,42,.82);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    transition:.3s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:#00e676;
    box-shadow:
        0 18px 40px rgba(0,0,0,.45),
        0 0 25px rgba(0,230,118,.25);
}

.stat-icon{
    font-size:58px;
    margin-bottom:18px;
}

.stat-number{
    font-size:50px;
    font-weight:800;
    color:#00e676;
    margin-bottom:12px;
}

.stat-label{
    font-size:22px;
    color:#cbd5e1;
}/* ========= WHY CHOOSE ========= */

.why{
    padding:80px 20px;
}

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

.section-title h2{
    font-size:42px;
    color:#fff;
    margin-bottom:12px;
}

.section-title p{
    color:#94a3b8;
    font-size:20px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.why-card{
    background:rgba(15,23,42,.82);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:30px;
    transition:.3s;
    backdrop-filter:blur(16px);
}

.why-card:hover{
    transform:translateY(-6px);
    border-color:#00e676;
    box-shadow:0 0 28px rgba(0,230,118,.18);
}

.why-icon{
    font-size:44px;
    margin-bottom:18px;
}

.why-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:14px;
}

.why-card p{
    color:#aab6c7;
    font-size:18px;
    line-height:1.7;
}

/* ========= SERVER LOCATIONS ========= */

.locations{
    padding:80px 20px;
}

.location-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.location-card{
    text-align:center;
    background:rgba(15,23,42,.82);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:32px;
    transition:.3s;
}

.location-card:hover{
    transform:translateY(-6px);
    border-color:#00e676;
    box-shadow:0 0 28px rgba(0,230,118,.18);
}

.location-card{
    font-size:46px;
}

.location-card h3{
    color:#fff;
    font-size:28px;
    margin:16px 0 10px;
}

.location-card p{
    color:#94a3b8;
    font-size:18px;
}/* ========= DOWNLOADS ========= */

.downloads{
    padding:80px 20px;
}

.download-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.download-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    text-decoration:none;
    color:#fff;

    background:rgba(15,23,42,.82);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;

    padding:34px;
    transition:.3s;
    backdrop-filter:blur(16px);
}

.download-card:hover{
    transform:translateY(-6px);
    border-color:#00e676;
    box-shadow:0 0 28px rgba(0,230,118,.18);
}

.download-icon{
    font-size:54px;
    margin-bottom:18px;
}

.download-card h3{
    font-size:28px;
    margin-bottom:12px;
    color:#fff;
}

.download-card p{
    color:#94a3b8;
    font-size:18px;
    line-height:1.6;
}

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

.faq{
    padding:80px 20px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:rgba(15,23,42,.82);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:28px;
    transition:.3s;
}

.faq-item:hover{
    border-color:#00e676;
    box-shadow:0 0 28px rgba(0,230,118,.18);
}

.faq-item h3{
    color:#fff;
    font-size:24px;
    margin-bottom:14px;
}

.faq-item p{
    color:#94a3b8;
    font-size:18px;
    line-height:1.7;
}/* ========= RESPONSIVE ========= */

@media (min-width:992px){

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

.why-grid{
    grid-template-columns:repeat(4,1fr);
}

.location-grid{
    grid-template-columns:repeat(4,1fr);
}

.download-grid{
    grid-template-columns:repeat(4,1fr);
}

}

@media (max-width:991px){

.hero h1{
    font-size:56px;
}

.hero-subtitle{
    font-size:20px;
}

.section-title h2{
    font-size:34px;
}

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

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

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

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

}

@media (max-width:768px){

.hero{
    padding:70px 20px;
}

.hero h1{
    font-size:44px;
}

.hero-subtitle{
    font-size:17px;
    line-height:1.7;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.hero-buttons .btn{
    width:100%;
    max-width:320px;
}

.stats-grid,
.why-grid,
.location-grid,
.download-grid{
    grid-template-columns:1fr;
}

.stat-card,
.why-card,
.location-card,
.download-card,
.faq-item{
    padding:24px;
}

.stat-number{
    font-size:40px;
}

.stat-label{
    font-size:18px;
}

.section-title h2{
    font-size:30px;
}

.section-title p{
    font-size:17px;
}

}

/* ========= END ========= */
/* ========= HERO ANIMATION ========= */

.hero{
    position:relative;
    overflow:hidden;
}

.hero::after{
    content:"";
    position:absolute;
    top:-40%;
    left:-40%;
    width:180%;
    height:180%;
    background:
        radial-gradient(circle,
        rgba(0,230,118,.12),
        transparent 60%);
    animation:heroGlow 12s linear infinite;
    pointer-events:none;
    z-index:1;
}

@keyframes heroGlow{
    0%{
        transform:translate(-8%,-8%) rotate(0deg);
    }
    50%{
        transform:translate(8%,8%) rotate(180deg);
    }
    100%{
        transform:translate(-8%,-8%) rotate(360deg);
    }
}
/* ========= SCROLL ANIMATION ========= */

.animate{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.animate.show{
    opacity:1;
    transform:translateY(0);
}
