        /* ─── Blur Backdrop Auth Overlay Modal ────────────────── */
        .auth-overlay {
            position: fixed !important;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 99999 !important;
            background: rgba(6, 8, 14, 0.75) !important;
            backdrop-filter: blur(14px) !important;
            -webkit-backdrop-filter: blur(14px) !important;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .auth-overlay.active {
            display: flex !important;
        }

        .auth-box {
            width: 100%;
            max-width: 420px;
            background: rgba(15, 17, 26, 0.88) !important;
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            border-radius: 24px !important;
            padding: 2.2rem 2rem !important;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(124, 58, 237, 0.25) !important;
            position: relative;
            z-index: 100000 !important;
            backdrop-filter: blur(20px) !important;
            animation: modalScaleUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes modalScaleUp {
            from {
                opacity: 0;
                transform: scale(0.92) translateY(12px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* ─── 3D shape mounts embedded per section ───────────────── */
        .shape-mount {
            position: absolute;
            pointer-events: none;
            z-index: 0;
            opacity: 0.6;
        }

        /* Ocultar figuras 3D flotantes decorativas en pantallas medianas y pequeñas donde colisionan con las tarjetas */
        @media (max-width: 1400px) {
            .shape-mount {
                display: none !important;
            }
        }

        /* Sections must be relative so shape mounts position correctly */
        section {
            position: relative;
            overflow: visible;
        }

        /* Ensure content inside sections sits clearly above background 3D shapes */
        .container {
            position: relative;
            z-index: 2;
        }

        /* ─── Scroll Reveal System ─────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        :root {
            --bg-main: #090a0f;
            --bg-card: rgba(18, 20, 29, 0.7);
            --bg-card-hover: rgba(28, 32, 48, 0.85);
            --border-color: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(124, 58, 237, 0.4);
            --primary: #7c3aed;
            --primary-glow: #9333ea;
            --secondary: #00f2fe;
            --accent-teal: #00d2b4;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-body);
            overflow-x: hidden;
            line-height: 1.6;
            position: relative;
        }

        /* Subtle global dot pattern */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
            z-index: 0;
        }

        /* Ambient Glow Backgrounds */
        .ambient-glow-1 {
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 500px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(0, 242, 254, 0.08) 50%, transparent 80%);
            filter: blur(80px);
            z-index: -1;
            pointer-events: none;
        }

        .ambient-glow-2 {
            position: absolute;
            top: 1400px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 210, 180, 0.15) 0%, transparent 70%);
            filter: blur(100px);
            z-index: -1;
            pointer-events: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navbar — scroll-aware */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(9, 10, 15, 0.6);
            border-bottom: 1px solid transparent;
            padding: 16px 0;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.35) 30%, rgba(0, 242, 254, 0.25) 70%, transparent);
        }

        .navbar.scrolled {
            background: rgba(9, 10, 15, 0.9);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

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

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-main);
        }

        .brand-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
            color: #fff;
        }

        .brand-name {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, #ffffff 0%, #d4aaff 40%, #ffffff 60%, #cbd5e1 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: logoShimmer 6s linear infinite;
        }

        @keyframes logoShimmer {
            0% {
                background-position: 0% center;
            }

            50% {
                background-position: 100% center;
            }

            100% {
                background-position: 0% center;
            }
        }

        .brand-badge {
            font-size: 0.65rem;
            text-transform: uppercase;
            font-weight: 700;
            background: rgba(124, 58, 237, 0.2);
            color: #c084fc;
            padding: 2px 8px;
            border-radius: 12px;
            border: 1px solid rgba(124, 58, 237, 0.4);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--text-main);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.12);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
            transform: skewX(-20deg);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::after {
            left: 150%;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(124, 58, 237, 0.65);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-main);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .btn-lg {
            padding: 14px 32px;
            font-size: 1.05rem;
            border-radius: 14px;
        }

        /* Hero Section */
        .hero {
            padding: 40px 0 40px;
            text-align: center;
            position: relative;
            overflow: visible;
        }

        /* Hero Side Atmospheric Glows & Badges */
        .hero-glow-left {
            position: absolute;
            top: 20%;
            left: -140px;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.24) 0%, rgba(147, 51, 234, 0.08) 50%, transparent 70%);
            filter: blur(120px);
            pointer-events: none;
            z-index: 0;
        }

        .hero-glow-right {
            position: absolute;
            top: 30%;
            right: -140px;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.20) 0%, rgba(0, 210, 180, 0.08) 50%, transparent 70%);
            filter: blur(120px);
            pointer-events: none;
            z-index: 0;
        }

        /* Global Interactive 3D Background Canvas (Spans Entire Page Scroll) */
        .global-background-3d-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 0;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 30px;
            background: rgba(124, 58, 237, 0.12);
            border: 1px solid rgba(124, 58, 237, 0.3);
            color: #c084fc;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 28px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.4rem, 5.5vw, 4.2rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1.5px;
            max-width: 920px;
            margin: 0 auto 24px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #c084fc 0%, #38bdf8 45%, #2dd4bf 80%, #a78bfa 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShimmer 5s linear infinite;
        }

        @keyframes gradientShimmer {
            0% {
                background-position: 0% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        .hero-desc {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto 40px;
            font-weight: 400;
        }

        .hero-btns {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        /* Showcase Preview Card */
        .showcase-container {
            max-width: 940px;
            margin: 0 auto;
            position: relative;
            border-radius: 24px;
            padding: 2px;
            background: conic-gradient(from var(--angle, 0deg), rgba(124, 58, 237, 0.5), rgba(0, 242, 254, 0.4), rgba(0, 210, 180, 0.3), rgba(124, 58, 237, 0.5));
            box-shadow: 0 30px 90px -15px rgba(0, 0, 0, 0.95), 0 0 50px rgba(124, 58, 237, 0.18);
            animation: rotateBorder 8s linear infinite;
        }

        @property --angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        @keyframes rotateBorder {
            to {
                --angle: 360deg;
            }
        }

        .showcase-inner {
            background: #0b0d14;
            border-radius: 22px;
            padding: 32px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 28px;
            overflow: hidden;
            position: relative;
        }

        .showcase-box {
            background: rgba(18, 21, 31, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: all 0.3s ease;
        }

        .showcase-box.highlight {
            border-color: rgba(0, 210, 180, 0.35);
            background: rgba(13, 24, 25, 0.85);
            box-shadow: 0 10px 30px rgba(0, 210, 180, 0.08);
        }

        .showcase-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            min-height: 28px;
        }

        .showcase-title {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            letter-spacing: 0.3px;
        }

        .showcase-badge {
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .badge-blue {
            background: rgba(56, 189, 248, 0.12);
            color: #38bdf8;
            border: 1px solid rgba(56, 189, 248, 0.3);
        }

        .badge-teal {
            background: rgba(45, 212, 191, 0.12);
            color: #2dd4bf;
            border: 1px solid rgba(45, 212, 191, 0.3);
        }

        .showcase-img-preview {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 14px;
            background: #07080c;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .showcase-img-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .showcase-box:hover .showcase-img-preview img {
            transform: scale(1.03);
        }

        .showcase-arrow {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            position: relative;
            padding: 0 4px;
        }

        .showcase-arrow .pulse-circle {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(0, 210, 180, 0.2));
            border: 1.5px solid rgba(0, 210, 180, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00f2fe;
            box-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
            animation: pulse 2.5s infinite;
        }

        .showcase-arrow span {
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #94a3b8;
            text-transform: uppercase;
            white-space: nowrap;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 210, 180, 0.4);
            }

            70% {
                box-shadow: 0 0 0 16px rgba(0, 210, 180, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(0, 210, 180, 0);
            }
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 60px;
        }

        .section-tag {
            color: #38bdf8;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            display: block;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 32px 24px;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(12px);
            position: relative;
            overflow: hidden;
        }

        /* Top beam light */
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:nth-child(2)::before {
            background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.7), transparent);
        }

        .feature-card:nth-child(3)::before {
            background: linear-gradient(90deg, transparent, rgba(0, 210, 180, 0.7), transparent);
        }

        .feature-card:nth-child(4)::before {
            background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.7), transparent);
        }

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

        .feature-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-glow);
            transform: translateY(-7px);
            box-shadow: 0 16px 40px rgba(124, 58, 237, 0.18), inset 0 1px 0 rgba(124, 58, 237, 0.1);
        }

        .feature-card:nth-child(2):hover {
            border-color: rgba(0, 242, 254, 0.4);
            box-shadow: 0 16px 40px rgba(0, 242, 254, 0.12), inset 0 1px 0 rgba(0, 242, 254, 0.08);
        }

        .feature-card:nth-child(3):hover {
            border-color: rgba(0, 210, 180, 0.4);
            box-shadow: 0 16px 40px rgba(0, 210, 180, 0.12), inset 0 1px 0 rgba(0, 210, 180, 0.08);
        }

        .feature-card:nth-child(4):hover {
            border-color: rgba(245, 158, 11, 0.4);
            box-shadow: 0 16px 40px rgba(245, 158, 11, 0.12), inset 0 1px 0 rgba(245, 158, 11, 0.08);
        }

        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(124, 58, 237, 0.15);
            border: 1px solid rgba(124, 58, 237, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a78bfa;
            margin-bottom: 20px;
        }

        .feature-card:nth-child(2) .feature-icon {
            background: rgba(0, 242, 254, 0.12);
            border-color: rgba(0, 242, 254, 0.3);
            color: #38bdf8;
        }

        .feature-card:nth-child(3) .feature-icon {
            background: rgba(0, 210, 180, 0.12);
            border-color: rgba(0, 210, 180, 0.3);
            color: #2dd4bf;
        }

        .feature-card:nth-child(4) .feature-icon {
            background: rgba(245, 158, 11, 0.12);
            border-color: rgba(245, 158, 11, 0.3);
            color: #fbbf24;
        }

        .feature-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* How it works */
        .workflow {
            padding: 80px 0;
            background: rgba(12, 14, 22, 0.5);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 56px;
            position: relative;
        }

        /* Connector line between steps */
        @media (min-width: 769px) {
            .steps-grid::before {
                content: '';
                position: absolute;
                top: -24px;
                left: calc(16.66% + 16px);
                right: calc(16.66% + 16px);
                height: 2px;
                background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-teal));
                opacity: 0.35;
                border-radius: 2px;
                z-index: 1;
            }
        }

        .step-card {
            background: rgba(14, 16, 26, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 18px;
            padding: 36px 24px 28px;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .step-card:hover {
            border-color: rgba(124, 58, 237, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .step-number {
            position: absolute;
            top: -18px;
            left: 24px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            font-weight: 800;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(124, 58, 237, 0.5), 0 0 0 3px rgba(124, 58, 237, 0.15);
            z-index: 2;
        }

        .step-card:nth-child(2) .step-number {
            background: linear-gradient(135deg, #0ea5e9, #0891b2);
            box-shadow: 0 4px 16px rgba(14, 165, 233, 0.5), 0 0 0 3px rgba(14, 165, 233, 0.15);
        }

        .step-card:nth-child(3) .step-number {
            background: linear-gradient(135deg, var(--accent-teal), #0d9488);
            box-shadow: 0 4px 16px rgba(0, 210, 180, 0.5), 0 0 0 3px rgba(0, 210, 180, 0.15);
        }

        .step-title {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            margin: 12px 0 10px;
        }

        .step-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* CTA Banner */
        .cta-section {
            padding: 100px 0;
            text-align: center;
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(0, 242, 254, 0.1) 100%);
            border: 1px solid rgba(124, 58, 237, 0.35);
            border-radius: 28px;
            padding: 64px 40px;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65), 0 0 60px rgba(124, 58, 237, 0.08);
            position: relative;
            overflow: hidden;
        }

        /* Top shimmer line */
        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.8) 40%, rgba(0, 242, 254, 0.6) 60%, transparent);
        }

        /* Subtle dot pattern inside */
        .cta-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 24px 24px;
            pointer-events: none;
            border-radius: 28px;
        }

        .cta-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .cta-desc {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 580px;
            margin: 0 auto 36px;
        }

        /* Compatibility Bar */
        .compat-bar {
            margin-top: 48px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .compat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .compat-list {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .compat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 8px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .compat-badge:hover {
            background: rgba(124, 58, 237, 0.12);
            border-color: rgba(167, 139, 250, 0.4);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(124, 58, 237, 0.2);
        }

        .compat-badge i {
            color: var(--primary-light, #a78bfa);
        }

        /* Showcase Categories Switcher */
        .showcase-categories {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .showcase-cat-btn {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .showcase-cat-btn:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.2);
        }

        .showcase-cat-btn.active {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(79, 70, 229, 0.35));
            border-color: #a78bfa;
            color: #ffffff;
            box-shadow: 0 0 16px rgba(124, 58, 237, 0.4);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            position: relative;
            background: radial-gradient(circle at 50% 100%, rgba(124, 58, 237, 0.06), transparent 70%);
        }

        .faq-accordion {
            max-width: 850px;
            margin: 40px auto 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .faq-item {
            background: rgba(18, 18, 28, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(12px);
        }

        .faq-item:hover {
            border-color: rgba(167, 139, 250, 0.3);
            background: rgba(22, 22, 34, 0.85);
        }

        .faq-item.active {
            border-color: rgba(124, 58, 237, 0.5);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
            background: rgba(24, 20, 40, 0.9);
        }

        .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: transparent;
            border: none;
            color: #ffffff;
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 700;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s ease, background 0.3s ease;
            color: var(--primary-light, #a78bfa);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            background: var(--primary, #7c3aed);
            color: #ffffff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
            padding: 0 24px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 0 24px 22px;
            max-height: 300px;
        }

        /* Footer */
        .footer {
            border-top: 1px solid var(--border-color);
            padding: 40px 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* Mobile responsive adjustments */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .showcase-inner {
                grid-template-columns: 1fr;
            }

            .showcase-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
            }

            .compat-list {
                gap: 8px;
            }

            .compat-badge {
                padding: 6px 12px;
                font-size: 0.75rem;
            }
        }
