/* ===========================
   MIRROR AI LANDING PAGE
   Complete Styles v4.0.0
   One file for all landing page styles
   =========================== */

        /* Enhanced CSS Variables */
        :root {
            --bg-primary: #0a0e27;

            --bg-secondary: #1a1f3a;
            --gradient-primary: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
            --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-tertiary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-cyan: #00f2fe;
            --accent-purple: #764ba2;
            --accent-neon: #00ffff;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.8);
            --text-muted: rgba(255, 255, 255, 0.6);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --blur-intense: blur(20px);
            --blur-subtle: blur(10px);
            --glow-neon: 0 0 30px rgba(0, 242, 254, 0.5);
            --glow-purple: 0 0 30px rgba(118, 75, 162, 0.5);
            --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
        }

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

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            max-width: 100%;
            width: 100%;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            max-width: 100vw;
            width: 100%;
            line-height: 1.6;
            position: relative;
            margin: 0;
            padding: 0;
        }

        /* Enhanced Quantum Background */
        .quantum-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            pointer-events: none;
        }

        .quantum-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .quantum-layer-1 {
            background: radial-gradient(circle at 20% 30%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(0, 242, 254, 0.2) 0%, transparent 50%);
            animation: quantumFloat1 15s ease-in-out infinite;
        }

        .quantum-layer-2 {
            background: radial-gradient(circle at 60% 20%, rgba(240, 147, 251, 0.2) 0%, transparent 40%),
                        radial-gradient(circle at 40% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 40%);
            animation: quantumFloat2 20s ease-in-out infinite reverse;
        }

        @keyframes quantumFloat1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

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

        /* Particle Canvas */
        #particle-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            opacity: 0.6;
        }

        /* Enhanced Navigation */
        .quantum-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(10, 14, 39, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .quantum-nav.scrolled {
            background: rgba(10, 14, 39, 0.98);
            backdrop-filter: blur(25px);
            border-bottom: 1px solid rgba(0, 242, 254, 0.2);
            padding: 14px 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }

        .nav-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            box-sizing: border-box;
            gap: 40px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 700;
            font-size: 1.6rem;
            position: relative;
            z-index: 1;
        }

        .nav-brand-logo {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .nav-brand-logo img {
            width: 46px;
            height: 46px;
            object-fit: contain;
            filter: brightness(1.1);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: auto;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
        }

        @keyframes logoPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 20px 5px rgba(0, 242, 254, 0.2); }
        }

        .nav-brand span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShimmer 3s ease-in-out infinite;
        }

        @keyframes gradientShimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
        }

        .nav-brand-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .nav-brand-beta {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.1);
            border: 1px solid rgba(0, 242, 254, 0.3);
            border-radius: 12px;
            padding: 2px 8px;
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: betaPulse 2s ease-in-out infinite;
        }

        @keyframes betaPulse {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4);
                background: rgba(0, 242, 254, 0.1);
            }
            50% { 
                box-shadow: 0 0 8px 2px rgba(0, 242, 254, 0.2);
                background: rgba(0, 242, 254, 0.15);
            }
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: clamp(20px, 2.5vw, 35px);
            flex-wrap: nowrap;
            flex: 0 0 auto;
        }

        /* Hide mobile menu toggle by default (desktop) */
        .mobile-menu-toggle {
            display: none;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 10px 4px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00f2fe, #764ba2);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
        }

        .nav-link:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

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

        .nav-cta {
            padding: 16px 48px;
            border-radius: 28px;
            color: white !important;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(90deg, #7b68ee 0%, #00d4ff 100%);
            border: none;
            white-space: nowrap;
            letter-spacing: 0.02em;
            box-shadow: 0 3px 10px rgba(0, 201, 219, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            min-width: 160px;
        }

        .nav-cta:hover {
            background: linear-gradient(90deg, #8b7aff 0%, #00e0ff 100%);
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(0, 219, 237, 0.4);
        }

        .nav-cta:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(0, 201, 219, 0.3);
        }

        /* Get Started button - same gradient style */
        .btn-signup {
            background: linear-gradient(90deg, #7b68ee 0%, #00d4ff 100%);
            color: white !important;
            border: none;
        }

        .btn-signup:hover {
            background: linear-gradient(90deg, #8b7aff 0%, #00e0ff 100%);
        }

        /* Enhanced Hero Section */
        .hero-quantum {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
            padding-bottom: 60px;
            width: 100%;
            max-width: 100vw;
        }

        .hero-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 100px);
            align-items: center;
            position: relative;
            z-index: 2;
            box-sizing: border-box;
        }

        .hero-content {
            animation: slideInLeft 1s ease-out;
        }

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

        /* Hero Badge Enhancement */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, 
                rgba(0, 242, 254, 0.15) 0%, 
                rgba(118, 75, 162, 0.15) 100%);
            backdrop-filter: blur(20px);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            padding: 16px 32px;
            border-radius: 60px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #00f2fe;
            width: fit-content;
            margin-bottom: 32px;
            box-shadow: 
                0 8px 32px rgba(0, 242, 254, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            overflow: hidden;
        }

        /* Animated border gradient */
        .hero-badge::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(90deg, 
                #00f2fe, #764ba2, #f093fb, #00f2fe);
            background-size: 300% 100%;
            border-radius: 62px;
            z-index: -1;
            animation: borderGlow 4s linear infinite;
        }

        .hero-badge::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: linear-gradient(135deg, 
                rgba(10, 14, 39, 0.95) 0%, 
                rgba(26, 31, 58, 0.95) 100%);
            border-radius: 58px;
            z-index: -1;
        }

        @keyframes borderGlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 300% 50%; }
        }

        .hero-badge i {
            font-size: 1.1rem;
            animation: rocketFloat 2s ease-in-out infinite;
            filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
        }

        @keyframes rocketFloat {
            0%, 100% { transform: translateY(0) rotate(-15deg); }
            50% { transform: translateY(-4px) rotate(-15deg); }
        }

        /* Hero Title Enhancement */
        .hero-title {
            font-size: clamp(2.8rem, 5.5vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 32px;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #00f2fe 25%, 
                #ffffff 50%,
                #764ba2 75%, 
                #ffffff 100%);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: heroGradient 8s ease infinite;
            filter: drop-shadow(0 0 60px rgba(0, 242, 254, 0.4));
            letter-spacing: -0.03em;
            position: relative;
        }

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

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            margin-bottom: 35px;
            line-height: 1.7;
            max-width: 600px;
        }

        /* ========================================
           WHAT IS MIRROR AI - ENHANCED
           ======================================== */

        .what-is-mirror-section {
            padding: 100px 0 120px;
            background: linear-gradient(180deg, 
                rgba(10, 14, 39, 0) 0%, 
                rgba(10, 14, 39, 0.6) 50%,
                rgba(10, 14, 39, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        /* Background glow orbs */
        .what-is-mirror-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 20%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, 
                rgba(0, 242, 254, 0.1) 0%, 
                transparent 60%);
            filter: blur(80px);
            pointer-events: none;
            animation: orbFloat 8s ease-in-out infinite;
        }

        .what-is-mirror-section::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 20%;
            transform: translate(50%, -50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, 
                rgba(118, 75, 162, 0.1) 0%, 
                transparent 60%);
            filter: blur(80px);
            pointer-events: none;
            animation: orbFloat 8s ease-in-out infinite reverse;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
        }

        /* Enhanced hero description card */
        .hero-description {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 60px 80px;
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.6) 0%, 
                rgba(16, 21, 46, 0.8) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 32px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(0, 242, 254, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        /* Animated corner accents */
        .hero-description::before,
        .hero-description::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            pointer-events: none;
        }

        .hero-description::before {
            top: -2px;
            left: -2px;
            border-top: 3px solid rgba(0, 242, 254, 0.6);
            border-left: 3px solid rgba(0, 242, 254, 0.6);
            border-radius: 32px 0 0 0;
            animation: cornerPulse 3s ease-in-out infinite;
        }

        .hero-description::after {
            bottom: -2px;
            right: -2px;
            border-bottom: 3px solid rgba(118, 75, 162, 0.6);
            border-right: 3px solid rgba(118, 75, 162, 0.6);
            border-radius: 0 0 32px 0;
            animation: cornerPulse 3s ease-in-out infinite 1.5s;
        }

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

        .description-header {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #00f2fe 30%, 
                #4facfe 70%, 
                #ffffff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 28px;
            letter-spacing: -0.02em;
            animation: titleShimmer 4s ease-in-out infinite;
            position: relative;
        }

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

        /* Decorative line under title */
        .description-header::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, 
                transparent, 
                #00f2fe, 
                #764ba2, 
                transparent);
            border-radius: 2px;
        }

        .description-intro {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            font-weight: 400;
            max-width: 850px;
            margin: 24px auto 0;
        }

/* ========================================
   PERFECT FOR SECTION - REVAMPED v2
   Fixed image visibility issues
   
   INSTRUCTIONS: 
   1. Find and DELETE the old "PERFECT FOR SECTION" CSS 
      (search for ".perfect-for-section-wrapper" or ".perfect-for-section")
   2. Paste this CSS in its place
   ======================================== */

.perfect-for-section {
    position: relative;
    padding: 120px 0 140px;
    overflow: hidden;
}

/* Animated Background */
.perfect-for-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 242, 254, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 90%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: pfBackgroundPulse 8s ease-in-out infinite;
}

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

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: pfOrbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 242, 254, 0.15);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(118, 75, 162, 0.15);
    bottom: -50px;
    right: -50px;
    animation-delay: -10s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(240, 147, 251, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

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

.perfect-for-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.perfect-for-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-badge i {
    font-size: 0.9rem;
}

.perfect-for-section .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: pfGradientFlow 6s ease infinite;
}

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

.perfect-for-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards Grid - 2x2 Layout */
.perfect-for-section .use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Individual Card */
.perfect-for-section .use-case-card {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(26, 31, 58, 0.8) 0%, 
        rgba(16, 21, 46, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.perfect-for-section .use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, linear-gradient(90deg, var(--accent-cyan), var(--accent-purple)));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.perfect-for-section .use-case-card:hover::before {
    transform: scaleX(1);
}

.perfect-for-section .use-case-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 242, 254, 0.1);
}

/* Card Accent Colors */
.perfect-for-section .use-case-card:nth-child(1) { --card-accent: linear-gradient(90deg, #00f2fe, #4facfe); }
.perfect-for-section .use-case-card:nth-child(2) { --card-accent: linear-gradient(90deg, #667eea, #764ba2); }
.perfect-for-section .use-case-card:nth-child(3) { --card-accent: linear-gradient(90deg, #f093fb, #f5576c); }
.perfect-for-section .use-case-card:nth-child(4) { --card-accent: linear-gradient(90deg, #69f0ae, #00c853); }

/* Card Layout - VERTICAL STACK (Image on top, content below) */
.card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Container - FIXED: Much taller, better positioning */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Show upper portion where faces typically are */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specific positioning for each card's image */
.perfect-for-section .use-case-card:nth-child(1) .card-image {
    object-position: center 30%; /* Crypto Businesses - person at desk */
}

.perfect-for-section .use-case-card:nth-child(2) .card-image {
    object-position: center 25%; /* Financial Advisors - two people talking */
}

.perfect-for-section .use-case-card:nth-child(3) .card-image {
    object-position: center 35%; /* Content Creators - person with camera */
}

.perfect-for-section .use-case-card:nth-child(4) .card-image {
    object-position: center 30%; /* Enterprises - meeting room */
}

.perfect-for-section .use-case-card:hover .card-image {
    transform: scale(1.05);
}

/* Image Overlay Gradient - REDUCED opacity for better visibility */
.card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%,
        transparent 40%,
        rgba(10, 14, 39, 0.4) 70%,
        rgba(10, 14, 39, 0.85) 100%);
    pointer-events: none;
}

/* Floating Number Badge */
.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    z-index: 2;
}

/* Content Container */
.card-content {
    flex: 1;
    padding: 32px 36px 36px;
    display: flex;
    flex-direction: column;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--card-accent, linear-gradient(135deg, var(--accent-cyan), var(--accent-purple)));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perfect-for-section .use-case-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(0, 242, 254, 0.3);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* Card Description */
.card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features List */
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.perfect-for-section .use-case-card:hover .feature-item {
    color: var(--text-primary);
}

.feature-icon {
    width: 22px;
    height: 22px;
    background: rgba(105, 240, 174, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 0.6rem;
    color: #69f0ae;
}

/* Card CTA */
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.card-cta i {
    transition: transform 0.3s ease;
}

.perfect-for-section .use-case-card:hover .card-cta {
    opacity: 1;
    transform: translateX(0);
}

.perfect-for-section .use-case-card:hover .card-cta i {
    transform: translateX(4px);
}

/* ========================================
   PERFECT FOR SECTION - RESPONSIVE
   ======================================== */

/* Large Desktop */
@media (min-width: 1440px) {
    .perfect-for-section .container {
        max-width: 1500px;
        padding: 0 60px;
    }

    .perfect-for-section .use-case-grid {
        gap: 50px;
    }

    .card-image-wrapper {
        height: 320px;
    }

    .card-content {
        padding: 36px 44px 44px;
    }

    .card-title {
        font-size: 1.7rem;
    }

    .card-description {
        font-size: 1rem;
    }

    .feature-item {
        font-size: 0.95rem;
    }
}

/* Medium Desktop */
@media (max-width: 1200px) {
    .card-image-wrapper {
        height: 260px;
    }

    .card-content {
        padding: 28px 32px 32px;
    }

    .card-title {
        font-size: 1.35rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .perfect-for-section {
        padding: 80px 0 100px;
    }

    .perfect-for-section .section-header {
        margin-bottom: 60px;
    }

    .perfect-for-section .use-case-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
        margin: 0 auto;
    }

    .card-image-wrapper {
        height: 280px;
    }

    .card-content {
        padding: 28px 32px 32px;
    }

    .features-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
    }

    .card-cta {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Hide floating orbs on tablet */
    .floating-orb {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .perfect-for-section {
        padding: 60px 0 80px;
    }

    .perfect-for-section .container {
        padding: 0 20px;
    }

    .section-badge {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .perfect-for-section .section-title {
        font-size: 2rem;
    }

    .perfect-for-section .section-subtitle {
        font-size: 1rem;
    }

    .perfect-for-section .section-header {
        margin-bottom: 48px;
    }

    .perfect-for-section .use-case-grid {
        gap: 24px;
        max-width: 100%;
    }

    .card-image-wrapper {
        height: 220px;
    }

    .card-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 12px;
        top: 16px;
        left: 16px;
    }

    .card-content {
        padding: 24px;
    }

    .card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }

    .feature-icon i {
        font-size: 0.55rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .perfect-for-section {
        padding: 48px 0 64px;
    }

    .perfect-for-section .container {
        padding: 0 16px;
    }

    .perfect-for-section .section-title {
        font-size: 1.75rem;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .card-header {
        gap: 12px;
    }

    .card-content {
        padding: 20px;
    }

    .card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .card-title {
        font-size: 1.15rem;
    }

    .perfect-for-section .use-case-card:hover {
        transform: translateY(-6px);
    }
}

/* END PERFECT FOR SECTION */

        .typing-container {
            height: 40px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
        }

        .typing-text {
            font-size: 1.1rem;
            color: var(--accent-cyan);
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
        }

        .typing-cursor {
            display: inline-block;
            background: var(--accent-cyan);
            width: 3px;
            height: 24px;
            margin-left: 4px;
            animation: blink 1s infinite;
        }

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

        .hero-ctas {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .cta-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--glow-neon), var(--shadow-deep);
        }

        .cta-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid var(--glass-border);
            color: var(--text-primary);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            backdrop-filter: var(--blur-subtle);
        }

        .cta-secondary:hover {
            border-color: var(--accent-cyan);
            background: var(--glass-bg);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
        }

        /* Enhanced 3D Visualization */
        .hero-visual {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Holographic Logo Card Design */
        .logo-hologram-container {
            width: 500px;
            height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Enhanced Hologram Card */
        .hologram-card {
            width: 320px;
            height: 320px;
            background: linear-gradient(135deg, 
                rgba(10, 14, 39, 0.9) 0%, 
                rgba(118, 75, 162, 0.3) 50%,
                rgba(0, 242, 254, 0.3) 100%);
            backdrop-filter: blur(30px);
            border: 2px solid rgba(0, 242, 254, 0.4);
            border-radius: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transform: rotateY(-15deg) rotateX(5deg);
            animation: cardFloat 6s ease-in-out infinite;
            box-shadow: 
                0 30px 60px -15px rgba(0, 242, 254, 0.3),
                0 0 80px rgba(118, 75, 162, 0.2),
                inset 0 0 40px rgba(0, 242, 254, 0.1);
            overflow: hidden;
        }

        /* Hologram scan line effect */
        .hologram-card::before {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                transparent 0%,
                rgba(0, 242, 254, 0.1) 50%,
                transparent 100%);
            animation: hologramScan 4s linear infinite;
            pointer-events: none;
        }

        @keyframes hologramScan {
            0% { top: -50%; }
            100% { top: 150%; }
        }

        @keyframes cardFloat {
            0%, 100% { 
                transform: rotateY(-15deg) rotateX(5deg) translateY(0px);
            }
            50% { 
                transform: rotateY(-15deg) rotateX(5deg) translateY(-30px);
            }
        }

        /* Enhanced card glow */
        .card-glow {
            position: absolute;
            inset: -40px;
            background: radial-gradient(circle at 50% 50%, 
                rgba(0, 242, 254, 0.5) 0%, 
                rgba(118, 75, 162, 0.3) 30%,
                transparent 70%);
            filter: blur(60px);
            animation: glowPulse 4s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.15); }
        }

        .hologram-logo {
            width: 240px;
            height: 150px;
            position: relative;
            z-index: 2;
            filter: brightness(1.4) contrast(1.2) saturate(1.3);
            animation: logoPulse 4s ease-in-out infinite;
            object-fit: contain;
            border-radius: 15px;
        }

        @keyframes gradientShift {
            0%, 100% { 
                background-position: 0% 50%; 
                border-color: rgba(0, 242, 254, 0.4);
            }
            25% { 
                background-position: 100% 0%; 
                border-color: rgba(118, 75, 162, 0.4);
            }
            50% { 
                background-position: 100% 100%; 
                border-color: rgba(240, 147, 251, 0.4);
            }
            75% { 
                background-position: 0% 100%; 
                border-color: rgba(102, 126, 234, 0.4);
            }
        }

        @keyframes logoPulse {
            0%, 100% { transform: scale(1); filter: brightness(1.5); }
            50% { transform: scale(1.05); filter: brightness(2); }
        }

        .data-streams {
            position: absolute;
            inset: 0;
            overflow: hidden;
            border-radius: 30px;
        }

        .stream {
            position: absolute;
            width: 2px;
            height: 100px;
            background: linear-gradient(to bottom, 
                transparent, 
                rgba(0, 242, 254, 0.8), 
                transparent);
            animation: dataFlow 3s linear infinite;
        }

        .stream-1 { left: 20%; animation-delay: 0s; }
        .stream-2 { left: 50%; animation-delay: 1s; }
        .stream-3 { left: 80%; animation-delay: 2s; }

        @keyframes dataFlow {
            0% { transform: translateY(-100px); opacity: 0; }
            20% { opacity: 1; }
            80% { opacity: 1; }
            100% { transform: translateY(400px); opacity: 0; }
        }

        /* Enhanced orbit rings */
        .orbit-ring {
            position: absolute;
            width: 480px;
            height: 480px;
            border: 2px solid transparent;
            border-top-color: rgba(0, 242, 254, 0.4);
            border-right-color: rgba(0, 242, 254, 0.2);
            border-radius: 50%;
            animation: orbitRotate 20s linear infinite;
            box-shadow: 
                0 0 30px rgba(0, 242, 254, 0.2),
                inset 0 0 30px rgba(0, 242, 254, 0.1);
        }

        .orbit-ring::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #00f2fe, #4facfe);
            border-radius: 50%;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 
                0 0 20px rgba(0, 242, 254, 0.8),
                0 0 40px rgba(0, 242, 254, 0.4);
        }

        .orbit-ring-2 {
            width: 380px;
            height: 380px;
            animation-duration: 15s;
            animation-direction: reverse;
            border-top-color: rgba(118, 75, 162, 0.4);
            border-right-color: rgba(118, 75, 162, 0.2);
            box-shadow: 
                0 0 30px rgba(118, 75, 162, 0.2),
                inset 0 0 30px rgba(118, 75, 162, 0.1);
        }

        .orbit-ring-2::before {
            background: linear-gradient(135deg, #764ba2, #f093fb);
            box-shadow: 
                0 0 20px rgba(118, 75, 162, 0.8),
                0 0 40px rgba(118, 75, 162, 0.4);
        }

        /* Floating data particles around hologram */
        .logo-hologram-container::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20% 30%, rgba(0, 242, 254, 0.8) 50%, transparent 50%),
                radial-gradient(2px 2px at 40% 70%, rgba(118, 75, 162, 0.8) 50%, transparent 50%),
                radial-gradient(2px 2px at 60% 20%, rgba(240, 147, 251, 0.8) 50%, transparent 50%),
                radial-gradient(2px 2px at 80% 60%, rgba(0, 242, 254, 0.8) 50%, transparent 50%),
                radial-gradient(2px 2px at 10% 80%, rgba(118, 75, 162, 0.8) 50%, transparent 50%),
                radial-gradient(2px 2px at 90% 40%, rgba(240, 147, 251, 0.8) 50%, transparent 50%);
            animation: particleFloat 10s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes particleFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
            25% { transform: translateY(-20px) rotate(90deg); opacity: 1; }
            50% { transform: translateY(-10px) rotate(180deg); opacity: 0.8; }
            75% { transform: translateY(-30px) rotate(270deg); opacity: 1; }
        }

        @keyframes orbitRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Hover effects for hologram card */
        .logo-hologram-container:hover .hologram-card {
            transform: rotateY(-15deg) rotateX(5deg) translateY(-20px) scale(1.05);
            border-color: rgba(0, 242, 254, 0.6);
            box-shadow: 
                0 35px 70px -12px rgba(0, 242, 254, 0.4),
                inset 0 0 50px rgba(0, 242, 254, 0.2);
        }

        .logo-hologram-container:hover .hologram-logo {
            filter: brightness(1.6) contrast(1.3) saturate(1.5);
            transform: scale(1.05);
        }

        .logo-hologram-container:hover .card-glow {
            opacity: 1;
            transform: scale(1.2);
        }

        .logo-hologram-container:hover .orbit-ring {
            animation-duration: 10s;
        }

        .logo-hologram-container:hover .orbit-ring-2 {
            animation-duration: 8s;
        }

        /* ========================================
           STATS SECTION - ENHANCED
           ======================================== */

        .stats-quantum {
            padding: 80px 40px 100px;
            position: relative;
            z-index: 2;
            background: linear-gradient(180deg,
                transparent 0%,
                rgba(10, 14, 39, 0.5) 50%,
                transparent 100%);
        }

        /* Stats Header */
        .stats-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .stats-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.25rem;
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(102, 126, 234, 0.15) 100%);
            border: 1px solid rgba(0, 242, 254, 0.3);
            border-radius: 100px;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .stats-badge-dot {
            width: 8px;
            height: 8px;
            background: #00f2fe;
            border-radius: 50%;
            animation: pulseDot 2s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
        }

        @keyframes pulseDot {
            0%, 100% { 
                opacity: 1;
                transform: scale(1);
            }
            50% { 
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        .stats-badge-text {
            font-size: 0.875rem;
            font-weight: 600;
            background: linear-gradient(135deg, #00f2fe 0%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stats-title {
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #00f2fe 50%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .stats-subtitle {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .stats-update-time {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .stats-update-time i {
            color: #00f2fe;
            animation: clockTick 2s ease-in-out infinite;
        }

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

        /* Background grid pattern */
        .stats-quantum::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 242, 254, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            animation: gridPulse 4s ease-in-out infinite;
        }

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

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        /* Enhanced stat cards */
        .stat-card {
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.8) 0%, 
                rgba(16, 21, 46, 0.9) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        /* Top accent line */
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--stat-accent, linear-gradient(90deg, #00f2fe, #764ba2));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        /* Shimmer effect */
        .stat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.05), 
                transparent);
            animation: cardShimmer 4s ease-in-out infinite;
        }

        @keyframes cardShimmer {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .stat-card:hover {
            transform: translateY(-12px);
            border-color: rgba(0, 242, 254, 0.4);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(0, 242, 254, 0.15);
        }

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

        /* Individual stat card accents */
        .stat-card[data-stat-type="fear-greed"] {
            --stat-accent: linear-gradient(90deg, #f39c12, #e67e22);
        }

        .stat-card[data-stat-type="btc-mcap"] {
            --stat-accent: linear-gradient(90deg, #f7931a, #ffb347);
        }

        .stat-card[data-stat-type="total-mcap"] {
            --stat-accent: linear-gradient(90deg, #00f2fe, #4facfe);
        }

        .stat-card[data-stat-type="btc-dominance"] {
            --stat-accent: linear-gradient(90deg, #764ba2, #f093fb);
        }

        /* Stat icon enhancement */
        .stat-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 8px;
            position: relative;
            transition: all 0.4s ease;
        }

        .stat-card[data-stat-type="fear-greed"] .stat-icon {
            background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(230, 126, 34, 0.1));
            color: #f39c12;
            box-shadow: 0 8px 24px rgba(243, 156, 18, 0.2);
        }

        .stat-card[data-stat-type="btc-mcap"] .stat-icon {
            background: linear-gradient(135deg, rgba(247, 147, 26, 0.2), rgba(255, 179, 71, 0.1));
            color: #f7931a;
            box-shadow: 0 8px 24px rgba(247, 147, 26, 0.2);
        }

        .stat-card[data-stat-type="total-mcap"] .stat-icon {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(79, 172, 254, 0.1));
            color: #00f2fe;
            box-shadow: 0 8px 24px rgba(0, 242, 254, 0.2);
        }

        .stat-card[data-stat-type="btc-dominance"] .stat-icon {
            background: linear-gradient(135deg, rgba(118, 75, 162, 0.2), rgba(240, 147, 251, 0.1));
            color: #764ba2;
            box-shadow: 0 8px 24px rgba(118, 75, 162, 0.2);
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        /* Stat number enhancement */
        .stat-number {
            font-size: 3.2rem;
            font-weight: 900;
            background: var(--stat-accent, linear-gradient(135deg, #00f2fe, #764ba2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin: 0;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            margin: 8px 0 4px;
        }

        .stat-sublabel {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .stat-change {
            font-size: 0.9rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 8px;
        }

        .stat-change.positive {
            color: #2ecc71;
            background: rgba(46, 204, 113, 0.15);
            border: 1px solid rgba(46, 204, 113, 0.3);
        }

        .stat-change.negative {
            color: #e74c3c;
            background: rgba(231, 76, 60, 0.15);
            border: 1px solid rgba(231, 76, 60, 0.3);
        }

        /* Stats update time */
        .stats-update-time {
            text-align: center;
            margin-top: 40px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .stats-update-time i {
            color: #00f2fe;
            animation: clockPulse 2s ease-in-out infinite;
        }

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

        /* ========================================
           EARLY ACCESS CTA - PREMIUM
           ======================================== */

        .early-access-cta {
            padding: 120px 40px;
            position: relative;
            background: transparent;
            overflow: hidden;
            z-index: 1;
        }

        /* Animated grid background */
        .early-access-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 242, 254, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 242, 254, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridMove 20s linear infinite;
            pointer-events: none;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Dual glow orbs */
        .early-access-cta::after {
            content: '';
            position: absolute;
            top: 30%;
            left: 20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
            filter: blur(60px);
            animation: orbFloat1 10s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes orbFloat1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, -30px) scale(1.2); }
        }

        .cta-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Second glow orb */
        .cta-container::before {
            content: '';
            position: absolute;
            top: 20%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(118, 75, 162, 0.12) 0%, transparent 70%);
            filter: blur(50px);
            animation: orbFloat2 12s ease-in-out infinite reverse;
            pointer-events: none;
        }

        @keyframes orbFloat2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-40px, 40px) scale(1.15); }
        }

        /* Premium CTA Card */
        .cta-card {
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, 
                rgba(20, 25, 50, 0.85) 0%, 
                rgba(15, 20, 45, 0.9) 100%);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 32px;
            padding: 80px 70px;
            text-align: center;
            overflow: hidden;
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Animated border gradient */
        .cta-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, 
                rgba(0, 242, 254, 0) 0%,
                rgba(0, 242, 254, 0.5) 25%,
                rgba(118, 75, 162, 0.5) 50%,
                rgba(0, 242, 254, 0.5) 75%,
                rgba(0, 242, 254, 0) 100%);
            background-size: 400% 400%;
            border-radius: 34px;
            z-index: -1;
            animation: borderRotate 8s linear infinite;
            opacity: 0.6;
        }

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

        /* Inner border for depth */
        .cta-card::after {
            content: '';
            position: absolute;
            inset: 1px;
            background: linear-gradient(135deg, 
                rgba(20, 25, 50, 0.95) 0%, 
                rgba(15, 20, 45, 0.98) 100%);
            border-radius: 31px;
            z-index: -1;
        }

        .cta-card:hover {
            transform: translateY(-12px) scale(1.01);
            box-shadow: 
                0 50px 100px rgba(0, 0, 0, 0.6),
                0 0 100px rgba(0, 242, 254, 0.15),
                0 0 0 1px rgba(0, 242, 254, 0.2);
        }

        .cta-card:hover::before {
            opacity: 1;
            animation-duration: 4s;
        }

        /* Premium Icon Design */
        .cta-icon {
            width: 100px;
            height: 100px;
            background: transparent;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 36px;
            font-size: 40px;
            color: #00f2fe;
        }

        /* Icon background layers */
        .cta-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, 
                rgba(0, 242, 254, 0.15) 0%, 
                rgba(118, 75, 162, 0.1) 100%);
            border: 1px solid rgba(0, 242, 254, 0.3);
            border-radius: 28px;
            transform: rotate(0deg);
            transition: all 0.5s ease;
        }

        .cta-icon::after {
            content: '';
            position: absolute;
            inset: -8px;
            border: 1px dashed rgba(0, 242, 254, 0.15);
            border-radius: 32px;
            animation: iconOrbit 15s linear infinite;
        }

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

        .cta-card:hover .cta-icon::before {
            transform: rotate(5deg) scale(1.1);
            background: linear-gradient(135deg, 
                rgba(0, 242, 254, 0.25) 0%, 
                rgba(118, 75, 162, 0.2) 100%);
            box-shadow: 
                0 0 40px rgba(0, 242, 254, 0.4),
                inset 0 0 20px rgba(0, 242, 254, 0.1);
        }

        .cta-icon i {
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.5));
            transition: all 0.4s ease;
        }

        .cta-card:hover .cta-icon i {
            transform: scale(1.1);
            filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.8));
        }

        /* Typography */
        .cta-heading {
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
            line-height: 1.15;
            position: relative;
        }

        .cta-card:hover .cta-heading {
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #00f2fe 30%, 
                #ffffff 70%, 
                #764ba2 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: headingGradient 3s ease infinite;
        }

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

        .cta-description {
            color: rgba(255, 255, 255, 0.65);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Premium Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 20px 48px;
            background: linear-gradient(135deg, #00f2fe 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            border-radius: 60px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 10px 30px rgba(0, 242, 254, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
            letter-spacing: 0.02em;
        }

        /* Button shine effect */
        .cta-button::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(45deg) translateY(-100%);
            transition: transform 0.8s ease;
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 
                0 20px 50px rgba(0, 242, 254, 0.45),
                0 0 80px rgba(0, 242, 254, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        }

        .cta-button:hover::before {
            transform: rotate(45deg) translateY(100%);
        }

        .cta-button i:first-child {
            animation: rocketBounce 2s ease-in-out infinite;
        }

        @keyframes rocketBounce {
            0%, 100% { transform: translateY(0) rotate(-15deg); }
            50% { transform: translateY(-3px) rotate(-15deg); }
        }

        .cta-button i:last-child {
            transition: transform 0.3s ease;
        }

        .cta-button:hover i:last-child {
            transform: translateX(5px);
        }

        /* Floating Badges - Premium Style */
        .feature-badges {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .feature-badge {
            position: absolute;
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.9) 0%, 
                rgba(16, 21, 46, 0.95) 100%);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 242, 254, 0.15);
            border-radius: 24px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .feature-badge i {
            color: #00f2fe;
            font-size: 1rem;
            filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.5));
        }

        .badge-1 { top: 18%; left: 6%; animation: float1 7s ease-in-out infinite; }
        .badge-2 { top: 22%; right: 6%; animation: float2 8s ease-in-out infinite 1s; }
        .badge-3 { bottom: 22%; left: 8%; animation: float3 6s ease-in-out infinite 2s; }
        .badge-4 { bottom: 18%; right: 8%; animation: float4 7s ease-in-out infinite 0.5s; }

        @keyframes float1 {
            0%, 100% { transform: translateY(0) rotate(-2deg); opacity: 0.75; }
            50% { transform: translateY(-18px) rotate(2deg); opacity: 1; }
        }

        @keyframes float2 {
            0%, 100% { transform: translateY(0) rotate(2deg); opacity: 0.75; }
            50% { transform: translateY(-20px) rotate(-2deg); opacity: 1; }
        }

        @keyframes float3 {
            0%, 100% { transform: translateY(0) rotate(1deg); opacity: 0.75; }
            50% { transform: translateY(-15px) rotate(-1deg); opacity: 1; }
        }

        @keyframes float4 {
            0%, 100% { transform: translateY(0) rotate(-1deg); opacity: 0.75; }
            50% { transform: translateY(-16px) rotate(1deg); opacity: 1; }
        }

        /* Hide on smaller screens */
        @media (max-width: 1200px) {
            .feature-badges,
            .floating-elements {
                display: none;
            }
        }

        /* Animated Grid Background */
        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            opacity: 0.3;
        }

        .grid-line {
            position: absolute;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(0, 242, 254, 0.3) 50%, 
                transparent 100%);
            height: 1px;
        }

        .grid-line-1 {
            top: 20%;
            left: 0;
            right: 0;
            animation: lineGlow 3s ease-in-out infinite;
        }

        .grid-line-2 {
            top: 40%;
            left: 0;
            right: 0;
            animation: lineGlow 3s ease-in-out infinite;
            animation-delay: 0.5s;
        }

        .grid-line-3 {
            top: 60%;
            left: 0;
            right: 0;
            animation: lineGlow 3s ease-in-out infinite;
            animation-delay: 1s;
        }

        .grid-line-4 {
            top: 80%;
            left: 0;
            right: 0;
            animation: lineGlow 3s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        @keyframes lineGlow {
            0%, 100% { 
                opacity: 0.1;
                transform: scaleX(0.8);
            }
            50% { 
                opacity: 0.6;
                transform: scaleX(1);
            }
        }

        /* Enhanced CTA Card Positioning */
        .cta-card {
            position: relative;
            z-index: 10;
        }

        /* Mobile Responsive for New Elements */
        

        /* Mobile Responsive for CTA */
        

        /* ========================================
           MIRROR AI - FEATURES BENTO GRID
           VERSION 6.0 - ROOT CAUSE FIX
           
           INSTRUCTIONS:
           Find the existing "FEATURES BENTO GRID" 
           section in landing.css (search for 
           ".features-bento") and REPLACE it entirely
           with this code.
           
           Root cause of the bug:
           - Cards used min-height but didn't properly
             constrain the illustration area
           - The flex layout let illustrations grow
             and push content out of view
           
           This fix:
           - Uses flex: 0 0 Xpx for fixed illustration
           - Uses flex: 1 for growable content area
           - Ensures content is always visible
           ======================================== */

        /* ========================================
           SECTION CONTAINER
           ======================================== */

        .features-bento {
            padding: 120px 40px;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        /* Animated background */
        .features-bento::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 800px 600px at 20% 30%, rgba(0, 242, 254, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse 600px 500px at 80% 70%, rgba(118, 75, 162, 0.06) 0%, transparent 60%);
            pointer-events: none;
            animation: bentoBackgroundPulse 10s ease-in-out infinite;
        }

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

        /* ========================================
           SECTION HEADER
           ======================================== */

        .features-bento .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

        .features-bento .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #00f2fe 50%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .features-bento .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ========================================
           BENTO GRID - 3-COLUMN LAYOUT
           ======================================== */

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: minmax(500px, auto);
            gap: 24px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* ========================================
           BENTO CARD - BASE STYLES
           ======================================== */

        .bento-card {
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.9) 0%, 
                rgba(16, 21, 46, 0.95) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        /* Hover effects */
        .bento-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 
                0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 60px var(--card-glow, rgba(0, 242, 254, 0.1));
        }

        /* Top accent line on hover */
        .bento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--card-color-1, #00f2fe), var(--card-color-2, #764ba2));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 10;
        }

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

        /* ========================================
           CARD COLOR SCHEMES
           ======================================== */

        .bento-card.card-whitepaper {
            --card-color-1: #00f2fe;
            --card-color-2: #4facfe;
            --card-glow: rgba(0, 242, 254, 0.12);
        }

        .bento-card.card-market {
            --card-color-1: #f093fb;
            --card-color-2: #f5576c;
            --card-glow: rgba(240, 147, 251, 0.12);
        }

        .bento-card.card-agents {
            --card-color-1: #764ba2;
            --card-color-2: #667eea;
            --card-glow: rgba(118, 75, 162, 0.12);
        }

        .bento-card.card-insights {
            --card-color-1: #69f0ae;
            --card-color-2: #00e676;
            --card-glow: rgba(105, 240, 174, 0.12);
        }

        .bento-card.card-security {
            --card-color-1: #ffd54f;
            --card-color-2: #ff9800;
            --card-glow: rgba(255, 213, 79, 0.12);
        }

        .bento-card.card-realtime {
            --card-color-1: #e040fb;
            --card-color-2: #7c4dff;
            --card-glow: rgba(224, 64, 251, 0.12);
        }

        /* ========================================
           LARGE CARD - Horizontal Layout
           Spans 2 columns, side-by-side layout
           ======================================== */

        .bento-card.large {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 380px;
        }

        .bento-card.large .card-illustration {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }

        .bento-card.large .card-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
        }

        .bento-card.large .illustration-wrapper {
            max-width: 280px;
            height: 220px;
        }

        .bento-card.large .card-title {
            font-size: 1.65rem;
            margin-bottom: 18px;
        }

        .bento-card.large .card-description {
            font-size: 1rem;
            margin-bottom: 24px;
        }

        /* ========================================
           MEDIUM & SMALL CARDS - Vertical Layout
           THE KEY FIX: Fixed illustration, flex content
           ======================================== */

        .bento-card.medium,
        .bento-card.small {
            grid-column: span 1;
            display: flex;
            flex-direction: column;
            min-height: 520px;
        }

        /* ILLUSTRATION - Fixed height, will NOT grow */
        .bento-card.medium .card-illustration,
        .bento-card.small .card-illustration {
            flex: 0 0 180px;      /* Don't grow, don't shrink, stay at 180px */
            min-height: 180px;
            max-height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        /* CONTENT - Flexible, takes remaining space */
        .bento-card.medium .card-content,
        .bento-card.small .card-content {
            flex: 1 1 auto;       /* Grow to fill remaining space */
            min-height: 280px;    /* Guarantee minimum content height */
            display: flex;
            flex-direction: column;
            padding: 28px;
        }

        /* ========================================
           ILLUSTRATION ELEMENTS
           ======================================== */

        .illustration-wrapper {
            width: 100%;
            max-width: 180px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .feature-illustration {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
            transition: transform 0.4s ease;
        }

        .bento-card:hover .feature-illustration {
            transform: scale(1.08);
        }

        /* Glow ring effect */
        .glow-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 130%;
            height: 130%;
            border: 2px dashed rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .bento-card:hover .glow-ring {
            opacity: 1;
        }

        /* Shimmer effect */
        .illustration-shimmer {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(255, 255, 255, 0.03) 50%,
                transparent 100%);
            animation: shimmerSlide 5s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes shimmerSlide {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        /* ========================================
           CONTENT ELEMENTS
           ======================================== */

        /* Label with pulsing dot */
        .card-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--card-color-1, #00f2fe);
            margin-bottom: 12px;
            flex-shrink: 0;
        }

        .card-label::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--card-color-1, #00f2fe);
            border-radius: 50%;
            animation: dotPulse 2s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% { opacity: 0.5; transform: scale(0.9); }
            50% { opacity: 1; transform: scale(1); }
        }

        /* Title */
        .card-title {
            display: block;
            font-size: 1.35rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 14px 0;
            line-height: 1.3;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .bento-card:hover .card-title {
            background: linear-gradient(90deg, var(--card-color-1, #00f2fe), var(--card-color-2, #764ba2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Description - grows to take available space */
        .card-description {
            flex: 1 1 auto;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.65;
            margin: 0 0 16px 0;
        }

        /* Feature Tags - pushed to bottom with margin-top: auto */
        .card-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
            padding-top: 12px;
            flex-shrink: 0;
        }

        .feature-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .feature-tag:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--card-color-1, #00f2fe);
            color: var(--card-color-1, #00f2fe);
        }

        .feature-tag svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            opacity: 0.7;
        }

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */

        /* Tablet - 2 columns */
        @media (max-width: 1200px) {
            .features-bento {
                padding: 100px 30px;
            }
            
            .features-bento .section-header {
                margin-bottom: 60px;
            }
            
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: minmax(460px, auto);
                gap: 20px;
            }
            
            .bento-card.large {
                grid-column: span 2;
            }
            
            .bento-card.medium,
            .bento-card.small {
                min-height: 480px;
            }
            
            .bento-card.medium .card-content,
            .bento-card.small .card-content {
                min-height: 260px;
            }
        }

        /* Mobile - Single column */
        @media (max-width: 900px) {
            .features-bento {
                padding: 80px 20px;
            }
            
            .features-bento .section-header {
                margin-bottom: 50px;
            }
            
            .bento-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
                gap: 20px;
            }
            
            /* All cards single column on mobile */
            .bento-card.large,
            .bento-card.medium,
            .bento-card.small {
                grid-column: span 1;
                display: flex;
                flex-direction: column;
                min-height: auto;
            }
            
            /* Large card becomes vertical */
            .bento-card.large {
                display: flex;
                flex-direction: column;
            }
            
            .bento-card.large .card-illustration {
                flex: 0 0 180px;
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
            
            .bento-card.large .card-content {
                padding: 24px;
            }
            
            .bento-card.medium .card-illustration,
            .bento-card.small .card-illustration {
                flex: 0 0 160px;
                min-height: 160px;
                max-height: 160px;
            }
            
            .bento-card.medium .card-content,
            .bento-card.small .card-content {
                padding: 24px;
                min-height: auto;
            }
            
            .card-title {
                font-size: 1.25rem;
            }
            
            .bento-card.large .card-title {
                font-size: 1.35rem;
            }
        }

        /* Small mobile */
        @media (max-width: 600px) {
            .features-bento {
                padding: 60px 16px;
            }
            
            .features-bento .section-header {
                margin-bottom: 40px;
            }
            
            .features-bento .section-title {
                font-size: 1.75rem;
            }
            
            .features-bento .section-subtitle {
                font-size: 1rem;
            }
            
            .bento-grid {
                gap: 16px;
            }
            
            .bento-card.medium .card-illustration,
            .bento-card.small .card-illustration,
            .bento-card.large .card-illustration {
                flex: 0 0 140px;
                min-height: 140px;
                max-height: 140px;
                padding: 20px;
            }
            
            .illustration-wrapper {
                max-width: 140px;
                height: 110px;
            }
            
            .bento-card.large .illustration-wrapper {
                max-width: 160px;
                height: 120px;
            }
            
            .card-content {
                padding: 20px;
            }
            
            .card-title {
                font-size: 1.2rem;
            }
            
            .bento-card.large .card-title {
                font-size: 1.3rem;
            }
            
            .card-description {
                font-size: 0.9rem;
            }
            
            .feature-tag {
                padding: 5px 10px;
                font-size: 0.75rem;
            }
        }

        /* ========================================
           BLOG CTA SECTION - PREMIUM
           ======================================== */

        .blog-cta-section {
            padding: 120px 40px;
            position: relative;
            background: transparent;
            overflow: hidden;
            z-index: 1;
        }

        /* Animated diagonal lines */
        .blog-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: repeating-linear-gradient(
                135deg,
                transparent,
                transparent 40px,
                rgba(118, 75, 162, 0.02) 40px,
                rgba(118, 75, 162, 0.02) 80px
            );
            pointer-events: none;
        }

        /* Glow effect */
        .blog-cta-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 500px;
            background: radial-gradient(ellipse,
                rgba(118, 75, 162, 0.12) 0%,
                rgba(0, 242, 254, 0.05) 40%,
                transparent 70%);
            filter: blur(40px);
            pointer-events: none;
            animation: blogGlowPulse 8s ease-in-out infinite;
        }

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

        .blog-cta-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Hide old decorative elements */
        .blog-cta-bg-elements,
        .blog-particle,
        .blog-accent-ring {
            display: none !important;
        }

        /* Premium Blog Card */
        .blog-cta-card {
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, 
                rgba(20, 25, 50, 0.8) 0%, 
                rgba(15, 20, 45, 0.85) 100%);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 32px;
            padding: 80px 70px;
            text-align: center;
            overflow: hidden;
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.03),
                inset 0 1px 0 rgba(255, 255, 255, 0.08),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Animated corner accents */
        .blog-cta-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            width: 120px;
            height: 120px;
            border-top: 2px solid rgba(118, 75, 162, 0.5);
            border-left: 2px solid rgba(118, 75, 162, 0.5);
            border-radius: 32px 0 0 0;
            transition: all 0.4s ease;
        }

        .blog-cta-card::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 120px;
            height: 120px;
            border-bottom: 2px solid rgba(0, 242, 254, 0.4);
            border-right: 2px solid rgba(0, 242, 254, 0.4);
            border-radius: 0 0 32px 0;
            transition: all 0.4s ease;
        }

        .blog-cta-card:hover {
            transform: translateY(-12px) scale(1.01);
            box-shadow: 
                0 50px 100px rgba(0, 0, 0, 0.6),
                0 0 80px rgba(118, 75, 162, 0.15),
                0 0 0 1px rgba(118, 75, 162, 0.2);
        }

        .blog-cta-card:hover::before {
            width: 150px;
            height: 150px;
            border-color: rgba(118, 75, 162, 0.8);
        }

        .blog-cta-card:hover::after {
            width: 150px;
            height: 150px;
            border-color: rgba(0, 242, 254, 0.7);
        }

        /* Blog Icon */
        .blog-cta-icon {
            width: 100px;
            height: 100px;
            background: transparent;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 36px;
            font-size: 40px;
            color: #00f2fe;
        }

        .blog-cta-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, 
                rgba(118, 75, 162, 0.2) 0%, 
                rgba(0, 242, 254, 0.1) 100%);
            border: 1px solid rgba(118, 75, 162, 0.4);
            border-radius: 28px;
            transition: all 0.5s ease;
        }

        .blog-cta-icon::after {
            content: '';
            position: absolute;
            inset: -10px;
            border: 1px dashed rgba(118, 75, 162, 0.2);
            border-radius: 34px;
            animation: blogIconOrbit 12s linear infinite reverse;
        }

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

        .blog-cta-icon .icon-glow {
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .blog-cta-card:hover .blog-cta-icon::before {
            transform: rotate(-5deg) scale(1.1);
            background: linear-gradient(135deg, 
                rgba(118, 75, 162, 0.3) 0%, 
                rgba(0, 242, 254, 0.2) 100%);
            box-shadow: 
                0 0 40px rgba(118, 75, 162, 0.4),
                inset 0 0 20px rgba(118, 75, 162, 0.1);
        }

        .blog-cta-card:hover .blog-cta-icon .icon-glow {
            opacity: 1;
        }

        .blog-cta-icon i {
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.5));
            transition: all 0.4s ease;
        }

        .blog-cta-card:hover .blog-cta-icon i {
            transform: scale(1.1);
            filter: drop-shadow(0 0 20px rgba(118, 75, 162, 0.8));
        }

        /* Typography */
        .blog-cta-heading {
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
            line-height: 1.15;
        }

        .blog-cta-card:hover .blog-cta-heading {
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #764ba2 40%, 
                #00f2fe 70%,
                #ffffff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: headingGradient 3s ease infinite;
        }

        .blog-cta-description {
            color: rgba(255, 255, 255, 0.65);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Blog Button */
        .blog-cta-button {
            display: inline-flex;
            align-items: center;
            padding: 0;
            background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            border-radius: 60px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 10px 30px rgba(118, 75, 162, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        }

        .blog-cta-button .button-content {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px 48px;
            position: relative;
            z-index: 2;
        }

        .blog-cta-button .button-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.25) 50%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(45deg) translateY(-100%);
            transition: transform 0.8s ease;
        }

        .blog-cta-button:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 
                0 20px 50px rgba(118, 75, 162, 0.45),
                0 0 80px rgba(118, 75, 162, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        }

        .blog-cta-button:hover .button-glow {
            transform: rotate(45deg) translateY(100%);
        }

        .blog-cta-button .button-content i:first-child {
            animation: bookPulse 2s ease-in-out infinite;
        }

        @keyframes bookPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .blog-cta-button .button-content i:last-child {
            transition: transform 0.3s ease;
        }

        .blog-cta-button:hover .button-content i:last-child {
            transform: translateX(5px);
        }


        /* ========================================
           RESPONSIVE STYLES
           ======================================== */

        @media (max-width: 1024px) {
            .early-access-cta,
            .blog-cta-section {
                padding: 100px 30px;
            }
            
            .cta-card,
            .blog-cta-card {
                padding: 60px 50px;
            }
            
            .cta-heading,
            .blog-cta-heading {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .early-access-cta,
            .blog-cta-section {
                padding: 80px 20px;
            }
            
            .cta-card,
            .blog-cta-card {
                padding: 50px 30px;
                border-radius: 24px;
            }
            
            .cta-icon,
            .blog-cta-icon {
                width: 80px;
                height: 80px;
                font-size: 32px;
                margin-bottom: 28px;
            }
            
            .cta-heading,
            .blog-cta-heading {
                font-size: 2rem;
                margin-bottom: 16px;
            }
            
            .cta-description,
            .blog-cta-description {
                font-size: 1.05rem;
                margin-bottom: 32px;
            }
            
            .cta-button,
            .blog-cta-button .button-content {
                padding: 16px 36px;
                font-size: 1rem;
            }
            
            .blog-cta-card::before,
            .blog-cta-card::after {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 480px) {
            .early-access-cta,
            .blog-cta-section {
                padding: 60px 16px;
            }
            
            .cta-card,
            .blog-cta-card {
                padding: 40px 24px;
                border-radius: 20px;
            }
            
            .cta-icon,
            .blog-cta-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
                margin-bottom: 24px;
            }
            
            .cta-heading,
            .blog-cta-heading {
                font-size: 1.6rem;
                margin-bottom: 14px;
            }
            
            .cta-description,
            .blog-cta-description {
                font-size: 1rem;
                margin-bottom: 28px;
            }
            
            .cta-button,
            .blog-cta-button {
                width: 100%;
            }
            
            .cta-button,
            .blog-cta-button .button-content {
                padding: 16px 28px;
                font-size: 0.95rem;
                justify-content: center;
            }
            
            .blog-cta-card::before,
            .blog-cta-card::after {
                width: 60px;
                height: 60px;
            }
        }

        /* ========================================
           MIRROR AI DEMO TERMINAL - PREMIUM UPGRADE
           Version 2.0 - Futuristic Glassmorphism Design
           ======================================== */

        /* SECTION CONTAINER */
        .demo-section {
            padding: 140px 40px;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        /* Animated background elements */
        .demo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 60% 40% at 20% 30%, rgba(0, 242, 254, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 50% 35% at 80% 70%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 40% 30% at 50% 90%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
            pointer-events: none;
            animation: demoBackgroundPulse 8s ease-in-out infinite;
        }

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

        /* Floating grid pattern */
        .demo-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 242, 254, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 242, 254, 0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: gridFloat 30s linear infinite;
            pointer-events: none;
            opacity: 0.5;
        }

        @keyframes gridFloat {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* SECTION HEADER - ENHANCED */
        .demo-section .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .demo-section .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #00f2fe 30%, 
                #ffffff 60%,
                #764ba2 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            animation: titleGradientFlow 6s ease infinite;
            position: relative;
        }

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

        .demo-section .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* DEMO WINDOW - MAIN CONTAINER */
        .demo-window {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            border-radius: 28px;
            overflow: visible;
            
            /* Glass morphism base */
            background: linear-gradient(135deg, 
                rgba(20, 25, 50, 0.85) 0%, 
                rgba(15, 20, 45, 0.9) 50%,
                rgba(20, 25, 50, 0.85) 100%);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            
            /* Complex layered shadow */
            box-shadow: 
                0 50px 100px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                0 0 80px rgba(0, 242, 254, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
            
            /* Border setup for animated gradient */
            border: 2px solid transparent;
            background-clip: padding-box;
        }

        /* Animated gradient border */
        .demo-window::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, 
                rgba(0, 242, 254, 0) 0%,
                rgba(0, 242, 254, 0.6) 20%,
                rgba(118, 75, 162, 0.6) 40%,
                rgba(240, 147, 251, 0.4) 60%,
                rgba(0, 242, 254, 0.6) 80%,
                rgba(0, 242, 254, 0) 100%);
            background-size: 400% 400%;
            border-radius: 30px;
            z-index: -1;
            animation: demoWindowBorderRotate 8s linear infinite;
            opacity: 0.8;
        }

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

        /* Inner background to cover the gradient */
        .demo-window::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: linear-gradient(135deg, 
                rgba(20, 25, 50, 0.98) 0%, 
                rgba(15, 20, 45, 0.99) 100%);
            border-radius: 26px;
            z-index: -1;
        }

        /* Hover enhancement */
        .demo-window:hover::before {
            opacity: 1;
            animation-duration: 4s;
        }

        .demo-window:hover {
            box-shadow: 
                0 60px 120px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.08),
                0 0 120px rgba(0, 242, 254, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* TITLE BAR - MACBOOK STYLE ENHANCED */
        .demo-titlebar {
            background: linear-gradient(180deg, 
                rgba(30, 35, 60, 0.95) 0%, 
                rgba(25, 30, 55, 0.98) 100%);
            padding: 20px 28px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(0, 242, 254, 0.15);
            position: relative;
            z-index: 10;
            border-radius: 26px 26px 0 0;
        }

        /* Subtle top highlight */
        .demo-titlebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20px;
            right: 20px;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.1), 
                transparent);
        }

        /* Traffic light buttons */
        .demo-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* Inner highlight for 3D effect */
        .demo-dot::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 3px;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
        }

        .demo-dot.red { 
            background: linear-gradient(180deg, #ff5f56 0%, #e8453c 100%);
            box-shadow: 
                0 0 8px rgba(255, 95, 86, 0.5),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
        }

        .demo-dot.yellow { 
            background: linear-gradient(180deg, #ffbd2e 0%, #e8a317 100%);
            box-shadow: 
                0 0 8px rgba(255, 189, 46, 0.5),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
        }

        .demo-dot.green { 
            background: linear-gradient(180deg, #27ca3f 0%, #1aab2f 100%);
            box-shadow: 
                0 0 8px rgba(39, 202, 63, 0.5),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
        }

        .demo-dot:hover {
            transform: scale(1.15);
        }

        .demo-dot.red:hover { box-shadow: 0 0 15px rgba(255, 95, 86, 0.8); }
        .demo-dot.yellow:hover { box-shadow: 0 0 15px rgba(255, 189, 46, 0.8); }
        .demo-dot.green:hover { box-shadow: 0 0 15px rgba(39, 202, 63, 0.8); }

        /* Title text */
        .demo-title {
            flex: 1;
            text-align: center;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            font-family: 'JetBrains Mono', 'SF Mono', monospace;
            background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.6) 0%,
                rgba(0, 242, 254, 0.9) 50%,
                rgba(255, 255, 255, 0.6) 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleShimmer 4s ease-in-out infinite;
        }

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

        /* CONTENT AREA - SPLIT LAYOUT */
        .demo-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 550px;
            position: relative;
            z-index: 10;
        }

        /* INPUT PANEL - LEFT SIDE */
        .demo-input {
            padding: 40px;
            background: linear-gradient(180deg, 
                rgba(0, 0, 0, 0.3) 0%, 
                rgba(0, 0, 0, 0.4) 100%);
            border-right: 1px solid rgba(0, 242, 254, 0.1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* Decorative corner accent */
        .demo-input::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            border-top: 2px solid rgba(0, 242, 254, 0.3);
            border-left: 2px solid rgba(0, 242, 254, 0.3);
            border-radius: 8px 0 0 0;
            opacity: 0.5;
            transition: all 0.4s ease;
        }

        .demo-input:hover::before {
            width: 80px;
            height: 80px;
            opacity: 1;
            border-color: rgba(0, 242, 254, 0.6);
        }

        /* Section titles */
        .demo-section-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
        }

        .demo-section-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background: linear-gradient(180deg, #00f2fe, #764ba2);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
        }

        .demo-section-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, 
                rgba(0, 242, 254, 0.3), 
                transparent);
            margin-left: 10px;
        }

        /* TEXTAREA - PREMIUM STYLE */
        .demo-textarea {
            width: 100%;
            flex: 1;
            min-height: 280px;
            background: linear-gradient(135deg, 
                rgba(10, 15, 35, 0.8) 0%, 
                rgba(15, 20, 40, 0.9) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 24px;
            color: rgba(255, 255, 255, 0.95);
            font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
            font-size: 0.95rem;
            line-height: 1.7;
            resize: none;
            outline: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .demo-textarea::placeholder {
            color: rgba(255, 255, 255, 0.35);
            font-style: italic;
        }

        .demo-textarea:focus {
            border-color: rgba(0, 242, 254, 0.5);
            box-shadow: 
                0 0 0 4px rgba(0, 242, 254, 0.1),
                0 0 30px rgba(0, 242, 254, 0.15),
                inset 0 0 20px rgba(0, 242, 254, 0.03);
            background: linear-gradient(135deg, 
                rgba(10, 15, 35, 0.9) 0%, 
                rgba(15, 20, 40, 0.95) 100%);
        }

        /* Custom scrollbar for textarea */
        .demo-textarea::-webkit-scrollbar {
            width: 6px;
        }

        .demo-textarea::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 3px;
        }

        .demo-textarea::-webkit-scrollbar-thumb {
            background: rgba(0, 242, 254, 0.3);
            border-radius: 3px;
        }

        .demo-textarea::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 242, 254, 0.5);
        }

        /* ANALYZE BUTTON - PREMIUM DESIGN */
        .demo-analyze-btn {
            margin-top: 24px;
            padding: 18px 40px;
            background: linear-gradient(135deg, #00f2fe 0%, #764ba2 100%);
            border: none;
            border-radius: 60px;
            color: white;
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 10px 30px rgba(0, 242, 254, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        }

        /* Shine effect */
        .demo-analyze-btn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(45deg) translateY(-100%);
            transition: transform 0.8s ease;
        }

        .demo-analyze-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 
                0 20px 50px rgba(0, 242, 254, 0.4),
                0 0 80px rgba(0, 242, 254, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        }

        .demo-analyze-btn:hover::before {
            transform: rotate(45deg) translateY(100%);
        }

        .demo-analyze-btn:active {
            transform: translateY(-2px) scale(1);
        }

        /* Icon animation */
        .demo-analyze-btn i {
            font-size: 1.1rem;
            animation: brainPulse 2s ease-in-out infinite;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
        }

        @keyframes brainPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        /* Loading state */
        .demo-analyze-btn.loading {
            pointer-events: none;
            opacity: 0.8;
        }

        .demo-analyze-btn.loading i {
            animation: spin 1s linear infinite;
        }

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

        /* OUTPUT PANEL - RIGHT SIDE */
        .demo-output {
            padding: 40px;
            background: linear-gradient(180deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(0, 0, 0, 0.3) 100%);
            position: relative;
            display: flex;
            flex-direction: column;
            border-radius: 0 0 26px 0;
        }

        /* Decorative corner accent - bottom right */
        .demo-output::after {
            content: '';
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-bottom: 2px solid rgba(118, 75, 162, 0.3);
            border-right: 2px solid rgba(118, 75, 162, 0.3);
            border-radius: 0 0 8px 0;
            opacity: 0.5;
            transition: all 0.4s ease;
        }

        .demo-output:hover::after {
            width: 80px;
            height: 80px;
            opacity: 1;
            border-color: rgba(118, 75, 162, 0.6);
        }

        /* RESULTS CONTAINER */
        .demo-results {
            flex: 1;
            background: linear-gradient(135deg, 
                rgba(10, 15, 35, 0.6) 0%, 
                rgba(15, 20, 40, 0.7) 100%);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 28px;
            overflow-y: auto;
            position: relative;
        }

        /* Scrollbar styling */
        .demo-results::-webkit-scrollbar {
            width: 6px;
        }

        .demo-results::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 3px;
        }

        .demo-results::-webkit-scrollbar-thumb {
            background: rgba(118, 75, 162, 0.3);
            border-radius: 3px;
        }

        .demo-results::-webkit-scrollbar-thumb:hover {
            background: rgba(118, 75, 162, 0.5);
        }

        /* EMPTY STATE - PREMIUM DESIGN */
        .demo-empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 300px;
            text-align: center;
            padding: 40px;
        }

        .demo-empty-icon {
            font-size: 4rem;
            margin-bottom: 24px;
            position: relative;
            color: rgba(0, 242, 254, 0.3);
            animation: emptyIconFloat 4s ease-in-out infinite;
        }

        @keyframes emptyIconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Animated rings around icon */
        .demo-empty-icon::before,
        .demo-empty-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 2px dashed rgba(0, 242, 254, 0.15);
            border-radius: 50%;
            animation: ringRotate 20s linear infinite;
        }

        .demo-empty-icon::before {
            width: 100px;
            height: 100px;
        }

        .demo-empty-icon::after {
            width: 130px;
            height: 130px;
            animation-direction: reverse;
            animation-duration: 25s;
        }

        @keyframes ringRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .demo-empty-state p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            line-height: 1.6;
            max-width: 280px;
        }

        /* LOADING STATE */
        .demo-loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 300px;
            text-align: center;
            padding: 40px;
        }

        .demo-loading-spinner {
            width: 60px;
            height: 60px;
            position: relative;
            margin-bottom: 24px;
        }

        .demo-loading-spinner::before,
        .demo-loading-spinner::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 3px solid transparent;
        }

        .demo-loading-spinner::before {
            border-top-color: #00f2fe;
            border-right-color: #00f2fe;
            animation: spinnerRotate 1s linear infinite;
        }

        .demo-loading-spinner::after {
            border-bottom-color: #764ba2;
            border-left-color: #764ba2;
            animation: spinnerRotate 1.5s linear infinite reverse;
        }

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

        .demo-loading p {
            color: rgba(0, 242, 254, 0.8);
            font-size: 1rem;
            font-weight: 500;
            animation: loadingTextPulse 1.5s ease-in-out infinite;
        }

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

        /* SUCCESS/RESULT STATE */
        .demo-success {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .demo-success h2 {
            color: #00f2fe;
            font-size: 1.3rem;
            margin: 0 0 16px 0;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 242, 254, 0.2);
            font-weight: 700;
        }

        .demo-success h3 {
            color: #00f2fe;
            font-size: 1.1rem;
            margin: 20px 0 12px 0;
            font-weight: 600;
        }

        .demo-success p {
            margin: 14px 0;
            line-height: 1.8;
        }

        .demo-success ul,
        .demo-success ol {
            margin: 14px 0;
            padding-left: 24px;
        }

        .demo-success li {
            margin: 10px 0;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
        }

        .demo-success li::marker {
            color: rgba(0, 242, 254, 0.6);
        }

        .demo-success strong {
            color: #ffffff;
            font-weight: 600;
        }

        .demo-success code {
            background: rgba(0, 242, 254, 0.1);
            color: #00f2fe;
            padding: 2px 8px;
            border-radius: 4px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9em;
        }

        /* ERROR STATE */
        .demo-error {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 300px;
            text-align: center;
            padding: 40px;
            color: #ff6b6b;
        }

        .demo-error i {
            font-size: 3rem;
            margin-bottom: 16px;
            opacity: 0.8;
        }

        .demo-error p {
            font-size: 1rem;
            line-height: 1.6;
            max-width: 280px;
        }

        /* SCAN LINE EFFECT */
        .demo-window .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 242, 254, 0.5), 
                transparent);
            z-index: 20;
            pointer-events: none;
            animation: scanLineMove 4s linear infinite;
            opacity: 0.6;
        }

        @keyframes scanLineMove {
            0% { top: 60px; opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { top: 100%; opacity: 0; }
        }

        /* Legacy compatibility */
        .result-item {
            background: rgba(0, 242, 254, 0.05);
            border-left: 3px solid var(--accent-cyan);
            padding: 16px 20px;
            margin-bottom: 16px;
            border-radius: 8px;
            animation: slideIn 0.5s ease;
        }

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

        /* ========================================
           2. ABOUT GLASS LANE SECTION - PREMIUM
           ======================================== */

        .about-section {
            padding: 160px 40px;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        /* Multi-layer animated background */
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 70% 50% at 30% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 70% 50%, rgba(0, 242, 254, 0.08) 0%, transparent 50%);
            pointer-events: none;
            animation: aboutBackgroundShift 12s ease-in-out infinite;
        }

        @keyframes aboutBackgroundShift {
            0%, 100% { opacity: 0.7; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        /* Floating particles layer */
        .about-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(2px 2px at 10% 20%, rgba(0, 242, 254, 0.4) 50%, transparent 50%),
                radial-gradient(2px 2px at 30% 70%, rgba(118, 75, 162, 0.4) 50%, transparent 50%),
                radial-gradient(2px 2px at 50% 30%, rgba(240, 147, 251, 0.3) 50%, transparent 50%),
                radial-gradient(2px 2px at 70% 80%, rgba(0, 242, 254, 0.4) 50%, transparent 50%),
                radial-gradient(2px 2px at 90% 40%, rgba(118, 75, 162, 0.3) 50%, transparent 50%),
                radial-gradient(1px 1px at 15% 60%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
                radial-gradient(1px 1px at 85% 25%, rgba(255, 255, 255, 0.3) 50%, transparent 50%);
            animation: aboutParticlesFloat 20s ease-in-out infinite;
            pointer-events: none;
            opacity: 0.6;
        }

        @keyframes aboutParticlesFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            50% { transform: translateY(-5px) rotate(-1deg); }
            75% { transform: translateY(-20px) rotate(0.5deg); }
        }

        /* ========================================
           1. TECH STACK SECTION - PREMIUM UPGRADE
           ======================================== */

        .tech-stack-section {
            padding: 140px 0;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Layers */
        .tech-stack-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 242, 254, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 50% 30% at 50% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
            pointer-events: none;
            animation: techBackgroundPulse 10s ease-in-out infinite;
        }

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

        /* Floating Grid Pattern */
        .tech-stack-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 242, 254, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 242, 254, 0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: techGridFloat 40s linear infinite;
            pointer-events: none;
            opacity: 0.5;
        }

        @keyframes techGridFloat {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        .tech-stack-container {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 40px;
        }

        /* Premium Title with Animated Gradient */
        .tech-stack-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #00f2fe 25%, 
                #ffffff 50%,
                #764ba2 75%, 
                #ffffff 100%);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: techTitleGradient 8s ease infinite;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
        }

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

        /* Decorative line under title */
        .tech-stack-title::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                #00f2fe 20%, 
                #764ba2 50%, 
                #00f2fe 80%, 
                transparent 100%);
            border-radius: 2px;
            animation: titleLineGlow 3s ease-in-out infinite;
        }

        @keyframes titleLineGlow {
            0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(0, 242, 254, 0.3); }
            50% { opacity: 1; box-shadow: 0 0 25px rgba(0, 242, 254, 0.6); }
        }

        .tech-stack-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 80px;
            margin-top: 40px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* Infinite Scrolling Container - Enhanced */
        .tech-logos-scroll-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 60px 0;
        }

        /* Premium fade edges */
        .tech-logos-scroll-container::before,
        .tech-logos-scroll-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 250px;
            height: 100%;
            z-index: 10;
            pointer-events: none;
        }

        .tech-logos-scroll-container::before {
            left: 0;
            background: linear-gradient(to right, 
                rgba(10, 14, 39, 1) 0%, 
                rgba(10, 14, 39, 0.9) 30%,
                rgba(10, 14, 39, 0.5) 60%,
                transparent 100%);
        }

        .tech-logos-scroll-container::after {
            right: 0;
            background: linear-gradient(to left, 
                rgba(10, 14, 39, 1) 0%, 
                rgba(10, 14, 39, 0.9) 30%,
                rgba(10, 14, 39, 0.5) 60%,
                transparent 100%);
        }

        .tech-logos-track {
            display: flex;
            gap: 60px;
            animation: techInfiniteScroll 35s linear infinite;
            width: fit-content;
        }

        .tech-logos-track:hover {
            animation-play-state: paused;
        }

        @keyframes techInfiniteScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Premium Logo Items */
        .tech-logo-item {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
        }

        /* Glassmorphism Logo Wrapper */
        .tech-logo-wrapper {
            width: 140px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.6) 0%, 
                rgba(16, 21, 46, 0.8) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        /* Animated border effect */
        .tech-logo-wrapper::before {
            content: '';
            position: absolute;
            inset: -1px;
            background: linear-gradient(135deg, 
                rgba(0, 242, 254, 0) 0%,
                rgba(0, 242, 254, 0.3) 50%,
                rgba(118, 75, 162, 0.3) 100%);
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        /* Inner glow effect */
        .tech-logo-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(255, 255, 255, 0.05) 50%,
                transparent 100%);
            transition: left 0.6s ease;
        }

        .tech-logo-item:hover .tech-logo-wrapper::before {
            opacity: 1;
        }

        .tech-logo-item:hover .tech-logo-wrapper::after {
            left: 100%;
        }

        .tech-logo-item:hover .tech-logo-wrapper {
            transform: translateY(-12px) scale(1.05);
            background: linear-gradient(135deg, 
                rgba(30, 35, 62, 0.8) 0%, 
                rgba(20, 25, 50, 0.9) 100%);
            border-color: rgba(0, 242, 254, 0.4);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(0, 242, 254, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .tech-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            filter: brightness(0.95) saturate(1.1);
            opacity: 0.85;
        }

        .tech-logo-item:hover .tech-logo {
            filter: brightness(1.15) saturate(1.3) drop-shadow(0 0 20px rgba(0, 242, 254, 0.4));
            transform: scale(1.1);
            opacity: 1;
        }

        /* Logo name with gradient on hover */
        .tech-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.4s ease;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
        }

        .tech-name::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                #00f2fe, 
                #764ba2,
                transparent);
            transition: transform 0.4s ease;
            border-radius: 1px;
        }

        .tech-logo-item:hover .tech-name {
            color: #00f2fe;
            text-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
        }

        .tech-logo-item:hover .tech-name::after {
            transform: translateX(-50%) scaleX(1);
        }
        

        

        

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Premium Content Card */
        .about-content {
            position: relative;
            padding: 60px;
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.7) 0%, 
                rgba(16, 21, 46, 0.85) 100%);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        /* Animated corner accents */
        .about-content::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            width: 120px;
            height: 120px;
            border-top: 3px solid rgba(0, 242, 254, 0.5);
            border-left: 3px solid rgba(0, 242, 254, 0.5);
            border-radius: 32px 0 0 0;
            transition: all 0.5s ease;
            animation: aboutCornerPulse 4s ease-in-out infinite;
        }

        .about-content::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 120px;
            height: 120px;
            border-bottom: 3px solid rgba(118, 75, 162, 0.5);
            border-right: 3px solid rgba(118, 75, 162, 0.5);
            border-radius: 0 0 32px 0;
            transition: all 0.5s ease;
            animation: aboutCornerPulse 4s ease-in-out infinite 2s;
        }

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

        .about-content:hover::before,
        .about-content:hover::after {
            width: 150px;
            height: 150px;
        }

        /* Premium Title */
        .about-content h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 36px;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #00f2fe 30%, 
                #4facfe 70%, 
                #ffffff 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: aboutTitleShimmer 6s ease-in-out infinite;
            text-align: left;
            letter-spacing: -0.02em;
            position: relative;
        }

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

        /* Decorative line */
        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00f2fe, #764ba2, transparent);
            border-radius: 2px;
        }

        .about-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.15rem;
            line-height: 1.9;
            margin-bottom: 24px;
            text-align: left;
            position: relative;
        }

        .about-content p:last-child {
            margin-bottom: 0;
        }

        /* Premium Visual Container */
        .about-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        /* Enhanced Glass Logo Container */
        .glass-logo-container {
            width: 380px;
            height: 380px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Main orb with gradient */
        .glass-logo-container::before {
            content: '';
            position: absolute;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle at 30% 30%, 
                rgba(0, 242, 254, 0.4) 0%, 
                rgba(0, 242, 254, 0.2) 30%,
                rgba(118, 75, 162, 0.15) 60%,
                rgba(10, 14, 39, 0.9) 100%);
            border-radius: 50%;
            filter: blur(2px);
            animation: aboutOrbPulse 6s ease-in-out infinite;
            box-shadow: 
                0 0 80px rgba(0, 242, 254, 0.3),
                0 0 120px rgba(118, 75, 162, 0.2),
                inset 0 0 60px rgba(0, 242, 254, 0.1);
        }

        @keyframes aboutOrbPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 
                    0 0 80px rgba(0, 242, 254, 0.3),
                    0 0 120px rgba(118, 75, 162, 0.2);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 
                    0 0 100px rgba(0, 242, 254, 0.4),
                    0 0 150px rgba(118, 75, 162, 0.3);
            }
        }

        /* Outer glow ring */
        .glass-logo-container::after {
            content: '';
            position: absolute;
            width: 360px;
            height: 360px;
            border: 2px dashed rgba(0, 242, 254, 0.2);
            border-radius: 50%;
            animation: aboutRingRotate 30s linear infinite;
        }

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

        /* Inner glass card for logo */
        .glass-logo-container .mirror-logo {
            width: 160px;
            height: 160px;
            object-fit: contain;
            position: relative;
            z-index: 2;
            filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 30px rgba(0, 242, 254, 0.5));
            animation: aboutLogoFloat 5s ease-in-out infinite;
        }

        @keyframes aboutLogoFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        /* Orbiting particles around logo */
        .about-visual .glass-logo-container {
            position: relative;
        }

        /* Add orbiting dots via box-shadow trick on a pseudo element */
        .about-visual::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #00f2fe, #4facfe);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.8);
            animation: aboutOrbitDot1 8s linear infinite;
            z-index: 3;
        }

        .about-visual::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #764ba2, #f093fb);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(118, 75, 162, 0.8);
            animation: aboutOrbitDot2 12s linear infinite reverse;
            z-index: 3;
        }

        @keyframes aboutOrbitDot1 {
            0% { transform: rotate(0deg) translateX(200px) rotate(0deg); }
            100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
        }

        @keyframes aboutOrbitDot2 {
            0% { transform: rotate(0deg) translateX(170px) rotate(0deg); }
            100% { transform: rotate(360deg) translateX(170px) rotate(-360deg); }
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 40px;
            background: var(--gradient-primary);
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .cta-button-white {
            background: white;
            color: var(--accent-purple);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Footer styles loaded from external quantum-footer.css file */

        /* ============================================ */
        /* PRODUCTION MOBILE NAVIGATION & CHAT FIXES   */
        /* ============================================ */

        /* ===== MOBILE RESPONSIVE (max-width: 968px) ===== */
        @media (max-width: 968px) {
            /* Navigation Container */
            .quantum-nav {
                padding: 15px 0;
                z-index: 10000;
            }
            
            .nav-container {
                padding: 0 15px;
                gap: 0;
                position: relative;
            }
            
            /* Logo */
            .nav-brand {
                font-size: 1.3rem;
                gap: 8px;
                flex: 1;
                z-index: 10001;
            }
            
            .nav-brand-logo {
                width: 40px;
                height: 40px;
            }
            
            .nav-brand-logo img {
                width: 36px;
                height: 36px;
            }
            
            /* Hamburger Menu Button */
            .mobile-menu-toggle {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 44px;
                height: 44px;
                padding: 0;
                background: rgba(102, 126, 234, 0.1);
                border: 2px solid rgba(102, 126, 234, 0.3);
                border-radius: 10px;
                cursor: pointer;
                position: relative;
                margin-left: auto;
                transition: all 0.3s ease;
                z-index: 10001;
            }
            
            .mobile-menu-toggle span {
                display: block;
                width: 22px;
                height: 2px;
                background: #ffffff;
                border-radius: 2px;
                transition: all 0.3s ease;
                margin: 3px 0;
            }
            
            .mobile-menu-toggle:hover {
                background: rgba(102, 126, 234, 0.2);
                border-color: rgba(102, 126, 234, 0.5);
            }
            
            /* Hamburger Animation */
            .mobile-menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            
            /* Mobile Navigation Menu - FIXED VERSION */
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                width: 100%;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-top: 1px solid rgba(102, 126, 234, 0.2);
                border-bottom: 2px solid rgba(102, 126, 234, 0.3);
                padding: 20px;
                flex-direction: column;
                gap: 15px;
                z-index: 9999;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                
                /* CRITICAL: Start hidden but maintain display flex */
                display: flex;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
            }
            
            /* Active state - FIXED */
            .nav-links.active {
                max-height: 500px; /* Enough for all menu items */
                opacity: 1;
                visibility: visible;
            }
            
            .nav-link {
                width: 100%;
                padding: 12px 16px;
                text-align: center;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-link::before {
                display: none; /* Remove hover underline on mobile */
            }
            
            .nav-link:hover {
                background: rgba(102, 126, 234, 0.2);
                border-color: rgba(102, 126, 234, 0.4);
                transform: none;
            }
            
            .nav-cta {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
                margin: 0;
            }
            
            /* Prevent body scroll when menu is open */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
                height: 100%;
            }
            
            /* Hero Content */
            .hero-quantum {
                padding-top: 100px;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-visual {
                margin-top: 40px;
            }
            
            /* Mobile specific chat widget positioning */
            .chat-widget {
                position: fixed !important;
                bottom: 20px !important;
                right: 20px !important;
                left: auto !important;
                top: auto !important;
                z-index: 9990 !important;
                width: auto !important;
                height: auto !important;
            }
            
            .chat-bubble {
                width: 56px !important;
                height: 56px !important;
            }
            
            .chat-bubble i {
                font-size: 24px !important;
            }
            
            .chat-window {
                position: fixed !important;
                bottom: 90px !important;
                right: 20px !important;
                left: 20px !important;
                width: auto !important;
                max-width: calc(100vw - 40px) !important;
                height: 60vh !important;
                max-height: 500px !important;
            }
            
            /* Prevent body scroll when menu is open */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }
            
            /* Holographic card mobile optimization */
            .logo-hologram-container {
                width: 350px;
                height: 350px;
            }
            
            .hologram-card {
                width: 220px;
                height: 220px;
            }

            .hologram-logo {
                width: 180px;
                height: 110px;
            }

            .orbit-ring {
                width: 320px;
                height: 320px;
            }

            .orbit-ring-2 {
                width: 250px;
                height: 250px;
            }

            .stats-container {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }

            .bento-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }

            .bento-card.large {
                grid-column: span 1 !important;
            }

            /* ===== MOBILE WIDGETS (768px and below) ===== */
            
            /* Demo Terminal */
            .demo-section {
                padding: 60px 20px;
            }

            .demo-window {
                border-radius: 16px;
            }

            .demo-titlebar {
                padding: 12px 16px;
            }

            .demo-content {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .demo-input,
            .demo-output {
                padding: 24px 16px;
                border-right: none;
                border-bottom: 1px solid var(--glass-border);
            }

            .demo-output {
                border-bottom: none;
            }

            .demo-textarea {
                height: 200px;
                font-size: 0.9rem;
            }

            .demo-analyze-btn {
                width: 100%;
                padding: 14px 24px;
                font-size: 0.95rem;
                justify-content: center;
            }

            /* Section Headers */
            .section-header {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            .section-subtitle {
                font-size: 0.95rem;
                text-align: center !important;
            }

            /* About Section */
            .about-section {
                padding: 60px 20px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-content h2 {
                font-size: 1.8rem;
                text-align: center;
            }

            .about-content p {
                font-size: 0.95rem;
                text-align: center;
            }

            .glass-logo-container {
                width: 200px;
                height: 200px;
                margin: 0 auto;
            }

            /* Tech Stack */
            .tech-stack-section {
                padding: 60px 20px;
            }

            .tech-logo-item {
                min-width: 140px;
                padding: 20px 12px;
            }

            .tech-logo-wrapper {
                width: 80px;
                height: 80px;
            }

            .tech-logo {
                max-width: 60px;
                max-height: 60px;
            }

            /* Features Section */
            .features-section {
                padding: 60px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .feature-card {
                padding: 28px 24px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                align-items: center;
                padding-top: 30px;
            }

            .footer-brand {
                text-align: center;
                align-items: center;
            }

            .footer-description {
                text-align: center;
                max-width: 100%;
            }

            .footer-column {
                text-align: center;
            }

            .footer-column h4 {
                margin-bottom: 15px;
                font-size: 1rem;
            }

            .footer-links {
                align-items: center;
                gap: 10px;
            }

            .footer-link {
                padding: 8px 0;
                font-size: 0.9rem;
            }

            .social-links {
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .footer-logo {
                justify-content: center;
                font-size: 1.4rem;
            }

            .footer-logo-icon {
                width: 28px;
                height: 28px;
            }

            .copyright-main {
                font-size: 0.9rem;
                line-height: 1.4;
            }

            .company-details {
                font-size: 0.8rem;
                line-height: 1.3;
            }

            .version-info {
                font-size: 0.75rem;
                line-height: 1.3;
            }

        /* Desktop - Hide Mobile Menu Toggle */
        

        /* Enhanced Mobile Responsiveness for Small Devices */
        

            .footer-logo-icon {
                width: 26px;
                height: 26px;
            }

            .footer-description {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .footer-column h4 {
                font-size: 0.95rem;
                margin-bottom: 12px;
            }

            .footer-links {
                gap: 8px;
            }

            .footer-link {
                font-size: 0.85rem;
                padding: 6px 0;
            }

            .social-links {
                gap: 12px;
                justify-content: center;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .footer-bottom {
                padding-top: 25px;
                gap: 15px;
            }

            .copyright-main {
                font-size: 0.85rem;
            }

            .company-details {
                font-size: 0.75rem;
            }

            .version-info {
                font-size: 0.7rem;
            }

            .social-links {
                gap: 15px;
                justify-content: center;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            /* Footer Improvements */
            .footer {
                padding: 40px 15px 20px;
            }

            .social-links {
                gap: 15px;
                justify-content: center;
                flex-wrap: wrap;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 16px;
                flex-shrink: 0;
            }

            .footer-bottom {
                margin-top: 30px;
                padding-top: 20px;
            }

            .company-details,
            .version-info {
                text-align: center;
                font-size: 0.8rem;
                margin: 5px 0;
            }

            /* Chat Window Sizing */
            .chat-window {
                width: calc(100vw - 32px);
                height: 70vh;
                bottom: 90px;
                right: 16px;
            }

            .chat-header {
                padding: 15px;
            }

            .chat-body {
                padding: 15px;
            }

            .chat-input-container {
                padding: 15px;
            }

            .chat-input {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 12px 15px;
            }

            .chat-send {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            /* Typography Mobile Improvements */
            h1, h2, h3, h4, h5, h6 {
                line-height: 1.2;
                margin-bottom: 15px;
            }

            p {
                line-height: 1.5;
                margin-bottom: 15px;
            }

            /* Form Elements Mobile */
            input, textarea, select {
                font-size: 16px; /* Prevents zoom on iOS */
                min-height: 44px;
            }

            /* Accessibility Improvements */
            .sr-only {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                white-space: nowrap;
                border: 0;
            }

            /* Focus States for Mobile */
            button:focus,
            .btn:focus,
            .nav-link:focus,
            .social-link:focus {
                outline: 2px solid #00f2fe;
                outline-offset: 2px;
            }

            /* Prevent horizontal scroll */
            body {
                overflow-x: hidden;
            }

            .container,
            .hero-container,
            .nav-container {
                max-width: 100%;
                overflow-x: hidden;
            }

            /* Typing Animation */
            .typing-container {
                font-size: 0.9rem;
                margin-top: 20px;
            }
        } /* End of Mobile Responsive @media (max-width: 968px) */

        /* Extra Small Devices (phones in portrait) */
        @media (max-width: 480px) {
            .quantum-nav {
                padding: 12px 8px !important;
            }
            
            .nav-container {
                padding: 0 10px !important;
            }
            
            .nav-brand {
                font-size: 1.2rem !important;
            }
            
            .nav-brand-logo {
                width: 35px !important;
                height: 35px !important;
            }
            
            .nav-brand-logo img {
                width: 32px !important;
                height: 32px !important;
            }
            
            .nav-brand-beta {
                font-size: 0.65rem !important;
                padding: 1px 6px !important;
            }
            
            .mobile-menu-toggle {
                width: 40px !important;
                height: 40px !important;
            }
            
            .mobile-menu-toggle span {
                width: 20px !important;
            }
            
            /* Extra small devices */
            .chat-widget {
                bottom: 15px !important;
                right: 15px !important;
            }
            
            .chat-bubble {
                width: 50px !important;
                height: 50px !important;
            }
            
            .chat-bubble i {
                font-size: 22px !important;
            }
            
            .chat-window {
                bottom: 75px !important;
                right: 15px !important;
                left: 15px !important;
                width: auto !important;
                height: 65vh !important;
            }
        }

        /* Ensure proper layering for mobile */
        @media (max-width: 968px) {
            /* Main content should not overlap */
            .hero-quantum {
                padding-top: 80px !important;
            }
            
            /* Prevent horizontal scroll */
            body {
                overflow-x: hidden !important;
                position: relative !important;
            }
            
            /* Ensure all containers respect viewport */
            .hero-container,
            .stats-container,
            .bento-grid,
            .demo-window,
            .about-container,
            .tech-stack-container,
            .footer-container {
                max-width: 100% !important;
                overflow-x: hidden !important;
            }
        }

        /* JavaScript helper classes */
        .mobile-menu-open {
            overflow: hidden !important;
        }

        .mobile-menu-open .quantum-nav {
            border-bottom: none !important;
        }

        /* Prevent body scroll when mobile menu is open */
        body.menu-open {
            overflow: hidden !important;
            position: fixed !important;
            width: 100% !important;
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .quantum-nav {
                padding: 12px 0;
            }
            
            .nav-container {
                padding: 0 10px;
            }
            
            .nav-brand {
                font-size: 1.2rem;
            }
            
            .nav-brand-logo {
                width: 35px;
                height: 35px;
            }
            
            .nav-brand-logo img {
                width: 32px;
                height: 32px;
            }
            
            .nav-brand-beta {
                font-size: 0.65rem;
                padding: 1px 6px;
            }
            
            .mobile-menu-toggle {
                width: 40px;
                height: 40px;
            }
            
            .mobile-menu-toggle span {
                width: 20px;
            }
            
            .chat-widget {
                bottom: 15px;
                right: 15px;
            }
            
            .chat-bubble {
                width: 50px;
                height: 50px;
            }
            
            .chat-bubble i {
                font-size: 22px;
            }
            
            .chat-window {
                bottom: 70px;
                right: 15px;
                width: calc(100vw - 30px);
                height: 65vh;
            }
        }

        /* Desktop - Ensure menu is always visible */
        @media (min-width: 969px) {
            .nav-links {
                display: flex !important;
                position: static !important;
                max-height: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                flex-direction: row !important;
                background: transparent !important;
                border: none !important;
                padding: 0 !important;
                overflow: visible !important;
            }
            
            .mobile-menu-toggle {
                display: none !important;
            }
        }

        /* Extra Small Devices */
        

        /* ========================================
           TABLET OPTIMIZATION (768px - 1023px)
           ======================================== */
        

        /* ========================================
           DESKTOP OPTIMIZATION (1024px - 1439px)
           ======================================== */
        @media (min-width: 1024px) and (max-width: 1439px) {

            /* Stats - Desktop */
            .stats-container {
                grid-template-columns: repeat(4, 1fr) !important;
                padding: 60px 40px !important;
            }

            /* Bento Grid - Desktop */
            .bento-grid {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 30px !important;
            }

            .bento-card.large {
                grid-column: span 2 !important;
            }

            /* Features - Desktop */
            .features-grid {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 30px !important;
            }

            /* Tech Stack - Desktop */
            .tech-logo-item {
                min-width: 180px !important;
            }
        } /* End Desktop 1024-1439px */

        /* ========================================
           LARGE DESKTOP (1440px - 1919px)
           ======================================== */
        @media (min-width: 1440px) and (max-width: 1919px) {

            /* Hero - Large Desktop */
            .hero-title {
                font-size: 4rem !important;
            }

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

            /* Stats - Large Desktop */
            .stat-value {
                font-size: 3.5rem !important;
            }

            .stat-label {
                font-size: 1.1rem !important;
            }

            /* Features - Large Desktop */
            .feature-card {
                padding: 40px 36px !important;
            }

            .feature-icon {
                width: 70px !important;
                height: 70px !important;
                font-size: 30px !important;
            }

            .feature-card h3 {
                font-size: 1.5rem !important;
            }

            .feature-card p {
                font-size: 1.05rem !important;
            }

            /* Bento Cards - Large Desktop */
            .bento-card {
                padding: 40px 36px !important;
            }

            .bento-card h3 {
                font-size: 1.6rem !important;
            }

            .bento-card p {
                font-size: 1.05rem !important;
            }

        /* ========================================
           ULTRA-WIDE DISPLAYS (1920px+)
           ======================================== */
            .demo-section {
                padding: 140px 100px !important;
            }

            .demo-window {
                max-width: 1600px !important;
            }

            .demo-content {
                min-height: 600px !important;
            }

            .demo-input,
            .demo-output {
                padding: 60px 50px !important;
            }

            .demo-textarea {
                height: 320px !important;
                font-size: 1.1rem !important;
            }

            .demo-analyze-btn {
                padding: 18px 48px !important;
                font-size: 1.1rem !important;
            }
        } /* End Large Desktop 1440-1919px */

        /* ========================================
           ULTRA-WIDE (1920px and above)
           ======================================== */
        @media (min-width: 1920px) {

            /* Section Headers - Ultra-Wide */
            .section-header {
                margin-bottom: 80px !important;
            }

            .section-title {
                font-size: 3.5rem !important;
                margin-left: auto;
                margin-right: auto;
            }
            
            .section-subtitle {
                font-size: 1.4rem !important;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
                text-align: center !important;
            }

            /* Hero - Ultra-Wide */
            .hero-quantum {
                padding: 140px 100px !important;
            }

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

            .hero-subtitle {
                font-size: 1.6rem !important;
                max-width: 700px;
            }

            /* Stats - Ultra-Wide */
            .stats-container {
                padding: 80px 100px !important;
                max-width: 1600px;
                margin: 0 auto;
            }

            .stat-value {
                font-size: 4rem !important;
            }

            .stat-label {
                font-size: 1.2rem !important;
            }

            /* Bento Grid - Ultra-Wide */
            .bento-grid {
                max-width: 1600px;
                margin: 0 auto;
                gap: 40px !important;
            }

            .bento-card {
                padding: 50px 45px !important;
                min-height: 350px !important;
            }

            .bento-card h3 {
                font-size: 1.8rem !important;
            }

            .bento-card p {
                font-size: 1.1rem !important;
            }

            /* Features - Ultra-Wide */
            .features-grid {
                max-width: 1600px;
                margin: 0 auto;
                gap: 40px !important;
            }

            .feature-card {
                padding: 50px 45px !important;
            }

            .feature-icon {
                width: 80px !important;
                height: 80px !important;
                font-size: 36px !important;
            }

            .feature-card h3 {
                font-size: 1.7rem !important;
            }

            .feature-card p {
                font-size: 1.15rem !important;
            }

            /* About Section - Ultra-Wide */
            .about-container {
                max-width: 1600px;
                margin: 0 auto;
                gap: 80px !important;
            }

            .about-content h2 {
                font-size: 3rem !important;
            }

            .about-content p {
                font-size: 1.15rem !important;
                line-height: 1.8 !important;
            }

            /* Tech Stack - Ultra-Wide */
            .tech-stack-section {
                padding: 120px 100px !important;
            }

            .tech-logo-item {
                min-width: 200px !important;
                padding: 30px 20px !important;
            }

            .tech-logo-wrapper {
                width: 120px !important;
                height: 120px !important;
            }

            .tech-logo {
                max-width: 90px !important;
                max-height: 90px !important;
            }

            .tech-name {
                font-size: 1rem !important;
            }
        } /* End Ultra-Wide 1920px+ */

        /* ===== CHAT WIDGET POSITIONING - FIXED ===== */
        .chat-widget {
            position: fixed !important;
            bottom: 20px !important;
            right: 20px !important;
            top: auto !important;
            left: auto !important;
            z-index: 9990 !important;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            width: auto !important;
            height: auto !important;
            transform: none !important;
        }

        /* Enhanced Disclaimer Modal Styles */
        .disclaimer-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 20000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: overlayFadeIn 0.3s ease-out;
            cursor: pointer;
            will-change: opacity, backdrop-filter;
            pointer-events: auto;
        }

        @keyframes overlayFadeIn {
            from { 
                opacity: 0; 
                backdrop-filter: blur(0px);
                -webkit-backdrop-filter: blur(0px);
            }
            to { 
                opacity: 1; 
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }
        }

        .disclaimer-modal {
            background: linear-gradient(145deg, 
                rgba(25, 30, 50, 0.98) 0%, 
                rgba(30, 35, 55, 0.96) 50%,
                rgba(25, 30, 50, 0.98) 100%);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 2px solid rgba(255, 152, 0, 0.5);
            border-radius: 24px;
            max-width: 650px;
            width: 100%;
            max-height: 85vh;
            overflow: hidden;
            box-shadow: 
                0 25px 80px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(255, 0, 0, 0.2),
                0 0 40px rgba(255, 152, 0, 0.15);
            animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            cursor: default;
            will-change: transform, opacity;
            pointer-events: all;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes shake {
            0%, 100% { transform: translateY(0) scale(1) translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateY(0) scale(1) translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateY(0) scale(1) translateX(5px); }
        }

        .disclaimer-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #ff0000;
            animation: redPulse 2s ease-in-out infinite alternate;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
        }

        @keyframes redPulse {
            from { 
                opacity: 0.8;
                box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
            }
            to { 
                opacity: 1; 
                box-shadow: 0 0 30px rgba(255, 0, 0, 0.9);
            }
        }
        .disclaimer-header {
            background: rgba(255, 0, 0, 0.08);
            padding: 30px 40px 25px;
            border-bottom: 2px solid rgba(255, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
        }

        .disclaimer-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #ff0000;
        }

        .disclaimer-icon {
            width: 50px;
            height: 50px;
            background: #ff0000;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
            }
            50% {
                box-shadow: 0 8px 35px rgba(255, 0, 0, 0.9);
            }
        }

        .disclaimer-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        .disclaimer-content {
            padding: 35px 40px;
            overflow-y: auto;
            max-height: calc(85vh - 150px);
        }

        .beta-notice, .financial-warning {
            background: rgba(255, 152, 0, 0.08);
            border: 1px solid rgba(255, 152, 0, 0.35);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }

        .beta-notice::before, .financial-warning::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #ff9800;
        }

        .financial-warning {
            border-color: rgba(255, 0, 0, 0.35);
            background: rgba(255, 0, 0, 0.08);
        }

        .financial-warning::before {
            background: #ff0000;
        }

        .notice-icon, .warning-icon {
            width: 45px;
            height: 45px;
            background: #ff9800;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
        }

        .warning-icon {
            background: #ff0000;
            color: white;
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
            animation: warningPulse 1.5s ease-in-out infinite;
        }

        @keyframes warningPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 30px rgba(255, 0, 0, 0.9);
            }
        }

        .notice-content h3, .warning-content h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 12px 0;
            line-height: 1.3;
        }

        .notice-content p, .warning-content p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        .acknowledgments {
            margin-top: 30px;
        }

        .acknowledgments h3 {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 20px 0;
            text-align: left;
        }

        .ack-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ack-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 18px 20px;
            background: rgba(40, 40, 40, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .ack-item:hover {
            border-color: rgba(255, 152, 0, 0.4);
            background: rgba(50, 50, 50, 0.6);
            transform: translateX(4px);
        }

        .ack-item i {
            color: #4CAF50;
            font-size: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .ack-item span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: left;
        }

        .ack-item a {
            color: #ff9800;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 152, 0, 0.3);
            transition: all 0.3s ease;
        }

        .ack-item a:hover {
            color: #ffb74d;
            border-bottom-color: rgba(255, 183, 77, 0.6);
        }

        .risk-warning {
            background: rgba(255, 0, 0, 0.08);
            border: 1px solid rgba(255, 0, 0, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin-top: 25px;
            position: relative;
        }

        .risk-warning::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #ff0000;
        }

        .risk-warning h4 {
            color: #ff4444;
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 12px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .risk-warning p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }

        .acknowledgment-section {
            margin-top: 30px;
            padding: 25px;
            background: rgba(40, 40, 40, 0.4);
            border: 1px solid rgba(255, 152, 0, 0.25);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }

        .acknowledgment-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #ff9800;
        }

        .acknowledgment-section h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 20px 0;
            text-align: left;
            line-height: 1.3;
        }

        .disclaimer-footer {
            background: rgba(20, 25, 40, 0.9);
            padding: 25px 40px;
            border-top: 1px solid rgba(255, 0, 0, 0.25);
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }

        .disclaimer-footer .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            pointer-events: auto;
        }

        .disclaimer-footer .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
            transform: translateY(-2px);
        }

        .disclaimer-footer .btn-primary {
            background: #ff0000;
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
            cursor: pointer;
            pointer-events: auto;
        }

        .disclaimer-footer .btn-primary:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
        }

        /* Mobile Responsiveness for Disclaimer Modal */
        

        

        .disclaimer-header {
            background: linear-gradient(135deg, #4a90e2 0%, #667eea 100%);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            border-radius: 24px 24px 0 0;
            position: relative;
            overflow: hidden;
        }

        .disclaimer-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .disclaimer-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .disclaimer-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .disclaimer-content {
            padding: 32px;
        }

        .beta-notice, .financial-warning {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
            display: flex;
            gap: 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .beta-notice {
            border-left: 4px solid #4a90e2;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
        }

        .financial-warning {
            border-left: 4px solid #ff6b6b;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 99, 132, 0.08) 100%);
        }

        .notice-icon, .warning-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .notice-icon {
            background: linear-gradient(135deg, #4a90e2, #667eea);
            color: white;
            box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
        }

        .warning-icon {
            background: linear-gradient(135deg, #ff6b6b, #ff8a80);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
        }

        .notice-content h3, .warning-content h3 {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 8px 0;
        }

        .notice-content p, .warning-content p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.5;
        }

        .acknowledgments {
            margin-bottom: 24px;
        }

        .acknowledgments h3 {
            color: #4a90e2;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .ack-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ack-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .ack-item i {
            color: #4ade80;
            font-size: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .ack-item a {
            color: #4a90e2;
            text-decoration: none;
        }

        .ack-item a:hover {
            text-decoration: underline;
            color: #667eea;
        }

        .risk-warning {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 99, 132, 0.1) 100%);
            border: 1px solid rgba(255, 107, 107, 0.3);
            border-radius: 12px;
            padding: 16px;
        }

        .risk-warning h4 {
            color: #ff6b6b;
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 8px 0;
        }

        .risk-warning p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .disclaimer-footer {
            padding: 24px 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            gap: 16px;
            justify-content: flex-end;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
            border-radius: 0 0 24px 24px;
        }

        .disclaimer-footer .btn-secondary {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: rgba(255, 255, 255, 0.9);
            padding: 12px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .disclaimer-footer .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .disclaimer-footer .btn-primary {
            background: linear-gradient(135deg, #4a90e2 0%, #667eea 100%);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
        }

        .disclaimer-footer .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
            background: linear-gradient(135deg, #5ba3f5 0%, #7a8cfd 100%);
        }

        /* Mobile responsive for disclaimer */
        

        /* ========================================
           3. CHAT WIDGET - PREMIUM UPGRADE
           ======================================== */

        /* Premium Chat Bubble */
        .chat-bubble {
            position: relative !important;
            width: 72px !important;
            height: 72px !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
            
            /* Gradient background */
            background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%) !important;
            
            /* Premium border */
            border: 3px solid rgba(0, 242, 254, 0.4) !important;
            
            /* Complex shadow */
            box-shadow: 
                0 10px 40px rgba(0, 242, 254, 0.4),
                0 0 80px rgba(118, 75, 162, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.2),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2) !important;
            
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            overflow: visible !important;
        }

        /* Animated pulse ring */
        .chat-bubble::before {
            content: '';
            position: absolute;
            inset: -8px;
            border: 2px solid rgba(0, 242, 254, 0.3);
            border-radius: 50%;
            animation: chatBubblePulseRing 3s ease-in-out infinite;
        }

        @keyframes chatBubblePulseRing {
            0%, 100% { 
                transform: scale(1);
                opacity: 0.6;
            }
            50% { 
                transform: scale(1.15);
                opacity: 0;
            }
        }

        /* Secondary pulse ring */
        .chat-bubble::after {
            content: '';
            position: absolute;
            inset: -4px;
            border: 1px dashed rgba(118, 75, 162, 0.4);
            border-radius: 50%;
            animation: chatBubbleRotate 20s linear infinite;
        }

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

        .chat-bubble:hover {
            transform: scale(1.12) !important;
            box-shadow: 
                0 15px 50px rgba(0, 242, 254, 0.5),
                0 0 100px rgba(118, 75, 162, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
        }

        .chat-bubble:hover::before {
            animation: none;
            opacity: 0;
        }

        .chat-bubble i {
            color: white !important;
            font-size: 28px !important;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
            transition: all 0.3s ease !important;
            position: relative;
            z-index: 2;
        }

        .chat-bubble:hover i {
            transform: scale(1.1) rotate(-5deg);
        }

        /* Premium Chat Window */
        .chat-window {
            position: fixed !important;
            bottom: 110px !important;
            right: 24px !important;
            width: 420px;
            height: 580px;
            border-radius: 28px;
            overflow: hidden;
            
            /* Deep glassmorphism */
            background: linear-gradient(135deg, 
                rgba(15, 20, 45, 0.95) 0%, 
                rgba(26, 31, 58, 0.95) 50%,
                rgba(15, 20, 45, 0.95) 100%);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            
            /* Animated border setup */
            border: 2px solid transparent;
            background-clip: padding-box;
            
            /* Premium shadow */
            box-shadow: 
                0 40px 100px rgba(0, 0, 0, 0.7),
                0 0 100px rgba(0, 242, 254, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            
            opacity: 0;
            visibility: hidden;
            display: none;
            transform: translateY(30px) scale(0.9);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            flex-direction: column;
            z-index: 9991 !important;
        }

        /* Animated gradient border */
        .chat-window::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, 
                rgba(0, 242, 254, 0) 0%,
                rgba(0, 242, 254, 0.6) 25%,
                rgba(118, 75, 162, 0.6) 50%,
                rgba(240, 147, 251, 0.4) 75%,
                rgba(0, 242, 254, 0) 100%);
            background-size: 400% 400%;
            border-radius: 30px;
            z-index: -1;
            animation: chatWindowBorderRotate 8s linear infinite;
            opacity: 0.7;
        }

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

        /* Inner background cover */
        .chat-window::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: linear-gradient(135deg, 
                rgba(15, 20, 45, 0.98) 0%, 
                rgba(20, 25, 50, 0.99) 100%);
            border-radius: 26px;
            z-index: -1;
        }

        .chat-window.open {
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
            transform: translateY(0) scale(1) !important;
        }

        .chat-window.open::before {
            opacity: 1;
        }

        /* Premium Header */
        .chat-window .chat-header,
        .chat-window .chat-intro {
            position: relative;
            z-index: 10;
        }

        /* Enhanced Demo Badge */
        .demo-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, 
                rgba(243, 156, 18, 0.2) 0%, 
                rgba(230, 126, 34, 0.2) 100%);
            border: 1px solid rgba(243, 156, 18, 0.4);
            color: #f39c12;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .demo-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(243, 156, 18, 0.3), 
                transparent);
            animation: demoBadgeShine 3s ease-in-out infinite;
        }

        @keyframes demoBadgeShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        /* Premium Chat Intro */
        .chat-intro h3 {
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0 0 12px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .chat-intro p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 24px 0;
        }

        /* Premium Starter Buttons */
        .conversation-starters {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .starter-button {
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.8) 0%, 
                rgba(16, 21, 46, 0.9) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 16px 20px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            text-align: left;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            line-height: 1.5;
            position: relative;
            overflow: hidden;
        }

        /* Animated L-shaped accent */
        .starter-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            border-top: 2px solid rgba(0, 242, 254, 0.4);
            border-left: 2px solid rgba(0, 242, 254, 0.4);
            border-radius: 16px 0 0 0;
            transition: all 0.4s ease;
            opacity: 0;
        }

        /* Shine effect */
        .starter-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 242, 254, 0.08), 
                transparent);
            transition: left 0.6s ease;
        }

        .starter-button:hover {
            background: linear-gradient(135deg, 
                rgba(0, 242, 254, 0.1) 0%, 
                rgba(118, 75, 162, 0.1) 100%);
            border-color: rgba(0, 242, 254, 0.3);
            transform: translateX(8px);
            box-shadow: 
                0 8px 24px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(0, 242, 254, 0.1);
        }

        .starter-button:hover::before {
            opacity: 1;
            width: 40px;
            height: 40px;
        }

        .starter-button:hover::after {
            left: 100%;
        }

        /* Premium Close Button */
        .chat-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 20;
        }

        .chat-close:hover {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.2) 0%, 
                rgba(255, 255, 255, 0.1) 100%);
            border-color: rgba(0, 242, 254, 0.4);
            transform: rotate(90deg) scale(1.1);
            color: #00f2fe;
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
        }

        /* Premium Chat Body */
        .chat-body {
            flex: 1;
            padding: 70px 24px 24px 24px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            min-height: 0;
            position: relative;
            z-index: 10;
        }

        /* Custom scrollbar */
        .chat-body::-webkit-scrollbar {
            width: 6px;
        }

        .chat-body::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 3px;
        }

        .chat-body::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, rgba(0, 242, 254, 0.3), rgba(118, 75, 162, 0.3));
            border-radius: 3px;
        }

        .chat-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, rgba(0, 242, 254, 0.5), rgba(118, 75, 162, 0.5));
        }

        /* Premium Input Area */
        .chat-input-area {
            padding: 20px 24px 24px;
            border-top: 1px solid rgba(0, 242, 254, 0.1);
            background: linear-gradient(180deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(0, 0, 0, 0.4) 100%);
            flex-shrink: 0;
            position: relative;
            z-index: 10;
        }

        .chat-input-container {
            display: flex;
            gap: 14px;
            align-items: flex-end;
        }

        /* Premium Text Input */
        .chat-input {
            flex: 1;
            background: linear-gradient(135deg, 
                rgba(10, 15, 35, 0.8) 0%, 
                rgba(15, 20, 40, 0.9) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            padding: 16px 20px;
            color: white;
            font-size: 0.95rem;
            resize: none;
            max-height: 120px;
            min-height: 52px;
            font-family: inherit;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            line-height: 1.5;
        }

        .chat-input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .chat-input:focus {
            outline: none;
            border-color: rgba(0, 242, 254, 0.5);
            box-shadow: 
                0 0 0 4px rgba(0, 242, 254, 0.1),
                0 0 30px rgba(0, 242, 254, 0.15),
                inset 0 0 20px rgba(0, 242, 254, 0.03);
            background: linear-gradient(135deg, 
                rgba(10, 15, 35, 0.9) 0%, 
                rgba(15, 20, 40, 0.95) 100%);
        }

        /* Premium Send Button */
        .chat-send {
            background: linear-gradient(135deg, #00f2fe 0%, #764ba2 100%);
            border: none;
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 8px 24px rgba(0, 242, 254, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        /* Shine effect on button */
        .chat-send::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(45deg) translateY(-100%);
            transition: transform 0.6s ease;
        }

        .chat-send:hover {
            transform: scale(1.08) translateY(-2px);
            box-shadow: 
                0 12px 32px rgba(0, 242, 254, 0.45),
                0 0 40px rgba(0, 242, 254, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .chat-send:hover::before {
            transform: rotate(45deg) translateY(100%);
        }

        .chat-send:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .chat-send i {
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .chat-send:hover i {
            transform: translateX(2px);
        }

        /* Legacy compatibility for old starters */
        .chat-intro {
            margin-bottom: 20px;
        }

        .conversation-starters {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

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

        /* Premium Message Styles */
        .chat-message {
            margin-bottom: 18px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            animation: messageSlideIn 0.4s ease-out;
        }

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

        .message-avatar {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .user-message .message-avatar,
        .user-avatar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .bot-message .message-avatar,
        .bot-avatar {
            background: linear-gradient(135deg, #00f2fe 0%, #764ba2 100%);
            color: white;
        }

        .message-content {
            flex: 1;
            border-radius: 18px;
            padding: 14px 18px;
            font-size: 0.95rem;
            line-height: 1.7;
            word-break: break-word;
            max-width: 100%;
            position: relative;
        }

        .user-message .message-content {
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.25) 0%, 
                rgba(118, 75, 162, 0.25) 100%);
            border: 1px solid rgba(102, 126, 234, 0.3);
            color: rgba(255, 255, 255, 0.95);
        }

        .bot-message .message-content {
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.8) 0%, 
                rgba(16, 21, 46, 0.9) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.9);
        }

        /* Enhanced Typing Indicator */
        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 18px;
            background: linear-gradient(135deg, 
                rgba(26, 31, 58, 0.8) 0%, 
                rgba(16, 21, 46, 0.9) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            width: fit-content;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #00f2fe, #764ba2);
            border-radius: 50%;
            animation: typingDotBounce 1.4s ease-in-out infinite;
        }

        .typing-dot:nth-child(1) { animation-delay: 0s; }
        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typingDotBounce {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.5;
            }
            30% {
                transform: translateY(-8px);
                opacity: 1;
            }
        }

        /* Legacy compatibility - keep old styles for fallback */
        .chat-send:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Enhanced Chat Messages */
        .chat-message {
            margin-bottom: 16px;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .message-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .user-message .message-avatar,
        .user-avatar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .bot-message .message-avatar,
        .bot-avatar {
            background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
            color: white;
        }

        .message-content {
            flex: 1;
            border-radius: 16px;
            padding: 12px 16px;
            font-size: 14px;
            line-height: 1.6;
            word-break: break-word;
            max-width: 100%;
        }

        .user-message .message-content {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border: 1px solid rgba(102, 126, 234, 0.3);
            color: rgba(255, 255, 255, 0.9);
        }

        .bot-message .message-content {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
        }

        /* Improved markdown formatting in chat messages */
        .bot-message .markdown-wrapper {
            font-size: 14px;
            line-height: 1.6;
        }

        .bot-message .markdown-h2 {
            color: #00f2fe;
            margin: 16px 0 8px 0;
            font-size: 1.1rem;
            font-weight: 700;
            border-bottom: 1px solid rgba(0, 242, 254, 0.2);
            padding-bottom: 8px;
        }

        .bot-message .markdown-h3 {
            color: #00f2fe;
            margin: 14px 0 6px 0;
            font-size: 1rem;
            font-weight: 600;
        }

        .bot-message .markdown-h4 {
            color: #00f2fe;
            margin: 12px 0 6px 0;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .bot-message .markdown-p {
            margin: 8px 0;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .bot-message .markdown-ul,
        .bot-message .markdown-ol {
            margin: 8px 0;
            padding-left: 20px;
        }

        .bot-message .markdown-li {
            margin: 4px 0;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.85);
        }

        .bot-message .markdown-strong {
            color: #ffffff;
            font-weight: 600;
        }

        .bot-message .markdown-em {
            opacity: 0.9;
            font-style: italic;
        }

        .bot-message .markdown-pre {
            background: rgba(0, 0, 0, 0.4);
            padding: 12px;
            border-radius: 8px;
            margin: 12px 0;
            overflow-x: auto;
            border: 1px solid rgba(0, 242, 254, 0.2);
        }

        .bot-message .markdown-code {
            color: #00f2fe;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .bot-message .markdown-inline-code {
            background: rgba(0, 242, 254, 0.15);
            color: #00f2fe;
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-size: 0.9em;
        }

        /* Enhanced message content formatting */
        .message-content p {
            margin: 0 0 12px 0;
            line-height: 1.6;
        }

        .message-content p:last-child {
            margin-bottom: 0;
        }

        .message-content h1,
        .message-content h2,
        .message-content h3,
        .message-content h4 {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
            margin: 16px 0 8px 0;
            line-height: 1.3;
        }

        .message-content h1:first-child,
        .message-content h2:first-child,
        .message-content h3:first-child,
        .message-content h4:first-child {
            margin-top: 0;
        }

        .message-content h1 { font-size: 1.4em; }
        .message-content h2 { font-size: 1.3em; }
        .message-content h3 { font-size: 1.2em; }
        .message-content h4 { font-size: 1.1em; }

        .message-content strong,
        .message-content b {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

        .message-content em,
        .message-content i {
            font-style: italic;
            color: rgba(255, 255, 255, 0.85);
        }

        .message-content code {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            padding: 2px 6px;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-size: 0.9em;
            color: #00f2fe;
        }

        .message-content pre {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 12px;
            margin: 12px 0;
            overflow-x: auto;
            line-height: 1.5;
        }

        .message-content pre code {
            background: none;
            border: none;
            padding: 0;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9em;
        }

        .message-content ul,
        .message-content ol {
            margin: 8px 0;
            padding-left: 24px;
            line-height: 1.6;
        }

        .message-content ul {
            list-style-type: disc;
        }

        .message-content ol {
            list-style-type: decimal;
        }

        .message-content li {
            margin: 4px 0;
            color: rgba(255, 255, 255, 0.9);
        }

        .message-content li::marker {
            color: rgba(0, 242, 254, 0.7);
        }

        .message-content blockquote {
            border-left: 3px solid rgba(0, 242, 254, 0.5);
            margin: 12px 0;
            padding: 8px 0 8px 16px;
            background: rgba(0, 242, 254, 0.05);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: rgba(255, 255, 255, 0.85);
        }

        .message-content a {
            color: #00f2fe;
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 242, 254, 0.3);
            transition: all 0.2s ease;
        }

        .message-content a:hover {
            color: #64d9ff;
            border-bottom-color: #64d9ff;
        }

        .message-content hr {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin: 16px 0;
        }

        .message-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 12px 0;
            font-size: 0.95em;
        }

        .message-content table th,
        .message-content table td {
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 12px;
            text-align: left;
        }

        .message-content table th {
            background: rgba(0, 242, 254, 0.1);
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

        .message-content table tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        /* Specific styling for numbered lists in responses */
        .message-content ol > li {
            padding-left: 8px;
        }

        .message-content ol > li > strong:first-child {
            display: block;
            margin-bottom: 4px;
            color: #00f2fe;
        }

        /* Code syntax highlighting hints */
        .message-content .keyword { color: #f92672; }
        .message-content .string { color: #a6e22e; }
        .message-content .comment { color: #75715e; font-style: italic; }
        .message-content .number { color: #ae81ff; }

        .user-message .message-content {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .bot-message .message-content {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Mobile Chat Window Improvements */
        @media (max-width: 968px) {
            .chat-window {
                border-radius: 16px !important;
                max-width: none !important;
            }

            .chat-close {
                width: 30px !important;
                height: 30px !important;
                top: 12px !important;
                right: 12px !important;
            }

            .chat-body {
                padding: 50px 16px 16px 16px !important;
            }

            .chat-intro h3 {
                font-size: 16px !important;
            }

            .chat-intro p {
                font-size: 13px !important;
            }

            .demo-badge {
                font-size: 10px !important;
                padding: 3px 10px !important;
            }

            .starter-button {
                padding: 10px 14px !important;
                font-size: 13px !important;
            }

            .chat-input-area {
                padding: 12px 16px !important;
            }

            .chat-input {
                padding: 10px 14px !important;
                font-size: 13px !important;
                min-height: 36px !important;
            }

            .chat-send {
                width: 36px !important;
                height: 36px !important;
            }

            .chat-message {
                margin-bottom: 12px !important;
            }

            .message-avatar {
                width: 28px !important;
                height: 28px !important;
                font-size: 12px !important;
            }

            .message-content {
                padding: 10px 14px !important;
                font-size: 13px !important;
            }
        }

        /* Extra Small Devices - Chat Window */
        @media (max-width: 480px) {
            .chat-window {
                border-radius: 12px !important;
            }

            .chat-close {
                width: 28px !important;
                height: 28px !important;
                top: 10px !important;
                right: 10px !important;
            }

            .chat-body {
                padding: 50px 14px 14px 14px !important;
            }

            .chat-intro {
                margin-bottom: 16px !important;
            }

            .chat-intro h3 {
                font-size: 15px !important;
                margin-bottom: 6px !important;
            }

            .chat-intro p {
                font-size: 12px !important;
                margin-bottom: 16px !important;
            }

            .demo-badge {
                font-size: 9px !important;
                padding: 2px 8px !important;
                margin-bottom: 12px !important;
            }

            .conversation-starters {
                gap: 6px !important;
            }

            .starter-button {
                padding: 9px 12px !important;
                font-size: 12px !important;
                border-radius: 10px !important;
            }

            .chat-input-area {
                padding: 10px 14px !important;
            }

            .chat-input-container {
                gap: 6px !important;
            }

            .chat-input {
                padding: 9px 12px !important;
                font-size: 12px !important;
                min-height: 34px !important;
                border-radius: 10px !important;
            }

            .chat-send {
                width: 34px !important;
                height: 34px !important;
                border-radius: 10px !important;
            }

            .chat-send i {
                font-size: 14px !important;
            }

            .chat-message {
                margin-bottom: 10px !important;
                gap: 6px !important;
            }

            .message-avatar {
                width: 26px !important;
                height: 26px !important;
                font-size: 11px !important;
            }

            .message-content {
                padding: 9px 12px !important;
                font-size: 12px !important;
                border-radius: 12px !important;
            }
        }

        /* Responsive */
        

        /* Typing indicator */
        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 0;
        }

        .typing-dot {
            width: 6px;
            height: 6px;
            background: rgba(0, 242, 254, 0.6);
            border-radius: 50%;
            animation: typingDots 1.5s ease-in-out infinite;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingDots {
            0%, 60%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            30% {
                transform: scale(1.2);
                opacity: 1;
            }
        }


/* ========================================
   RESPONSIVE STYLES FOR PREMIUM SECTIONS
   ======================================== */

        /* Tablet */
        @media (max-width: 1200px) {
            /* Tech Stack */
            .tech-stack-section {
                padding: 100px 0;
            }
            
            .tech-logo-wrapper {
                width: 120px;
                height: 85px;
            }
            
            .tech-logos-track {
                gap: 50px;
            }
            
            /* About Section */
            .about-section {
                padding: 120px 30px;
            }
            
            .about-container {
                gap: 60px;
            }
            
            .about-content {
                padding: 50px;
            }
            
            .glass-logo-container {
                width: 320px;
                height: 320px;
            }
            
            .glass-logo-container::before {
                width: 260px;
                height: 260px;
            }
            
            .glass-logo-container::after {
                width: 300px;
                height: 300px;
            }
        }

        /* Tablet Portrait */
        @media (max-width: 1024px) {
            /* About Section - Stack vertically */
            .about-container {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }
            
            .about-content {
                order: 2;
            }
            
            .about-content h2 {
                text-align: center;
            }
            
            .about-content h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .about-content p {
                text-align: center;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .about-visual {
                order: 1;
            }
            
            @keyframes aboutOrbitDot1 {
                0% { transform: rotate(0deg) translateX(170px) rotate(0deg); }
                100% { transform: rotate(360deg) translateX(170px) rotate(-360deg); }
            }

            @keyframes aboutOrbitDot2 {
                0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
                100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            /* Tech Stack */
            .tech-stack-section {
                padding: 80px 0;
            }
            
            .tech-stack-container {
                padding: 0 20px;
            }
            
            .tech-stack-title {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }
            
            .tech-stack-subtitle {
                font-size: 1rem;
                margin-bottom: 50px;
            }
            
            .tech-logos-scroll-container {
                padding: 40px 0;
            }
            
            .tech-logos-scroll-container::before,
            .tech-logos-scroll-container::after {
                width: 100px;
            }
            
            .tech-logos-track {
                gap: 40px;
            }
            
            .tech-logo-wrapper {
                width: 100px;
                height: 70px;
                padding: 14px;
                border-radius: 18px;
            }
            
            .tech-name {
                font-size: 0.75rem;
            }
            
            /* About Section */
            .about-section {
                padding: 80px 20px;
            }
            
            .about-content {
                padding: 36px 28px;
                border-radius: 24px;
            }
            
            .about-content::before,
            .about-content::after {
                width: 80px;
                height: 80px;
            }
            
            .about-content h2 {
                font-size: 1.8rem;
                margin-bottom: 24px;
            }
            
            .about-content h2::after {
                width: 80px;
                height: 3px;
                bottom: -8px;
            }
            
            .about-content p {
                font-size: 1rem;
                line-height: 1.7;
            }
            
            .glass-logo-container {
                width: 260px;
                height: 260px;
            }
            
            .glass-logo-container::before {
                width: 200px;
                height: 200px;
            }
            
            .glass-logo-container::after {
                width: 240px;
                height: 240px;
            }
            
            .glass-logo-container .mirror-logo {
                width: 120px;
                height: 120px;
            }
            
            @keyframes aboutOrbitDot1 {
                0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
                100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
            }

            @keyframes aboutOrbitDot2 {
                0% { transform: rotate(0deg) translateX(115px) rotate(0deg); }
                100% { transform: rotate(360deg) translateX(115px) rotate(-360deg); }
            }
            
            /* Chat Widget */
            .chat-widget {
                bottom: 16px !important;
                right: 16px !important;
            }
            
            .chat-bubble {
                width: 60px !important;
                height: 60px !important;
            }
            
            .chat-bubble i {
                font-size: 24px !important;
            }
            
            .chat-window {
                bottom: 85px !important;
                right: 16px !important;
                left: 16px !important;
                width: auto !important;
                max-width: calc(100vw - 32px) !important;
                height: 65vh !important;
                max-height: 520px !important;
                border-radius: 20px;
            }
            
            .chat-close {
                width: 36px;
                height: 36px;
                top: 16px;
                right: 16px;
            }
            
            .chat-body {
                padding: 60px 18px 18px 18px;
            }
            
            .chat-intro h3 {
                font-size: 1.2rem;
            }
            
            .chat-intro p {
                font-size: 0.9rem;
            }
            
            .demo-badge {
                font-size: 0.7rem;
                padding: 5px 12px;
            }
            
            .starter-button {
                padding: 14px 16px;
                font-size: 0.9rem;
                border-radius: 14px;
            }
            
            .chat-input-area {
                padding: 16px 18px 20px;
            }
            
            .chat-input {
                padding: 14px 16px;
                font-size: 0.9rem;
                min-height: 46px;
                border-radius: 14px;
            }
            
            .chat-send {
                width: 46px;
                height: 46px;
                border-radius: 14px;
            }
            
            .message-avatar {
                width: 32px;
                height: 32px;
                border-radius: 10px;
                font-size: 12px;
            }
            
            .message-content {
                padding: 12px 14px;
                font-size: 0.9rem;
                border-radius: 14px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            /* Tech Stack */
            .tech-stack-section {
                padding: 60px 0;
            }
            
            .tech-stack-title {
                font-size: 1.5rem;
            }
            
            .tech-stack-title::after {
                width: 80px;
                height: 3px;
            }
            
            .tech-stack-subtitle {
                font-size: 0.9rem;
                margin-bottom: 40px;
                margin-top: 30px;
            }
            
            .tech-logo-wrapper {
                width: 85px;
                height: 60px;
                padding: 12px;
                border-radius: 14px;
            }
            
            .tech-logos-track {
                gap: 30px;
            }
            
            .tech-name {
                font-size: 0.7rem;
                letter-spacing: 0.5px;
            }
            
            /* About Section */
            .about-section {
                padding: 60px 16px;
            }
            
            .about-content {
                padding: 28px 22px;
                border-radius: 20px;
            }
            
            .about-content::before,
            .about-content::after {
                width: 60px;
                height: 60px;
                border-width: 2px;
            }
            
            .about-content h2 {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
            
            .about-content p {
                font-size: 0.95rem;
                margin-bottom: 18px;
            }
            
            .glass-logo-container {
                width: 220px;
                height: 220px;
            }
            
            .glass-logo-container::before {
                width: 170px;
                height: 170px;
            }
            
            .glass-logo-container::after {
                width: 200px;
                height: 200px;
            }
            
            .glass-logo-container .mirror-logo {
                width: 100px;
                height: 100px;
            }
            
            @keyframes aboutOrbitDot1 {
                0% { transform: rotate(0deg) translateX(115px) rotate(0deg); }
                100% { transform: rotate(360deg) translateX(115px) rotate(-360deg); }
            }

            @keyframes aboutOrbitDot2 {
                0% { transform: rotate(0deg) translateX(95px) rotate(0deg); }
                100% { transform: rotate(360deg) translateX(95px) rotate(-360deg); }
            }
            
            .about-visual::before {
                width: 10px;
                height: 10px;
            }
            
            .about-visual::after {
                width: 6px;
                height: 6px;
            }
            
            /* Chat Widget */
            .chat-widget {
                bottom: 12px !important;
                right: 12px !important;
            }
            
            .chat-bubble {
                width: 54px !important;
                height: 54px !important;
            }
            
            .chat-bubble i {
                font-size: 22px !important;
            }
            
            .chat-window {
                bottom: 75px !important;
                right: 12px !important;
                left: 12px !important;
                height: 70vh !important;
                max-height: 480px !important;
                border-radius: 18px;
            }
            
            .chat-close {
                width: 32px;
                height: 32px;
                top: 14px;
                right: 14px;
            }
            
            .chat-body {
                padding: 55px 14px 14px 14px;
            }
            
            .chat-intro {
                margin-bottom: 16px;
            }
            
            .chat-intro h3 {
                font-size: 1.1rem;
            }
            
            .chat-intro p {
                font-size: 0.85rem;
                margin-bottom: 16px;
            }
            
            .demo-badge {
                font-size: 0.65rem;
                padding: 4px 10px;
                margin-bottom: 14px;
            }
            
            .conversation-starters {
                gap: 8px;
            }
            
            .starter-button {
                padding: 12px 14px;
                font-size: 0.85rem;
                border-radius: 12px;
            }
            
            .chat-input-area {
                padding: 14px 14px 16px;
            }
            
            .chat-input-container {
                gap: 10px;
            }
            
            .chat-input {
                padding: 12px 14px;
                font-size: 0.85rem;
                min-height: 42px;
                border-radius: 12px;
            }
            
            .chat-send {
                width: 42px;
                height: 42px;
                border-radius: 12px;
            }
            
            .chat-send i {
                font-size: 1rem;
            }
            
            .chat-message {
                margin-bottom: 14px;
                gap: 10px;
            }
            
            .message-avatar {
                width: 28px;
                height: 28px;
                border-radius: 8px;
                font-size: 11px;
            }
            
            .message-content {
                padding: 10px 12px;
                font-size: 0.85rem;
                border-radius: 12px;
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .tech-logos-track,
            .tech-stack-title,
            .tech-logo-wrapper::after,
            .about-content::before,
            .about-content::after,
            .glass-logo-container::before,
            .glass-logo-container::after,
            .glass-logo-container .mirror-logo,
            .about-visual::before,
            .about-visual::after,
            .chat-bubble::before,
            .chat-bubble::after,
            .chat-window::before,
            .demo-badge::before,
            .starter-button::after,
            .chat-send::before {
                animation: none !important;
            }
            
            .tech-logos-track {
                animation: none !important;
            }
            
            .tech-logo-item:hover .tech-logo-wrapper,
            .tech-logo-item:hover .tech-logo,
            .starter-button:hover,
            .chat-bubble:hover,
            .chat-send:hover {
                transform: none !important;
            }
        }


        /* Improved Disclaimer Modal CSS */

        /* Overlay */
        .disclaimer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(26, 27, 35, 0.95) 0%,
                rgba(36, 37, 49, 0.95) 50%,
                rgba(26, 27, 35, 0.95) 100%);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            z-index: 20000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: overlayFadeIn 0.4s ease-out;
            overflow-y: auto;
        }

        @keyframes overlayFadeIn {
            from { 
                opacity: 0;
                backdrop-filter: blur(0px);
            }
            to { 
                opacity: 1;
                backdrop-filter: blur(20px);
            }
        }

        /* Main Modal */
        .disclaimer-modal {
            position: relative;
            background: #242531;
            border-radius: 24px;
            max-width: 680px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 
                0 20px 40px -15px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(102, 126, 234, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Background Pattern */
        .modal-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
            pointer-events: none;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes modalSlideOut {
            from {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            to {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
        }

        /* Header Section */
        .disclaimer-header {
            position: relative;
            background: linear-gradient(135deg, #667eea, #764ba2);
            padding: 32px;
            overflow: hidden;
        }

        .header-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: glowRotate 20s linear infinite;
        }

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

        .header-content {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .disclaimer-icon-wrapper {
            position: relative;
        }

        .icon-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: iconPulse 2s ease-in-out infinite;
        }

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

        .disclaimer-icon {
            position: relative;
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .header-text {
            flex: 1;
        }

        .disclaimer-title {
            color: var(--text-primary);
            font-size: 1.75rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.5px;
        }

        .disclaimer-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            margin: 4px 0 0 0;
        }

        /* Content Section */
        .disclaimer-content {
            padding: 32px;
            overflow-y: auto;
            max-height: calc(90vh - 200px);
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
        }

        .disclaimer-content::-webkit-scrollbar {
            width: 6px;
        }

        .disclaimer-content::-webkit-scrollbar-track {
            background: transparent;
        }

        .disclaimer-content::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        .disclaimer-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Info Cards */
        .info-card {
            position: relative;
            background: #2d2e3f;
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .card-accent {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #764ba2);
        }

        .beta-card .card-accent {
            background: linear-gradient(90deg, #3b82f6, #00f2fe);
        }

        .warning-card .card-accent {
            background: linear-gradient(90deg, #f59e0b, #ef4444);
        }

        .card-content {
            padding: 24px;
            display: flex;
            gap: 16px;
        }

        .card-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-primary);
            flex-shrink: 0;
        }

        .warning-card .card-icon {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
        }

        .card-text h3 {
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 8px 0;
        }

        .card-text p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Acknowledgment Section */
        .acknowledgment-section {
            margin-top: 28px;
            padding: 28px;
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.05) 0%,
                rgba(118, 75, 162, 0.05) 100%);
            border-radius: 16px;
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .section-header {
            margin-bottom: 24px;
        }

        .section-header h3 {
            color: var(--text-primary);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 6px 0;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Custom Checkboxes */
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .checkbox-item {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            padding: 12px;
            border-radius: 12px;
            transition: background-color 0.2s ease;
            user-select: none;
        }

        .checkbox-item:hover {
            background: rgba(102, 126, 234, 0.05);
        }

        .disclaimer-checkbox {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .checkbox-custom {
            position: relative;
            width: 22px;
            height: 22px;
            min-width: 22px;
            background: #1a1b23;
            border: 2px solid rgba(102, 126, 234, 0.4);
            border-radius: 6px;
            margin-right: 14px;
            margin-top: 1px;
            transition: all 0.3s ease;
        }

        .checkbox-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 10px;
            stroke: var(--text-primary);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 16px;
            stroke-dashoffset: 16px;
            transition: stroke-dashoffset 0.3s ease;
        }

        .disclaimer-checkbox:checked ~ .checkbox-custom {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-color: transparent;
            transform: scale(1.05);
        }

        .disclaimer-checkbox:checked ~ .checkbox-custom .checkbox-icon {
            stroke-dashoffset: 0;
        }

        .checkbox-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
            flex: 1;
        }

        .inline-link {
            color: #667eea;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .inline-link:hover {
            color: #764ba2;
            border-bottom-color: #764ba2;
        }

        .checkbox-item.checked {
            background: rgba(102, 126, 234, 0.05);
        }

        /* Risk Disclosure */
        .risk-disclosure {
            margin-top: 20px;
            padding: 16px;
            background: rgba(239, 68, 68, 0.08);
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .disclosure-icon {
            color: #ef4444;
            font-size: 18px;
            margin-top: 2px;
        }

        .risk-disclosure p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
            flex: 1;
        }

        /* Footer Actions */
        .disclaimer-footer {
            padding: 24px 32px;
            background: #1a1b23;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }

        .action-btn {
            position: relative;
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
            overflow: hidden;
        }

        .btn-secondary {
            background: #2d2e3f;
            color: var(--text-secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: var(--text-primary);
            position: relative;
        }

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

        .btn-primary:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

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

        .btn-primary:not(:disabled):hover .btn-shimmer {
            left: 100%;
        }

        .action-btn.ready {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
            }
        }

        /* Shake animation */
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
            20%, 40%, 60%, 80% { transform: translateX(4px); }
        }

        /* Toast Notification Styles */
        .disclaimer-toast {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 16px 24px;
            background: rgba(36, 37, 49, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            z-index: 25000;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: toastSlideIn 0.3s ease-out;
            border-left: 4px solid #667eea;
            max-width: 400px;
        }

        .toast-error {
            border-left-color: #ef4444;
        }

        .toast-success {
            border-left-color: #10b981;
        }

        .toast-info {
            border-left-color: #3b82f6;
        }

        @keyframes toastSlideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes toastSlideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(400px);
                opacity: 0;
            }
        }

        /* Mobile Responsive Styles for Disclaimer Modal */
        @media screen and (max-width: 768px) {
            .disclaimer-overlay {
                padding: 0;
                align-items: stretch;
            }

            .disclaimer-modal {
                max-width: 100%;
                width: 100%;
                max-height: 100vh;
                border-radius: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
            }

            .disclaimer-header {
                padding: 20px;
                flex-shrink: 0;
            }

            .header-content {
                gap: 12px;
            }

            .disclaimer-icon-wrapper {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .icon-pulse {
                width: 50px;
                height: 50px;
            }

            .disclaimer-icon {
                width: 48px;
                height: 48px;
                border-radius: 12px;
                font-size: 20px;
            }

            .disclaimer-title {
                font-size: 1.4rem;
            }

            .disclaimer-subtitle {
                font-size: 0.85rem;
            }

            .disclaimer-content {
                padding: 20px;
                flex: 1;
                overflow-y: auto;
                max-height: none;
                -webkit-overflow-scrolling: touch;
            }

            .info-card {
                margin-bottom: 16px;
            }

            .card-content {
                padding: 18px;
                gap: 12px;
                flex-direction: column;
                align-items: flex-start;
            }

            .card-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                border-radius: 10px;
            }

            .card-text h3 {
                font-size: 1rem;
            }

            .card-text p {
                font-size: 0.9rem;
            }

            .acknowledgment-section {
                padding: 20px;
                margin-top: 20px;
            }

            .section-header h3 {
                font-size: 1.1rem;
            }

            .section-header p {
                font-size: 0.85rem;
            }

            .checkbox-group {
                gap: 12px;
            }

            .checkbox-item {
                padding: 10px;
            }

            .checkbox-custom {
                width: 20px;
                height: 20px;
                min-width: 20px;
            }

            .checkbox-label {
                font-size: 0.9rem;
            }

            .risk-disclosure {
                padding: 14px;
                margin-top: 16px;
            }

            .disclosure-icon {
                font-size: 16px;
            }

            .risk-disclosure p {
                font-size: 0.85rem;
            }

            .disclaimer-footer {
                padding: 16px 20px;
                flex-shrink: 0;
                flex-direction: column;
                gap: 10px;
            }

            .action-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
                font-size: 0.95rem;
            }

            .btn-secondary {
                order: 2;
            }

            .btn-primary {
                order: 1;
            }

            .disclaimer-toast {
                top: 10px;
                right: 10px;
                left: 10px;
                max-width: none;
                padding: 14px 18px;
                font-size: 0.9rem;
            }

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

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

        /* Small mobile devices */
        @media screen and (max-width: 480px) {
            .disclaimer-header {
                padding: 16px;
            }

            .header-content {
                gap: 10px;
            }

            .disclaimer-icon {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            .disclaimer-title {
                font-size: 1.25rem;
            }

            .disclaimer-subtitle {
                font-size: 0.8rem;
            }

            .disclaimer-content {
                padding: 16px;
            }

            .card-content {
                padding: 16px;
            }

            .card-text h3 {
                font-size: 0.95rem;
            }

            .card-text p {
                font-size: 0.85rem;
            }

            .acknowledgment-section {
                padding: 16px;
            }

            .section-header h3 {
                font-size: 1rem;
            }

            .section-header p {
                font-size: 0.8rem;
            }

            .checkbox-label {
                font-size: 0.85rem;
            }

            .disclaimer-footer {
                padding: 14px 16px;
            }

            .action-btn {
                padding: 12px 18px;
                font-size: 0.9rem;
            }
        }

/* Additional utility classes for previously inline styles */
.logo-fallback {
    display: none !important;
    width: 240px;
    height: 150px;
    background: linear-gradient(135deg, #00f2fe 0%, #764ba2 100%);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 700;
}

.demo-section-title {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.demo-empty-state {
    color: var(--text-muted);
    text-align: center;
    padding: 80px 20px;
}

.demo-empty-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.disclaimer-initial-state {
    display: none;
    opacity: 0;
}

.disclaimer-terms-intro {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 12px;
}

/* X (Twitter) icon SVG styling */
.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(0, 242, 254, 0.5));
}

/* Dynamic Demo Results Styles */
.demo-loading {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    text-align: center;
}

.demo-loading i {
    font-size: 2rem;
}

.demo-loading p {
    margin-top: 10px;
}

.demo-error {
    color: #e74c3c;
    text-align: center;
    padding: 40px 20px;
}

.demo-error i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.demo-success {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 0.95rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.demo-success > *:first-child,
.demo-success .formatted-response > *:first-child {
    margin-top: 0 !important;
}

.demo-success p {
    margin: 0 0 16px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.8;
}

.demo-success p:last-child {
    margin-bottom: 0;
}

.demo-empty-response {
    color: var(--text-muted);
    text-align: center;
    padding: 40px 20px;
}

/* Toast Notification Styles */
.disclaimer-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 30000;
    transition: transform 0.3s ease-out;
    font-size: 14px;
    font-weight: 500;
}

.toast-error {
    background: #ef4444;
}

.toast-info {
    background: #3b82f6;
}

.disclaimer-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Markdown Formatting Styles for Chat Messages */
.markdown-wrapper {
    font-size: 14px;
    word-wrap: break-word;
}

.markdown-h2 {
    color: #00f2fe;
    margin: 16px 0 8px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.markdown-h3 {
    color: #00f2fe;
    margin: 16px 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.markdown-h4 {
    color: #00f2fe;
    margin: 16px 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
}

.markdown-strong {
    color: #ffffff;
    font-weight: 600;
}

.markdown-em {
    opacity: 0.9;
}

.markdown-pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    overflow-x: auto;
}

.markdown-code {
    color: #00f2fe;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.markdown-inline-code {
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.markdown-p {
    margin: 12px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.markdown-ul,
.markdown-ol {
    margin: 12px 0;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.markdown-li {
    margin: 6px 0;
    line-height: 1.5;
}

/* ===========================
   RESPONSE FORMATTING FIXES
   Proper text formatting for demo terminal and chat widget
   =========================== */

/* Demo Terminal Response Formatting */
.demo-success {
    color: var(--text-primary);
    line-height: 1.8;
    /* Removed background, padding, border-radius, and border-left to eliminate inner blue box */
    font-size: 0.95rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.demo-success p {
    margin: 0 0 16px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.8;
}

.demo-success p:last-child {
    margin-bottom: 0;
}

/* Demo Results Enhanced Formatting */
.demo-results {
    font-family: 'Inter', -apple-system, sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.demo-results .formatted-response {
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.8;
    font-size: 0.95rem;
}

.demo-results h2 {
    color: var(--accent-cyan);
    font-size: 1.4rem;
    margin: 0 0 16px 0;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 242, 254, 0.2);
}

.demo-results h2:first-child {
    margin-top: 0;
}

.demo-results h3 {
    color: var(--accent-cyan);
    font-size: 1.15rem;
    margin: 20px 0 12px 0;
    font-weight: 600;
}

.demo-results h3:first-child {
    margin-top: 0;
}

.demo-results strong {
    color: #ffffff;
    font-weight: 600;
}

.demo-results ul,
.demo-results ol {
    margin: 16px 0;
    padding-left: 28px;
    line-height: 1.8;
}

.demo-results li {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.85);
}

.demo-results li strong {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--accent-cyan);
}

/* Paragraph formatting in demo */
.demo-results p {
    margin: 16px 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.demo-results p:first-child {
    margin-top: 0;
}

.demo-results p:last-child {
    margin-bottom: 0;
}

/* Chat Widget Message Formatting - Enhanced */
.message-content {
    flex: 1;
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.8;
    word-break: break-word;
    max-width: 100%;
    white-space: pre-wrap;
}

/* Bot Message Enhanced Formatting */
.bot-message .message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Structured content in chat messages */
.chat-message .formatted-text {
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.8;
}

.chat-message h2 {
    color: #00f2fe;
    font-size: 1.1rem;
    margin: 16px 0 10px 0;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 242, 254, 0.2);
}

.chat-message h3 {
    color: #00f2fe;
    font-size: 1rem;
    margin: 14px 0 8px 0;
    font-weight: 600;
    line-height: 1.3;
}

.chat-message h2:first-child,
.chat-message h3:first-child {
    margin-top: 0;
}

.chat-message p {
    margin: 12px 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.chat-message p:first-child {
    margin-top: 0;
}

.chat-message p:last-child {
    margin-bottom: 0;
}

.chat-message strong,
.chat-message b {
    color: #ffffff;
    font-weight: 600;
}

.chat-message em,
.chat-message i {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.chat-message ul,
.chat-message ol {
    margin: 12px 0;
    padding-left: 24px;
    line-height: 1.6;
}

.chat-message ul {
    list-style-type: disc;
}

.chat-message ol {
    list-style-type: decimal;
}

.chat-message li {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.chat-message li::marker {
    color: rgba(0, 242, 254, 0.7);
}

/* Definition lists for key-value pairs */
.chat-message dl {
    margin: 16px 0;
}

.chat-message dt {
    color: var(--accent-cyan);
    font-weight: 600;
    margin: 12px 0 4px 0;
}

.chat-message dd {
    margin: 4px 0 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Code formatting in responses */
.chat-message code,
.demo-results code {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.9em;
    color: #00f2fe;
}

.chat-message pre,
.demo-results pre {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
    overflow-x: auto;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.chat-message pre code,
.demo-results pre code {
    background: none;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
}

/* Blockquote for emphasis */
.chat-message blockquote,
.demo-results blockquote {
    border-left: 3px solid rgba(0, 242, 254, 0.5);
    margin: 16px 0;
    padding: 8px 0 8px 16px;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

/* Links in responses */
.chat-message a,
.demo-results a {
    color: #00f2fe;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 242, 254, 0.3);
    transition: all 0.2s ease;
}

.chat-message a:hover,
.demo-results a:hover {
    color: #64d9ff;
    border-bottom-color: #64d9ff;
}

/* Horizontal rule */
.chat-message hr,
.demo-results hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Tables in responses */
.chat-message table,
.demo-results table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9em;
}

.chat-message table th,
.demo-results table th,
.chat-message table td,
.demo-results table td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    text-align: left;
}

.chat-message table th,
.demo-results table th {
    background: rgba(0, 242, 254, 0.1);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.chat-message table tr:hover,
.demo-results table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Special formatting for crypto explanations */
.crypto-definition {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
}

.crypto-definition h3 {
    color: var(--accent-cyan);
    margin-top: 0;
}

/* Key points highlighting */
.key-points {
    background: rgba(118, 75, 162, 0.1);
    border-left: 4px solid var(--accent-purple);
    padding: 16px;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
}

.key-points h4 {
    color: var(--accent-purple);
    margin: 0 0 12px 0;
    font-size: 1rem;
}

/* Typing indicator styles */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.6);
    animation: typingBounce 1.4s ease-in-out infinite both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dot:nth-child(3) { animation-delay: 0s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading state for formatted content */
.formatting-content {
    animation: fadeIn 0.3s ease-in;
}

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

/* Tablet responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .what-is-mirror-section {
        padding: 70px 0;
    }
    
    .perfect-for-section-wrapper {
        padding: 80px 0;
    }
    
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .use-case-card {
        padding: 2rem;
    }
    
    .description-header {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .use-case-header h5 {
        font-size: 1.3rem;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    /* Hide floating decorative elements on mobile */
    .floating-elements,
    .feature-badges,
    .floating-particle,
    .feature-badge {
        display: none !important;
    }
    
    .demo-success {
        font-size: 0.9rem;
    }
    
    .chat-message .message-content {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .chat-message h2 {
        font-size: 1rem;
    }
    
    .chat-message h3 {
        font-size: 0.95rem;
    }
    
    .chat-message p,
    .demo-results p {
        font-size: 0.9rem;
    }
    
    .chat-message li,
    .demo-results li {
        font-size: 0.9rem;
    }
    
    /* What is Mirror AI Section - Mobile */
    .what-is-mirror-section {
        padding: 60px 0;
    }
    
    /* Perfect For Section - Mobile */
    .perfect-for-section-wrapper {
        padding: 60px 0;
    }
    
    /* Hero Description - Mobile */
    .description-header {
        font-size: 2rem;
    }
    
    .description-intro {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-card {
        padding: 1.75rem;
    }
    
    .use-case-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .use-case-header i {
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
    }
    
    .use-case-header h5 {
        font-size: 1.25rem;
    }
    
    .use-case-list li {
        font-size: 0.95rem;
        gap: 0.85rem;
        margin-bottom: 1rem;
    }
    
    /* Blog CTA Section - Mobile */
    .blog-cta-section {
        padding: 80px 20px;
    }
    
    .blog-cta-container {
        padding: 0 10px;
    }
    
    .blog-cta-card {
        padding: 50px 28px;
        border-radius: 24px;
        border-width: 2px;
    }
    
    .blog-cta-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .blog-cta-heading {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .blog-cta-description {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 32px;
    }
    
    .blog-cta-button .button-content {
        padding: 16px 36px;
        gap: 12px;
    }
    
    .blog-cta-button .button-text {
        font-size: 1rem;
    }
    
    .blog-cta-button .button-content i:first-child {
        font-size: 1.1rem;
    }
    
    .blog-cta-button .button-content i:last-child {
        font-size: 1rem;
    }
    
    /* Hide blog decorative particles and rings on mobile */
    .blog-cta-bg-elements,
    .blog-particle,
    .blog-accent-ring {
        display: none !important;
    }
}

/* ============================================
   TEAM SECTION - GLASSMORPHIC CARDS
   ============================================ */

.team-section {
    position: relative;
    padding: 8rem 2rem;
    background: transparent;
    overflow: hidden;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.team-section .section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(0, 242, 254, 0.2));
    border: 2px solid rgba(102, 126, 234, 0.4);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.team-section .section-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.team-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Team Card */
.team-card {
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out backwards;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }

.team-card-inner {
    position: relative;
    padding: 3rem 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    overflow: hidden;
}

.team-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.3) 0%, 
        rgba(0, 242, 254, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-card-inner {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(102, 126, 234, 0.3);
}

.team-card:hover .team-card-inner::before {
    opacity: 1;
}

/* Profile Image */
.profile-image-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
}

.gradient-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #00f2fe 100%);
    animation: rotate 3s linear infinite;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.team-card:hover .gradient-ring {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

.profile-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(10, 14, 39, 0.8);
    transition: transform 0.4s ease;
}

.team-card:hover .profile-image {
    transform: scale(1.05);
}

/* Member Info */
.member-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00f2fe 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.member-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 119, 181, 0.2);
    border: 1px solid rgba(0, 119, 181, 0.4);
    color: #0077b5;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.linkedin-link:hover {
    background: rgba(0, 119, 181, 0.3);
    border-color: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 14, 39, 0.92) 0%, 
        rgba(10, 14, 39, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.team-card:hover .hover-overlay {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.preview-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 2rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* ============================================
   TEAM SECTION V2 - PREMIUM REDESIGN
   ============================================ */

.team-section-v2 {
    position: relative;
    padding: 8rem 2rem 10rem;
    overflow: hidden;
    background: transparent;
}

/* Ambient Background Effects */
.team-ambient-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.team-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.team-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.6) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.team-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.5) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -7s;
}

.team-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

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

/* Container */
.team-container-v2 {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

/* Section Header */
.team-header-v2 {
    text-align: center;
    margin-bottom: 5rem;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(0, 242, 254, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 100px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea 0%, #00f2fe 100%);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-title-v2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.team-subtitle-v2 {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.team-header-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #00f2fe 100%);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.team-header-line::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(8px);
    opacity: 0.6;
}

/* Team Grid */
.team-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Team Card */
.team-card-v2 {
    position: relative;
    border-radius: 28px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: cardFadeIn 0.8s ease-out backwards;
}

.team-card-v2:nth-child(1) { animation-delay: 0.1s; }
.team-card-v2:nth-child(2) { animation-delay: 0.25s; }
.team-card-v2:nth-child(3) { animation-delay: 0.4s; }

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

.team-card-v2:hover {
    transform: translateY(-12px);
}

/* Card Glow Effect */
.card-glow-effect {
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.4) 0%, 
        rgba(118, 75, 162, 0.3) 50%,
        rgba(0, 242, 254, 0.4) 100%);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    z-index: 0;
}

.team-card-v2:hover .card-glow-effect {
    opacity: 1;
}

/* Card Content */
.card-content-v2 {
    position: relative;
    background: linear-gradient(180deg, 
        rgba(26, 31, 58, 0.7) 0%, 
        rgba(15, 19, 42, 0.9) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem 2rem;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.team-card-v2:hover .card-content-v2 {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Card Border Glow */
.card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.5) 0%, 
        rgba(0, 242, 254, 0.5) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.team-card-v2:hover .card-border-glow {
    opacity: 1;
}

/* Profile Section */
.profile-section-v2 {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
}

.profile-ring-outer {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(102, 126, 234, 0.8) 0deg,
        rgba(118, 75, 162, 0.6) 120deg,
        rgba(0, 242, 254, 0.8) 240deg,
        rgba(102, 126, 234, 0.8) 360deg
    );
    animation: ringRotate 8s linear infinite;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.team-card-v2:hover .profile-ring-outer {
    opacity: 1;
    animation-duration: 4s;
}

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

.profile-ring-inner {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: rgba(15, 19, 42, 1);
}

.profile-ring-pulse {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    animation: ringPulse 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card-v2:hover .profile-ring-pulse {
    opacity: 1;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.profile-image-container-v2 {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.profile-img-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.team-card-v2:hover .profile-img-v2 {
    transform: scale(1.08);
}

.profile-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.team-card-v2:hover .profile-shimmer {
    transform: translateX(100%);
}

/* Member Info */
.member-info-v2 {
    margin-bottom: 1.5rem;
}

.member-name-v2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.team-card-v2:hover .member-name-v2 {
    background: linear-gradient(135deg, #00f2fe 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-role-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.role-icon {
    color: #667eea;
    font-size: 0.75rem;
}

.role-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.member-bio-v2 {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
    margin: 0 auto;
}

/* Card Footer */
.card-footer-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.linkedin-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(0, 119, 181, 0.15);
    border: 1px solid rgba(0, 119, 181, 0.3);
    border-radius: 100px;
    color: #0a66c2;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.linkedin-btn-v2:hover {
    background: rgba(0, 119, 181, 0.25);
    border-color: #0a66c2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.25);
}

.linkedin-btn-v2 i {
    font-size: 1rem;
}

.linkedin-btn-v2 span {
    display: none;
}

.bio-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bio-btn-v2:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
}

.bio-btn-v2 i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.bio-btn-v2:hover i {
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .team-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .card-content-v2 {
        padding: 2.5rem 1.5rem 1.75rem;
    }
    
    .profile-section-v2 {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 900px) {
    .team-section-v2 {
        padding: 5rem 1.5rem 6rem;
    }
    
    .team-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
    }
    
    .team-card-v2:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .team-section-v2 {
        padding: 4rem 1rem 5rem;
    }
    
    .team-header-v2 {
        margin-bottom: 3rem;
    }
    
    .team-badge {
        padding: 0.5rem 1rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .team-title-v2 {
        font-size: 1.875rem;
    }
    
    .team-subtitle-v2 {
        font-size: 1rem;
    }
    
    .team-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 380px;
    }
    
    .team-card-v2:nth-child(3) {
        max-width: none;
    }
    
    .card-content-v2 {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .profile-section-v2 {
        width: 130px;
        height: 130px;
    }
    
    .member-name-v2 {
        font-size: 1.375rem;
    }
    
    .member-role-v2 {
        padding: 0.4rem 0.8rem;
    }
    
    .role-text {
        font-size: 0.75rem;
    }
    
    .member-bio-v2 {
        font-size: 0.85rem;
    }
    
    .card-footer-v2 {
        gap: 0.75rem;
    }
    
    .linkedin-btn-v2,
    .bio-btn-v2 {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   END TEAM SECTION V2
   ============================================ */

/* Team Modal */
.team-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.team-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 800px;
    max-height: 85vh;
    width: 100%;
    background: linear-gradient(180deg, 
        rgba(26, 31, 58, 0.95) 0%, 
        rgba(10, 14, 39, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 3rem;
    overflow-y: auto;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(102, 126, 234, 0.3);
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
    transform: rotate(90deg);
}

/* Modal Body Content */
.modal-body {
    text-align: center;
}

.modal-profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(102, 126, 234, 0.4);
    margin: 0 auto 2rem;
    display: block;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.modal-name {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f2fe 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.modal-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 119, 181, 0.2);
    border: 1px solid rgba(0, 119, 181, 0.4);
    border-radius: 50px;
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.modal-linkedin:hover {
    background: rgba(0, 119, 181, 0.3);
    border-color: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.modal-section {
    text-align: left;
    margin-bottom: 2.5rem;
}

.modal-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00f2fe;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section-title i {
    font-size: 1.2rem;
}

.modal-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

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

.modal-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.modal-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #00f2fe;
    font-size: 0.9rem;
}

/* Team Section Responsive Design */
@media (max-width: 1024px) {
    .team-section {
        padding: 6rem 1.5rem;
    }
    
    .team-section .section-title {
        font-size: 2.5rem;
    }
    
    .team-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 1rem;
    }
    
    .team-section .section-title {
        font-size: 2rem;
    }
    
    .team-section .section-subtitle {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .profile-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .member-name {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .modal-profile-image {
        width: 150px;
        height: 150px;
    }
    
    .modal-name {
        font-size: 2rem;
    }
    
    /* On mobile, skip hover overlay - tap goes straight to modal */
    .hover-overlay {
        display: none;
    }
}

/* Scrollbar Styling for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #00f2fe 100%);
}

