/* ================================================
   SheraAI LMS - WORLD'S BEST GLASSMORPHIC UI
   Author: SheraAI Technologies | Shaheer
   Version: 4.0.0 - ULTIMATE EDITION
   ================================================ */

/* ===== FIX #1: FULL PAGE GRADIENT BACKGROUND - NEVER GOES BLACK ===== */

/* The body has a beautiful fixed gradient that covers everything */
body {
    background: 
        /* Animated mesh gradient */
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 60%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 70% 80%, rgba(99, 102, 241, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 10% 90%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        /* Base gradient */
        linear-gradient(135deg, 
            #0a0f1a 0%, 
            #0f172a 15%, 
            #131b2e 30%,
            #0f172a 45%,
            #1a1f35 60%,
            #0f172a 75%,
            #131b2e 90%,
            #0a0f1a 100%
        ) !important;
    background-attachment: fixed !important;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 200% !important;
    min-height: 100vh;
}

/* Enhanced Animated Background - TRULY covers ENTIRE page */
.animated-bg {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: visible;
    pointer-events: none;
    /* NO background here - body handles it */
    background: transparent !important;
}

/* Make orbs more visible and spread throughout viewport */
.gradient-orb {
    position: fixed !important;
    opacity: 0.5 !important;
    filter: blur(100px) !important;
    border-radius: 50%;
    animation: floatOrb 20s ease-in-out infinite !important;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

.orb-1 {
    width: 600px !important;
    height: 600px !important;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.8) 0%, rgba(99, 102, 241, 0) 70%) !important;
    top: -200px !important;
    left: -150px !important;
    animation-duration: 25s !important;
}

.orb-2 {
    width: 500px !important;
    height: 500px !important;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.7) 0%, rgba(139, 92, 246, 0) 70%) !important;
    top: 20vh !important;
    right: -100px !important;
    animation-duration: 30s !important;
    animation-delay: -5s !important;
}

.orb-3 {
    width: 450px !important;
    height: 450px !important;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.6) 0%, rgba(6, 182, 212, 0) 70%) !important;
    bottom: 30vh !important;
    left: 10vw !important;
    animation-duration: 22s !important;
    animation-delay: -8s !important;
}

.orb-4 {
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, rgba(16, 185, 129, 0) 70%) !important;
    top: 50vh !important;
    right: 20vw !important;
    animation-duration: 28s !important;
    animation-delay: -12s !important;
}

.orb-5 {
    width: 550px !important;
    height: 550px !important;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.6) 0%, rgba(99, 102, 241, 0) 70%) !important;
    bottom: 10vh !important;
    right: -50px !important;
    animation-duration: 26s !important;
    animation-delay: -15s !important;
}

.orb-6 {
    width: 480px !important;
    height: 480px !important;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0) 70%) !important;
    top: 70vh !important;
    left: -100px !important;
    animation-duration: 32s !important;
    animation-delay: -18s !important;
}

/* Add 5th and 6th orbs for better coverage */
.animated-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: 150%;
    left: 10%;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatSlow 25s ease-in-out infinite;
}

.animated-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 250%;
    right: 5%;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatSlow 30s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

/* Sections get subtle gradient backgrounds */
section {
    position: relative;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.section-alt::before {
    background: radial-gradient(ellipse 100% 50% at 50% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
}

/* ===== FIX #2: WORLD-CLASS GLASSMORPHIC CARDS ===== */

/* Reset and enhance glass-card */
.glass-card,
.feature-card,
.ultra-glass {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 24px !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 rgba(255, 255, 255, 0.1) inset !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Top highlight line */
.glass-card::before,
.feature-card::before,
.ultra-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    z-index: 2;
}

/* Hover glow effect */
.glass-card::after,
.feature-card::after,
.ultra-glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(99, 102, 241, 0.15),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

.glass-card:hover::after,
.feature-card:hover::after,
.ultra-glass:hover::after {
    opacity: 1;
}

.glass-card:hover,
.feature-card:hover,
.ultra-glass:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(99, 102, 241, 0.3) inset,
        0 1px 0 rgba(255, 255, 255, 0.2) inset !important;
}

/* Card content z-index */
.glass-card > *,
.feature-card > *,
.ultra-glass > * {
    position: relative;
    z-index: 3;
}

/* Feature card specific */
.feature-card {
    padding: 32px !important;
}

.feature-card .feature-icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem !important;
    margin-bottom: 24px !important;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4) !important;
}

.feature-card h3 {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
}

.feature-card .feature-link {
    color: #a5b4fc !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease !important;
}

.feature-card .feature-link:hover {
    color: #c7d2fe !important;
    gap: 12px;
}

/* ===== FIX #3: PREMIUM NEON CARDS ===== */
.neon-card,
.platform-item.neon-card {
    position: relative;
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    border-radius: 20px !important;
    padding: 28px !important;
    overflow: hidden;
    transition: all 0.4s ease !important;
}

.neon-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4, #6366f1);
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: gradientRotate 4s linear infinite;
    transition: opacity 0.4s ease;
}

.neon-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(15, 23, 42, 0.95);
    border-radius: inherit;
    z-index: -1;
}

.neon-card:hover::before {
    opacity: 1;
}

.neon-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(99, 102, 241, 0.3) !important;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.neon-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.neon-card h3 i {
    color: #a5b4fc !important;
    font-size: 1.1rem;
}

.neon-card p {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7 !important;
}

/* ===== FIX #4: PREMIUM BUTTONS ===== */
.btn-ultra,
.btn-primary {
    position: relative;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%) !important;
    background-size: 200% 200%;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 36px !important;
    font-weight: 600 !important;
    color: white !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
}

.btn-ultra::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-ultra:hover::before,
.btn-primary:hover::before {
    left: 100%;
}

.btn-ultra:hover,
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02) !important;
    background-position: 100% 100%;
    box-shadow: 
        0 12px 40px rgba(99, 102, 241, 0.5),
        0 0 30px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
}

.btn-glow-intense,
.btn-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 16px 36px !important;
    font-weight: 600 !important;
    color: white !important;
    transition: all 0.4s ease !important;
}

.btn-glow-intense:hover,
.btn-glass:hover {
    background: rgba(99, 102, 241, 0.2) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
    transform: translateY(-4px) !important;
    box-shadow: 
        0 10px 30px rgba(99, 102, 241, 0.3),
        0 0 20px rgba(99, 102, 241, 0.2) !important;
}

/* ===== FIX #5: HERO SECTION ENHANCEMENT ===== */
.hero-section,
.hero {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-content h1,
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
}

/* Text gradient animation */
.text-gradient-animate,
.gradient-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #a5b4fc 25%,
        #c4b5fd 50%,
        #a5b4fc 75%,
        #ffffff 100%
    ) !important;
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: textShine 4s linear infinite;
}

@keyframes textShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-description {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8 !important;
    max-width: 600px;
}

/* Hero meta badges */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.hero-meta span,
.hero-meta .liquid-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.hero-meta span:hover,
.hero-meta .liquid-glass:hover {
    background: rgba(99, 102, 241, 0.2) !important;
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.hero-meta i {
    color: #a5b4fc;
}

/* Glass badge enhancement */
.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px !important;
    background: rgba(99, 102, 241, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 500;
    color: #c7d2fe !important;
    margin-bottom: 24px;
}

.glass-badge i {
    color: #a5b4fc;
}

/* ===== FIX #6: SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
    border-radius: 4px;
}

.section-header p {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FIX #7: ROLE CARDS ===== */
.role-card,
.glass-card-role,
.role-detail-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    ) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    padding: 32px !important;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.role-card:hover,
.glass-card-role:hover,
.role-detail-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(99, 102, 241, 0.15) !important;
}

.role-card .role-icon,
.role-detail-card .role-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 24px !important;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    border-radius: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem !important;
    color: white !important;
    transition: all 0.4s ease !important;
}

.role-card:hover .role-icon,
.role-detail-card:hover .role-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4) !important;
}

.role-card h3,
.role-detail-card h3 {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.role-card p,
.role-detail-card p {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7 !important;
}

/* ===== FIX #8: FAQ SECTION ===== */
.faq-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 24px 28px !important;
    margin-bottom: 16px;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
}

.faq-item h3 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7 !important;
}

/* ===== FIX #9: FOOTER ===== */
.footer {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(10, 15, 26, 0.98) 100%
    ) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 80px 0 40px !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(99, 102, 241, 0.5), 
        rgba(139, 92, 246, 0.5), 
        transparent
    );
}

.footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease !important;
}

.footer a:hover {
    color: #a5b4fc !important;
    padding-left: 8px;
}

/* ===== FIX #10: CONTACT CARDS ===== */
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    transition: all 0.4s ease !important;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
    transform: translateX(8px) !important;
}

.contact-icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    border-radius: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem !important;
    color: white !important;
}

/* ===== FIX #11: DOWNLOAD CARDS ===== */
.download-option {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    ) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.download-option:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4) !important;
}

.download-option .platform-icon {
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 24px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 28px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem !important;
    color: #a5b4fc !important;
    transition: all 0.4s ease !important;
}

.download-option:hover .platform-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: white !important;
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4) !important;
}

/* ===== FIX #12: PRICING CARDS ===== */
.pricing-card,
.pricing-highlight {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    ) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 28px !important;
    padding: 48px 36px !important;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pricing-highlight {
    border-color: rgba(99, 102, 241, 0.4) !important;
    box-shadow: 
        0 0 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.2) inset !important;
}

.pricing-card:hover,
.pricing-highlight:hover {
    transform: translateY(-12px) scale(1.02) !important;
}

.price-tag .price {
    font-size: 4.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #6366f1 0%, #a78bfa 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ===== FIX #13: SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px !important;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4) !important;
    z-index: 99999;
    box-shadow: 
        0 0 10px rgba(99, 102, 241, 0.5),
        0 0 20px rgba(99, 102, 241, 0.3) !important;
}

/* ===== FIX #14: CURSOR GLOW ===== */
.cursor-glow {
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.15) 0%, 
        rgba(99, 102, 241, 0.05) 30%,
        transparent 70%
    ) !important;
    pointer-events: none;
    z-index: 9997;
}

/* ===== FIX #15: LOADING SCREEN ===== */
.page-loader {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 100%) !important;
}

.loader-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5) !important;
}

.loader-progress {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4) !important;
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    .glass-card:hover,
    .feature-card:hover,
    .ultra-glass:hover,
    .role-card:hover,
    .pricing-card:hover {
        transform: translateY(-6px) scale(1.01) !important;
    }
    
    .btn-ultra:hover,
    .btn-primary:hover {
        transform: translateY(-2px) !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .feature-card {
        padding: 24px !important;
    }
    
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
