/* AkcaVPN Specific Styles */

/* VPN Hero Section */
.vpn-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 168px 0 80px; /* 120 + 48 for announcement bar */
    overflow: hidden;
}

.vpn-hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.vpn-hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 2rem 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.vpn-hero-title .gradient-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* Katana Sword Shine Effect */
.vpn-hero-title .gradient-text::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.05) 75%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: katanaShine 4s ease-in-out infinite;
}

@keyframes katanaShine {
    0% {
        left: -100%;
    }
    20% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.vpn-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.vpn-hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.metric-item {
    flex: 1;
    text-align: center;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
}

.metric-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.metric-progress {
    height: 100%;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    border-radius: 2px;
    position: relative;
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.8);
    }
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}

.vpn-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-primary-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cta-note svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* VPN Features Section */
.vpn-features {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0f2e 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: #8B5CF6;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Tech Deep Dive Section */
.vpn-tech-deep-dive {
    padding: 120px 0;
    background: #0a0a0f;
}

.tech-architecture {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

.arch-layer {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B5CF6;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.layer-components {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.component {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.component:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.component-icon {
    width: 24px;
    height: 24px;
    color: #8B5CF6;
    stroke: currentColor;
}

.component span {
    font-size: 0.9rem;
    font-weight: 500;
}

.arch-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8B5CF6;
    font-weight: 300;
    flex-shrink: 0;
}

.tech-explanation {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.explanation-step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    flex-shrink: 0;
    opacity: 0.5;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Pricing Section */
.vpn-pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0f2e 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 4rem auto 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Free Tier Specific Styles */
.pricing-card-free {
    border-color: rgba(0, 217, 255, 0.3);
}

.pricing-card-free::before {
    background: linear-gradient(90deg, #00d9ff, #00ffff);
}

.pricing-badge-free {
    background: linear-gradient(135deg, #00d9ff, #00ffff);
    color: #000000;
}

/* Premium Tier Specific Styles */
.pricing-card-premium {
    border-color: rgba(181, 55, 255, 0.4);
    position: relative;
}

.pricing-card-premium::before {
    background: linear-gradient(90deg, #b537ff, #EC4899);
}

.pricing-card-premium::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card-premium:hover::after {
    opacity: 1;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.pricing-amount {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
}

.price-note {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    stroke: #8B5CF6;
    stroke-width: 3;
    flex-shrink: 0;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.btn-pricing svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Free Tier Button */
.btn-pricing-free {
    background: #ffffff;
    color: #000000;
    border: 2px solid #00d9ff;
    font-weight: 700;
}

.btn-pricing-free:hover {
    background: #000000;
    color: #ffffff;
    border-color: #00ffff;
    box-shadow:
        0 0 40px rgba(0, 217, 255, 0.6),
        0 10px 40px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.pricing-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.remaining {
    color: #EC4899;
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-comparison {
    max-width: 700px;
    margin: 4rem auto 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.pricing-comparison h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.comparison-table {
    margin-bottom: 1.5rem;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row.highlight {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-top: 0.5rem;
}

.comparison-feature {
    font-weight: 500;
}

.comparison-value {
    font-weight: 600;
}

.comparison-value.traditional {
    color: rgba(255, 255, 255, 0.5);
}

.comparison-value.genesis {
    color: #8B5CF6;
}

.comparison-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ Section */
.vpn-faq {
    padding: 120px 0;
    background: #0a0a0f;
}

.faq-grid {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: #8B5CF6;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Get Started Section */
.vpn-get-started {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0f2e 100%);
}

.get-started-content {
    position: relative;
    padding: 4rem;
    border-radius: 32px;
    overflow: hidden;
}

.get-started-background {
    position: absolute;
    inset: 0;
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 32px;
}

.get-started-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.get-started-inner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    font-family: 'Space Grotesk', sans-serif;
}

.get-started-inner > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cs-feature {
    display: flex;
    align-items: start;
    gap: 1rem;
    text-align: left;
}

.cs-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cs-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cs-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.cs-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.get-started-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.btn-learn-more svg,
.btn-get-started svg:not(.x-icon) {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.get-started-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.get-started-note svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* ==================== SPECIAL EFFECTS ==================== */
/* Hero Glitch Title Effect */
.hero-glitch-title {
    position: relative;
    font-weight: 900 !important;
    background: linear-gradient(
        90deg,
        #8B5CF6 0%,
        #EC4899 25%,
        #8B5CF6 50%,
        #EC4899 75%,
        #8B5CF6 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitchGradient 3s linear infinite;
    text-shadow:
        0 0 30px rgba(139, 92, 246, 0.5),
        0 0 60px rgba(236, 72, 153, 0.3);
}

.hero-glitch-title::before {
    content: 'Built for Privacy Maximalists';
    position: absolute;
    left: -2px;
    text-shadow: 2px 0 #EC4899;
    top: 0;
    color: #8B5CF6;
    background: transparent;
    overflow: hidden;
    animation: glitch1 2.5s infinite;
    opacity: 0;
    -webkit-text-fill-color: #EC4899;
    pointer-events: none;
}

.hero-glitch-title::after {
    content: 'Built for Privacy Maximalists';
    position: absolute;
    left: 2px;
    text-shadow: -2px 0 #8B5CF6;
    top: 0;
    color: #EC4899;
    background: transparent;
    overflow: hidden;
    animation: glitch2 3s infinite;
    opacity: 0;
    -webkit-text-fill-color: #8B5CF6;
    pointer-events: none;
}

@keyframes glitchGradient {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes glitch1 {
    0%, 90%, 100% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
    }
    92% {
        clip-path: inset(10% 0 85% 0);
        opacity: 0.8;
        transform: translateX(-3px);
    }
    94% {
        clip-path: inset(50% 0 40% 0);
        opacity: 0.6;
        transform: translateX(2px);
    }
    96% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
        transform: translateX(0);
    }
}

@keyframes glitch2 {
    0%, 90%, 100% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
    }
    91% {
        clip-path: inset(80% 0 15% 0);
        opacity: 0.7;
        transform: translateX(2px);
    }
    93% {
        clip-path: inset(20% 0 70% 0);
        opacity: 0.5;
        transform: translateX(-3px);
    }
    95% {
        clip-path: inset(0 0 0 0);
        opacity: 0;
        transform: translateX(0);
    }
}

/* Hero Glow Subtitle Effect */
.hero-glow-subtitle {
    position: relative;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    background: linear-gradient(
        135deg,
        #8B5CF6 0%,
        #EC4899 25%,
        #F59E0B 50%,
        #EC4899 75%,
        #8B5CF6 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowPulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    letter-spacing: 0.5px;
}

.hero-glow-subtitle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(
        ellipse at center,
        rgba(139, 92, 246, 0.3) 0%,
        rgba(236, 72, 153, 0.2) 50%,
        transparent 70%
    );
    z-index: -1;
    animation: glowExpand 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes glowPulse {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.8));
    }
}

@keyframes glowExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-architecture {
        flex-direction: column;
        gap: 2rem;
    }

    .arch-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .vpn-hero {
        padding: 140px 0 60px; /* 100 + 40 for smaller announcement bar on mobile */
        min-height: auto;
    }

    .vpn-hero-content {
        padding: 0 1rem;
    }

    .vpn-hero-title {
        font-size: 2.2rem;
        margin: 1.5rem 0;
    }

    .vpn-hero-title br {
        display: block;
    }

    .vpn-hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }

    .vpn-hero-subtitle br {
        display: none;
    }

    .vpn-hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .metric-item {
        width: 100%;
        text-align: center;
    }

    .metric-divider {
        width: 80%;
        height: 1px;
        background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent
        );
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .hero-glitch-title {
        font-size: 2rem !important;
    }

    .hero-glitch-title::before,
    .hero-glitch-title::after {
        display: none; /* Disable glitch on mobile for performance */
    }

    .hero-glow-subtitle {
        font-size: 1rem !important;
    }

    .hero-glow-subtitle::before {
        display: none; /* Disable glow bg on mobile */
    }

    .vpn-hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-comparison {
        padding: 1.5rem;
    }

    .comparison-row {
        flex-direction: column;
        align-items: start;
        gap: 0.5rem;
    }

    .get-started-content {
        padding: 2rem;
    }

    .get-started-inner h2 {
        font-size: 1.8rem;
    }

    .get-started-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-get-started,
    .btn-learn-more {
        width: 100%;
        justify-content: center;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
    }

    .vpn-hero-cta {
        margin-top: 2rem;
    }

    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 1.5rem;
    }

    .stat-card .stat-number {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .explanation-step {
        flex-direction: column;
    }

    .step-number {
        font-size: 2rem;
    }
}
