/* 
 * PYBEX — Neon Abyss Design System
 * Futuristic Dark Theme for Software Company
 * Electric Cyan + Violet + Magenta on Deep Space Black
 */

/* ============================================================================
   RESET & BASE
   ============================================================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================================================
   CSS VARIABLES — FUTURISTIC DESIGN TOKENS
   ============================================================================ */

:root {
    /* Deep Space Backgrounds */
    --abyss-950: #020617;
    --abyss-900: #0a0f1e;
    --abyss-800: #0f172a;
    --abyss-700: #1e293b;
    --abyss-600: #334155;
    
    /* Neon Accent Colors */
    --neon-cyan: #00f0ff;
    --neon-cyan-dim: rgba(0, 240, 255, 0.15);
    --neon-cyan-glow: rgba(0, 240, 255, 0.4);
    --neon-violet: #a855f7;
    --neon-violet-dim: rgba(168, 85, 247, 0.15);
    --neon-violet-glow: rgba(168, 85, 247, 0.4);
    --neon-magenta: #e879f9;
    --neon-magenta-dim: rgba(232, 121, 249, 0.15);
    --neon-magenta-glow: rgba(232, 121, 249, 0.4);
    
    /* Primary Gradients */
    --gradient-neon: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-violet) 50%, var(--neon-magenta) 100%);
    --gradient-cyan-violet: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-violet) 100%);
    --gradient-violet-magenta: linear-gradient(135deg, var(--neon-violet) 0%, var(--neon-magenta) 100%);
    --gradient-hero: linear-gradient(145deg, #0a0f1e 0%, #1a1033 40%, #0f172a 100%);
    
    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dim: #475569;
    
    /* Glass & Surfaces */
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-bg-strong: rgba(15, 23, 42, 0.85);
    --glass-border: rgba(0, 240, 255, 0.1);
    --glass-border-hover: rgba(0, 240, 255, 0.3);
    --card-bg: rgba(10, 15, 30, 0.7);
    --card-border: rgba(148, 163, 184, 0.08);
    
    /* Shadows */
    --shadow-glow-cyan: 0 0 20px rgba(0, 240, 255, 0.15), 0 0 60px rgba(0, 240, 255, 0.05);
    --shadow-glow-violet: 0 0 20px rgba(168, 85, 247, 0.15), 0 0 60px rgba(168, 85, 247, 0.05);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Spacing */
    --spacing-0: 0;
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    --spacing-32: 8rem;
    --spacing-40: 10rem;
    
    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 1.75rem;
    --radius-4xl: 2rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ============================================================================
   BASE TYPOGRAPHY
   ============================================================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--abyss-950);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.5rem, 6vw + 1rem, 5.5rem);
    line-height: 0.95;
}

h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    line-height: 1;
}

h3 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
    line-height: 1.2;
}

h4 {
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.lead {
    font-size: clamp(1.125rem, 1vw + 0.5rem, 1.5rem);
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Mono accent text */
.mono-accent {
    font-family: var(--font-mono);
    font-size: 0.75em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon-cyan);
}

/* ============================================================================
   ANIMATED BACKGROUND EFFECTS
   ============================================================================ */

/* Aurora Background Orbs */
.aurora-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

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

.aurora-orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--neon-cyan);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.aurora-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: var(--neon-violet);
    top: 40%;
    right: -15%;
    animation-delay: -7s;
    animation-duration: 25s;
}

.aurora-orb:nth-child(3) {
    width: 400px;
    height: 400px;
    background: var(--neon-magenta);
    bottom: -10%;
    left: 30%;
    animation-delay: -14s;
    animation-duration: 22s;
}

@keyframes aurora-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }
    75% {
        transform: translate(20px, 20px) scale(1.05);
    }
}

/* Grid Pattern Overlay */
.grid-pattern {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ============================================================================
   LAYOUT
   ============================================================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
    position: relative;
    z-index: 5;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-8);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-12);
    }
}

/* ============================================================================
   GRADIENT & TEXT EFFECTS
   ============================================================================ */

.gradient-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-text {
    text-shadow: 0 0 20px var(--neon-cyan-glow), 0 0 40px rgba(0, 240, 255, 0.1);
}

/* Gradient Border Effect */
.gradient-border {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius-2xl);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-violet), var(--neon-magenta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gradient-border:hover::before {
    opacity: 0.6;
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--spacing-4) var(--spacing-6);
}

@media (min-width: 768px) {
    nav {
        padding: var(--spacing-5) var(--spacing-8);
    }
}

@media (min-width: 1024px) {
    nav {
        padding: var(--spacing-5) var(--spacing-12);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
    z-index: 10;
}

.logo-link:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 8px var(--neon-cyan-glow));
}

.logo {
    height: 36px;
    width: auto;
    transition: height 0.3s ease, filter 0.3s ease;
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(0, 240, 255, 0.3));
}

header.scrolled .logo {
    height: 32px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 2rem;
    height: 0.15rem;
    background: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
    box-shadow: 0 0 4px rgba(0, 240, 255, 0.3);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
}

/* Navigation Menu */
nav ul.nav-menu {
    display: none;
    list-style: none;
    align-items: center;
    gap: var(--spacing-8);
    margin: 0;
}

@media (max-width: 767px) {
    nav ul.nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        width: 80%;
        max-width: 400px;
        height: 100vh;
        box-shadow: -5px 0 40px rgba(0, 240, 255, 0.1);
        border-left: 1px solid var(--glass-border);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        align-items: flex-start;
        gap: 0;
        z-index: 9;
    }

    nav ul.nav-menu.active {
        display: flex;
        right: 0;
    }

    nav ul.nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 240, 255, 0.08);
        padding: 1rem 0;
    }

    nav ul.nav-menu li a {
        display: block;
        width: 100%;
        font-size: 1.125rem;
        padding: 0.5rem 0;
        color: var(--text-primary);
    }

    nav ul.nav-menu li a.btn {
        display: inline-block;
        width: auto;
        margin-top: 0.5rem;
    }

    nav ul li.dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(15, 23, 42, 0.8);
        margin-top: 0.5rem;
        min-width: 100%;
        max-width: 100%;
        border: 1px solid var(--glass-border);
    }

    nav ul li.dropdown:hover .dropdown-menu,
    nav ul li.dropdown .dropdown-menu:hover {
        display: none;
    }

    nav ul li.dropdown.active .dropdown-menu {
        display: block;
    }

    nav ul li.dropdown .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        color: var(--text-primary);
    }
}

@media (min-width: 768px) {
    nav ul.nav-menu {
        display: flex;
    }
}

nav ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    transition: color 0.3s ease;
    padding: var(--spacing-2) 0;
}

nav ul li a:hover {
    color: var(--neon-cyan);
}

nav ul li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
    box-shadow: 0 0 6px var(--neon-cyan-glow);
}

nav ul li a:not(.btn):hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1rem;
    background: transparent;
    display: none;
}

nav ul li.dropdown:hover::after {
    display: block;
}

nav ul li.dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: var(--spacing-2) 0;
    transition: color 0.3s ease;
}

nav ul li.dropdown .dropdown-toggle:hover {
    color: var(--neon-cyan);
}

nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    max-width: 380px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.05);
    padding: var(--spacing-4);
    z-index: 9999;
    list-style: none;
}

nav ul li.dropdown:hover .dropdown-menu,
nav ul li.dropdown .dropdown-menu:hover {
    display: block;
}

nav ul li.dropdown .dropdown-menu li {
    margin: 0;
    list-style: none;
}

nav ul li.dropdown .dropdown-menu li a {
    display: block;
    padding: var(--spacing-3) var(--spacing-4);
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.9375rem;
}

nav ul li.dropdown .dropdown-menu li a::after {
    display: none !important;
}

nav ul li.dropdown .dropdown-menu li a:hover {
    background: rgba(0, 240, 255, 0.08);
    color: var(--neon-cyan);
    transform: translateX(4px);
}

nav ul li.dropdown .dropdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: var(--spacing-3) 0;
    list-style: none;
}

nav ul li.dropdown .dropdown-category {
    position: relative;
    list-style: none;
}

nav ul li.dropdown .dropdown-category::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 1rem;
    height: 100%;
    background: transparent;
    display: none;
}

nav ul li.dropdown .dropdown-category:hover::after {
    display: block;
}

nav ul li.dropdown .dropdown-category > a {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--spacing-3) var(--spacing-4);
}

nav ul li.dropdown .dropdown-category .category-icon {
    font-size: 1.25rem;
    line-height: 1;
}

nav ul li.dropdown .dropdown-submenu {
    display: none;
    position: absolute;
    left: calc(100% + 0.75rem);
    top: -0.5rem;
    min-width: 220px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: var(--spacing-3);
    list-style: none;
    z-index: 10000;
}

nav ul li.dropdown .dropdown-category:hover .dropdown-submenu,
nav ul li.dropdown .dropdown-submenu:hover {
    display: block;
}

nav ul li.dropdown .dropdown-submenu li {
    margin: 0;
    list-style: none;
}

nav ul li.dropdown .dropdown-submenu li a {
    padding: var(--spacing-2) var(--spacing-3);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}


/* ============================================================================
   BUTTONS — NEON FUTURISTIC
   ============================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: calc(var(--spacing-2)) var(--spacing-5);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-sans);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
}

.btn:hover svg {
    transform: translateX(2px);
}

/* Primary Button — Neon Cyan Glow */
.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #0891b2 100%);
    color: var(--abyss-950);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 4px 14px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5), 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Secondary Button — Glass with Neon Border */
.btn-secondary {
    background: rgba(0, 240, 255, 0.05);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
}

/* Gradient Button — Neon Full Spectrum */
.btn-gradient {
    background: var(--gradient-neon);
    color: var(--abyss-950);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.5), 0 0 40px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
}

.btn-ghost:hover {
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
}

.btn-large {
    padding: calc(var(--spacing-3)) var(--spacing-8);
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ============================================================================
   HERO SECTION — FUTURISTIC
   ============================================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-32) 0 var(--spacing-24);
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 65ch;
    padding-top: var(--spacing-16);
    padding-bottom: var(--spacing-24);
}

@media (min-width: 640px) {
    .hero-content {
        padding-top: var(--spacing-24);
        padding-bottom: var(--spacing-32);
    }
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: var(--spacing-32);
        padding-bottom: var(--spacing-48);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-1) var(--spacing-4);
    background: rgba(0, 240, 255, 0.08);
    color: var(--neon-cyan);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-8);
    border: 1px solid rgba(0, 240, 255, 0.15);
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--neon-cyan); }
    50% { opacity: 0.6; box-shadow: 0 0 2px var(--neon-cyan); }
}

.hero h1 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-8);
}

.hero p {
    font-size: clamp(1.125rem, 1vw + 0.5rem, 1.5rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-12);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-12);
}

@media (min-width: 640px) {
    .hero-buttons {
        gap: var(--spacing-6);
    }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-6);
    align-items: center;
    margin-top: var(--spacing-12);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 4px var(--neon-cyan-glow));
}

/* Hero with Image Layout */
.hero-content-with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
    align-items: center;
    padding-top: var(--spacing-12);
}

@media (min-width: 1024px) {
    .hero-content-with-image {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-16);
    }
}

.hero-text {
    max-width: 65ch;
}

.hero-image {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow-violet), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-image-decoration {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: var(--gradient-neon);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    z-index: -1;
}

.hero-bottom {
    margin-top: var(--spacing-12);
}

/* ============================================================================
   SPLIT HERO LAYOUT — INTEGRATED
   ============================================================================ */

.hero-integrated {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(10, 15, 30, 0.9) 50%, rgba(26, 16, 51, 0.85) 100%);
    z-index: 2;
}

.hero-background-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0.4;
    filter: saturate(0.3) contrast(1.2);
}

@media (min-width: 768px) {
    .hero-background-image img {
        opacity: 0.5;
    }
    
    .hero-background-gradient {
        background: linear-gradient(135deg, rgba(2, 6, 23, 0.92) 0%, rgba(10, 15, 30, 0.88) 40%, rgba(26, 16, 51, 0.7) 70%, transparent 100%);
    }
}

@media (min-width: 1024px) {
    .hero-background-image img {
        opacity: 0.6;
        object-position: center right;
    }
    
    .hero-background-gradient {
        background: linear-gradient(120deg, rgba(2, 6, 23, 0.94) 0%, rgba(10, 15, 30, 0.88) 35%, rgba(26, 16, 51, 0.6) 65%, transparent 100%);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: var(--spacing-20) 0;
}

.hero-content {
    max-width: 700px;
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 650px;
    }
}

.hero-content h1 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-6);
    line-height: 1.05;
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-violet) 50%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.3));
}

.hero-description {
    font-size: clamp(1.125rem, 1vw + 0.5rem, 1.5rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-10);
    line-height: 1.7;
}

/* ============================================================================
   MODERN HERO WITH FULL-BLEED BACKGROUND
   ============================================================================ */

.hero-modern-old {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
    filter: saturate(0.2) contrast(1.3);
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 6, 23, 0.95) 0%,
        rgba(10, 15, 30, 0.9) 30%,
        rgba(26, 16, 51, 0.8) 60%,
        rgba(15, 23, 42, 0.7) 100%
    );
    z-index: 2;
}

.hero-content-layer {
    position: relative;
    z-index: 10;
    padding: var(--spacing-32) var(--spacing-6);
}

@media (min-width: 768px) {
    .hero-content-layer {
        padding: var(--spacing-40) var(--spacing-8);
    }
}

@media (min-width: 1024px) {
    .hero-content-layer {
        padding: var(--spacing-48) var(--spacing-12);
    }
}

.hero-content-modern {
    max-width: 900px;
    margin: 0;
}

@media (min-width: 1024px) {
    .hero-content-modern {
        max-width: 60%;
    }
}

.hero-modern h1 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-8);
    line-height: 1.05;
}

.gradient-text-hero {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-violet) 50%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.2));
}

.hero-modern .hero-description {
    font-size: clamp(1.125rem, 1.2vw + 0.5rem, 1.5rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-12);
    line-height: 1.7;
}

.hero-modern .hero-badge {
    background: rgba(0, 240, 255, 0.08);
    color: var(--neon-cyan);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.hero-modern .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-modern .hero-badge:hover {
    background: rgba(0, 240, 255, 0.12);
}

.btn-hero-secondary {
    background: rgba(0, 240, 255, 0.08);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.hero-modern .trust-indicators {
    margin-top: var(--spacing-16);
}

.hero-modern .trust-item {
    color: var(--text-muted);
}

.hero-modern .trust-item svg {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 4px var(--neon-cyan-glow));
}

.hero-modern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
}


/* ============================================================================
   BENTO CARD GRID — FUTURISTIC
   ============================================================================ */

.bento-section {
    padding: var(--spacing-24) 0;
    position: relative;
}

.bento-header {
    margin-bottom: var(--spacing-16);
}

.bento-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-3);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
    margin-top: var(--spacing-10);
}

@media (min-width: 640px) {
    .bento-grid {
        margin-top: var(--spacing-16);
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.15);
}

@media (min-width: 1024px) {
    .bento-card:nth-child(1) {
        grid-column: span 3;
        border-top-left-radius: var(--radius-4xl);
    }
    
    .bento-card:nth-child(2) {
        grid-column: span 3;
        border-top-right-radius: var(--radius-4xl);
    }
    
    .bento-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .bento-card:nth-child(4) {
        grid-column: span 2;
    }
    
    .bento-card:nth-child(5) {
        grid-column: span 2;
        border-bottom-right-radius: var(--radius-4xl);
    }
}

.bento-card-graphic {
    position: relative;
    height: 20rem;
    flex-shrink: 0;
    overflow: hidden;
}

.bento-card-graphic img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-card-graphic img {
    transform: scale(1.05);
}

.bento-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bento-card-icon {
    position: absolute;
    bottom: var(--spacing-6);
    right: var(--spacing-6);
    font-size: 3rem;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.bento-card-content {
    position: relative;
    padding: var(--spacing-8);
}

.bento-card-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bento-card h3 {
    margin-top: var(--spacing-2);
    font-size: 1.5rem;
    line-height: 1.33;
    font-weight: 500;
    color: var(--text-primary);
}

.bento-card p {
    margin-top: var(--spacing-2);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */

.services-section {
    padding: var(--spacing-24) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-3);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.12);
}

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

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(0, 240, 255, 0.15);
    margin-bottom: var(--spacing-6);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.3);
}

.service-icon img {
    width: 1.75rem;
    height: 1.75rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(0, 240, 255, 0.5));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: var(--spacing-6);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    color: var(--neon-cyan);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s ease;
    font-size: 0.9375rem;
}

.service-link:hover {
    gap: var(--spacing-3);
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

.service-link svg {
    width: 1rem;
    height: 1rem;
}

/* ============================================================================
   STATS SECTION
   ============================================================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card {
    position: relative;
    padding: var(--spacing-6);
}

.stat-card > div:first-child {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.2));
    line-height: 1;
}

.stat-card > div:last-child {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: var(--spacing-3);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(168, 85, 247, 0.06);
    border-color: rgba(168, 85, 247, 0.15);
}

.testimonial-stars {
    color: var(--neon-cyan);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.testimonial-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--abyss-950);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.testimonial-author > div:last-child > div:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author > div:last-child > div:last-child {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta-gradient {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(232, 121, 249, 0.05) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.cta-gradient > * {
    position: relative;
    z-index: 1;
}

.cta-inner {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--card-bg);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-violet), var(--neon-magenta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.2;
    pointer-events: none;
}

.cta-inner h2 {
    margin-bottom: 1rem;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.main-footer {
    background: var(--abyss-950);
    color: var(--text-secondary);
    padding: var(--spacing-24) 0 var(--spacing-12);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-violet), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
    margin-bottom: var(--spacing-12);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: var(--spacing-8);
    }
}

.footer-column h3 {
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-4);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-4);
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(0, 240, 255, 0.3));
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: var(--spacing-6);
}

.footer-social {
    display: flex;
    gap: var(--spacing-3);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-3);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-3);
    font-size: 0.875rem;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 3px var(--neon-cyan-glow));
}

.footer-contact a,
.footer-contact span {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    padding-top: var(--spacing-8);
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-6);
    margin-top: var(--spacing-4);
}

.footer-bottom-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--neon-cyan);
}


/* ============================================================================
   CONTACT PAGE
   ============================================================================ */

.contact-section {
    padding: var(--spacing-32) 0 var(--spacing-24);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-16);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-24);
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.08), inset 0 0 10px rgba(0, 240, 255, 0.02);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.info-cards {
    display: grid;
    gap: var(--spacing-6);
}

.info-card {
    background: var(--card-bg);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-6);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.12);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: var(--neon-cyan);
    margin-bottom: var(--spacing-4);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-2);
    color: var(--text-primary);
}

.info-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.info-card a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: text-shadow 0.2s ease;
}

.info-card a:hover {
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

/* ============================================================================
   BLOG PAGE
   ============================================================================ */

.blog-section {
    padding: var(--spacing-32) 0 var(--spacing-24);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: var(--card-bg);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(168, 85, 247, 0.06);
    border-color: rgba(168, 85, 247, 0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.blog-content {
    padding: var(--spacing-6);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-bottom: var(--spacing-3);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
}

.blog-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: var(--spacing-4);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    color: var(--neon-cyan);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    transition: gap 0.2s ease;
}

.blog-link:hover {
    gap: var(--spacing-3);
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

/* ============================================================================
   PAGE HEADER
   ============================================================================ */

.page-header {
    padding: var(--spacing-32) 0 var(--spacing-16);
    text-align: center;
    position: relative;
}

.page-header h1 {
    margin-bottom: var(--spacing-4);
}

.page-header .lead {
    max-width: 65ch;
    margin: 0 auto;
}

/* ============================================================================
   SECTION BACKGROUNDS — DARK THEME
   ============================================================================ */

section {
    position: relative;
    overflow: hidden;
}

.bg-radiant-soft,
.bg-radiant-yellow,
.bg-radiant-pink,
.bg-radiant-purple,
.bg-radiant-vibrant {
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.bg-mesh-purple,
.bg-mesh-soft {
    background: radial-gradient(at 0% 0%, rgba(0, 240, 255, 0.05) 0, transparent 50%),
                radial-gradient(at 100% 100%, rgba(168, 85, 247, 0.05) 0, transparent 50%);
    background-color: var(--abyss-900);
}

.bg-gradient-subtle,
.bg-gradient-rich {
    background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.04), transparent 50%),
                radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.04), transparent 50%);
    background-color: var(--abyss-950);
}

.section-decorated::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-decorated > * {
    position: relative;
    z-index: 1;
}

.section-alt {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 30, 0.5) 20%, rgba(10, 15, 30, 0.5) 80%, transparent 100%);
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.03) 0%, rgba(168, 85, 247, 0.02) 50%, rgba(232, 121, 249, 0.03) 100%);
    position: relative;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 240, 255, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
    z-index: 0;
}

.hero-gradient > * {
    position: relative;
    z-index: 1;
}

/* ============================================================================
   SKIP LINK
   ============================================================================ */

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-cyan);
    color: var(--abyss-950);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: var(--spacing-4);
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.3), 0 0 60px rgba(168, 85, 247, 0.1);
    }
}

@keyframes border-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Base state for animated elements */
.fade-in,
.slide-up,
.animate-card {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in.visible {
    animation: fadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-up.visible {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-card.visible {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-in {
    animation: slideIn 0.6s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hover effects for cards */
.animate-card.visible,
.service-card,
.feature-card,
.blog-card,
.team-member {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.animate-card.visible:hover,
.service-card:hover,
.feature-card:hover,
.blog-card:hover,
.team-member:hover {
    transform: translateY(-6px);
}

/* Stagger delays for card containers */
.stagger-children .fade-in:nth-child(1) { animation-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { animation-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { animation-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { animation-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { animation-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6) { animation-delay: 0.5s; }

.stagger-children .animate-card:nth-child(1) { animation-delay: 0s; }
.stagger-children .animate-card:nth-child(2) { animation-delay: 0.1s; }
.stagger-children .animate-card:nth-child(3) { animation-delay: 0.2s; }
.stagger-children .animate-card:nth-child(4) { animation-delay: 0.3s; }
.stagger-children .animate-card:nth-child(5) { animation-delay: 0.4s; }
.stagger-children .animate-card:nth-child(6) { animation-delay: 0.5s; }

/* ============================================================================
   SCROLLBAR STYLING
   ============================================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--abyss-950);
}

::-webkit-scrollbar-thumb {
    background: var(--abyss-700);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* ============================================================================
   SELECTION STYLING
   ============================================================================ */

::selection {
    background: rgba(0, 240, 255, 0.2);
    color: var(--text-primary);
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

/* ============================================================================
   ADDITIONAL UTILITIES
   ============================================================================ */

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

.glow-cyan {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.glow-violet {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.border-glow {
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.05), inset 0 0 15px rgba(0, 240, 255, 0.02);
}

/* Code block styling for any inline code */
code {
    font-family: var(--font-mono);
    background: rgba(0, 240, 255, 0.06);
    color: var(--neon-cyan);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-size: 0.875em;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-24) 0 var(--spacing-16);
    }
    
    .hero-content {
        padding-top: var(--spacing-12);
        padding-bottom: var(--spacing-16);
    }
    
    .bento-card-graphic {
        height: 14rem;
    }
    
    .stats-grid {
        gap: 2rem;
    }
    
    .stat-card > div:first-child {
        font-size: 2.5rem;
    }
}


/* ============================================================================
   FORM VALIDATION MESSAGES
   ============================================================================ */

.validation-message {
    font-size: 0.875rem;
    color: #f87171;
    margin-top: var(--spacing-1);
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s ease;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-shadow: 0 0 8px rgba(248, 113, 113, 0.3);
}

.validation-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: rgba(248, 113, 113, 0.5);
    box-shadow: 0 0 15px rgba(248, 113, 113, 0.1);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: rgba(0, 240, 255, 0.3);
}

/* ============================================================================
   MOUSE GLOW EFFECT (Desktop)
   ============================================================================ */

@media (pointer: fine) {
    .service-card,
    .blog-card,
    .bento-card,
    .testimonial-card,
    .info-card {
        position: relative;
    }
    
    .service-card::after,
    .blog-card::after,
    .bento-card::after,
    .testimonial-card::after,
    .info-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(
            400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 240, 255, 0.06),
            transparent 40%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        z-index: 2;
    }
    
    .service-card:hover::after,
    .blog-card:hover::after,
    .bento-card:hover::after,
    .testimonial-card:hover::after,
    .info-card:hover::after {
        opacity: 1;
    }
}

/* ============================================================================
   TECH STACK / TAG BADGES
   ============================================================================ */

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-1);
    padding: var(--spacing-1) var(--spacing-3);
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-cyan);
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

/* ============================================================================
   DIVIDER WITH GLOW
   ============================================================================ */

.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-violet), transparent);
    opacity: 0.2;
    margin: var(--spacing-12) 0;
}

/* ============================================================================
   FEATURE LIST (Checkmarks)
   ============================================================================ */

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.feature-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--neon-cyan);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px var(--neon-cyan-glow));
}

/* ============================================================================
   PROCESS STEPS / TIMELINE
   ============================================================================ */

.process-step {
    position: relative;
    padding-left: var(--spacing-10);
    padding-bottom: var(--spacing-8);
}

.process-step::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
    opacity: 0.3;
}

.process-step:last-child::before {
    display: none;
}

.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--abyss-950);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.process-step h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-1);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ============================================================================
   PRICING / PLAN CARDS
   ============================================================================ */

.plan-card {
    background: var(--card-bg);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.plan-card.featured {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-card), 0 0 40px rgba(0, 240, 255, 0.06);
}

.plan-card.featured::before {
    content: 'Recommended';
    position: absolute;
    top: 0;
    right: var(--spacing-6);
    background: var(--gradient-neon);
    color: var(--abyss-950);
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.12);
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: var(--spacing-4) 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
    font-weight: 400;
}

/* ============================================================================
   ERROR PAGES (404 / 500)
   ============================================================================ */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-16);
}

.error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.2));
    letter-spacing: -0.05em;
}

.error-page h2 {
    margin-bottom: var(--spacing-4);
}

.error-page p {
    margin-bottom: var(--spacing-8);
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================================
   CAREERS / JOB LISTING
   ============================================================================ */

.job-card {
    background: var(--card-bg);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-6);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.12);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-3);
}

.job-meta span {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: rgba(0, 240, 255, 0.05);
    padding: var(--spacing-1) var(--spacing-2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 240, 255, 0.08);
}

/* ============================================================================
   COOKIE CONSENT / BANNER
   ============================================================================ */

.cookie-banner {
    position: fixed;
    bottom: var(--spacing-6);
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: calc(100% - var(--spacing-12));
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-6);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.cookie-banner p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: var(--spacing-3);
    flex-wrap: wrap;
}

/* ============================================================================
   PAGINATION
   ============================================================================ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2);
    margin-top: var(--spacing-12);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--spacing-3);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination a {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
}

.pagination a:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.2);
    color: var(--neon-cyan);
}

.pagination .current {
    background: var(--gradient-neon);
    color: var(--abyss-950);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.pagination .disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ============================================================================
   SEARCH INPUT
   ============================================================================ */

.search-input {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-input input {
    width: 100%;
    padding: var(--spacing-3) var(--spacing-4) var(--spacing-3) var(--spacing-10);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input input::placeholder {
    color: var(--text-dim);
}

.search-input input:focus {
    outline: none;
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.08);
}

.search-input svg {
    position: absolute;
    left: var(--spacing-4);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    pointer-events: none;
}

/* ============================================================================
   CATEGORY FILTER BUTTONS
   ============================================================================ */

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    justify-content: center;
    margin-bottom: var(--spacing-8);
}

.filter-btn {
    padding: var(--spacing-2) var(--spacing-4);
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-sans);
}

.filter-btn:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.2);
    color: var(--neon-cyan);
}

.filter-btn.active {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}


/* ============================================================================
   DJANGO FORM STYLES
   ============================================================================ */

.form-control {
    width: 100%;
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control::placeholder {
    color: var(--text-dim);
}

.form-control:focus {
    outline: none;
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.08), inset 0 0 10px rgba(0, 240, 255, 0.02);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.form-control option {
    background: var(--abyss-800);
    color: var(--text-primary);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

input[type="file"].form-control {
    padding: var(--spacing-2);
}

input[type="file"].form-control::file-selector-button {
    padding: var(--spacing-2) var(--spacing-4);
    margin-right: var(--spacing-3);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--neon-cyan);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

input[type="file"].form-control::file-selector-button:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.3);
}

/* Django form errors */
ul.errorlist {
    list-style: none;
    margin: var(--spacing-1) 0;
    padding: 0;
}

ul.errorlist li {
    color: #f87171;
    font-size: 0.875rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-shadow: 0 0 6px rgba(248, 113, 113, 0.3);
}

.form-group .errorlist + input,
.form-group .errorlist + textarea,
.form-group .errorlist + select {
    border-color: rgba(248, 113, 113, 0.4);
    box-shadow: 0 0 15px rgba(248, 113, 113, 0.1);
}

/* Help text */
.helptext {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: var(--spacing-1);
    font-family: var(--font-mono);
}

/* ============================================================================
   AUTH PAGES (Register / Login / Profile)
   ============================================================================ */

.auth-section {
    padding: var(--spacing-32) 0 var(--spacing-24);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-16);
    align-items: start;
}

@media (min-width: 1024px) {
    .auth-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-24);
    }
}

.auth-card {
    background: var(--card-bg);
    border-radius: var(--radius-3xl);
    padding: var(--spacing-10);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.3;
}

.auth-card h2 {
    margin-bottom: var(--spacing-2);
    font-size: 1.75rem;
}

.auth-card .subtitle {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-8);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-5);
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4);
}

@media (max-width: 640px) {
    .auth-form .form-row {
        grid-template-columns: 1fr;
    }
}

.auth-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-2);
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="url"],
.auth-form input[type="tel"],
.auth-form textarea,
.auth-form select {
    width: 100%;
    padding: var(--spacing-3) var(--spacing-4);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus {
    outline: none;
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.08);
}

.auth-form input::placeholder {
    color: var(--text-dim);
}

.auth-links {
    text-align: center;
    margin-top: var(--spacing-6);
    padding-top: var(--spacing-6);
    border-top: 1px solid var(--card-border);
}

.auth-links p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

.auth-links a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: text-shadow 0.2s ease;
}

.auth-links a:hover {
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

/* Password hint styling */
.password-hint {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: var(--spacing-1);
    font-family: var(--font-mono);
}

.password-hint ul {
    margin: var(--spacing-1) 0;
    padding-left: var(--spacing-4);
}

.password-hint li {
    margin-bottom: var(--spacing-1);
}

/* ============================================================================
   MESSAGES / ALERTS
   ============================================================================ */

.messages-container {
    margin-bottom: var(--spacing-6);
}

.message {
    padding: var(--spacing-4) var(--spacing-5);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-3);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.success {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: var(--neon-cyan);
}

.message.error {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.15);
    color: #f87171;
}

.message.warning {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.message.info {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
    color: var(--neon-violet);
}

/* ============================================================================
   JOB DETAIL PAGE
   ============================================================================ */

.job-detail-section {
    padding: var(--spacing-32) 0 var(--spacing-24);
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
}

@media (min-width: 1024px) {
    .job-detail-grid {
        grid-template-columns: 2fr 1fr;
        gap: var(--spacing-16);
    }
}

.job-detail-main {
    background: var(--card-bg);
    border-radius: var(--radius-3xl);
    padding: var(--spacing-10);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.job-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.job-detail-sidebar .sidebar-card {
    background: var(--card-bg);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-6);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.job-detail-sidebar .sidebar-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
}

.job-meta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.job-meta-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.job-meta-list li svg {
    color: var(--neon-cyan);
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px var(--neon-cyan-glow));
}

.job-meta-list li strong {
    color: var(--text-primary);
    font-weight: 500;
}

.job-description {
    margin-top: var(--spacing-8);
}

.job-description h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
}

.job-description p,
.job-description ul {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

.job-description ul {
    padding-left: var(--spacing-6);
    margin-bottom: var(--spacing-4);
}

.job-description ul li {
    margin-bottom: var(--spacing-2);
}

/* ============================================================================
   APPLICATION STATUS BADGES
   ============================================================================ */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-1);
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.submitted {
    background: rgba(0, 240, 255, 0.08);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.status-badge.under_review {
    background: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.status-badge.shortlisted {
    background: rgba(168, 85, 247, 0.08);
    color: var(--neon-violet);
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.status-badge.interview {
    background: rgba(59, 130, 246, 0.08);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.status-badge.offered {
    background: rgba(34, 197, 94, 0.08);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.status-badge.hired {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}

.status-badge.rejected {
    background: rgba(248, 113, 113, 0.08);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.15);
}

.status-badge.withdrawn {
    background: rgba(148, 163, 184, 0.08);
    color: var(--text-muted);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

/* ============================================================================
   APPLICATIONS LIST
   ============================================================================ */

.application-card {
    background: var(--card-bg);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-6);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.application-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.12);
}

.application-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.application-card-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.application-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-4);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.application-card-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
}

/* ============================================================================
   WITHDRAWAL / CONFIRMATION DIALOG
   ============================================================================ */

.confirm-card {
    background: var(--card-bg);
    border-radius: var(--radius-3xl);
    padding: var(--spacing-10);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.confirm-card h2 {
    margin-bottom: var(--spacing-4);
}

.confirm-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-8);
}

.confirm-actions {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================================================
   GENERATIVE VISUALS - HERO CANVAS
   ============================================================================ */

.hero-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-canvas-container canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-canvas-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.85) 0%, rgba(10, 15, 30, 0.7) 40%, rgba(26, 16, 51, 0.5) 100%);
    z-index: 2;
}

.hero-canvas-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--abyss-950), transparent);
    z-index: 3;
    pointer-events: none;
}

/* ============================================================================
   GENERATIVE PAGE HEADERS
   ============================================================================ */

.generative-header {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-32) 0 var(--spacing-16);
}

.generative-header-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.generative-header-canvas canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.generative-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.7) 0%, rgba(2, 6, 23, 0.9) 70%, var(--abyss-950) 100%);
    z-index: 1;
}

.generative-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ============================================================================
   BENTO CARD MESH GRADIENTS (replacing photos)
   ============================================================================ */

.mesh-gradient {
    position: relative;
    overflow: hidden;
}

.mesh-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(at 20% 30%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(232, 121, 249, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.mesh-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.5;
}

.mesh-gradient > * {
    position: relative;
    z-index: 2;
}

/* Specific mesh color variants */
.mesh-cyan-violet {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
}

.mesh-violet-magenta {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(232, 121, 249, 0.08) 100%);
}

.mesh-cyan-magenta {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.06) 0%, rgba(232, 121, 249, 0.06) 100%);
}

.mesh-dark {
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.8) 0%, rgba(26, 16, 51, 0.6) 100%);
}

/* ============================================================================
   ABSTRACT CARD GRAPHICS (CSS-only data visualization)
   ============================================================================ */

.abstract-graphic {
    position: relative;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Floating bars animation */
.abstract-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.abstract-bar {
    width: 8px;
    background: linear-gradient(to top, var(--neon-cyan), var(--neon-violet));
    border-radius: 4px 4px 0 0;
    opacity: 0.6;
    animation: bar-dance 2s ease-in-out infinite;
}

.abstract-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.abstract-bar:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.abstract-bar:nth-child(3) { height: 45%; animation-delay: 0.2s; }
.abstract-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.abstract-bar:nth-child(5) { height: 55%; animation-delay: 0.4s; }
.abstract-bar:nth-child(6) { height: 70%; animation-delay: 0.5s; }
.abstract-bar:nth-child(7) { height: 40%; animation-delay: 0.6s; }
.abstract-bar:nth-child(8) { height: 90%; animation-delay: 0.7s; }

@keyframes bar-dance {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.2); opacity: 0.9; }
}

/* Orbital rings */
.abstract-orbits {
    position: relative;
    width: 120px;
    height: 120px;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    animation: orbit-rotate 8s linear infinite;
}

.orbit-ring:nth-child(1) {
    inset: 0;
    border-color: rgba(0, 240, 255, 0.3);
    animation-duration: 12s;
}

.orbit-ring:nth-child(2) {
    inset: 15px;
    border-color: rgba(168, 85, 247, 0.25);
    animation-duration: 8s;
    animation-direction: reverse;
}

.orbit-ring:nth-child(3) {
    inset: 30px;
    border-color: rgba(232, 121, 249, 0.2);
    animation-duration: 5s;
}

.orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan-glow);
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-ring:nth-child(2) .orbit-dot {
    background: var(--neon-violet);
    box-shadow: 0 0 8px var(--neon-violet-glow);
}

.orbit-ring:nth-child(3) .orbit-dot {
    background: var(--neon-magenta);
    box-shadow: 0 0 8px var(--neon-magenta-glow);
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Code block pattern */
.abstract-code {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 140px;
}

.code-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 240, 255, 0.15);
    animation: code-pulse 3s ease-in-out infinite;
}

.code-line:nth-child(1) { width: 100%; animation-delay: 0s; }
.code-line:nth-child(2) { width: 70%; animation-delay: 0.2s; }
.code-line:nth-child(3) { width: 85%; animation-delay: 0.4s; }
.code-line:nth-child(4) { width: 50%; animation-delay: 0.6s; }
.code-line:nth-child(5) { width: 90%; animation-delay: 0.8s; }
.code-line:nth-child(6) { width: 60%; animation-delay: 1.0s; }
.code-line:nth-child(7) { width: 75%; animation-delay: 1.2s; }

@keyframes code-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Network nodes */
.abstract-network {
    position: relative;
    width: 120px;
    height: 120px;
}

.network-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
}

.network-node:nth-child(1) { top: 20%; left: 20%; }
.network-node:nth-child(2) { top: 20%; right: 20%; background: var(--neon-violet); box-shadow: 0 0 10px var(--neon-violet-glow); }
.network-node:nth-child(3) { bottom: 20%; left: 20%; background: var(--neon-magenta); box-shadow: 0 0 10px var(--neon-magenta-glow); }
.network-node:nth-child(4) { bottom: 20%; right: 20%; }
.network-node:nth-child(5) { top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--neon-violet); box-shadow: 0 0 10px var(--neon-violet-glow); }

.network-line {
    position: absolute;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-violet));
    opacity: 0.2;
    transform-origin: left center;
}

/* ============================================================================
   BLOG GRADIENT COVERS (replacing thumbnails)
   ============================================================================ */

.blog-gradient-cover {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-gradient-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(at 30% 30%, rgba(0, 240, 255, 0.12) 0%, transparent 50%),
        radial-gradient(at 70% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 50%);
}

.blog-gradient-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}

.blog-gradient-cover .cover-icon {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.3));
}

/* Category-specific gradients */
.cover-tech { background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%); }
.cover-cloud { background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%); }
.cover-saas { background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(232, 121, 249, 0.08) 100%); }
.cover-mobile { background: linear-gradient(135deg, rgba(232, 121, 249, 0.08) 0%, rgba(244, 114, 182, 0.08) 100%); }
.cover-ai { background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%); }
.cover-business { background: linear-gradient(135deg, rgba(251, 191, 36, 0.06) 0%, rgba(245, 158, 11, 0.06) 100%); }
.cover-default { background: linear-gradient(135deg, rgba(0, 240, 255, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%); }
