/* === VPN Landing Page — /vpn === */

/* Hero checks */
.vpn-hero-checks {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.vpn-hero-checks .cta-check {
    color: #00e676;
    text-shadow: 0 0 8px #00e676, 0 0 16px #00c853;
    font-weight: bold;
}

.vpn-hero-checks .cta-item {
    white-space: nowrap;
}

/* What is VPN — explainer */
.vpn-explainer {
    max-width: 860px;
    margin: 0 auto;
}

.vpn-explainer-text {
    color: var(--text-secondary, #aaa);
    font-size: 1rem;
    line-height: 1.8;
}

.vpn-explainer-text p {
    margin-bottom: 1.2rem;
}

.vpn-explainer-text strong {
    color: var(--text-primary, #fff);
}

.vpn-benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.vpn-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.vpn-benefit-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.vpn-benefits-list li strong {
    color: var(--primary, #00D97E);
}

/* Advantages grid */
.vpn-advantages {
    max-width: 960px;
    margin: 0 auto;
}

.vpn-advantage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vpn-advantage-item {
    background: rgba(26, 31, 46, 0.7);
    border: 1px solid rgba(0, 217, 126, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vpn-advantage-item:hover {
    border-color: rgba(0, 217, 126, 0.4);
    box-shadow: 0 0 25px rgba(0, 217, 126, 0.12);
}

.vpn-adv-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.vpn-advantage-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    margin-bottom: 0.6rem;
}

.vpn-advantage-item:hover h3 {
    color: var(--primary, #00D97E);
}

.vpn-advantage-item p {
    color: var(--text-secondary, #aaa);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Protocol note */
.vpn-proto-note {
    text-align: center;
    color: var(--text-secondary, #aaa);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Compare note */
.vpn-compare-note {
    text-align: center;
    color: var(--text-secondary, #aaa);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

/* How-to steps */
.vpn-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.vpn-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid rgba(0, 217, 126, 0.15);
    border-radius: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vpn-step:hover {
    border-color: rgba(0, 217, 126, 0.4);
    box-shadow: 0 0 25px rgba(0, 217, 126, 0.12);
}

.vpn-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary, #00D97E);
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.vpn-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    margin-bottom: 0.5rem;
}

.vpn-step p {
    color: var(--text-secondary, #aaa);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Sites grid — 3x2 */
.vpn-sites-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Header fix for vpn-landing */
body.vpn-landing-page .site-header {
    background: rgba(15, 20, 25, 0.92) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .vpn-advantage-row { grid-template-columns: 1fr 1fr; }
    .vpn-sites-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .vpn-advantage-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .vpn-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .vpn-sites-grid {
        display: block !important;
        grid-template-columns: unset !important;
    }
    .vpn-hero-checks {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .vpn-howto-cta .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
    }
}
