:root {
            --obsidian: #0A0A0A;
            --obsidian-light: #111111;
            --silver: #F5F5F7;
            --cyan: #00F0FF;
            --gold: #FFD700;
            --glass-bg: rgba(255, 255, 255, 0.02);
            --glass-border: rgba(255, 255, 255, 0.08);
            --muted: rgba(245, 245, 247, 0.4);
        }

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

        html, body {
            background-color: var(--obsidian);
            color: var(--silver);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            cursor: none;
        }

        ::selection {
            background: var(--cyan);
            color: var(--obsidian);
        }

        /* Custom Cursor */
        .cursor-dot {
            position: fixed;
            top: 0;
            left: 0;
            width: 8px;
            height: 8px;
            background-color: var(--cyan);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
        }

        .cursor-dot.hover {
            width: 40px;
            height: 40px;
            background-color: rgba(0, 240, 255, 0.2);
            border: 1px solid var(--cyan);
        }

        /* Preloader */
        .preloader {
            position: fixed;
            inset: 0;
            background-color: var(--obsidian);
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .preloader-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 700;
            letter-spacing: 0.5em;
            color: var(--cyan);
            opacity: 0;
            text-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.3);
        }

        /* Canvas Background */
        #bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            pointer-events: none;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        header.hidden-nav {
            transform: translateY(-100%);
        }

        .syntheq-logo {
            height: 32px;
            width: auto;
            vertical-align: middle;
            filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.3));
            transition: filter 0.3s ease;
        }
        
        header:hover .syntheq-logo {
            filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.6));
        }

        .nav-cta {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--silver);
            background: transparent;
            border: 1px solid rgba(245, 245, 247, 0.2);
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: none;
        }

        .nav-cta:hover {
            border-color: var(--cyan);
            color: var(--cyan);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
        }

        .desktop-nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--silver);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            cursor: none;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--cyan);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--cyan);
        }

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

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: transparent;
            border: none;
            cursor: none;
            z-index: 1001;
        }

        .hamburger .line {
            width: 30px;
            height: 2px;
            background: var(--silver);
            transition: all 0.3s ease;
        }

        .hamburger.active .line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .line:nth-child(2) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            transform: translateY(-20px);
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .mobile-link {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--silver);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: none;
            transition: color 0.3s ease;
        }

        .mobile-link:hover {
            color: var(--cyan);
        }

        .mobile-socials {
            margin-top: 2rem;
        }

        .mobile-socials a {
            color: var(--cyan);
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            letter-spacing: 0.05em;
        }

        .mobile-menu-cta {
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--obsidian) !important;
            background: var(--cyan);
            border: 1px solid var(--cyan);
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
            margin-top: 1rem;
        }

        .mobile-menu-cta:hover {
            background: transparent;
            color: var(--cyan) !important;
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 2rem;
            position: relative;
        }

        .hero-content {
            max-width: 1100px;
            opacity: 0;
        }

        .hero-headline {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 7vw, 6rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .hero-glow-text {
            background: linear-gradient(90deg, var(--cyan), var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.4));
        }

        .hero-sub {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            font-weight: 300;
            color: rgba(245, 245, 247, 0.7);
            max-width: 700px;
            margin: 0 auto 3.5rem;
            line-height: 1.6;
        }

        .cta-btn {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--silver);
            background: transparent;
            border: 1px solid rgba(0, 240, 255, 0.4);
            padding: 1.25rem 3.5rem;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
            cursor: none;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--cyan);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: -1;
        }

        .cta-btn:hover {
            color: var(--obsidian);
            border-color: var(--cyan);
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
        }

        .cta-btn:hover::before {
            width: 500px;
            height: 500px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 40px;
            border: 1px solid rgba(245, 245, 247, 0.3);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .scroll-dot {
            width: 4px;
            height: 8px;
            background: var(--cyan);
            border-radius: 2px;
            animation: scroll-bounce 1.8s infinite;
        }

        @keyframes scroll-bounce {
            0%, 100% { transform: translateY(0); opacity: 1; }
            50% { transform: translateY(12px); opacity: 0.3; }
        }

        /* Capabilities Section */
        .capabilities-section {
            padding: 10rem 4rem;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            margin-bottom: 5rem;
            max-width: 800px;
        }

        .overline {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.75rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 380px;
            gap: 1.5rem;
        }

        .bento-card {
            position: relative;
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform-style: preserve-3d;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
            will-change: transform;
            cursor: none;
        }

        .bento-card:hover {
            border-color: rgba(0, 240, 255, 0.4);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
        }

        .card-large { grid-column: span 2; flex-direction: row; align-items: center; }
        .card-wide { grid-column: span 2; flex-direction: row; align-items: center; }

        .card-content {
            transform: translateZ(40px);
            z-index: 2;
            position: relative;
            order: 1;
        }

        .card-large .card-content, .card-wide .card-content {
            width: 50%;
        }

        .card-visual {
            position: relative;
            order: 2;
            width: 100%;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            transform: translateZ(20px);
            margin-top: 1rem;
            min-height: 120px;
        }

        .card-large .card-visual, .card-wide .card-visual {
            width: 50%;
            margin-top: 0;
            justify-content: center;
        }

        .card-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .card-sub {
            font-size: 0.95rem;
            color: rgba(245, 245, 247, 0.6);
            line-height: 1.5;
            max-width: 400px;
        }

        /* Bento Visuals */
        .visual-laptop {
            position: relative;
            width: 60%;
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            margin-top: -20px;
        }
        .laptop-screen {
            width: 100%;
            height: 140px;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 240, 255, 0.2);
            border-radius: 6px 6px 0 0;
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .laptop-line { height: 4px; background: rgba(245, 245, 247, 0.2); border-radius: 2px; }
        .laptop-line:nth-child(1) { width: 40%; background: var(--cyan); }
        .laptop-line:nth-child(2) { width: 80%; }
        .laptop-line:nth-child(3) { width: 60%; }
        .laptop-base {
            width: 120%;
            margin-left: -10%;
            height: 8px;
            background: linear-gradient(90deg, transparent, rgba(245, 245, 247, 0.15), transparent);
            border-radius: 0 0 8px 8px;
        }
        .visual-phone {
            position: absolute;
            right: -30px;
            bottom: -20px;
            width: 50px;
            height: 90px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.8);
            transform: rotate(10deg);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .visual-geo {
            position: relative;
            width: 120px;
            height: 120px;
        }
        .geo-shape {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(0, 240, 255, 0.4);
        }
        .geo-1 { border-radius: 50%; animation: spin-reverse 8s infinite linear; }
        .geo-2 { transform: rotate(45deg); border-color: rgba(255, 215, 0, 0.4); animation: spin 10s infinite linear; }
        .geo-3 {
            width: 40%; height: 40%; top: 30%; left: 30%;
            background: rgba(0, 240, 255, 0.1);
            backdrop-filter: blur(4px);
            border-radius: 50%;
            border-color: var(--cyan);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
        }

        @keyframes spin { to { transform: rotate(360deg); } }
        @keyframes spin-reverse { to { transform: rotate(-360deg); } }

        .visual-tablet {
            position: relative;
            width: 120px;
            height: 160px;
            transform: perspective(800px) rotateY(-25deg) rotateX(5deg);
            transform-style: preserve-3d;
            margin-top: 0;
        }
        .tablet-screen {
            width: 100%;
            height: 100%;
            background: rgba(20, 20, 20, 0.9);
            border: 1px solid rgba(245, 245, 247, 0.2);
            border-radius: 12px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            box-shadow: -25px 35px 60px rgba(0,0,0,0.7), 0 0 25px rgba(0, 240, 255, 0.05);
        }
        .tablet-header { width: 60%; height: 6px; background: var(--gold); border-radius: 2px; margin-bottom: 10px; }
        .tablet-chart {
            flex: 1;
            background: linear-gradient(180deg, rgba(0, 240, 255, 0.1) 0%, transparent 100%);
            border-bottom: 1px solid var(--cyan);
            border-radius: 2px;
        }

        .visual-lens {
            position: relative;
            width: 140px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lens-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(245, 245, 247, 0.2); }
        .lens-1 { width: 140px; height: 140px; }
        .lens-2 { width: 110px; height: 110px; border-color: rgba(0, 240, 255, 0.3); }
        .lens-3 {
            width: 80px; height: 80px;
            border: 1px solid var(--cyan);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.4), inset 0 0 15px rgba(0, 240, 255, 0.2);
            background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent);
        }
        .wave-container {
            position: absolute;
            bottom: 10px;
            display: flex;
            gap: 4px;
            align-items: flex-end;
        }
        .wave-bar {
            width: 4px;
            background: var(--cyan);
            border-radius: 2px;
            animation: wave 1.2s infinite ease-in-out;
        }
        .wave-bar:nth-child(2) { animation-delay: 0.1s; }
        .wave-bar:nth-child(3) { animation-delay: 0.2s; }
        .wave-bar:nth-child(4) { animation-delay: 0.3s; }
        .wave-bar:nth-child(5) { animation-delay: 0.4s; }

        @keyframes wave {
            0%, 100% { height: 8px; }
            50% { height: 24px; }
        }

        /* Advantage Section */
        .advantage-section {
            padding: 10rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .advantage-header {
            margin-bottom: 6rem;
        }
        
        .advantage-header .section-title {
            margin-bottom: 1.5rem;
        }

        .section-sub {
            font-size: clamp(1rem, 1.2vw, 1.15rem);
            font-weight: 300;
            color: var(--muted);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

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

        .pillar {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 3.5rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-align: left;
        }

        .pillar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--cyan);
            box-shadow: 0 0 15px var(--cyan), 0 0 30px var(--cyan);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .pillar:hover {
            border-color: rgba(0, 240, 255, 0.2);
            background: rgba(0, 240, 255, 0.02);
            transform: translateY(-5px);
        }

        .pillar:hover::after {
            transform: scaleX(1);
        }

        .pillar-visual {
            width: 48px;
            height: 48px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Dynamic Spotlight Overlay */
        .spotlight-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 240, 255, 0.08), transparent 40%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 0;
        }
        .pillar:hover .spotlight-overlay {
            opacity: 1;
        }
        .pillar > * { position: relative; z-index: 1; }

        /* Premium SVGs */
        .pillar-svg {
            color: var(--silver);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            filter: drop-shadow(0 0 5px rgba(245,245,247,0.1));
            width: 32px;
            height: 32px;
        }
        
        .pillar:hover .svg-bolt {
            color: var(--cyan);
            filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5));
            transform: scale(1.1) rotate(5deg);
        }
        .pillar:hover .svg-bolt polygon {
            stroke-dasharray: 60;
            stroke-dashoffset: 60;
            animation: drawStroke 1s forwards ease-out;
        }

        .pillar:hover .svg-diamond {
            color: var(--gold);
            filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
            transform: scale(1.1) translateY(-3px);
        }
        .pillar:hover .svg-diamond path {
            stroke-dasharray: 80;
            stroke-dashoffset: 80;
            animation: drawStroke 1.2s forwards ease-out;
        }

        .pillar:hover .svg-loop {
            color: var(--cyan);
            filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5));
            transform: scale(1.1);
        }
        .pillar:hover .svg-loop path {
            stroke-dasharray: 50;
            stroke-dashoffset: 50;
            animation: drawStroke 1.5s forwards linear infinite;
        }

        @keyframes drawStroke {
            to { stroke-dashoffset: 0; }
        }

        .pillar-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .pillar-text {
            font-size: 0.95rem;
            font-weight: 300;
            color: var(--muted);
            line-height: 1.6;
        }

        /* Global Authority Section */
        .authority-section {
            min-height: 100vh;
            padding: 10rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .radar-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 900px;
            height: 900px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 0;
            opacity: 0.4;
        }

        .radar-ring {
            position: absolute;
            border: 1px solid rgba(245, 245, 247, 0.05);
            border-radius: 50%;
            animation: pulse-ring 8s infinite cubic-bezier(0.4, 0, 0.6, 1);
        }
        .ring-1 { width: 300px; height: 300px; border-color: rgba(0, 240, 255, 0.1); }
        .ring-2 { width: 600px; height: 600px; border-color: rgba(0, 240, 255, 0.05); animation-delay: 2s; }
        .ring-3 { width: 900px; height: 900px; border-color: rgba(0, 240, 255, 0.02); animation-delay: 4s; }

        .radar-sweep {
            position: absolute;
            width: 450px;
            height: 450px;
            background: conic-gradient(from 0deg, transparent 0deg, transparent 320deg, rgba(0, 240, 255, 0.15) 360deg);
            border-radius: 50%;
            animation: spin 4s infinite linear;
        }

        .radar-node {
            position: absolute;
            width: 4px; height: 4px;
            background: var(--cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--cyan);
        }
        .node-1 { top: 30%; left: 40%; animation: blink 2s infinite; }
        .node-2 { top: 70%; left: 60%; animation: blink 3s infinite 0.5s; }
        .node-3 { top: 20%; left: 70%; animation: blink 2.5s infinite 1s; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
        .node-4 { top: 80%; left: 30%; animation: blink 3.5s infinite 1.5s; }

        @keyframes pulse-ring {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.05); opacity: 0.2; }
        }

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

        .authority-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .counter-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(8rem, 22vw, 18rem);
            font-weight: 700;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(245, 245, 247, 0.4);
            letter-spacing: -0.04em;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .counter-plus {
            -webkit-text-stroke: 1.5px var(--cyan);
            filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4));
        }

        .counter-text {
            font-size: clamp(1.1rem, 1.5vw, 1.4rem);
            font-weight: 300;
            color: rgba(245, 245, 247, 0.7);
            max-width: 500px;
            margin-bottom: 4rem;
            line-height: 1.5;
        }

        .wa-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 1.2rem 2.5rem;
            background: transparent;
            border: 1px solid rgba(245, 245, 247, 0.2);
            border-radius: 50px;
            color: var(--silver);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: none;
        }

        .wa-cta svg {
            width: 18px;
            height: 18px;
            stroke: var(--silver);
            transition: all 0.4s ease;
        }

        .wa-cta:hover {
            transform: translateY(-3px);
            border-color: var(--cyan);
            box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1), 0 0 20px rgba(0, 240, 255, 0.1);
        }

        .wa-cta:hover svg {
            stroke: var(--cyan);
        }

        /* Application Form Section */
        .apply-section {
            padding: 10rem 4rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .apply-header {
            margin-bottom: 5rem;
        }
        
        .apply-header .section-title {
            margin-bottom: 1.5rem;
        }

        .application-form {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 4rem;
            border-radius: 24px;
            text-align: left;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .form-field {
            position: relative;
        }

        .form-field.full-width {
            grid-column: span 2;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #333;
            padding: 1.5rem 0 0.75rem 0;
            color: var(--silver);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            outline: none;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
            cursor: none;
        }

        .form-textarea {
            resize: none;
            min-height: 80px;
        }

        .form-label {
            position: absolute;
            top: 1.5rem;
            left: 0;
            color: var(--muted);
            font-size: 1rem;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .form-input:focus ~ .form-label,
        .form-input:not(:placeholder-shown) ~ .form-label,
        .form-textarea:focus ~ .form-label,
        .form-textarea:not(:placeholder-shown) ~ .form-label {
            top: 0;
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--cyan);
        }

        .form-input:focus,
        .form-textarea:focus {
            border-bottom-color: var(--cyan);
            box-shadow: 0 1px 0 0 var(--cyan);
        }

        /* Currency Switcher Toggle */
        .currency-toggle {
            position: absolute;
            right: 0;
            top: 0;
            display: flex;
            gap: 4px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 2px;
            z-index: 5;
        }

        .currency-btn {
            background: transparent;
            border: none;
            padding: 4px 12px;
            color: var(--muted);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            border-radius: 9px;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: none;
        }

        .currency-btn:hover {
            color: var(--silver);
        }

        .currency-btn.active {
            color: var(--obsidian);
            background: var(--cyan);
            font-weight: 600;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
        }

        .custom-select {
            position: relative;
            user-select: none;
        }

        .select-trigger {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #333;
            padding: 1.5rem 0 0.75rem 0;
            color: var(--silver);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            cursor: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: border-color 0.4s ease;
        }

        .custom-select.active .select-trigger {
            border-bottom-color: var(--cyan);
            box-shadow: 0 1px 0 0 var(--cyan);
        }

        .select-label {
            position: absolute;
            top: 0;
            left: 0;
            color: var(--cyan);
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .select-value { color: var(--silver); }
        .select-value.placeholder { color: var(--muted); }

        .select-arrow {
            width: 12px;
            height: 12px;
            border-right: 1px solid var(--muted);
            border-bottom: 1px solid var(--muted);
            transform: rotate(45deg) translateY(-3px);
            transition: transform 0.3s ease;
        }

        .custom-select.active .select-arrow {
            transform: rotate(-135deg) translateY(3px);
            border-color: var(--cyan);
        }

        .select-options {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            width: 100%;
            background: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-10px);
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 10;
        }

        .custom-select.active .select-options {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            border-color: rgba(0, 240, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .option {
            padding: 1rem 1.5rem;
            cursor: none;
            transition: background 0.2s ease, color 0.2s ease;
            color: var(--muted);
        }

        .option:hover {
            background: rgba(0, 240, 255, 0.05);
            color: var(--cyan);
        }

        .submit-btn {
            position: relative;
            width: 100%;
            padding: 1.5rem;
            background: transparent;
            border: 1px solid var(--cyan);
            color: var(--cyan);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            cursor: none;
            overflow: hidden;
            transition: color 0.4s ease, box-shadow 0.4s ease;
            margin-top: 1rem;
            z-index: 1;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--cyan);
            transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: -1;
        }

        .submit-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            animation: scan 2.5s infinite linear;
            z-index: -1;
        }

        .submit-btn:hover {
            color: var(--obsidian);
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
        }

        .submit-btn:hover::before {
            left: 0;
        }

        @keyframes scan {
            0% { left: -50%; }
            100% { left: 150%; }
        }

        .alt-booking {
            margin-top: 3rem;
            text-align: center;
            font-size: 0.95rem;
            color: var(--muted);
        }

        .alt-link {
            color: var(--silver);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: 0.5rem;
            transition: color 0.3s ease;
            cursor: none;
        }

        .alt-link .arrow {
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .alt-link:hover {
            color: var(--gold);
        }

        .alt-link:hover .arrow {
            transform: translateX(6px);
        }

        /* Corporate Footer */
        .corporate-footer {
            padding: 6rem 4rem 3rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 4rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 5rem;
        }

        .footer-brand {
            max-width: 400px;
        }

        .footer-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: rgba(245, 245, 247, 0.15);
            margin-bottom: 1.5rem;
        }

        .footer-tagline {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.6;
        }

        .footer-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--silver);
            margin-bottom: 1.5rem;
        }

        .footer-link {
            display: block;
            color: var(--muted);
            text-decoration: none;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            transition: color 0.3s ease, transform 0.3s ease;
            cursor: none;
        }

        .footer-link:hover {
            color: var(--silver);
            transform: translateX(4px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 2rem;
            text-align: center;
        }

        .copyright {
            font-size: 0.8rem;
            color: rgba(245, 245, 247, 0.3);
            letter-spacing: 0.05em;
        }

        /* Reveal Classes */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
        }

        .back-btn {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            color: var(--silver);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
            cursor: none;
        }
        
        .back-btn:hover {
            color: var(--cyan);
        }

        .reviews-section {
            padding: 8rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 900px) {
            header { padding: 1.2rem 1.5rem; }
            .desktop-nav, .nav-cta { display: none; }
            .hamburger { display: flex; }
            header div {
                display: flex;
                gap: 1.5rem;
                align-items: center;
            }
            .hide-mobile {
                display: none !important;
            }
            header div a {
                font-size: 0.75rem !important;
                padding: 0.4rem 0.8rem !important;
            }
            .back-btn {
                font-size: 0.75rem !important;
                gap: 4px !important;
            }
            .reviews-section {
                padding: 4rem 1.2rem !important;
            }
            .capabilities-section, .advantage-section, .authority-section, .apply-section, .corporate-footer { padding: 6rem 1.5rem; }
            .bento-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(280px, auto); }
            .card-large, .card-wide { grid-column: span 1; flex-direction: column; }
            .card-large .card-content, .card-wide .card-content { width: 100%; }
            .card-large .card-visual, .card-wide .card-visual { width: 100%; margin-top: 2rem; }
            .pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .radar-bg { width: 600px; height: 600px; }
            .radar-sweep { width: 300px; height: 300px; }
            .ring-3 { display: none; }
            .form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .form-field.full-width { grid-column: span 1; }
            .application-form { padding: 2.5rem 1.5rem; }
            .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
            .footer-brand { grid-column: span 2; }
        }

        @media (max-width: 600px) {
            header {
                padding: 1rem 1.2rem !important;
            }
            .syntheq-logo {
                height: 24px !important;
            }
            header div {
                gap: 0.6rem !important;
            }
            .radar-bg { width: 350px; height: 350px; }
            .radar-sweep { width: 175px; height: 175px; }
            .ring-1 { width: 200px; height: 200px; }
            .ring-2 { width: 350px; height: 350px; }
            .hero-headline { font-size: 2.5rem; }
            .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
            .footer-brand { grid-column: span 1; }
            .preloader-text { letter-spacing: 0.2em; font-size: 1.5rem; }
            .counter-number { font-size: 6rem; }
            .visual-laptop { width: 80%; }
            .review-card-modern {
                width: 310px !important;
                max-width: 85vw !important;
                padding: 1.8rem 1.5rem !important;
                flex-shrink: 0 !important;
            }
        }

        /* Marquee Reviews Styles */
        .marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 1rem 0;
            margin-bottom: 2rem;
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }
        .marquee-track {
            display: flex;
            gap: 2rem;
            width: max-content;
            animation: scroll-left 40s linear infinite;
        }
        .marquee-track:hover {
            animation-play-state: paused;
        }
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 1rem)); }
        }

        .review-card-modern {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: left;
            width: 450px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
            cursor: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .review-card-modern:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 240, 255, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.1);
        }
        .review-card-modern::before {
            content: '"';
            position: absolute;
            top: -20px;
            right: 20px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.03);
            pointer-events: none;
            line-height: 1;
        }
        .rev-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        .rev-stars {
            color: var(--gold);
            font-size: 1.2rem;
            letter-spacing: 2px;
        }
        .rev-location {
            font-size: 0.75rem;
            color: var(--muted);
            background: rgba(255,255,255,0.05);
            padding: 4px 10px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .rev-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--silver);
            margin-bottom: 2rem;
            font-style: italic;
            font-weight: 300;
        }
        .rev-client {
            display: flex;
            align-items: center;
            gap: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.5rem;
        }
        .rev-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cyan), #0055ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--obsidian);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
        }
        .rev-info h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            color: var(--silver);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .verified-badge {
            color: var(--cyan);
            font-size: 0.8rem;
            display: flex;
            align-items: center;
        }
        .rev-info p {
            font-size: 0.8rem;
            color: var(--muted);
        }

        @media (hover: none) and (pointer: coarse) {
            .cursor-dot { display: none !important; }
        }

/* Custom Cursor Fallback Logic */
html, body, .interactive, a, button, input, textarea, .select-trigger, .option, .submit-btn, .alt-link, .back-btn, .custom-select {
    cursor: auto !important;
}

html.js-cursor-active, 
html.js-cursor-active body, 
html.js-cursor-active .interactive, 
html.js-cursor-active a, 
html.js-cursor-active button, 
html.js-cursor-active input, 
html.js-cursor-active textarea, 
html.js-cursor-active .select-trigger, 
html.js-cursor-active .option, 
html.js-cursor-active .submit-btn, 
html.js-cursor-active .alt-link, 
html.js-cursor-active .back-btn,
html.js-cursor-active .custom-select {
    cursor: none !important;
}


        /* ==========================================
        /* About Us Page Styles
        /* ========================================== */
        .ab-hero { padding: 12rem 2rem 6rem; text-align: center; max-width: 900px; margin: 0 auto; position: relative; z-index: 10; }
        .ab-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; margin-bottom: 2rem; background: linear-gradient(90deg, var(--cyan), var(--silver)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; }
        .ab-desc { font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: var(--muted); line-height: 1.8; margin-bottom: 4rem; font-weight: 300; }
        .conn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 4rem; }
        .conn-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 3rem 2rem; text-align: center; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); text-decoration: none; display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; }
        .conn-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.04), transparent 45%); opacity: 0; transition: opacity 0.3s ease; }
        .conn-card:hover::before { opacity: 1; }
        .conn-card > * { position: relative; z-index: 1; }
        .conn-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.15); }
        .conn-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--silver); transition: all 0.3s ease; }
        .card-wa:hover .conn-icon { color: #25D366; filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.4)); }
        .card-wa:hover { border-color: rgba(37, 211, 102, 0.25); background: rgba(37, 211, 102, 0.02); }
        .card-ig:hover .conn-icon { color: #E1306C; filter: drop-shadow(0 0 10px rgba(225, 48, 108, 0.4)); }
        .card-ig:hover { border-color: rgba(225, 48, 108, 0.25); background: rgba(225, 48, 108, 0.02); }
        .card-em:hover .conn-icon { color: var(--cyan); filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4)); }
        .card-em:hover { border-color: rgba(0, 240, 255, 0.25); background: rgba(0, 240, 255, 0.02); }
        .conn-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 600; color: var(--silver); margin-bottom: 0.5rem; }
        .conn-val { font-size: 0.95rem; color: var(--muted); }

        /* Floating WhatsApp Button styles */
        .whatsapp-float {
            position: fixed;
            bottom: 35px;
            right: 35px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
            z-index: 9999;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-3px);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5), 0 0 25px rgba(37, 211, 102, 0.4);
            color: #fff;
        }

        .whatsapp-icon {
            width: 32px;
            height: 32px;
            fill: currentColor;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            transition: transform 0.4s ease;
        }

        .whatsapp-float:hover .whatsapp-icon {
            transform: rotate(10deg);
        }

        .whatsapp-pulse {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            border: 1px solid rgba(37, 211, 102, 0.4);
            animation: whatsapp-pulse 2s infinite ease-out;
            pointer-events: none;
            z-index: -1;
        }

        .whatsapp-pulse-second {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            border: 1px solid rgba(37, 211, 102, 0.2);
            animation: whatsapp-pulse 2s infinite ease-out;
            animation-delay: 1s;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes whatsapp-pulse {
            0% {
                transform: scale(1);
                opacity: 0.6;
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                transform: scale(1.5);
                opacity: 0;
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 80px;
            background: rgba(15, 15, 15, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            padding: 8px 16px;
            border-radius: 8px;
            color: var(--silver);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 52px;
                height: 52px;
            }
            .whatsapp-icon {
                width: 26px;
                height: 26px;
            }
            .whatsapp-tooltip {
                display: none;
            }
        }
