/* ============================================
           CSS VARIABLES - LIGHT & DARK THEMES
        ============================================ */
        :root {
            /* Light Mode */
            --bg-primary: #fafbfc;
            --bg-secondary: #ffffff;
            --bg-tertiary: #f0f4f8;
            --bg-card: #ffffff;
            --bg-card-hover: #f8fafc;
            --text-primary: #0a0f1e;
            --text-secondary: #4a5568;
            --text-tertiary: #718096;
            --text-muted: #a0aec0;
            
            /* Brand Colors */
            --brand-primary: #6366f1;
            --brand-secondary: #8b5cf6;
            --brand-tertiary: #ec4899;
            --brand-blue: #3b82f6;
            --brand-cyan: #06b6d4;
            --brand-green: #10b981;
            --brand-orange: #f97316;
            --brand-red: #ef4444;
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
            --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
            --gradient-tertiary: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
            --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
            --gradient-cool: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
            --gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
            --gradient-mesh: radial-gradient(at 40% 20%, hsla(240, 100%, 74%, 0.3) 0px, transparent 50%),
                            radial-gradient(at 80% 0%, hsla(280, 100%, 70%, 0.2) 0px, transparent 50%),
                            radial-gradient(at 0% 50%, hsla(340, 100%, 76%, 0.2) 0px, transparent 50%),
                            radial-gradient(at 80% 50%, hsla(200, 100%, 76%, 0.15) 0px, transparent 50%),
                            radial-gradient(at 0% 100%, hsla(260, 100%, 77%, 0.2) 0px, transparent 50%);
            
            /* Borders & Shadows */
            --border-light: #e2e8f0;
            --border-medium: #cbd5e1;
            --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
            --shadow-2xl: 0 24px 64px rgba(0,0,0,0.14);
            --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);
            
            /* Glass Effect */
            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.5);
            --glass-blur: blur(20px);
            
            /* Transitions */
            --transition-fast: 0.15s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        [data-theme="dark"] {
            --bg-primary: #0a0a0f;
            --bg-secondary: #12121a;
            --bg-tertiary: #1a1a25;
            --bg-card: #16161f;
            --bg-card-hover: #1e1e2a;
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --text-tertiary: #94a3b8;
            --text-muted: #64748b;
            --border-light: #2d2d3a;
            --border-medium: #3d3d4a;
            --shadow-xs: 0 1px 2px rgba(0,0,0,0.2);
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.6);
            --shadow-2xl: 0 24px 64px rgba(0,0,0,0.7);
            --glass-bg: rgba(22, 22, 31, 0.9);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        /* ============================================
           RESET & BASE STYLES
        ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background var(--transition-slow), color var(--transition-slow);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-tertiary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
        }

        ::selection {
            background: var(--brand-primary);
            color: white;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
        }

        /* ============================================
           ANIMATED BACKGROUND
        ============================================ */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -2;
            overflow: hidden;
        }

        .bg-gradient-mesh {
            position: absolute;
            inset: 0;
            background: var(--gradient-mesh);
            opacity: 0.6;
            animation: meshMove 20s ease-in-out infinite;
        }

        @keyframes meshMove {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(-20px, 20px) scale(1.02); }
            50% { transform: translate(20px, -10px) scale(0.98); }
            75% { transform: translate(-10px, -20px) scale(1.01); }
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: orbFloat 15s ease-in-out infinite;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: var(--brand-primary);
            top: -150px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: var(--brand-secondary);
            top: 40%;
            right: -100px;
            animation-delay: -5s;
        }

        .orb-3 {
            width: 350px;
            height: 350px;
            background: var(--brand-tertiary);
            bottom: -100px;
            left: 30%;
            animation-delay: -10s;
        }

        .orb-4 {
            width: 300px;
            height: 300px;
            background: var(--brand-cyan);
            top: 60%;
            left: 10%;
            animation-delay: -7s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.95); }
        }

        /* Grid Pattern */
        .grid-pattern {
            position: fixed;
            inset: 0;
            background-image: 
                linear-gradient(var(--border-light) 1px, transparent 1px),
                linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.4;
            pointer-events: none;
            z-index: -1;
            mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
        }
        /* ============================================
           HERO SECTION
        ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 2rem 100px;
            position: relative;
        }

        .hero-container {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Hero Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease both;
            box-shadow: var(--shadow-sm);
        }

        .hero-badge i {
            color: var(--brand-primary);
            animation: sparkle 2s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.2); }
        }

        .hero-badge-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        /* Hero Title */
        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero-title .line {
            display: block;
            animation: fadeInUp 0.8s ease both;
        }

        .hero-title .line:nth-child(1) { animation-delay: 0.1s; }
        .hero-title .line:nth-child(2) { animation-delay: 0.2s; }
        .hero-title .line:nth-child(3) { animation-delay: 0.3s; }

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .gradient-text-animated {
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #f97316, #6366f1);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 4s linear infinite;
        }

        @keyframes gradientFlow {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        /* Hero Description */
        .hero-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            max-width: 540px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-description strong {
            color: var(--text-primary);
        }

        /* Hero Tools */
        .hero-tools {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.5s both;
        }

        .hero-tools-label {
            font-size: 0.85rem;
            color: var(--text-tertiary);
            font-weight: 500;
        }

        .tool-icons {
            display: flex;
            gap: 8px;
        }

        .tool-icon {
            width: 40px;
            height: 40px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all var(--transition-normal);
            position: relative;
        }

        .tool-icon:hover {
            transform: translateY(-3px);
            border-color: var(--brand-primary);
            box-shadow: var(--shadow-md);
        }

        .tool-icon.canva { color: #00c4cc; }
        .tool-icon.photoshop { color: #31a8ff; }
        .tool-icon.illustrator { color: #ff9a00; }
        .tool-icon.figma { color: #f24e1e; }
        .tool-icon.corel { color: #76b900; }

        .tool-icon::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-card);
            color: var(--text-primary);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
        }

        .tool-icon:hover::after {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .hero-buttons .btn {
            padding: 16px 32px;
            font-size: 1rem;
        }

        .hero-buttons .btn i {
            font-size: 1.1rem;
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
            animation: fadeInUp 0.8s ease 0.7s both;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-tertiary);
            margin-top: 4px;
        }

        /* ============================================
           HERO VISUAL - 3D FLOATING INTERFACE
        ============================================ */
        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease 0.4s both;
        }

        .visual-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            perspective: 1500px;
        }

        /* Central Platform */
        .central-platform {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            z-index: 10;
        }

        .platform-core {
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: corePulse 4s ease-in-out infinite;
            box-shadow: 
                0 0 60px rgba(99, 102, 241, 0.4),
                0 20px 60px rgba(139, 92, 246, 0.3);
        }

        @keyframes corePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .platform-core::before {
            content: '';
            position: absolute;
            inset: 3px;
            background: var(--bg-primary);
            border-radius: 37px;
            transition: background var(--transition-slow);
        }

        .platform-core i {
            position: relative;
            z-index: 2;
            font-size: 4rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* Orbit Rings */
        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border: 1px dashed var(--border-medium);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.5;
        }

        .orbit-ring-1 {
            width: 300px;
            height: 300px;
            animation: orbitRotate 30s linear infinite;
        }

        .orbit-ring-2 {
            width: 420px;
            height: 420px;
            animation: orbitRotate 40s linear infinite reverse;
        }

        .orbit-ring-3 {
            width: 540px;
            height: 540px;
            animation: orbitRotate 50s linear infinite;
        }

        @keyframes orbitRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Floating Module Cards */
        .module-float-card {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 1.25rem;
            box-shadow: var(--shadow-xl);
            transition: all var(--transition-normal);
            cursor: pointer;
            animation: cardFloat 6s ease-in-out infinite;
        }

        .module-float-card:hover {
            transform: translateY(-10px) scale(1.05) !important;
            box-shadow: var(--shadow-2xl);
            border-color: var(--brand-primary);
        }

        .card-1 {
            top: 5%;
            left: 5%;
            width: 160px;
            animation-delay: 0s;
        }

        .card-2 {
            top: 8%;
            right: 8%;
            width: 150px;
            animation-delay: -1s;
        }

        .card-3 {
            bottom: 25%;
            left: 0%;
            width: 170px;
            animation-delay: -2s;
        }

        .card-4 {
            bottom: 8%;
            right: 5%;
            width: 155px;
            animation-delay: -3s;
        }

        .card-5 {
            bottom: 5%;
            left: 25%;
            width: 145px;
            animation-delay: -4s;
        }

        .card-6 {
            top: 35%;
            right: 0%;
            width: 140px;
            animation-delay: -2.5s;
        }

        .card-7 {
            top: 38%;
            left: -5%;
            width: 135px;
            animation-delay: -3.5s;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(1deg); }
        }

        .module-card-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
            color: white;
        }

        .module-card-icon.graphic { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
        .module-card-icon.video { background: linear-gradient(135deg, #ec4899, #f43f5e); }
        .module-card-icon.shorts { background: linear-gradient(135deg, #f97316, #eab308); }
        .module-card-icon.uiux { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
        .module-card-icon.ppt { background: linear-gradient(135deg, #10b981, #06b6d4); }
        .module-card-icon.card { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
        .module-card-icon.ai { background: linear-gradient(135deg, #6366f1, #3b82f6); }

        .module-card-title {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-primary);
            margin-bottom: 3px;
        }

        .module-card-desc {
            font-size: 0.7rem;
            color: var(--text-tertiary);
        }

        /* ============================================
           SECTION STYLES
        ============================================ */
        section {
            padding: 120px 2rem;
            position: relative;
        }

        .section-container {
            max-width: 1440px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--brand-primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.5rem;
        }

        .section-tag i {
            font-size: 0.9rem;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.25rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 650px;
            margin: 0 auto;
        }

        /* ============================================
           ABOUT SECTION
        ============================================ */
        .about-section {
            background: var(--bg-secondary);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-image-stack {
            position: relative;
            height: 550px;
        }

        .about-image-main {
            position: absolute;
            top: 0;
            left: 0;
            width: 85%;
            height: 400px;
            background: var(--gradient-primary);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .about-image-main-content {
            text-align: center;
            color: white;
            padding: 2rem;
        }

        .about-image-main-content i {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .about-image-main-content h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .about-image-main-content p {
            opacity: 0.8;
            font-size: 1rem;
        }

        .about-image-secondary {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 65%;
            height: 280px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            padding: 2rem;
            z-index: 3;
        }

        .tools-showcase {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            height: 100%;
        }

        .tool-showcase-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--bg-tertiary);
            border-radius: 16px;
            padding: 1rem;
            transition: all var(--transition-normal);
        }

        .tool-showcase-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .tool-showcase-item i {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .tool-showcase-item span {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-tertiary);
            text-align: center;
        }

        .about-decoration-1 {
            position: absolute;
            top: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: var(--gradient-tertiary);
            border-radius: 30px;
            opacity: 0.3;
            z-index: 1;
        }

        .about-decoration-2 {
            position: absolute;
            bottom: 100px;
            left: -40px;
            width: 100px;
            height: 100px;
            background: var(--gradient-warm);
            border-radius: 50%;
            opacity: 0.2;
            z-index: 1;
        }

        .about-content {
            padding-right: 2rem;
        }

        .about-content .section-tag {
            margin-bottom: 1rem;
        }

        .about-content h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-content > p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.25rem;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-normal);
        }

        .highlight-icon i {
            font-size: 1.2rem;
            color: var(--brand-primary);
        }

        .highlight-item:hover .highlight-icon {
            background: var(--gradient-primary);
        }

        .highlight-item:hover .highlight-icon i {
            color: white;
        }

        .highlight-content h4 {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .highlight-content p {
            font-size: 0.9rem;
            color: var(--text-tertiary);
        }

        /* ============================================
           INSPIRATION SECTION (Combined Tools)
        ============================================ */
        .inspiration-section {
            overflow: hidden;
        }

        .inspiration-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }

        .inspiration-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 2rem;
            text-align: center;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .inspiration-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--card-accent, var(--gradient-primary));
            transform: scaleX(0);
            transition: transform var(--transition-normal);
        }

        .inspiration-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .inspiration-card:hover::before {
            transform: scaleX(1);
        }

        .inspiration-card.canva { --card-accent: linear-gradient(135deg, #00c4cc, #7c3aed); }
        .inspiration-card.photoshop { --card-accent: linear-gradient(135deg, #31a8ff, #001e36); }
        .inspiration-card.illustrator { --card-accent: linear-gradient(135deg, #ff9a00, #ff7c00); }
        .inspiration-card.coreldraw { --card-accent: linear-gradient(135deg, #76b900, #40a900); }
        .inspiration-card.figma { --card-accent: linear-gradient(135deg, #f24e1e, #a259ff); }

        .inspiration-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .inspiration-card.canva .inspiration-icon { background: linear-gradient(135deg, #00c4cc, #7c3aed); color: white; }
        .inspiration-card.photoshop .inspiration-icon { background: linear-gradient(135deg, #31a8ff, #001e36); color: white; }
        .inspiration-card.illustrator .inspiration-icon { background: linear-gradient(135deg, #ff9a00, #ff7c00); color: white; }
        .inspiration-card.coreldraw .inspiration-icon { background: linear-gradient(135deg, #76b900, #40a900); color: white; }
        .inspiration-card.figma .inspiration-icon { background: linear-gradient(135deg, #f24e1e, #a259ff); color: white; }

        .inspiration-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .inspiration-features {
            list-style: none;
            text-align: left;
        }

        .inspiration-features li {
            font-size: 0.85rem;
            color: var(--text-secondary);
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .inspiration-features li i {
            color: var(--brand-green);
            font-size: 0.75rem;
        }

        /* ============================================
           UNIQUE FEATURES (USP) SECTION
        ============================================ */
        .usp-section {
            background: var(--bg-secondary);
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }

        .usp-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 28px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .usp-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity var(--transition-normal);
            z-index: 0;
        }

        .usp-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: transparent;
            box-shadow: var(--shadow-2xl);
        }

        .usp-card:hover::after {
            opacity: 0.05;
        }

        .usp-card > * {
            position: relative;
            z-index: 1;
        }

        .usp-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-primary);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all var(--transition-normal);
        }

        .usp-icon::before {
            content: '';
            position: absolute;
            inset: 3px;
            background: var(--bg-card);
            border-radius: 25px;
            transition: all var(--transition-normal);
        }

        .usp-card:hover .usp-icon::before {
            opacity: 0;
        }

        .usp-icon i {
            position: relative;
            z-index: 2;
            font-size: 2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all var(--transition-normal);
        }

        .usp-card:hover .usp-icon i {
            color: white;
            -webkit-text-fill-color: white;
        }

        .usp-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .usp-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============================================
           MODULES SECTION
        ============================================ */
        .modules-section {
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .modules-bento {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, auto);
            gap: 1.5rem;
        }

        .module-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 2rem;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .module-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--module-color, var(--gradient-primary));
            opacity: 0;
            transition: opacity var(--transition-normal);
        }

        .module-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .module-card:hover::before {
            opacity: 1;
        }

        .module-card.featured {
            grid-column: span 2;
            grid-row: span 2;
            padding: 3rem;
            background: var(--gradient-primary);
            color: white;
        }

        .module-card.featured .module-icon {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }

        .module-card.featured .module-icon i {
            color: white;
        }

        .module-card.featured h3,
        .module-card.featured p {
            color: white;
        }

        .module-card.featured p {
            opacity: 0.9;
        }

        .module-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all var(--transition-normal);
        }

        .module-icon i {
            font-size: 1.8rem;
        }

        .module-card:not(.featured) .module-icon {
            background: var(--module-bg, rgba(99, 102, 241, 0.1));
        }

        .module-card:not(.featured) .module-icon i {
            color: var(--module-color-solid, var(--brand-primary));
        }

        .module-card[data-module="graphic"] { --module-color: linear-gradient(135deg, #6366f1, #8b5cf6); --module-bg: rgba(99, 102, 241, 0.1); --module-color-solid: #6366f1; }
        .module-card[data-module="video"] { --module-color: linear-gradient(135deg, #ec4899, #f43f5e); --module-bg: rgba(236, 72, 153, 0.1); --module-color-solid: #ec4899; }
        .module-card[data-module="shorts"] { --module-color: linear-gradient(135deg, #f97316, #eab308); --module-bg: rgba(249, 115, 22, 0.1); --module-color-solid: #f97316; }
        .module-card[data-module="uiux"] { --module-color: linear-gradient(135deg, #3b82f6, #06b6d4); --module-bg: rgba(59, 130, 246, 0.1); --module-color-solid: #3b82f6; }
        .module-card[data-module="ppt"] { --module-color: linear-gradient(135deg, #10b981, #06b6d4); --module-bg: rgba(16, 185, 129, 0.1); --module-color-solid: #10b981; }
        .module-card[data-module="bizcard"] { --module-color: linear-gradient(135deg, #8b5cf6, #ec4899); --module-bg: rgba(139, 92, 246, 0.1); --module-color-solid: #8b5cf6; }

        .module-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .module-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .module-card.featured h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .module-features {
            margin-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .module-feature-tag {
            padding: 6px 14px;
            background: rgba(255,255,255,0.2);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* ============================================
           TARGET USERS SECTION
        ============================================ */
        .users-section {
            background: var(--bg-secondary);
        }

        .users-tabs-container {
            margin-bottom: 4rem;
        }

        .users-tabs {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            background: var(--bg-tertiary);
            padding: 8px;
            border-radius: 16px;
            max-width: 900px;
            margin: 0 auto;
        }

        .user-tab {
            padding: 14px 28px;
            background: transparent;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-normal);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .user-tab i {
            font-size: 1rem;
        }

        .user-tab.active {
            background: var(--bg-card);
            color: var(--brand-primary);
            box-shadow: var(--shadow-md);
        }

        .user-tab:not(.active):hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.5);
        }

        .users-content-container {
            min-height: 400px;
        }

        .users-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .users-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .user-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .user-feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 1.75rem;
            display: flex;
            gap: 1.25rem;
            transition: all var(--transition-normal);
        }

        .user-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--brand-primary);
        }

        .user-feature-icon {
            width: 55px;
            height: 55px;
            min-width: 55px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-normal);
        }

        .user-feature-icon i {
            font-size: 1.3rem;
            color: var(--brand-primary);
        }

        .user-feature-card:hover .user-feature-icon {
            background: var(--gradient-primary);
        }

        .user-feature-card:hover .user-feature-icon i {
            color: white;
        }

        .user-feature-content h4 {
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }

        .user-feature-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ============================================
           AI & TECH STACK SECTION
        ============================================ */
        .tech-section {
            background: var(--bg-primary);
            position: relative;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }

        .tech-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all var(--transition-normal);
        }

        .tech-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .tech-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .tech-card:nth-child(1) .tech-icon { background: linear-gradient(135deg, #61dafb, #3178c6); }
        .tech-card:nth-child(2) .tech-icon { background: linear-gradient(135deg, #68a063, #3c873a); }
        .tech-card:nth-child(3) .tech-icon { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
        .tech-card:nth-child(4) .tech-icon { background: linear-gradient(135deg, #ec4899, #f43f5e); }
        .tech-card:nth-child(5) .tech-icon { background: linear-gradient(135deg, #3b82f6, #06b6d4); }

        .tech-card h3 {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .tech-list {
            list-style: none;
        }

        .tech-list li {
            font-size: 0.9rem;
            color: var(--text-secondary);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .tech-list li:last-child {
            border-bottom: none;
        }

        .tech-list li i {
            font-size: 0.8rem;
            color: var(--brand-green);
        }

        /* ============================================
           COLLABORATION & MARKETPLACE
        ============================================ */
        .collab-section {
            background: var(--bg-secondary);
        }

        .collab-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .collab-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 28px;
            padding: 3rem;
            transition: all var(--transition-normal);
        }

        .collab-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .collab-card-header {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        .collab-card-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
        }

        .collab-card:first-child .collab-card-icon {
            background: var(--gradient-secondary);
        }

        .collab-card:last-child .collab-card-icon {
            background: var(--gradient-warm);
        }

        .collab-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .collab-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .collab-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: var(--bg-tertiary);
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all var(--transition-normal);
        }

        .collab-feature:hover {
            background: rgba(99, 102, 241, 0.1);
            transform: translateX(5px);
        }

        .collab-feature i {
            color: var(--brand-primary);
            font-size: 1rem;
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: ctaRotate 40s linear infinite;
        }

        @keyframes ctaRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 25%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: var(--brand-primary);
            padding: 18px 36px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 1.05rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.3);
        }

        .btn-outline-white {
            background: transparent;
            color: white;
            padding: 18px 36px;
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 14px;
            font-weight: 600;
            font-size: 1.05rem;
        }

        .btn-outline-white:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
        }

        .cta-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .cta-stat {
            text-align: center;
        }

        .cta-stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .cta-stat-label {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-top: 4px;
        }
        /* ============================================
           ANIMATIONS
        ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1400px) {
            .inspiration-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .inspiration-card:nth-child(4),
            .inspiration-card:nth-child(5) {
                grid-column: span 1;
            }
            
            .usp-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .usp-card:nth-child(4),
            .usp-card:nth-child(5) {
                grid-column: span 1;
            }
        }

        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-description {
                margin: 0 auto 2.5rem;
            }
            
            .hero-tools {
                justify-content: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-visual {
                max-width: 600px;
                margin: 0 auto;
            }
            
            .modules-bento {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .module-card.featured {
                grid-column: span 2;
                grid-row: span 1;
            }
            
            .tech-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .about-visual {
                order: -1;
            }
            
            .about-content {
                padding-right: 0;
                text-align: center;
            }
            
            .about-highlights {
                max-width: 500px;
                margin: 2.5rem auto 0;
            }
            
            .inspiration-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .usp-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .user-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .collab-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 80px 1.5rem;
            }
            
            .hero {
                padding: 120px 1.5rem 80px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                gap: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .about-image-stack {
                height: auto;
            }
            
            .about-image-main {
                position: relative;
                width: 100%;
                height: 300px;
            }
            
            .about-image-secondary {
                position: relative;
                width: 100%;
                margin-top: -50px;
                height: auto;
            }
            
            .inspiration-grid,
            .usp-grid {
                grid-template-columns: 1fr;
            }
            
            .modules-bento {
                grid-template-columns: 1fr;
            }
            
            .module-card.featured {
                grid-column: span 1;
            }
            
            .users-tabs {
                flex-direction: column;
                align-items: stretch;
            }
            
            .user-tab {
                justify-content: center;
            }
            
            .user-features-grid {
                grid-template-columns: 1fr;
            }
            
            .tech-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .collab-features {
                grid-template-columns: 1fr;
            }
            
            .cta-stats {
                flex-direction: column;
                gap: 2rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-brand {
                grid-column: span 2;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.75rem 1rem;
            }
            
            .logo-text .main {
                font-size: 1.1rem;
            }
            
            .logo-text .sub {
                display: none;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-stats {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }
            
            .stat-item {
                text-align: center;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-buttons .btn {
                width: 100%;
            }
            
            .about-highlights {
                grid-template-columns: 1fr;
                        }
            
            .tech-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-brand {
                grid-column: span 1;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-buttons .btn {
                width: 100%;
            }
        }