/* ===================================
   VPN SERVICE PAGE STYLES
   Premium Design for VIAMIKRO VPN
   =================================== */

/* VPN Hero Section */
.vpn-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0B0F19 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.vpn-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1), transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.vpn-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.vpn-hero-content {
    text-align: left;
}

.vpn-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

/* Typography Refinements */
.vpn-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.vpn-hero-content p {
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.vpn-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Stats Banner */
.vpn-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #818CF8, #6366f1);
    /* Indigo to Blue */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Generated Image Container */
.vpn-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    animation: floatShield 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.vpn-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Glass effect overlay or simple clean render since image is already glass */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

/* HOVER EFFECTS */
.vpn-img-wrapper:hover .vpn-main-img {
    transform: scale(1.05) rotateY(-5deg);
    filter: drop-shadow(0 30px 60px rgba(79, 70, 229, 0.3));
}

/* Animations */
@keyframes floatShield {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* VPN Features Grid */
.vpn-features {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.vpn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.vpn-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.vpn-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

.vpn-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vpn-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.vpn-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vpn-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vpn-list li {
    color: #94A3B8;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* How it Works Section */
.vpn-how {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #1a1f35);
}

.vpn-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.vpn-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    color: white;
}

.vpn-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.vpn-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.vpn-step-arrow {
    font-size: 2rem;
    color: rgba(79, 70, 229, 0.5);
    flex-shrink: 0;
}

/* FAQ Grid */
.vpn-faq {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item-simple {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.faq-item-simple h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.faq-item-simple p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* VPN CTA Section */
.vpn-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1f35, var(--bg-dark));
}

/* Responsive */
@media (max-width: 900px) {
    .vpn-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .vpn-steps {
        flex-direction: column;
    }

    .vpn-step-arrow {
        transform: rotate(90deg);
    }

    .vpn-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .vpn-hero {
        padding: 8rem 0 4rem;
    }

    .vpn-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .vpn-hero-content {
        text-align: center;
    }

    .vpn-hero-cta {
        justify-content: center;
    }

    .vpn-stats {
        justify-content: center;
    }

    .vpn-img-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .vpn-hero h1 {
        font-size: 2.5rem;
    }

    .vpn-card {
        padding: 2rem;
    }
}