/*
=================================================================
FixPC.bg – HYPER-FUTURISTIC ODYSSEY EDITION (2026)
Автор: Тони Ангелчовски --- angelchovski.com
=================================================================
Визия: Blade Runner meets Tron meets Matrix - максимален sci-fi
Концепция: Liquid metal, holographic effects, extreme parallax
Уникалност: Всяка секция е отделен свят с уникална вселена
=================================================================
*/

/* ========================================
   ИМПОРТ НА ЕКСТРЕМНО УНИКАЛНИ ШРИФТОВЕ
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Bungee:wght@400&family=Bebas+Neue&family=Antonio:wght@100;200;300;400;500;600;700&family=Rubik:wght@300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Righteous&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ========================================
   CSS ПРОМЕНЛИВИ – HYPER PALETTE
======================================== */
:root {
    /* Electric Colors - высокооктановый цвета */
    --electric-blue: #00d9ff;
    --cyber-pink: #ff0080;
    --toxic-green: #00ff41;
    --plasma-purple: #b400ff;
    --lava-orange: #ff4500;
    --ice-white: #f0f8ff;
    --volt-yellow: #ffea00;
    
    /* Deep Space */
    --void-black: #000000;
    --space-dark: #0d0221;
    --deep-purple: #1a0633;
    --midnight: #0a0e27;
    
    /* Gradients - Експлозивни */
    --hyper-gradient: linear-gradient(135deg, 
        #00d9ff 0%, 
        #b400ff 25%,
        #ff0080 50%,
        #00ff41 75%,
        #00d9ff 100%);
    
    --plasma-gradient: linear-gradient(180deg,
        #ff0080 0%,
        #b400ff 33%,
        #00d9ff 66%,
        #00ff41 100%);
    
    --liquid-metal: linear-gradient(135deg,
        #667eea 0%,
        #764ba2 50%,
        #f093fb 100%);
    
    /* Backgrounds */
    --bg-void: #000000;
    --bg-space: #0d0221;
    --bg-card: rgba(13, 2, 33, 0.7);
    --bg-glass: rgba(0, 217, 255, 0.05);
    
    /* Text */
    --text-primary: #ffffff;
    --text-glow: #00d9ff;
    --text-hot: #ff0080;
    
    /* Effects */
    --glow-blue: 0 0 30px rgba(0, 217, 255, 0.8),
                 0 0 60px rgba(0, 217, 255, 0.5);
    --glow-pink: 0 0 30px rgba(255, 0, 128, 0.8),
                 0 0 60px rgba(255, 0, 128, 0.5);
    --glow-green: 0 0 30px rgba(0, 255, 65, 0.8),
                  0 0 60px rgba(0, 255, 65, 0.5);
    
    /* Fonts - МАКСИМАЛНО РАЗЛИЧНИ */
    --font-mega: 'Bungee', cursive;
    --font-power: 'Bebas Neue', cursive;
    --font-strong: 'Antonio', sans-serif;
    --font-body: 'Rubik', sans-serif;
    --font-modern: 'Poppins', sans-serif;
    --font-impact: 'Righteous', cursive;
    --font-compressed: 'Saira Condensed', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Animations */
    --transition-hyper: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-snap: 0.15s ease-out;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--void-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-size: 17px;
    font-weight: 400;
}

/* Animated scanlines через цялата страница */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 217, 255, 0.03) 0px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 9998;
    animation: scanlines-move 8s linear infinite;
}

@keyframes scanlines-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* RGB Split эффект на cursor */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
    mix-blend-mode: difference;
}

/* ========================================
   TYPOGRAPHY - EXTREME
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-power);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(4rem, 12vw, 9rem);
    font-family: var(--font-mega);
    background: var(--hyper-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
    filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.6));
    position: relative;
    text-shadow: none;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glitch effect на h1 */
h1::before,
h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hyper-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1::before {
    animation: glitch-1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

h1::after {
    animation: glitch-2 3s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(-3px, 2px); }
    66% { transform: translate(3px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(3px, -2px); }
    66% { transform: translate(-3px, 2px); }
}

h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--electric-blue);
    text-shadow: var(--glow-blue);
    letter-spacing: 5px;
}

h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--text-primary);
    font-family: var(--font-strong);
    letter-spacing: 2px;
}

p {
    font-family: var(--font-modern);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

strong {
    color: var(--electric-blue);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

a {
    color: var(--electric-blue);
    text-decoration: none;
    position: relative;
    transition: var(--transition-snap);
    font-weight: 500;
}

a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--plasma-gradient);
    transition: width var(--transition-smooth);
}

a:hover::after {
    width: 100%;
}

a:hover {
    color: var(--cyber-pink);
    text-shadow: var(--glow-pink);
}

/* ========================================
   HEADER – LIQUID METAL
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(200%);
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    transition: all var(--transition-smooth);
    padding: 1rem 0;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 217, 255, 0.1) 50%,
        transparent 100%);
    animation: header-shine 6s linear infinite;
}

@keyframes header-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.site-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
    border-bottom: 2px solid var(--electric-blue);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    position: relative;
    z-index: 10;
}

.main-logo {
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6))
            drop-shadow(0 0 40px rgba(180, 0, 255, 0.4));
    transition: all var(--transition-hyper);
}

.main-logo:hover {
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 1))
            drop-shadow(0 0 60px rgba(255, 0, 128, 0.6));
    transform: scale(1.05) rotate(-2deg);
}

.main-nav ul {
    display: flex;
    gap: 0;
    list-style: none;
}

.main-nav a {
    font-family: var(--font-compressed);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.8rem 1.5rem;
    position: relative;
    transition: all var(--transition-hyper);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    background: rgba(0, 217, 255, 0.05);
    margin-right: -10px;
}

.main-nav a i {
    font-size: 1.1rem;
    transition: transform var(--transition-snap);
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--plasma-gradient);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.main-nav a:hover {
    color: white;
    text-shadow: var(--glow-blue);
    background: rgba(0, 217, 255, 0.2);
    transform: translateY(-3px);
}

.main-nav a:hover::before {
    opacity: 0.3;
}

.main-nav a:hover i {
    transform: translateY(-2px) scale(1.2);
}

.main-nav a::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all var(--transition-hyper);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.mobile-menu-btn:hover {
    background: var(--electric-blue);
    color: black;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
    transform: scale(1.1);
}

/* ========================================
   HERO – MATRIX DIGITAL RAIN + PARALLAX
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
    background: #000000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Matrix digital rain effect */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(0, 255, 65, 0.03) 1px,
            transparent 2px,
            transparent 20px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(0, 217, 255, 0.03) 1px,
            transparent 2px,
            transparent 20px
        );
    animation: matrix-fall 20s linear infinite;
}

@keyframes matrix-fall {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.5) hue-rotate(200deg);
    animation: hero-parallax 30s ease-in-out infinite alternate;
}

@keyframes hero-parallax {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.2) translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(255, 0, 128, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(13, 2, 33, 0.95) 100%);
}

/* Floating orbs */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 0, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: orb-float 15s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-100px, -80px) scale(1.3);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    animation: hero-appear 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes hero-appear {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-content h1 {
    margin-bottom: 2rem;
    position: relative;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #ff0080 0%, #b400ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 40px rgba(255, 0, 128, 0.8));
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.hero-subtitle strong {
    font-size: 1.3em;
    font-weight: 700;
    background: linear-gradient(90deg, #00d9ff 0%, #00ff41 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   CTA BUTTONS – EXPLOSIVE
======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    font-family: var(--font-compressed);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: black;
    background: var(--electric-blue);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-hyper);
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.5);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--plasma-gradient);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.cta-button:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 60px rgba(0, 217, 255, 1),
        0 0 80px rgba(255, 0, 128, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.7);
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-button.large {
    padding: 1.8rem 4rem;
    font-size: 1.4rem;
}

.cta-button.small {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.cta-button i {
    font-size: 1.3em;
    transition: transform var(--transition-snap);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.cta-button:hover i {
    transform: translateX(8px) scale(1.2);
}

.trust-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

/* ========================================
   SECTIONS – BASE
======================================== */
.section {
    padding: var(--spacing-xl) 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--hyper-gradient);
    background-size: 300% 300%;
    animation: gradient-shift 8s ease infinite;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ========================================
   ABOUT – CYBER LIQUID WAVES
======================================== */
.about-snippet {
    padding: var(--spacing-xl) 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #0d0221 50%, #000000 100%);
}

/* Liquid wave background */
.about-snippet::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(180, 0, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 128, 0.15) 0%, transparent 40%);
    animation: liquid-wave 20s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes liquid-wave {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% { 
        transform: translate(80px, -50px) rotate(120deg) scale(1.1);
    }
    66% { 
        transform: translate(-60px, 80px) rotate(240deg) scale(0.9);
    }
}

.about-snippet::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(0, 217, 255, 0.03) 100px,
            rgba(0, 217, 255, 0.03) 200px
        );
    animation: stripe-move 30s linear infinite;
}

@keyframes stripe-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(200px); }
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.about-icon i {
    font-size: 6rem;
    background: var(--plasma-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 40px rgba(0, 217, 255, 0.6));
    animation: icon-pulse 4s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { 
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 10px 40px rgba(0, 217, 255, 0.6));
    }
    50% { 
        transform: scale(1.15) translateY(-10px);
        filter: drop-shadow(0 20px 60px rgba(255, 0, 128, 0.8));
    }
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
    animation: glow-expand 3s ease-in-out infinite;
    pointer-events: none;
    filter: blur(40px);
}

@keyframes glow-expand {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
    }
}

.about-title {
    margin-bottom: 2.5rem;
}

.about-title .highlight {
    color: var(--cyber-pink);
    text-shadow: var(--glow-pink);
}

.about-text {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-text.secondary {
    color: rgba(255, 255, 255, 0.7);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(0, 217, 255, 0.05);
    border: 2px solid rgba(0, 217, 255, 0.3);
    min-width: 160px;
    transition: all var(--transition-hyper);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 217, 255, 0.2) 50%,
        transparent 100%);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--electric-blue);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.4);
}

.stat-number {
    font-family: var(--font-power);
    font-size: 4rem;
    font-weight: 400;
    background: var(--hyper-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
    filter: drop-shadow(0 5px 20px rgba(0, 217, 255, 0.5));
}

.stat-label {
    font-family: var(--font-compressed);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.3rem 2.8rem;
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    font-family: var(--font-compressed);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-hyper);
    position: relative;
    overflow: hidden;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.about-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0;
    height: 200%;
    background: var(--electric-blue);
    transition: width var(--transition-smooth);
    z-index: -1;
}

.about-cta-button:hover {
    color: black;
    border-color: var(--electric-blue);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
    transform: translateY(-3px);
}

.about-cta-button:hover::before {
    width: 400%;
}

.about-cta-button i {
    transition: transform var(--transition-snap);
}

.about-cta-button:hover i {
    transform: translateX(8px);
}

/* ========================================
   SERVICES – HOLOGRAPHIC TILES
======================================== */
.services-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--space-dark);
    position: relative;
    overflow: hidden;
}

/* Holographic grid background */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: grid-flow 40s linear infinite;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center center;
}

@keyframes grid-flow {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(13, 2, 33, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    padding: 3rem 2.5rem;
    cursor: pointer;
    transition: all var(--transition-hyper);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 90% 100%, 0 100%);
}

/* Holographic shine */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(0, 217, 255, 0.3) 90deg,
        transparent 180deg,
        rgba(255, 0, 128, 0.3) 270deg,
        transparent 360deg
    );
    animation: holographic-spin 6s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

@keyframes holographic-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--plasma-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 217, 255, 0.4);
    border-color: var(--electric-blue);
}

.service-card:hover::after {
    opacity: 0.3;
}

.service-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    background: var(--plasma-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 30px rgba(0, 217, 255, 0.5));
    transition: all var(--transition-hyper);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(180deg);
    filter: drop-shadow(0 15px 40px rgba(255, 0, 128, 0.8));
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: color var(--transition-smooth);
}

.service-card:hover h3 {
    color: var(--electric-blue);
    text-shadow: var(--glow-blue);
}

.service-card p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--electric-blue);
    font-family: var(--font-compressed);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all var(--transition-snap);
}

.service-card:hover .read-more {
    gap: 1.2rem;
    text-shadow: var(--glow-blue);
}

/* ========================================
   PRICING – NEON TUBES BACKGROUND
======================================== */
.pricing-section {
    padding: var(--spacing-xl) 2rem;
    position: relative;
    overflow: hidden;
    background: #000000;
}

/* Neon tubes effect */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 40px,
            rgba(0, 217, 255, 0.1) 40px,
            rgba(0, 217, 255, 0.1) 42px,
            transparent 42px,
            transparent 82px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 60px,
            rgba(255, 0, 128, 0.1) 60px,
            rgba(255, 0, 128, 0.1) 62px,
            transparent 62px,
            transparent 122px
        );
    animation: neon-pulse 4s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pricing-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-grid.three-columns {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.pricing-card {
    background: rgba(13, 2, 33, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    padding: 0;
    overflow: hidden;
    transition: all var(--transition-hyper);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 97%, 95% 100%, 0 100%);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: var(--electric-blue);
}

.pricing-card.featured {
    border: 3px solid var(--cyber-pink);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.4);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.08);
}

.featured-badge {
    position: absolute;
    top: 45px;
    right: -70px;
    background: var(--neon-magenta);
   /* background: var(--plasma-gradient); */
    color: rgb(235, 219, 77);
    padding: 0.6rem 4rem;
    font-family: var(--font-compressed);
    font-size: 0.69rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transform: rotate(45deg);
    box-shadow: 0 5px 30px rgba(255, 0, 128, 0.8);
    z-index: 10;
}

.plan-header {
    padding: 3rem 2.5rem;
    text-align: center;
    background: rgba(0, 217, 255, 0.05);
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.plan-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
    text-shadow: var(--glow-blue);
}

.price {
    font-family: var(--font-power);
    font-size: 4rem;
    font-weight: 400;
    background: var(--hyper-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
    margin: 1.5rem 0;
}

.plan-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.plan-features {
    list-style: none;
    padding: 2.5rem 2.5rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: white;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

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

.plan-features i {
    color: var(--toxic-green);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.6));
}

.plan-cta {
    margin: 0 2.5rem 2.5rem;
    width: calc(100% - 5rem);
    text-align: center;
    justify-content: center;
}

.featured-cta {
    background: var(--cyber-pink);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.8);
}

.pricing-info {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.pricing-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* ========================================
   PAYMENT – CIRCUIT BOARD PATTERN
======================================== */
.payment-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--deep-purple);
    position: relative;
    overflow: hidden;
}

/* Circuit board pattern */
.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.1) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 10% 20%, rgba(180, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 128, 0.15) 0%, transparent 50%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    animation: circuit-flow 30s linear infinite;
    opacity: 0.6;
}

@keyframes circuit-flow {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 50px 50px, 50px 50px, 0 0, 0 0; }
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.payment-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all var(--transition-hyper);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all var(--transition-smooth);
    z-index: 0;
}

.payment-card:hover::before {
    width: 300%;
    height: 300%;
}

.payment-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.4);
}

.payment-icon {
    font-size: 4.5rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 217, 255, 0.4));
    transition: all var(--transition-hyper);
}

.payment-card:hover .payment-icon {
    transform: scale(1.3) rotateY(360deg);
    filter: drop-shadow(0 15px 40px rgba(0, 217, 255, 0.8));
}

.payment-icon.paypal i { color: #0070ba; }
.payment-icon.stripe i { color: #635bff; }
.payment-icon.revolut i { color: var(--electric-blue); }
.payment-icon.crypto i { color: #f7931a; }

.payment-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.payment-card p {
    margin-bottom: 1.8rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.payment-details span {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--electric-blue);
    font-family: var(--font-compressed);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.payment-trust {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 2px solid rgba(0, 217, 255, 0.3);
    position: relative;
    z-index: 2;
}

.payment-trust i {
    font-size: 3.5rem;
    color: var(--toxic-green);
    filter: drop-shadow(0 5px 20px rgba(0, 255, 65, 0.6));
}

.payment-trust p {
    margin: 0;
    text-align: left;
    flex: 1;
}

.cta-payment {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-payment p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: white;
}

/* ========================================
   REMOTE – TRON GRID
======================================== */
.remote-section {
    padding: var(--spacing-xl) 2rem;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Tron grid effect */
.remote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.2) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.2) 2px, transparent 2px);
    background-size: 80px 80px;
    animation: tron-scroll 20s linear infinite;
    transform: perspective(800px) rotateX(70deg);
    transform-origin: center bottom;
    opacity: 0.4;
}

@keyframes tron-scroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 80px; }
}

/* Horizon glow */
.remote-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 217, 255, 0.3) 100%);
    pointer-events: none;
}

.remote-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    position: relative;
    padding: 2.5rem;
    background: rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all var(--transition-hyper);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}

.step:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.4);
    transform: translateY(-10px);
}

.step-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-power);
    font-size: 3.5rem;
    background: var(--plasma-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 3px solid var(--electric-blue);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.5),
        inset 0 0 30px rgba(0, 217, 255, 0.2);
    animation: number-pulse 3s ease-in-out infinite;
}

@keyframes number-pulse {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(0, 217, 255, 0.5),
            inset 0 0 30px rgba(0, 217, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(0, 217, 255, 0.8),
            inset 0 0 40px rgba(0, 217, 255, 0.4);
    }
}

.step h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: white;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.tool-card {
    background: rgba(13, 2, 33, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all var(--transition-hyper);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}

.tool-card:hover {
    transform: translateY(-15px);
    border-color: var(--electric-blue);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.4);
}

.tool-icon {
    font-size: 5rem;
    margin-bottom: 1.8rem;
    background: var(--plasma-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 30px rgba(0, 217, 255, 0.5));
    transition: all var(--transition-hyper);
    position: relative;
    z-index: 1;
}

.tool-card:hover .tool-icon {
    transform: scale(1.3);
    filter: drop-shadow(0 15px 40px rgba(255, 0, 128, 0.8));
}

.tool-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.tool-card p {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tool-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    font-family: var(--font-compressed);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-hyper);
    position: relative;
    z-index: 1;
    overflow: hidden;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.tool-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--electric-blue);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.tool-button:hover {
    color: black;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
}

.tool-button:hover::before {
    left: 0;
}

.tool-button i {
    transition: transform var(--transition-snap);
}

.tool-button:hover i {
    transform: translateY(-3px);
}

.security-note {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid rgba(0, 255, 65, 0.3);
    position: relative;
    z-index: 2;
}

.security-note i {
    font-size: 4rem;
    color: var(--toxic-green);
    filter: drop-shadow(0 5px 20px rgba(0, 255, 65, 0.6));
    flex-shrink: 0;
}

.security-note p {
    margin: 0;
    flex: 1;
}

.cta-final {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-final p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: white;
}

/* ========================================
   AI SECTION – PARTICLE VORTEX
======================================== */
.ai-hero-section {
    position: relative;
    padding: var(--spacing-xl) 2rem;
    background: radial-gradient(circle at 50% 50%, #0d0221 0%, #000000 100%);
    overflow: hidden;
}

/* Particle vortex */
.ai-bg-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 217, 255, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(180, 0, 255, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.2) 0%, transparent 30%);
    animation: vortex-spin 30s linear infinite;
    filter: blur(60px);
}

@keyframes vortex-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.ai-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.ai-orbit {
    position: relative;
    width: 200px;
    height: 200px;
}

.ai-main-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7rem;
    background: var(--plasma-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 50px rgba(0, 217, 255, 0.8));
    animation: ai-spin 10s linear infinite;
    z-index: 2;
}

@keyframes ai-spin {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% { 
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
    }
}

.ai-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid;
    border-color: var(--electric-blue) var(--cyber-pink) var(--toxic-green) var(--plasma-purple);
    border-radius: 50%;
    animation: ring-expand 5s ease-out infinite;
}

.ai-pulse-ring.delay-1 {
    animation-delay: 1.6s;
}

.ai-pulse-ring.delay-2 {
    animation-delay: 3.2s;
}

@keyframes ring-expand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
        border-width: 3px;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
        border-width: 0px;
    }
}

.ai-title {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.glow-text {
    color: var(--electric-blue);
    text-shadow: var(--glow-blue);
}

.subtitle-glow {
    display: block;
    font-size: 0.4em;
    background: var(--plasma-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 5px;
}

.ai-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ai-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem 4rem;
    font-family: var(--font-compressed);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: black;
    background: var(--plasma-gradient);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-hyper);
    box-shadow: 
        0 0 50px rgba(180, 0, 255, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.5);
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.button-glow {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: glow-spin 8s linear infinite;
}

@keyframes glow-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ai-cta-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 
        0 0 80px rgba(180, 0, 255, 1),
        0 0 100px rgba(0, 217, 255, 0.8),
        0 25px 50px rgba(0, 0, 0, 0.7);
    color: white;
}

.ai-cta-button i {
    font-size: 1.5em;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-snap);
    position: relative;
    z-index: 1;
}

.ai-cta-button:hover i {
    transform: scale(1.3) rotate(15deg);
}

.ai-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.ai-trust-badges span {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-compressed);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ai-trust-badges i {
    color: var(--electric-blue);
    font-size: 1.5rem;
    filter: drop-shadow(0 3px 15px rgba(0, 217, 255, 0.5));
}

/* ========================================
   MODALS
======================================== */
.modal,
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    animation: modal-appear 0.4s ease-out;
}

.modal.active,
.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modal-appear {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--space-dark);
    border: 3px solid var(--electric-blue);
    padding: 4rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 0 80px rgba(0, 217, 255, 0.6),
        inset 0 0 50px rgba(0, 217, 255, 0.1);
    animation: modal-slide-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    clip-path: polygon(0 0, 100% 0, 100% 97%, 95% 100%, 0 100%);
}

@keyframes modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close,
.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--electric-blue);
    cursor: pointer;
    transition: all var(--transition-snap);
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--electric-blue);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
}

.close:hover,
.close-modal:hover {
    color: var(--cyber-pink);
    border-color: var(--cyber-pink);
    transform: rotate(90deg) scale(1.2);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.8);
}

.modal-content h2 {
    margin-bottom: 2.5rem;
    font-size: 3rem;
}

.modal-content p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.modal-content ul {
    list-style: none;
    margin: 2.5rem 0;
}

.modal-content ul li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.modal-content ul li i {
    color: var(--toxic-green);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.6));
}

.cta-in-modal {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(0, 217, 255, 0.3);
}

#chat-container {
    scrollbar-width: thin;
    scrollbar-color: var(--electric-blue) rgba(0, 0, 0, 0.5);
}

#chat-container::-webkit-scrollbar {
    width: 8px;
}

#chat-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

#chat-container::-webkit-scrollbar-thumb {
    background: var(--electric-blue);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

#chat-container::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-pink);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.8);
}

/* ========================================
   FOOTER – TERMINAL STYLE
======================================== */
.site-footer {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 2, 33, 1) 100%);
    border-top: 3px solid var(--electric-blue);
    padding: var(--spacing-lg) 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 30%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(180, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-moto {
    text-align: center;
    margin-bottom: 2.5rem;
}

.moto-title {
    font-family: var(--font-mega);
    font-size: 3.5rem;
    background: var(--hyper-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5));
    margin-bottom: 1.5rem;
}

.moto-title .accent {
    color: var(--cyber-pink);
}

.moto-main {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.philosophy-quote {
    margin: 2.5rem auto;
    padding: 2.5rem;
    max-width: 600px;
    border-left: 4px solid var(--electric-blue);
    background: rgba(0, 217, 255, 0.05);
    font-style: italic;
    position: relative;
}

.philosophy-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 6rem;
    color: var(--electric-blue);
    opacity: 0.3;
    font-family: serif;
}

.philosophy-quote p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.quote-author {
    font-family: var(--font-compressed);
    font-size: 1rem;
    color: var(--electric-blue);
    text-align: right;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav {
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: var(--font-compressed);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-snap);
}

.footer-nav a:hover {
    color: var(--electric-blue);
    text-shadow: var(--glow-blue);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 3px solid var(--electric-blue);
    border-radius: 50%;
    color: var(--electric-blue);
    font-size: 2rem;
    transition: all var(--transition-hyper);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--electric-blue);
    border-radius: 50%;
    transition: all var(--transition-smooth);
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    color: black;
    border-color: var(--electric-blue);
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

.social-link.fb:hover { border-color: #1877f2; }
.social-link.fb:hover::before { background: #1877f2; }

.social-link.ig:hover { border-color: #e4405f; }
.social-link.ig:hover::before { background: #e4405f; }

.social-link.li:hover { border-color: #0077b5; }
.social-link.li:hover::before { background: #0077b5; }

.social-link.linux:hover { border-color: var(--toxic-green); }
.social-link.linux:hover::before { background: var(--toxic-green); }

.social-link.forum:hover { border-color: var(--plasma-purple); }
.social-link.forum:hover::before { background: var(--plasma-purple); }

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-compressed);
    font-size: 1.1rem;
    color: white;
    transition: all var(--transition-snap);
}

.contact-item i {
    color: var(--electric-blue);
    font-size: 1.5rem;
    filter: drop-shadow(0 3px 15px rgba(0, 217, 255, 0.5));
}

.contact-item:hover {
    color: var(--electric-blue);
    text-shadow: var(--glow-blue);
}

.neon-divider {
    width: 80%;
    height: 3px;
    margin: 3.5rem auto;
    background: var(--hyper-gradient);
    background-size: 300% 300%;
    animation: gradient-shift 8s ease infinite;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
}

.quick-links {
    text-align: center;
    margin-bottom: 2.5rem;
}

.quick-links ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.quick-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-snap);
}

.quick-links a:hover {
    color: var(--electric-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
}

.copyright {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.copyright span {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: var(--electric-blue);
}

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

.creator-link {
    color: var(--electric-blue);
    font-weight: 700;
    transition: all var(--transition-snap);
}

.creator-link:hover {
    color: var(--cyber-pink);
    text-shadow: var(--glow-pink);
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    animation: scroll-up 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scroll-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    h1 {
        font-size: clamp(3rem, 9vw, 7rem);
    }

    h2 {
        font-size: clamp(2rem, 5.5vw, 4.5rem);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        min-height: 80vh;
        padding: 5rem 1.5rem 3rem;
    }

    .services-grid,
    .pricing-grid.three-columns,
    .payment-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        gap: 2rem;
    }

    .remote-steps {
        gap: 2rem;
    }

    .ai-trust-badges {
        gap: 1.5rem;
    }

    .footer-nav ul,
    .quick-links ul {
        flex-direction: column;
        gap: 1rem;
    }

    .social-icons {
        gap: 1.5rem;
    }

    .social-link {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 1.5rem;
    }

    .modal-content {
        padding: 2.5rem;
        width: 95%;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .section {
        padding: var(--spacing-lg) 1rem;
    }

    .hero-section {
        padding: 4rem 1rem 2rem;
    }

    .about-icon i {
        font-size: 5rem;
    }

    .service-icon,
    .tool-icon,
    .payment-icon {
        font-size: 4rem;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .ai-orbit {
        width: 150px;
        height: 150px;
    }

    .ai-main-icon {
        font-size: 5.5rem;
    }
}

/* ========================================
   ACCESSIBILITY
======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   PRINT
======================================== */
@media print {
    body::before,
    body::after,
    .hero-overlay::after,
    .ai-bg-overlay,
    .neon-divider {
        display: none !important;
    }

    .site-header,
    .mobile-menu-btn,
    .cta-button,
    .modal,
    .service-modal {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    h1, h2, h3 {
        color: black;
        text-shadow: none;
        filter: none;
    }
}

/* ========================================
   END OF HYPER-FUTURISTIC ODYSSEY
======================================== */