        /* Ensure icon fonts don't block rendering */
        @font-face {
            font-family: 'Font Awesome 6 Free';
            font-display: swap;
        }
        @font-face {
            font-family: 'Font Awesome 6 Brands';
            font-display: swap;
        }
        @font-face {
            font-family: 'Font Awesome 6 Free Solid';
            font-display: swap;
        }
        @font-face {
            font-family: 'Material Icons';
            font-display: swap;
        }
        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg: #020205;
            --bg-elevated: #060610;
            --bg-card: rgba(8, 10, 22, 0.65);
            --bg-glass: rgba(12, 14, 28, 0.55);
            --bg-heavy: rgba(4, 4, 8, 0.94);
            --border: rgba(255, 255, 255, 0.09);
            --border-hover: rgba(0, 240, 252, 0.4);
            --border-active: rgba(0, 242, 254, 0.65);
            --cyan: #00f0fc;
            --cyan-dim: rgba(0, 240, 252, 0.18);
            --purple: #7c3aed;
            --purple-dim: rgba(124, 58, 237, 0.18);
            --teal: #14b8a6;
            --gold: #f59e0b;
            --green: #10b981;
            --red: #ef4444;
            --pink: #ec4899;
            --text: #f0f0f5;
            --text-2: rgba(240, 240, 245, 0.78);
            --text-3: rgba(240, 240, 245, 0.45);
            --font-h: 'Space Grotesk', sans-serif;
            --font-b: 'Inter', sans-serif;
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --glow-color: rgba(0, 240, 252, 0.08);
            --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.75);
            --section-glow: 0 0 60px rgba(0, 240, 252, 0.04);
        }
        /* ===== LIGHT THEME ===== */
        body.light-theme {
            --bg: #1c140c;
            --bg-elevated: #281c10;
            --bg-card: rgba(36, 24, 12, 0.82);
            --bg-glass: rgba(45, 30, 15, 0.75);
            --bg-heavy: rgba(24, 16, 8, 0.96);
            --border: rgba(255, 170, 50, 0.28);
            --border-hover: rgba(255, 180, 60, 0.65);
            --border-active: rgba(255, 190, 80, 0.85);
            --cyan: #ffaa33;
            --cyan-dim: rgba(255, 170, 51, 0.22);
            --purple: #ff7700;
            --purple-dim: rgba(255, 119, 0, 0.22);
            --text: #ffffff;
            --text-2: rgba(255, 255, 255, 0.90);
            --text-3: rgba(255, 255, 255, 0.70);
            --glow-color: rgba(255, 170, 51, 0.25);
            --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.60);
            --section-glow: 0 0 40px rgba(255, 170, 51, 0.15);
        }
        body.light-theme .s-title,
        body.light-theme h1,
        body.light-theme h2,
        body.light-theme h3,
        body.light-theme h4,
        body.light-theme h5,
        body.light-theme h6 {
            color: #ffffff;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 170, 51, 0.4);
        }
        body.light-theme p, 
        body.light-theme span {
            color: rgba(255, 255, 255, 0.92);
        }

        body.light-theme .s-desc, 
        body.light-theme .hero-sub {
            color: rgba(255, 255, 255, 0.94);
            background: rgba(36, 24, 12, 0.82);
            border: 1px solid rgba(255, 170, 50, 0.3);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
        }
        body.light-theme .text-gradient {
            background: linear-gradient(135deg, #ffe066, #ff8800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
        }
        body.light-theme .hero-badge {
            background: rgba(255, 170, 50, 0.22);
            border-color: rgba(255, 170, 50, 0.45);
            color: #ffdd66;
            text-shadow: 0 0 10px rgba(255, 170, 50, 0.6);
        }
        body.light-theme .hero-badge .pulse-dot {
            background: #ffaa33;
            box-shadow: 0 0 10px #ffaa33;
        }
        /* Footer & Light Background Dark Text Rules */
        body.light-theme .site-footer {
            background: #eae2d6;
            border-top: 1px solid rgba(80, 60, 40, 0.2);
        }
        body.light-theme .site-footer,
        body.light-theme .site-footer p,
        body.light-theme .site-footer span,
        body.light-theme .site-footer h5,
        body.light-theme .footer-bottom p,
        body.light-theme .legal-links a {
            color: #1a140e !important;
            text-shadow: none !important;
        }
        body.light-theme .footer-links a  {
            color: #2b1f14 !important;
        }
        body.light-theme .footer-links a:hover {
            color: #d47700 !important;
        }
        body.light-theme .footer-input {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(80, 60, 40, 0.3);
            color: #1a140e;
        }
        body.light-theme .marquee-item {
            color: #1a140e !important;
            text-shadow: none !important;
        }
        html {
            scroll-behavior: auto !important;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.12) var(--bg);
            overflow-x: hidden;
        }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font-b);
            font-size: 16px;
            line-height: 1.65;
            cursor: auto;
            transition: background 0.6s var(--ease-out), color 0.6s var(--ease-out);
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
        }
        ::selection {
            background: rgba(0, 240, 252, 0.25);
            color: #fff;
        }
        body.light-theme ::selection {
            background: rgba(212, 135, 42, 0.30);
            color: #1a1612;
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--cyan);
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* ===== CURSOR =====
        .cursor-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--cyan);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            mix-blend-mode: difference;
            transition: transform 0.1s;
        }
        .cursor-ring {
            position: fixed;
            width: 42px;
            height: 42px;
            border: 1.5px solid rgba(0, 240, 252, 0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99998;
            transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
        }
        body.light-theme .cursor-ring {
            border-color: rgba(212, 135, 42, 0.5);
        }
        .cursor-ring.hovered {
            width: 64px;
            height: 64px;
            border-color: var(--cyan);
            background: rgba(0, 240, 252, 0.08);
        }
        body.light-theme .cursor-ring.hovered {
            background: rgba(212, 135, 42, 0.10);
            border-color: var(--cyan);
        } */

        .logo img,
        #siteLogo,
        #footerLogo {
            width: auto;
            max-width: 220px;
            height: 42px !important;
            object-fit: contain;
            object-position: left center;
            display: block;
            transition: height 0.3s ease;
        }

        .site-header.scrolled .logo img,
        .site-header.scrolled #siteLogo {
            height: 36px !important;
        }
        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 76px;
            z-index: 9000;
            display: flex;
            align-items: center;
            transition: height 0.5s var(--ease-out), background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
            transform: translateZ(0);
        }
        .site-header.scrolled {
            height: 65px;
            background: var(--bg-heavy);
            backdrop-filter: blur(28px) saturate(180%);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        }
        body.light-theme .site-header.scrolled {
            background: var(--bg-heavy);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        .header-inner {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: var(--font-h);
            font-weight: 800;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 100;
            color: var(--text);
        }
        .logo-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            box-shadow: 0 0 20px rgba(0, 240, 252, 0.4);
            position: relative;
            transition: transform 0.4s var(--ease-out);
        }
        .logo:hover .logo-icon {
            transform: rotate(45deg) scale(1.1);
        }
        .logo-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: var(--bg);
            border-radius: 2px;
        }
        .logo-text-accent {
            background: linear-gradient(135deg, var(--cyan), #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        body.light-theme .logo-text-accent {
            background: linear-gradient(135deg, #d4872a, #b06a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .nav a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-2);
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }
        .nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--cyan), var(--purple));
            transition: opacity 0.4s var(--ease-out), background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
            transform: translateX(-50%);
        }
        .nav a:hover {
            color: var(--text);
        }
        .nav a:hover::after {
            width: 100%;
        }
        .nav a.active {
            color: var(--text);
        }
        .nav a.active::after {
            width: 100%;
        }

        .header-btns {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.4rem 1.2rem;
            border-radius: 22px;
            font-family: var(--font-b);
            font-weight: 600;
            font-size: 0.88rem;
            cursor: pointer;
            transition: opacity 0.4s var(--ease-out), background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
            position: relative;
            overflow: hidden;
            border: none;
            background: var(--bg-card);
            color: var(--text);
            backdrop-filter: blur(16px);
        }
        .btn {

            background-color: #724ebf;

            background-image: linear-gradient(90deg, #4f328f90, #870de8);

            color: var(--white) !important;

        }

        .dtp-content .btn{

            margin: 0 3px;

        }
        .btn-outline {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            color: var(--text);
            backdrop-filter: blur(16px);
        }
        .btn-outline:hover {
            border-color: var(--cyan);
            box-shadow: 0 0 20px rgba(0, 240, 252, 0.2);
            transform: translateY(-2px);
        }
        .btn-glow {
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            color: var(--bg-elevated);
            font-weight: 700;
            box-shadow: 0 6px 25px rgba(0, 240, 252, 0.3);
        }
        body.light-theme .btn-glow {
            background: linear-gradient(135deg, #d4872a, #b06a3a);
            color: #f2ede4;
            box-shadow: 0 6px 25px rgba(212, 135, 42, 0.3);
        }
        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }
        .btn-glow:hover::before {
            left: 100%;
        }
        .btn-glow:hover {
            box-shadow: 0 12px 35px rgba(0, 240, 252, 0.5);
            transform: translateY(-3px);
        }
        body.light-theme .btn-glow:hover {
            box-shadow: 0 12px 35px rgba(212, 135, 42, 0.5);
        }

        /* ===== THEME TOGGLE ===== */
        .theme-toggle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--bg-card);
            color: var(--text);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.4s var(--ease-out), background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
            backdrop-filter: blur(16px);
        }
        .theme-toggle:hover {
            border-color: var(--cyan);
            transform: rotate(20deg) scale(1.05);
            box-shadow: 0 0 20px rgba(0, 240, 252, 0.15);
        }
        body.light-theme .theme-toggle:hover {
            border-color: #d4872a;
            box-shadow: 0 0 20px rgba(212, 135, 42, 0.2);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.4rem;
            cursor: pointer;
            z-index: 100;
        }

        /* Mobile Nav Overlay */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 8998;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        body.light-theme .nav-overlay {
            background: rgba(0, 0, 0, 0.35);
        }

        /* ===== PAGE WRAPPER ===== */
        #pageWrapper {
            position: relative;
            z-index: 10;
            width: 100%;
        }
        section {
            /* min-height: 100vh; */
            padding: 70px 0 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
            overflow: visible;
        }
        .wrap {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5rem;
            position: relative;
            z-index: 20;
        }

        /* ===== SECTION HEADER ===== */
        .s-header {
            max-width: 820px;
            margin: 0 auto 4.5rem;
            text-align: center;
            position: relative;
            z-index: 5;
            backdrop-filter: blur(20px) saturate(160%);
            padding: 1.5rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: border-color 0.6s, background 0.6s;
            background: var(--bg-card);
        }
        .s-tag {
            font-family: var(--font-h);
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin: 30px auto ;
            display: inline-block;
            transition: color 0.6s;
        }
        .s-title {
            font-family: var(--font-h);
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -0.5px;
            margin-bottom: 1.2rem;
            perspective: 1000px;
            color: #ffffff;
            transition: color 0.6s;
            text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95), 0 0 30px var(--glow-color);
        }
        body.light-theme .s-title {
            text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 170, 51, 0.4);
        }
        .s-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.92);
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
            transition: color 0.6s;
        }

        .word-3d {
            display: inline-block;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateX(-80deg) translateY(40px);
            opacity: 0;
            transition: transform 0.8s var(--ease-out), opacity 0.8s ease;
        }
        .word-3d.visible {
            transform: perspective(1000px) rotateX(0deg) translateY(0);
            opacity: 1;
        }

        .diag-reveal {
            opacity: 0;
            transform: perspective(1200px) translate3d(80px, 80px, -40px) rotateX(10deg) rotateY(-10deg);
            transition: transform 0.85s var(--ease-out), opacity 0.85s ease;
        }
        .diag-reveal.visible {
            opacity: 1;
            transform: perspective(1200px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
        }

        .bg-watermark {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            font-family: var(--font-h);
            font-size: 14vw;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(0, 240, 252, 0.05);
            white-space: nowrap;
            pointer-events: none;
            z-index: 1;
            user-select: none;
            transition: -webkit-text-stroke-color 0.6s;
        }
        body.light-theme .bg-watermark {
            -webkit-text-stroke-color: rgba(212, 135, 42, 0.08);
        }

        .tilt-card {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(28px) saturate(180%);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
            box-shadow: var(--shadow-heavy);
            transform-style: preserve-3d;
            transition: border-color 0.4s, box-shadow 0.4s, background 0.6s;
        }
        .tilt-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            opacity: 0.6;
            border-radius: 2px;
            pointer-events: none;
            transition: background 0.6s;
        }
        body.light-theme .tilt-card::after {
            background: linear-gradient(90deg, transparent, #d4872a, transparent);
        }
        .tilt-card:hover {
            border-color: var(--border-hover);
            box-shadow: 0 25px 60px rgba(0, 240, 252, 0.15);
        }
        body.light-theme .tilt-card:hover {
            box-shadow: 0 25px 60px rgba(212, 135, 42, 0.12);
        }

        .float-bob {
            animation: floatBob 3.5s ease-in-out infinite alternate;
        }
        @keyframes floatBob {
            0% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(-10px);
            }
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #010103;
            border-top: 1px solid var(--border);
            padding: 5rem 0 2.5rem;
            position: relative;
            z-index: 10;
            transition: background 0.6s, border-color 0.6s;
        }
        body.light-theme .site-footer {
            background: #e8e0d4;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.3fr 0.85fr 0.85fr 1fr;
            gap: 3.5rem;
            margin-bottom: 3.5rem;
        }
        .footer-col h5 {
            font-family: var(--font-h);
            font-size: 0.92rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.2rem;
            color: var(--text);
            transition: color 0.6s;
        }
        .footer-col p {
            color: var(--text-2);
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            transition: color 0.6s;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 0.85rem;
            color: var(--text-3);
            transition: opacity 0.3s, background-color 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s, color 0.6s;
        }
        .footer-links a:hover {
            color: var(--cyan);
            padding-left: 5px;
        }
        body.light-theme .footer-links a:hover {
            color: #d4872a;
        }
        .social-row {
            display: flex;
            gap: 8px;
            margin-top: 1.2rem;
        }
        .social-circle {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            /* color: var(--text-2); */
            font-size: 0.9rem;
            transition: opacity 0.4s var(--ease-out), background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.6s, background 0.6s, color 0.6s;
        }
        .social-circle:hover {
            color: var(--bg);
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 0 15px rgba(0, 240, 252, 0.4);
        }
        body.light-theme .social-circle:hover {
            background: linear-gradient(135deg, #d4872a, #b06a3a);
            box-shadow: 0 0 15px rgba(212, 135, 42, 0.3);
            color: #f2ede4;
        }
        .footer-newsletter {
            display: flex;
            gap: 6px;
        }
        .footer-input {
            flex-grow: 1;
            padding: 9px 16px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.015);
            color: var(--text);
            font-size: 0.85rem;
            outline: none;
            transition: border-color 0.3s, background 0.6s, color 0.6s;
        }
        body.light-theme .footer-input {
            background: rgba(0, 0, 0, 0.03);
            color: #1a1612;
        }
        .footer-input:focus {
            border-color: var(--cyan);
        }
        .footer-send {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cyan), var(--purple));
            border: none;
            color: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: opacity 0.4s, background-color 0.4s, border-color 0.4s, color 0.4s, box-shadow 0.4s, background 0.6s;
        }
        body.light-theme .footer-send {
            background: linear-gradient(135deg, #d4872a, #b06a3a);
            color: #f2ede4;
        }
        .footer-send:hover {
            box-shadow: 0 0 15px rgba(0, 240, 252, 0.4);
            transform: scale(1.08);
        }
        body.light-theme .footer-send:hover {
            box-shadow: 0 0 15px rgba(212, 135, 42, 0.4);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 1.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: var(--text-3);
            transition: border-color 0.6s, color 0.6s;
        }
        body.light-theme .footer-bottom {
            border-top-color: rgba(0, 0, 0, 0.06);
        }
        .legal-links {
            display: flex;
            gap: 1.8rem;
        }
        .legal-links a {
            color: var(--text-3);
            transition: color 0.3s, color 0.6s;
        }
        .legal-links a:hover {
            color: var(--cyan);
        }
        body.light-theme .legal-links a:hover {
            color: #d4872a;
        }

        /* ===== FOOTER MORE INFO FORM ===== */
        .footer-more-form {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            margin-bottom: 1.2rem;
        }
        .footer-more-input {
            width: 100%;
            flex-grow: unset;
            border-radius: 10px;
        }
        .footer-more-info .btn {
            margin-top: 0.4rem;
            align-self: flex-start;
            padding: 0.55rem 1.4rem;
            font-size: 0.88rem;
            border-radius: 20px;
        }
        .footer-product-by {
            margin-top: 1rem;
            font-size: 0.82rem;
            color: var(--text-3);
        }
        .footer-ajasys-logo {
            display: inline-block;
            margin-top: 0.5rem;
            max-width: 130px;
        }
        .footer-ajasys-logo img {
            width: 100%;
            display: block;
            filter: brightness(0.85);
            transition: filter 0.3s;
        }
        .footer-ajasys-logo:hover img {
            filter: brightness(1);
        }
        .number-error3 {
            font-size: 0.78rem;
            color: var(--red);
            min-height: 1rem;
        }

        .footer-marquee {
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 0.8rem 0;
            margin-bottom: 3.5rem;
            transition: border-color 0.6s;
        }
        .marquee-track {
            display: flex;
            gap: 3.5rem;
            animation: marqueeScroll 25s linear infinite;
            white-space: nowrap;
            width: max-content;
        }
        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        .marquee-item {
            font-family: var(--font-h);
            font-size: 1.4rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.04);
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.6s;
        }
        body.light-theme .marquee-item {
            color: rgba(0, 0, 0, 0.06);
        }
        .marquee-item .dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            margin: 0 1.5rem;
            vertical-align: middle;
            box-shadow: 0 0 6px var(--cyan);
            transition: background 0.6s, box-shadow 0.6s;
        }
        body.light-theme .marquee-item .dot {
            background: #d4872a;
            box-shadow: 0 0 6px rgba(212, 135, 42, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media(max-width:1024px) {
            .inventory-layout,
            .leads-layout,
            .visits-layout,
            .follow-grid,
            .analytics-layout,
            .customer-layout,
            .builder-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 440px;
                margin: 0 auto;
            }
            .footer-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
            .wrap {
                padding: 0 2rem;
            }
            
            /* Tablet optimizations */
            .s-title {
                font-size: clamp(2rem, 4vw, 2.8rem);
                line-height: 1.2;
            }
            
            /* Better touch targets */
            .btn, button, a[href] {
                min-height: 44px;
                touch-action: manipulation;
            }
        }
        @media(max-width:768px) {
            body {
                cursor: auto;
                font-size: 15px;
            }
            .cursor-dot,
            .cursor-ring {
                display: none;
            }
            .site-header {
                height: 65px;
            }
            .nav {
                position: fixed;
                top: 65px;
                left: 0;
                width: 100%;
                height: calc(100vh - 65px);
                height: calc(100dvh - 65px);
                background: var(--bg-heavy);
                backdrop-filter: blur(25px);
                -webkit-backdrop-filter: blur(25px);
                flex-direction: column;
                padding: 2rem 1.5rem;
                gap: 1.5rem;
                transform: translateX(100%);
                visibility: hidden;
                pointer-events: none;
                transition: transform 0.4s var(--ease-out), visibility 0.4s ease;
                border-top: 1px solid var(--border);
                z-index: 8999;
                overflow-y: auto;
            }
            body.light-theme .nav {
                background: var(--bg-heavy);
            }
            .nav.open {
                transform: translateX(0);
                visibility: visible;
                pointer-events: auto;
            }
            .nav a {
                font-size: 1.1rem;
                padding: 1rem 0;
                border-bottom: 1px solid var(--border);
                width: 100%;
                display: flex;
                align-items: center;
                min-height: 48px;
                touch-action: manipulation;
            }
            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
                min-height: 44px;
                touch-action: manipulation;
            }
            .header-btns .btn-outline {
                display: none;
            }
            .header-btns .btn-glow {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
                /* min-height: 38px; */
                touch-action: manipulation;
            }
            .header-btns {
                gap: 0.6rem;
            }
            .header-inner {
                padding: 0 1.2rem;
            }
            .logo img {
                max-width: 160px;
                height: auto;
            }
            .wrap {
                padding: 0 1.2rem;
            }
            section {
                padding: 90px 0 60px;
                min-height: auto;
            }
            .s-header {
                margin-bottom: 2.5rem;
                padding: 1rem;
            }
            .s-title {
                font-size: clamp(1.6rem, 6vw, 2.4rem);
            }
            .s-desc {
                font-size: 0.95rem;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .legal-links {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            .theme-toggle {
                width: 44px;
                height: 35px;
                font-size: 1.1rem;
                min-height: 44px;
                touch-action: manipulation;
            }
            .tilt-card {
                padding: 1.5rem;
            }
            .footer-newsletter {
                flex-direction: column;
            }
            .footer-send {
                width: 100%;
                border-radius: 12px;
                height: 48px;
                min-height: 48px;
                touch-action: manipulation;
            }
            .popup-field input {
                min-height: 48px;
                padding: 0.8rem 1rem;
                touch-action: manipulation;
            }
            .footer-input {
                min-height: 44px;
                padding: 0.7rem 1rem;
                touch-action: manipulation;
            }
        }
        @media(max-width:480px) {
            .site-header {
                height: 60px;
            }
            .nav {
                top: 60px;
                height: calc(100vh - 60px);
                height: calc(100dvh - 60px);
                padding: 1.5rem 1rem;
            }
            .header-inner {
                padding: 0 1rem;
            }
            .logo img {
                max-width: 140px;
            }
            .wrap {
                padding: 0 1rem;
            }
            section {
                padding: 80px 0 50px;
            }
            .s-title {
                font-size: clamp(1.4rem, 7vw, 2rem);
                line-height: 1.2;
            }
            .s-desc {
                font-size: 0.95rem;
                line-height: 1.6;
            }
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
                min-height: 48px;
                touch-action: manipulation;
            }
            .footer-top {
                gap: 1.5rem;
            }
            .social-row {
                flex-wrap: wrap;
                gap: 12px;
            }
            .social-circle {
                width: 44px;
                height: 44px;
                min-height: 44px;
                touch-action: manipulation;
            }
            .header-btns .btn-glow {
                padding: 0.2rem 1rem;
                font-size: 0.85rem;
                /* min-height: 38px; */
            }
            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                min-height: 40px;
            }
            .popup-modal {
                padding: 1.8rem 1rem;
                margin: 1rem;
            }
            .popup-title {
                font-size: 1.2rem;
                line-height: 1.3;
            }
            .tilt-card {
                padding: 1.2rem;
            }
            .mobile-toggle {
                width: 40px;
                height: 40px;
                min-height: 40px;
            }
        }
        /* ===== MOBILE OPTIMIZATIONS ===== */
        @media (max-width: 768px) {
            * {
                -webkit-tap-highlight-color: transparent;
            }
            
            input, textarea, select {
                font-size: 16px !important; /* Prevents zoom on iOS */
                border-radius: 8px !important;
                padding: 0.8rem 1rem !important;
            }
            
            .btn, button, a {
                touch-action: manipulation;
                -webkit-touch-callout: none;
            }
            
            /* Disable heavy animations on mobile for better performance */
            .orb {
                animation: none !important;
                transform: none !important;
                display: none; /* Hide decorative orbs on mobile */
            }
            
            .float-bob {
                animation: none !important;
            }
            
            /* Better mobile scrolling */
            body {
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
            }
            
            /* Mobile-friendly hover states - use active states instead */
            .tilt-card:hover,
            .tilt-card:active {
                transform: none;
                border-color: var(--border-hover);
            }
            
            .hero-metric:hover,
            .hero-metric:active {
                transform: none;
            }
            
            .btn:hover,
            .btn:active {
                transform: none;
            }
            
            /* Improve touch targets */
            .btn, button, a[href], input, textarea, select {
                min-height: 25px;
                min-width: 25px;
                touch-action: manipulation;
            }
            
            /* Better form field spacing */
            .popup-field input,
            .footer-input {
                margin-bottom: 0.5rem;
            }
            
            /* Improve mobile navigation */
            .nav {
                padding: 1.5rem;
                gap: 0.8rem;
            }
            
            .nav a {
                padding: 1rem;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.05);
                margin-bottom: 0.5rem;
            }
            
            /* Better mobile typography */
            .s-desc {
                line-height: 1.6;
                font-size: 0.95rem;
            }
            
            /* Optimized section spacing */
            section {
                padding: 60px 0 40px;
            }
        }

        @media (max-width: 480px) {
            /* Extra small screens - focus on readability and usability */
            .s-header {
                padding: 0.8rem;
                margin-bottom: 2rem;
            }
            
            .s-tag {
                font-size: 0.75rem;
                letter-spacing: 1.5px;
            }
            
            .wrap {
                padding: 0 0.8rem;
            }
            
            /* Improve form usability on small screens */
            .popup-modal {
                max-width: calc(100vw - 1rem);
                margin: 0.5rem;
                padding: 1.5rem 1rem;
            }
            
            .popup-title {
                font-size: 1.2rem;
                line-height: 1.3;
            }
            
            .footer-newsletter {
                gap: 8px;
            }
            
            .footer-input {
                border-radius: 12px;
                padding: 0.8rem 1rem;
            }
            
            /* Better button sizing */
            .btn {
                padding: 0.7rem 1.4rem;
                font-size: 0.9rem;
                min-height: 48px;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
                display: block;
            }
            
            /* Improve CTA section */
            .cta-btns {
                flex-direction: column;
                gap: 0.8rem;
                align-items: center;
            }
            
            .cta-btns .btn {
                width: 100%;
                max-width: 280px;
            }
            
            /* Better section spacing for small screens */
            section {
                padding: 50px 0 30px;
            }
            
            /* Optimize header for small screens */
            .site-header {
                height: 55px;
            }
            
            .header-inner {
                padding: 0 0.8rem;
            }
            
            .logo img {
                width: 128px;
                max-width: 128px;
                height: 32px;
            }
        }
        @media(max-width:768px) {
            .nav .btn-outline-nav {
                display: inline-flex !important;
                border: 1px solid var(--border);
                border-radius: 22px;
                padding: 0.5rem 1.2rem;
                font-size: 0.88rem;
                font-weight: 600;
                color: var(--text);
            }
        }

        /* ===== POPUP CONTACT MODAL ===== */
        .popup-overlay {
            position: fixed;
            inset: 0;
            z-index: 99990;
            background: rgba(0, 0, 0, 0.72);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s var(--ease-out), visibility 0.4s;
        }
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .popup-modal {
            width: 100%;
            max-width: 480px;
            padding: 2.5rem 2rem;
            border-radius: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-hover);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 252, 0.08);
            position: relative;
            transform: translateY(40px) scale(0.96);
            transition: transform 0.45s var(--ease-out);
            backdrop-filter: blur(28px) saturate(180%);
        }
        .popup-overlay.active .popup-modal {
            transform: translateY(0) scale(1);
        }
        body.light-theme .popup-modal {
            border-color: var(--border-hover);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 170, 51, 0.1);
        }
        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1.1rem;
            background: none;
            border: 1px solid var(--border);
            color: var(--text-2);
            font-size: 1.4rem;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            transition: opacity 0.3s, background-color 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
        }
        .popup-close:hover {
            border-color: var(--cyan);
            color: var(--cyan);
            background: rgba(0, 240, 252, 0.08);
        }
        body.light-theme .popup-close:hover {
            border-color: #d4872a;
            color: #d4872a;
            background: rgba(212, 135, 42, 0.08);
        }
        .popup-header {
            margin-bottom: 1.6rem;
            text-align: center;
        }
        .popup-title {
            font-family: var(--font-h);
            font-size: 1.55rem;
            font-weight: 800;
            color: #fff;
            margin: 0.4rem 0 0.5rem;
            text-shadow: 0 2px 14px rgba(0,0,0,0.9);
        }
        .popup-sub {
            font-size: 0.88rem;
            color: var(--text-2);
        }
        .popup-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .popup-field {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .popup-field label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-2);
            letter-spacing: 0.4px;
        }
        .popup-field input {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            font-size: 0.9rem;
            font-family: var(--font-b);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
        }
        .popup-field input:focus {
            border-color: var(--cyan);
            background: rgba(0, 240, 252, 0.04);
            box-shadow: 0 0 0 3px rgba(0, 240, 252, 0.1);
        }
        body.light-theme .popup-field input {
            background: rgba(0, 0, 0, 0.04);
            color: #fff;
        }
        body.light-theme .popup-field input:focus {
            border-color: #d4872a;
            background: rgba(212, 135, 42, 0.05);
            box-shadow: 0 0 0 3px rgba(212, 135, 42, 0.12);
        }
        .popup-field input::placeholder {
            color: var(--text-3);
            font-size: 0.85rem;
        }
        .popup-error {
            font-size: 0.8rem;
            color: var(--red);
            min-height: 1rem;
        }
        .popup-submit {
            width: 100%;
            margin-top: 0.3rem;
            gap: 0.5rem;
            font-size: 0.95rem;
            padding: 0.8rem;
        }
        @media (max-width: 520px) {
            .popup-modal {
                padding: 2rem 1.2rem;
            }
            .popup-title {
                font-size: 1.3rem;
            }
        }

        /* ===== PERFORMANCE: MOBILE BACKDROP-FILTER REDUCTION ===== */
        /*
         * backdrop-filter triggers GPU compositing for every element that uses it.
         * On mobile, having dozens of simultaneously composited layers (cards, cells,
         * pills, rows) causes jank during scroll. We remove it from high-count
         * repeated elements on mobile while keeping it on single focal elements
         * (header, popup, hero badge) where the glass effect is most visible.
         * The visual difference is negligible because these elements already have
         * semi-opaque backgrounds via --bg-card / --bg-glass variables.
         */
        @media (max-width: 768px) {
            /* Keep: .site-header.scrolled, .popup-modal, .popup-overlay, .hero-badge — single focal elements */
            /* Remove from: repeated/many-instance elements */

            .btn,
            .btn-outline,
            .theme-toggle {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }

            .s-header {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }

            .tilt-card {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }

        /* ===== FINAL MOBILE LAYOUT NORMALIZATION ===== */
        @media (max-width: 768px) {
            html,
            body {
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
            }

            .header-inner,
            .wrap {
                width: 100%;
                max-width: 100%;
            }

            .header-inner {
                gap: 0.5rem;
            }

            .logo {
                min-width: 0;
                flex: 1 1 auto;
            }

            .logo img,
            #siteLogo,
            #footerLogo {
                width: auto;
                max-width: 160px;
                height: 34px !important;
                object-fit: contain;
                object-position: left center;
            }

            img,
            svg,
            video,
            canvas {
                max-width: 100%;
            }

            .header-btns {
                flex: 0 0 auto;
            }

            .header-btns .btn-glow {
                white-space: nowrap;
            }

            .s-title,
            h1,
            h2,
            h3,
            h4,
            h5,
            h6,
            p,
            a,
            span {
                overflow-wrap: anywhere;
            }

            .diag-reveal,
            .diag-reveal.visible,
            .word-3d,
            .word-3d.visible {
                transform: none;
            }

            .diag-reveal,
            .word-3d {
                opacity: 1;
            }

            .wrap > *,
            section > .wrap,
            .wrap [class*="layout"],
            .wrap [class*="grid"] {
                min-width: 0;
            }

            .footer-col,
            .footer-col p,
            .footer-links,
            .footer-more-form,
            .footer-input {
                min-width: 0;
                max-width: 100%;
            }

            .footer-input {
                width: 100%;
            }
        }

        @media (max-width: 380px) {
            .header-inner {
                padding-left: 0.65rem;
                padding-right: 0.65rem;
                gap: 0.25rem;
            }

            .logo img,
            #siteLogo {
                width: auto;
                max-width: 140px;
                height: 28px !important;
            }

            .header-btns {
                gap: 0.25rem;
            }

            .header-btns .btn-glow {
                padding-left: 0.55rem;
                padding-right: 0.55rem;
                font-size: 0.76rem;
                min-height: 10px;
                height: 25px;
                border-radius: 19px;
            }

            .theme-toggle {
                width: 38px;
                min-width: 38px;
                height: 38px;
                min-height: 38px;
            }

            .mobile-toggle {
                width: 38px;
                min-width: 38px;
                height: 38px;
                min-height: 38px;
                font-size: 1.2rem;
            }
        }

        .footer-apps p {
            max-width: 280px;
        }

        .footer-app-links {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-app-link,
        .footer-help-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-width: 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.035);
            border-radius: 12px;
            padding: 0.65rem 0.75rem;
            transition: border-color 0.25s, background 0.25s, transform 0.25s;
        }

        .footer-app-link:hover,
        .footer-help-link:hover {
            border-color: var(--cyan);
            background: rgba(0, 240, 252, 0.08);
            transform: translateY(-2px);
        }

        .footer-app-link > i,
        .footer-help-link > i {
            width: 26px;
            flex: 0 0 26px;
            color: var(--cyan);
            text-align: center;
            font-size: 1rem;
        }

        .footer-app-link span,
        .footer-help-link span {
            display: flex;
            flex-direction: column;
            min-width: 0;
            line-height: 1.25;
        }

        .footer-app-link small,
        .footer-help-link small {
            color: var(--text-3);
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .footer-app-link strong,
        .footer-help-link strong {
            color: var(--text);
            font-size: 0.78rem;
            overflow-wrap: anywhere;
        }

        .footer-help h5 i {
            color: var(--cyan);
            margin-right: 0.35rem;
        }

        .footer-help-card {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            padding: 0.7rem;
            border: 1px solid rgba(0, 240, 252, 0.25);
            border-radius: 16px;
            background: rgba(8, 10, 22, 0.52);
        }

        @media (min-width: 1025px) {
            .footer-top {
                grid-template-columns: 1.15fr 0.8fr 0.8fr 1.05fr 0.95fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 1024px) {
            .footer-apps,
            .footer-help {
                min-width: 0;
            }
        }

        @media (max-width: 768px) {
            .footer-app-link,
            .footer-help-link {
                min-height: 52px;
            }

            .footer-help-card {
                padding: 0.6rem;
            }
        }
