
        /* ===== CSS Variables ===== */
        :root {
            --primary-blue: #3b82f6;
            --primary-purple: #8b5cf6;
            --accent-cyan: #06b6d4;
            --text-dark: #1f2937;
            --text-gray: #6b7280;
            --bg-white: #ffffff;
            --bg-light: #f9fafb;
            --bg-card: #ffffff;
        }

        /* ===== Reset & Base Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-white);
            color: var(--text-dark);
            overflow-x: hidden;
            overflow-y: scroll;
            line-height: 1.6;
        }

        /* ===== Animated Background ===== */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f0f9ff 100%);
        }

        .gradient-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg,
                    rgba(59, 130, 246, 0.03) 0%,
                    rgba(139, 92, 246, 0.03) 25%,
                    rgba(6, 182, 212, 0.03) 50%,
                    rgba(59, 130, 246, 0.03) 75%,
                    rgba(139, 92, 246, 0.03) 100%);
        }

        @keyframes gradientShift {

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

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

        /* Floating Particles - Subtle */
        .particle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0) 70%);
            animation: floatParticle 25s infinite ease-in-out;
        }

        @keyframes floatParticle {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            25% {
                transform: translate(150px, -150px) scale(1.2);
                opacity: 0.5;
            }

            50% {
                transform: translate(-100px, -250px) scale(0.8);
                opacity: 0.4;
            }

            75% {
                transform: translate(-150px, -100px) scale(1.1);
                opacity: 0.45;
            }
        }

        /* Blob Shapes - Subtle */
        .blob {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.03) 40%, rgba(255,255,255,0) 70%);
            animation: blobMove 30s infinite ease-in-out;
            opacity: 0.6;
        }

        @keyframes blobMove {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }

            33% {
                transform: translate(300px, 200px) rotate(120deg);
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }

            66% {
                transform: translate(-200px, 300px) rotate(240deg);
                border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
            }
        }

        /* ===== Sticky Navbar ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            min-height: 80px;
            max-height: 80px;
            padding: 0 2rem;
            z-index: 1000;
            background: #15181f; /* deep navy to complement white logo tile */
            transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
            border-bottom: 1px solid rgba(15, 23, 42, 0.9);
            display: flex;
            align-items: center;
            box-sizing: border-box;
        }

        .navbar.scrolled {
            background: #303a63;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
            border-bottom: 1px solid rgba(15, 23, 42, 1);
        }

        .nav-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            height: 65px;
        }

        .logo img {
            height: 65px;
            width: auto;
            display: block;
        }

        .logo-tagline {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(248, 250, 252, 0.9);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-link {
            position: relative;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            padding: 0.5rem 1.25rem;
            border: 2px solid transparent;
            border-radius: 25px;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: inline-block;
            line-height: 1.5;
            min-height: 40px;
            box-sizing: border-box;
        }

        /* 3D Hover Effect on Nav Links */
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover::before {
            display: none;
        }

        .nav-link:hover {
            color: #ffffff;
            border-color: rgba(59, 130, 246, 0.5);
            background: rgba(59, 130, 246, 0.2);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
        }

        .nav-link.active {
            color: #ffffff;
            border-color: rgba(59, 130, 246, 0.6);
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .nav-link.active::before {
            display: none;
        }

        .cta-button {
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border: none;
            border-radius: 50px;
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            perspective: 1000px;
        }

        .cta-button:hover {
            transform: translateY(-3px) translateZ(20px) scale(1.05);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .cta-button:active {
            transform: translateY(-1px) scale(1.02);
        }

        /* ===== Hero Section ===== */
        .hero {
            width: 100%;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 2rem 6rem;
            position: relative;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(6, 182, 212, 0.05) 100%);
            margin-top: 80px;
            padding-top: calc(80px + 4rem);
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            z-index: 10;
            width: 100%;
        }

        .hero-heading {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -1.5px;
            opacity: 0;
            animation: heroFadeInUp 1s ease-out 0.3s forwards;
        }

        .text-blue {
            color: var(--primary-blue);
        }

        .text-black {
            color: var(--text-dark);
        }

        .hero-heading .gradient-text {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientText 5s ease infinite;
            display: inline-block;
        }

        .hero-subheading {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            font-weight: 600;
            color: var(--text-gray);
            margin-bottom: 2rem;
            opacity: 0;
            animation: heroFadeInUp 1s ease-out 0.6s forwards;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        @keyframes gradientText {

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

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

        @keyframes heroFadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px) translateZ(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0) translateZ(0);
            }
        }

        .hero-subtext {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--text-gray);
            max-width: 500px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            letter-spacing: 0.3px;
            opacity: 0;
            animation: heroFadeInUp 1s ease-out 0.6s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: heroFadeInUp 1s ease-out 0.9s forwards;
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border: none;
            border-radius: 50px;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
            perspective: 1000px;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-5px) translateZ(30px) scale(1.05);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
        }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(59, 130, 246, 0.2);
            border-radius: 50px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            perspective: 1000px;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            transform: translateY(-5px) translateZ(30px) scale(1.05);
            border-color: var(--primary-blue);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        /* ===== Sections ===== */
        .section {
            padding: 6rem 2rem;
            position: relative;
            z-index: 10;
        }

        .section:first-of-type {
            padding-top: calc(80px + 6rem);
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-title .text-blue {
            color: var(--primary-blue);
        }

        .section-title .text-black {
            color: var(--text-dark);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        /* ===== Cards with 3D Hover Effect ===== */
        .cards-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        @media (max-width: 480px) {
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 1rem 0.5rem;
            }

            .card {
                padding: 1.75rem 1.25rem;
                border-radius: 16px;
            }

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

            .card p {
                font-size: 0.95rem;
            }
        }

        .card {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            perspective: 1000px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
        }

        .card-icon span {
            font-size: 2rem;
            line-height: 1;
        }

        .card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .card h1 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .card p {
            color: var(--text-gray);
            line-height: 1.8;
        }

        .card-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .card-list li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .card-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: 700;
        }

        .card-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 1.5rem;
            padding: 0.75rem 1.75rem;
            border-radius: 9999px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            box-shadow: 0 8px 18px rgba(59, 130, 246, 0.35);
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .card-cta:hover {
            transform: translateY(-2px) translateX(2px);
            box-shadow: 0 12px 24px rgba(59, 130, 246, 0.45);
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-cyan));
        }

        .card-tech, .card-markets {
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(59, 130, 246, 0.05);
            border-radius: 8px;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        /* 3D Tilt Effect on Cards */
        .card:hover {
            transform: translateY(-10px) translateZ(50px) rotateX(2deg) rotateY(2deg);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* ===== Services Overview with Alternating Layout ===== */
        .service-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 6rem;
            padding: 3rem;
            background: var(--bg-white);
            border-radius: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .service-card.reverse {
            grid-template-columns: 1fr 1fr;
        }

        .service-card.reverse .service-image {
            order: 2;
        }

        .service-card.reverse .service-content {
            order: 1;
        }

        .service-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-blue);
            position: relative;
            overflow: hidden;
        }

        .service-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
            opacity: 0.5;
        }

        .service-content h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .service-content p {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .service-deliverables {
            margin: 2rem 0;
        }

        .service-deliverables h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .service-card h1 {
            display: none;
        }

        /* ===== Crypto Launch Section ===== */
        .crypto-launch-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
            position: relative;
            margin: 4rem 0;
        }

        .crypto-launch-section .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .crypto-launch-section .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .section-description {
            text-align: center;
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 900px;
            margin: 0 auto 4rem;
            line-height: 1.8;
        }

        .two-column {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .launch-metrics {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem;
            background: var(--bg-white);
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .launch-metrics h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .metric-card {
            padding: 2rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        .metric-card h1 {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .metric-card p {
            color: var(--text-gray);
            font-size: 1rem;
        }

        .primary-cta {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border: none;
            border-radius: 50px;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
            text-decoration: none;
        }

        .primary-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
        }

        @media (max-width: 968px) {
            .service-card,
            .service-card.reverse {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-card.reverse .service-image,
            .service-card.reverse .service-content {
                order: initial;
            }

            .two-column {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Footer ===== */
        .footer {
            background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
            color: #e5e7eb;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .footer-section p {
            color: #e5e7eb;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #60a5fa, #a78bfa, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
            display: block;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            display: block;
        }

        .footer-tagline {
            color: #60a5fa;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

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

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #e5e7eb;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #60a5fa;
            transform: translateX(5px);
        }

        .footer-contact-info {
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

        .footer-contact-info strong {
            color: #ffffff;
            font-weight: 600;
        }

        .footer-hours {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #9ca3af;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #60a5fa;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #e5e7eb;
            margin: 0;
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: #e5e7eb;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #60a5fa;
        }

        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        /* ===== Mobile Menu ===== */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            color: #ffffff;
            transform: scale(1.1);
        }

        .mobile-menu-btn .hamburger-icon,
        .mobile-menu-btn .close-icon {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active .hamburger-icon {
            display: none;
        }

        .mobile-menu-btn.active .close-icon {
            display: inline-block;
        }

         /* Hide close button on desktop */
        .mobile-menu-close {
            display: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
                backdrop-filter: blur(30px);
                -webkit-backdrop-filter: blur(30px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 2rem;
                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
                z-index: 999;
                gap: 2rem;
                overflow-y: auto;
            }

            .mobile-menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                background: rgba(255, 255, 255, 0.1);
                border: 2px solid rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 28px;
                cursor: pointer;
                z-index: 10000;
                transition: all 0.3s ease;
                opacity: 0;
                pointer-events: none;
            }

            .mobile-menu-close:hover {
                background: rgba(255, 255, 255, 0.2);
                border-color: rgba(255, 255, 255, 0.4);
                transform: scale(1.1) rotate(90deg);
            }

            .nav-links.active .mobile-menu-close {
                opacity: 1;
                pointer-events: auto;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-link {
                display: block;
                width: 100%;
                padding: 1rem 2rem;
                font-size: 1.1rem;
                text-align: center;
                border-radius: 12px;
            }

            .navbar {
                height: 70px;
                min-height: 70px;
            }

            .hero {
                min-height: 70vh;
                padding: 6rem 1rem 4rem;
                margin-top: 70px;
                padding-top: calc(70px + 4rem);
            }

            .section:first-of-type {
                padding-top: calc(70px + 4rem);
            }

            .hero-heading {
                font-size: 2.5rem;
            }

            .hero-subheading {
                font-size: 1.1rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem 0;
            }

            .card {
                padding: 2rem 1.5rem;
                width: 100%;
                max-width: 100%;
                margin: 0;
            }

            .section {
                padding: 4rem 1rem;
            }

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

            .section-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }

            .service-card {
                padding: 2rem 1rem;
            }

            .service-content h2 {
                font-size: 1.8rem;
            }

            .crypto-launch-section {
                padding: 4rem 1rem;
            }

            .launch-metrics {
                padding: 2rem 1rem;
            }
        }

        /* ===== Smooth Scroll Animations ===== */
        .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);
        }

        .text-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .text-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .card-scroll-animate {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-scroll-animate.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .card-scroll-animate:nth-child(1) {
            transition-delay: 0.1s;
        }

        .card-scroll-animate:nth-child(2) {
            transition-delay: 0.2s;
        }

        .card-scroll-animate:nth-child(3) {
            transition-delay: 0.3s;
        }

        .card-scroll-animate:nth-child(4) {
            transition-delay: 0.4s;
        }

        /* ===== Utility Classes ===== */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
    