/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --accent: #f093fb;
    --accent-2: #4facfe;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-green: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);

    /* Background */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a2e;
    --bg-card: rgba(255, 255, 255, 0.03);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;

    /* Other */
    --border-radius: 20px;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.5);

    /* Spacing */
    --section-padding: 120px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

/* Override cursor for interactive elements */
a, button, input, textarea, select {
    cursor: pointer !important;
}

input[type="text"], input[type="email"], textarea {
    cursor: text !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ==================== NAVIGATION ==================== */
.nav {
    margin-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 16px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-akca-full {
    height: 48px;
    width: auto;
    object-fit: contain;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-akca-full:hover {
    filter: drop-shadow(0 6px 16px rgba(102, 126, 234, 0.5));
    transform: translateY(-2px) translateZ(0);
}

.logo-symbol {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-launch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(
        90deg,
        #8B5CF6 0%,
        #EC4899 25%,
        #8B5CF6 50%,
        #EC4899 75%,
        #8B5CF6 100%
    );
    background-size: 200% auto;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    animation: btnGradientFlow 3s linear infinite;
    position: relative;
    overflow: hidden;
}

.btn-launch::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: btnShine 3s linear infinite;
}

.btn-launch:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
    background-size: 200% auto;
}

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

@keyframes btnShine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.btn-launch span,
.btn-launch svg {
    position: relative;
    z-index: 1;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-launch:hover .arrow-icon {
    transform: translateX(4px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION (VPN) ==================== */
.vpn-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    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;
}

/* Hero Background (gradient orbs) */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-accent);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -50px); }
    50% { transform: translate(-30px, 30px); }
    75% { transform: translate(30px, 50px); }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Metrics */
.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
    );
}

/* Hero CTA */
.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);
}

/* ==================== 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;
    }
}

/* ==================== SECTIONS (GENERAL) ==================== */
section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

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

/* Features Carousel */
.features-carousel-wrapper {
    margin-top: 4rem;
    position: relative;
}

.features-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features-track::-webkit-scrollbar {
    display: none;
}

.features-track:active {
    cursor: grabbing;
}

/* Feature Card */
.fcard {
    flex: 0 0 340px;
    min-height: 280px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.fcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    opacity: 0.4;
    transition: opacity 0.4s ease, width 0.4s ease;
}

.fcard:hover::before {
    opacity: 1;
    width: 4px;
}

.fcard:hover {
    border-color: color-mix(in srgb, var(--accent) 30%, transparent);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 40px color-mix(in srgb, var(--accent) 8%, transparent),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fcard-index {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    letter-spacing: 1px;
}

.fcard-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fcard-head svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.fcard-head h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    line-height: 1.3;
}

.fcard > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
}

.fcard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.fcard-tags span {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
    border-radius: 100px;
    white-space: nowrap;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.fcard:hover .fcard-tags span {
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    border-color: color-mix(in srgb, var(--accent) 28%, transparent);
}

/* Features Navigation */
.features-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.features-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.features-arrow svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.6);
    transition: stroke 0.3s ease;
}

.features-arrow:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
}

.features-arrow:hover svg {
    stroke: #8B5CF6;
}

.features-scrollbar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.features-scrollbar-thumb {
    height: 100%;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    border-radius: 10px;
    width: 30%;
    transition: width 0.2s ease;
}

/* ==================== TECHNOLOGY 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;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateX(8px);
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Terminal */
.terminal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f56; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #27c93f; }

.terminal-title {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.terminal-body {
    padding: 24px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.terminal-line {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.prompt {
    color: var(--primary);
    font-weight: 700;
}

.command {
    color: var(--text-primary);
}

.cursor {
    color: var(--primary);
    animation: cursorBlink 1s steps(2) infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.terminal-output {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    margin-left: 28px;
}

.output-success {
    color: #38ef7d;
}

.output-info {
    color: var(--text-secondary);
}

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

/* Plan Tabs */
.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 4px;
    max-width: 320px;
}

.plan-tab {
    flex: 1;
    padding: 0.7rem 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border-radius: 9px;
    transition: all 0.3s ease;
}

.plan-tab.active {
    background: rgba(139, 92, 246, 0.2);
    color: #fff;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.plan-tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

/* Plan Panels */
.plan-panel {
    display: none;
    margin-top: 2.5rem;
}

.plan-panel.active {
    display: block;
}

/* Serial Number Columns */
.plan-columns {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 740px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.plan-col {
    flex: 1;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.plan-col:last-child {
    border-right: none;
}

.plan-col:hover {
    background: rgba(255, 255, 255, 0.02);
}

.plan-col--featured {
    background: rgba(139, 92, 246, 0.06);
    border-right-color: rgba(139, 92, 246, 0.15);
    border-left: 1px solid rgba(139, 92, 246, 0.15);
}

.plan-col--featured:hover {
    background: rgba(139, 92, 246, 0.1);
}

.plan-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #EC4899;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.plan-save {
    font-size: 0.75rem;
    font-weight: 600;
    color: #10B981;
    margin-bottom: 0.75rem;
}

.plan-duration {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.25rem;
}

.plan-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Space Grotesk', sans-serif;
}

.plan-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.plan-sol {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 6px;
    font-family: 'Space Grotesk', sans-serif;
}

.plan-per {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.plan-btn {
    display: inline-block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
}

.plan-btn--primary {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    border: none;
}

.plan-btn--primary:hover {
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.35);
    transform: translateY(-1px);
}

/* NFT Plans */
.nft-plans-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 740px;
    margin: 0 auto;
}

.nft-plan {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.nft-plan:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.nft-plan--genesis {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.04);
}

.nft-plan--genesis:hover {
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(139, 92, 246, 0.06);
}

.nft-plan-inner {
    display: flex;
    align-items: stretch;
}

.nft-plan-left {
    flex: 1.3;
    padding: 2.5rem;
    border-right: 1px solid rgba(139, 92, 246, 0.12);
}

.nft-plan-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0.75rem 0 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.nft-plan-left p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.nft-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.nft-extras span {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 100px;
}

.nft-plan-right {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    text-align: center;
}

.nft-remaining {
    font-size: 0.8rem;
    color: #EC4899;
    font-weight: 600;
    margin-top: 1rem;
}

/* All Plans Include */
.plan-includes {
    max-width: 740px;
    margin: 3rem auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
}

.plan-includes h4 {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.25rem;
}

.plan-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem 2rem;
}

.plan-include-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.plan-include-item svg {
    width: 16px;
    height: 16px;
    stroke: #8B5CF6;
    flex-shrink: 0;
}

/* ==================== 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;
}

/* ==================== DOWNLOAD SECTION ==================== */
.vpn-download {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1a0f2e 0%, #0a0a0f 50%, #0a0a0f 100%);
}

.download-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.vpn-download .gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
    position: absolute;
    top: -200px;
    right: -100px;
    border-radius: 50%;
    filter: blur(80px);
}

.vpn-download .gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12), transparent 70%);
    position: absolute;
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
    filter: blur(80px);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 4rem auto 0;
}

.download-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

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

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

.download-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.download-card:hover .download-card-glow {
    opacity: 1;
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.download-card:hover .platform-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(236, 72, 153, 0.15));
}

.platform-icon svg {
    width: 40px;
    height: 40px;
    fill: #8B5CF6;
}

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

.platform-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-active {
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
    animation: pulseDot 2s ease-in-out infinite;
}

.status-soon {
    background: #fbbf24;
}

@keyframes pulseDot {
    0%, 100% {
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.9);
    }
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

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

.download-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.btn-halftone {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 1.2px, transparent 1.2px);
    background-size: 15px 15px, 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.5;
    pointer-events: none;
}

/* Disabled state */
.download-card-disabled {
    opacity: 0.6;
}

.download-card-disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.download-card-disabled::before {
    display: none;
}

.download-card-disabled .download-card-glow {
    display: none;
}

.download-card-disabled .platform-icon {
    opacity: 0.7;
}

.download-card-disabled:hover .platform-icon {
    transform: none;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
}

.download-card-disabled .platform-icon svg {
    fill: rgba(139, 92, 246, 0.6);
}

.download-card-disabled:hover .platform-icon svg {
    fill: rgba(139, 92, 246, 0.6);
}

.download-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    box-shadow: none;
}

.download-btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ==================== 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;
}

/* ==================== CTA NOTE ==================== */
.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;
}

/* ==================== BUTTONS (SHARED) ==================== */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.6);
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.github-icon,
.x-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ==================== STEP NUMBER (TECH) ==================== */
.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;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo .logo-akca-full {
    height: 56px;
    width: auto;
}

.footer-tagline {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-credits p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.footer-badges .badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.solana-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.solana-logo {
    width: 20px;
    height: auto;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

.contact-email {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--primary);
}

/* ==================== LOGO IMAGES ==================== */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== UTILITY ==================== */
.desktop-only {
    display: inline;
}

/* ==================== SCROLL EFFECTS & ENHANCEMENTS ==================== */

/* Section Reveal Animations */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Children Animation */
.section-reveal .stagger-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.visible .stagger-child {
    opacity: 1;
    transform: translateY(0);
}

.section-reveal.visible .stagger-child:nth-child(1) { transition-delay: 0.05s; }
.section-reveal.visible .stagger-child:nth-child(2) { transition-delay: 0.1s; }
.section-reveal.visible .stagger-child:nth-child(3) { transition-delay: 0.15s; }
.section-reveal.visible .stagger-child:nth-child(4) { transition-delay: 0.2s; }
.section-reveal.visible .stagger-child:nth-child(5) { transition-delay: 0.25s; }
.section-reveal.visible .stagger-child:nth-child(6) { transition-delay: 0.3s; }
.section-reveal.visible .stagger-child:nth-child(7) { transition-delay: 0.35s; }
.section-reveal.visible .stagger-child:nth-child(8) { transition-delay: 0.4s; }
.section-reveal.visible .stagger-child:nth-child(9) { transition-delay: 0.45s; }
.section-reveal.visible .stagger-child:nth-child(10) { transition-delay: 0.5s; }

/* Enhanced Nav Glow on Scroll */
.nav.nav-glow {
    background: rgba(10, 10, 15, 0.92);
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(139, 92, 246, 0.1),
        0 4px 20px rgba(139, 92, 246, 0.05);
}


/* Smooth Section Dividers */
.vpn-features::after,
.vpn-tech-deep-dive::after,
.vpn-pricing::after,
.vpn-faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.2) 20%,
        rgba(236, 72, 153, 0.3) 50%,
        rgba(139, 92, 246, 0.2) 80%,
        transparent 100%
    );
    pointer-events: none;
}

/* Section Title Gradient Animation on Visible */
.section-reveal.visible .section-title {
    animation: titleGradientShift 4s ease-in-out infinite;
}

@keyframes titleGradientShift {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 0 transparent);
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 12px rgba(139, 92, 246, 0.15));
    }
}


/* Download Card Floating Animation on Hover */
.download-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 60px rgba(139, 92, 246, 0.2),
        0 0 40px rgba(139, 92, 246, 0.08);
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(-12px); }
    50% { transform: translateY(-16px); }
}

.download-card:hover {
    animation: subtleFloat 3s ease-in-out infinite;
}

/* Counter Animation Helper */
.metric-value.counting {
    transition: none;
}

/* Parallax Orbs - will-change for GPU acceleration */
.gradient-orb {
    will-change: transform;
    transition: none;
}

/* FAQ Item Enhancement */
.faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateX(4px);
}

/* Tech Architecture Component Stagger */
.section-reveal.visible .arch-layer {
    opacity: 1;
    transform: translateY(0);
}

.section-reveal .arch-layer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.visible .arch-layer:nth-child(1) { transition-delay: 0.1s; }
.section-reveal.visible .arch-layer:nth-child(3) { transition-delay: 0.25s; }
.section-reveal.visible .arch-layer:nth-child(5) { transition-delay: 0.4s; }

.section-reveal.visible .arch-arrow {
    opacity: 1;
    transform: scale(1);
}

.section-reveal .arch-arrow {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.section-reveal.visible .arch-arrow:nth-child(2) { transition-delay: 0.2s; }
.section-reveal.visible .arch-arrow:nth-child(4) { transition-delay: 0.35s; }

/* Get Started Section Enhancement */
.get-started-content {
    transition: box-shadow 0.4s ease;
}

.get-started-content:hover {
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.08);
}


/* ==================== RESPONSIVE - 1024px ==================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==================== RESPONSIVE - 768px ==================== */
@media (max-width: 768px) {
    .nav {
        margin-top: 0;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        padding: 32px 24px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-akca-full {
        height: 40px;
    }

    .footer-logo .logo-akca-full {
        height: 44px;
    }

    .logo-symbol {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    /* Hero */
    .vpn-hero {
        padding: 100px 0 60px;
        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;
    }

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

    .hero-glow-subtitle::before {
        display: none;
    }

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

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

    /* Section titles */
    .section-title {
        font-size: 36px;
    }

    /* Features carousel */
    .fcard {
        flex: 0 0 280px;
        min-height: 260px;
        padding: 1.5rem 1.25rem;
    }

    .features-scrollbar {
        width: 140px;
    }

    /* Pricing */
    .plan-columns {
        flex-direction: column;
        max-width: 360px;
    }

    .plan-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 2rem 1.5rem;
    }

    .plan-col:last-child {
        border-bottom: none;
    }

    .plan-col--featured {
        border-left: none;
        border-bottom-color: rgba(139, 92, 246, 0.15);
    }

    .nft-plan-inner {
        flex-direction: column;
    }

    .nft-plan-left {
        border-right: none;
        border-bottom: 1px solid rgba(139, 92, 246, 0.12);
        padding: 2rem 1.5rem;
    }

    .nft-plan-right {
        flex: auto;
        padding: 2rem 1.5rem;
    }

    .plan-includes-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Download */
    .vpn-download {
        padding: 80px 0;
    }

    .download-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .download-card {
        padding: 2.5rem 1.5rem;
    }

    .platform-icon {
        width: 70px;
        height: 70px;
    }

    .platform-icon svg {
        width: 35px;
        height: 35px;
    }

    .download-card h3 {
        font-size: 1.5rem;
    }

    /* Get Started */
    .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;
    }

    /* Footer */
    .footer-credits {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        justify-content: center;
    }

    /* Utility */
    .desktop-only {
        display: none;
    }


    /* Reduce section reveal translate distance */
    .section-reveal {
        transform: translateY(24px);
    }

    /* Disable FAQ hover shift on mobile */
    .faq-item:hover {
        transform: none;
    }

    /* Disable download card float animation on mobile */
    .download-card:hover {
        animation: none;
        transform: translateY(-4px);
    }

    /* Disable section dividers on mobile */
    .vpn-features::after,
    .vpn-tech-deep-dive::after,
    .vpn-pricing::after,
    .vpn-faq::after {
        display: none;
    }
}

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

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

    .fcard {
        flex: 0 0 260px;
        padding: 1.25rem 1rem;
    }

    .plan-includes-grid {
        grid-template-columns: 1fr;
    }

    .plan-amount {
        font-size: 2.5rem;
    }

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

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