        /* ============ CSS VARIABLES ============ */
        :root {
            --sync-color: #1a1d7e;
            --sync-gradient: linear-gradient(135deg, #00023b 0%, #0a0d5e 40%, #1a1d7e 100%);
            --sync-gradient-hover: linear-gradient(135deg, #1a1d7e 0%, #0a0d5e 60%, #00023b 100%);
            --accent: #3b82f6;
            --accent-light: #60a5fa;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --text-light: #94a3b8;
            --bg-white: #ffffff;
            --bg-light: #f8fafc;
            --bg-section: #f1f5f9;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
            --radius: 12px;
            --radius-lg: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ============ RESET & BASE ============ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            overflow-x: hidden;
        }

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

        /* ============ PRELOADER ============ */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(160deg, #000318 0%, #03063d 35%, #0a0d5e 65%, #060940 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            overflow: hidden;
            transition: opacity 1s ease,
                        visibility 1s ease;
            --preloader-ease: cubic-bezier(0.22, 1, 0.36, 1);
            --logo-delay: 0.18s;
            --title-delay: 0.62s;
            --line-delay: 0.9s;
            --subtitle-delay: 1.12s;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .preloader.hidden .preloader-center {
            opacity: 0;
        }

        /* Ambient background orbs */
        .preloader-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .preloader-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0;
        }

        .preloader-orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
            top: -15%;
            right: -10%;
        }

        .preloader-orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
            bottom: -10%;
            left: -8%;
        }

        .preloader.is-ready .preloader-orb {
            animation: orbFadeFloat 2s ease-out forwards;
        }

        .preloader.is-ready .preloader-orb-2 {
            animation-delay: 0.3s;
        }

        @keyframes orbFadeFloat {
            0% { opacity: 0; transform: scale(0.6); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* Center content */
        .preloader-center {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: opacity 1s ease;
        }

        /* Logo wrap — holds ring SVG + glow + logo */
        .preloader-logo-wrap {
            position: relative;
            width: 250px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* CSS ring */
        .preloader-ring {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.06);
            opacity: 0;
        }

        .preloader-ring::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: rgba(96,165,250,0.8);
            border-right-color: rgba(167,139,250,0.4);
            opacity: 0;
            transform: rotate(0deg);
        }

        .preloader.is-ready .preloader-ring {
            animation: ringFadeIn 0.7s var(--preloader-ease) var(--logo-delay) forwards;
        }

        .preloader.is-ready .preloader-ring::before {
            animation: ringFadeIn 0.7s var(--preloader-ease) var(--logo-delay) forwards,
                       ringRotate 2.1s cubic-bezier(0.4, 0, 0.2, 1) var(--logo-delay) infinite;
        }

        @keyframes ringFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes ringRotate {
            to { transform: rotate(360deg); }
        }

        /* Glow behind the ring */
        .preloader-ring-glow {
            position: absolute;
            inset: -15px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 70%);
            opacity: 0;
            transform: scale(0.8);
        }

        .preloader.is-ready .preloader-ring-glow {
            animation: glowPulse 1.05s var(--preloader-ease) 0.36s forwards;
        }

        @keyframes glowPulse {
            0% { opacity: 0; transform: scale(0.9); }
            100% { opacity: 0.8; transform: scale(1); }
        }

        /* Logo inside ring */
        .preloader-logo-box {
            width: 185px;
            height: 185px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            opacity: 0;
            transform: scale(0.7);
        }

        .preloader.is-ready .preloader-logo-box {
            animation: logoReveal 0.95s var(--preloader-ease) var(--logo-delay) forwards;
        }

        @keyframes logoReveal {
            0% { opacity: 0; transform: scale(0.7); }
            100% { opacity: 1; transform: scale(1); }
        }

        .preloader-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
            display: block;
        }

        /* Text group */
        .preloader-text-group {
            margin-top: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .preloader-text {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 3.8vw, 3rem);
            font-weight: 700;
            line-height: 1;
            display: inline-flex;
            align-items: baseline;
            gap: 0.25em;
            letter-spacing: -0.02em;
            opacity: 0;
            transform: translateY(24px);
        }

        .preloader-text-primary {
            font-weight: 300;
            color: rgba(255,255,255,0.92);
        }

        .preloader-text-accent {
            font-weight: 800;
            color: #ffffff;
        }

        .preloader.is-ready .preloader-text {
            animation: textReveal 0.72s var(--preloader-ease) var(--title-delay) forwards;
        }

        @keyframes textReveal {
            0% { opacity: 0; transform: translateY(24px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Decorative line between text and subtitle */
        .preloader-line {
            width: 130px;
            height: 1px;
            margin-top: 16px;
            background: linear-gradient(90deg, transparent, rgba(96,165,250,0.6), rgba(167,139,250,0.4), transparent);
            opacity: 0;
            transform: scaleX(0.2) translateY(2px);
            transform-origin: center;
            filter: blur(1.5px);
        }

        .preloader.is-ready .preloader-line {
            animation: lineReveal 0.72s var(--preloader-ease) var(--line-delay) forwards;
        }

        @keyframes lineReveal {
            0% { opacity: 0; transform: scaleX(0.2) translateY(2px); filter: blur(2px); }
            60% { opacity: 0.9; transform: scaleX(1.04) translateY(0); filter: blur(0.5px); }
            100% { opacity: 1; transform: scaleX(1) translateY(0); filter: blur(0); }
        }

        /* Subtitle */
        .preloader-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            margin-top: 14px;
            color: rgba(255,255,255,0.4);
            letter-spacing: 0.35em;
            text-transform: uppercase;
            white-space: nowrap;
            opacity: 0;
            transform: translateY(10px);
            filter: blur(2px);
        }

        .preloader.is-ready .preloader-subtitle {
            animation: subtitleReveal 0.82s var(--preloader-ease) var(--subtitle-delay) forwards;
        }

        @keyframes subtitleReveal {
            0% { opacity: 0; transform: translateY(10px); letter-spacing: 0.4em; filter: blur(2px); }
            100% { opacity: 1; transform: translateY(0); letter-spacing: 0.35em; filter: blur(0); }
        }

        /* ============ NAVBAR ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        -webkit-backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            padding: 14px 0;
            box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 40px rgba(0,0,0,0.06);
        }

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

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: var(--transition);
        }

        .nav-logo:hover {
            opacity: 0.85;
        }

        .nav-logo-divider {
            width: 1.5px;
            height: 30px;
            background: rgba(255,255,255,0.3);
            border-radius: 1px;
            transition: var(--transition);
        }

        .navbar.scrolled .nav-logo-divider {
            background: rgba(26, 29, 126, 0.15);
        }

        .nav-logo img {
            height: 62px;
            width: auto;
            transition: var(--transition);
            filter: brightness(0) invert(1);
        }

        .navbar.scrolled .nav-logo img {
            height: 56px;
            filter: none;
        }

        .nav-logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            transition: var(--transition);
            line-height: 1;
            letter-spacing: -0.3px;
        }

        .nav-logo-text span {
            font-weight: 800;
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar.scrolled .nav-logo-text {
            color: var(--text-primary);
        }

        .navbar.scrolled .nav-logo-text span {
            background: var(--sync-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .nav-links a {
            text-decoration: none;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            font-size: 1.05rem;
            padding: 10px 20px;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
            letter-spacing: 0.2px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 20px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a.nav-cta::after {
            display: none;
        }

        .navbar.scrolled .nav-links a::after {
            background: var(--sync-color);
        }

        .navbar.scrolled .nav-links a {
            color: var(--text-secondary);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: white;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        .navbar.scrolled .nav-links a:hover,
        .navbar.scrolled .nav-links a.active {
            color: var(--sync-color);
        }

        .nav-cta {
            background: white !important;
            color: var(--sync-color) !important;
            font-weight: 600 !important;
            padding: 12px 30px !important;
            border-radius: 50px !important;
            font-size: 1.05rem !important;
            box-shadow: 0 2px 12px rgba(255,255,255,0.15);
            letter-spacing: 0.3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        .nav-cta:hover {
            transform: translateY(-1px) !important;
            box-shadow: 0 4px 20px rgba(255,255,255,0.25) !important;
        }

        .navbar.scrolled .nav-cta {
            background: var(--sync-gradient) !important;
            color: white !important;
            box-shadow: 0 2px 12px rgba(26, 29, 126, 0.25);
        }

        .navbar.scrolled .nav-cta:hover {
            box-shadow: 0 4px 20px rgba(26, 29, 126, 0.35) !important;
        }

        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2.5px;
            background: white;
            border-radius: 2px;
            transition: var(--transition);
        }

        .navbar.scrolled .hamburger span {
            background: var(--sync-color);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: white;
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
            background: white;
        }

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

        /* ============ HERO SECTION ============ */
        .hero {
            min-height: 100vh;
            padding-top: 120px;
            background: linear-gradient(135deg, #000318 0%, #060b42 30%, #0d1260 60%, #0a0d52 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: heroFloat 15s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: heroFloat 18s ease-in-out infinite reverse;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -25px); }
        }

        /* Grid pattern overlay */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            color: white;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 22px;
            backdrop-filter: blur(10px);
            letter-spacing: 0.3px;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.3rem;
            font-weight: 800;
            line-height: 1.04;
            margin-bottom: 18px;
            text-shadow: 0 0 80px rgba(96,165,250,0.15);
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, #60a5fa, #c084fc, #818cf8, #60a5fa);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 4s linear infinite;
        }

        @keyframes shimmer {
            to { background-position: 200% center; }
        }

        .hero p {
            font-size: 1.05rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
            margin-bottom: 28px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.98rem;
            text-decoration: none;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .btn-primary {
            background: white;
            color: var(--sync-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.18);
        }

        .btn-outline {
            background: rgba(255,255,255,0.04);
            color: white;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-3px);
        }

        .btn-gradient {
            background: var(--sync-gradient);
            color: white;
            box-shadow: 0 4px 20px rgba(26,29,126,0.3);
        }

        .btn-gradient:hover {
            background: var(--sync-gradient-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(26,29,126,0.4);
        }

        /* Hero Visual */
        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(20px);
            width: 100%;
            max-width: 460px;
            animation: cardFloat 6s ease-in-out infinite;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
        }

        .hero-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .hero-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
        }

        .hero-card-icon {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.12);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .hero-card-title {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .hero-card-subtitle {
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .hero-stat {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            padding: 22px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .hero-stat:hover {
            background: rgba(255,255,255,0.09);
            transform: translateY(-4px);
        }

        .hero-stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
        }

        .hero-stat-label {
            color: rgba(255,255,255,0.6);
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 4px;
        }

        /* ============ SECTION STYLING ============ */
        .section {
            padding: 100px 0;
        }

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

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, rgba(26, 29, 126, 0.08), rgba(139,92,246,0.06));
            color: var(--sync-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: 1px solid rgba(26, 29, 126, 0.1);
        }

        .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.15;
            letter-spacing: -0.5px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* ============ ABOUT SECTION ============ */
        #about {
            background: var(--bg-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            background: var(--bg-light);
            border-radius: 12px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-primary);
            border: 1px solid transparent;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .about-feature:hover {
            background: white;
            border-color: rgba(26, 29, 126, 0.12);
            box-shadow: 0 4px 16px rgba(10, 13, 94, 0.08);
            transform: translateY(-2px);
        }

        .about-feature-icon {
            width: 32px;
            height: 32px;
            background: var(--sync-gradient);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .about-visual {
            position: relative;
        }

        .about-card-main {
            background: linear-gradient(135deg, #050a3a 0%, #0d1060 50%, #1a1d7e 100%);
            border-radius: var(--radius-lg);
            padding: 50px 40px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(10, 13, 94, 0.2);
        }

        .about-card-main::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
            border-radius: 50%;
        }

        .about-card-main h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
        }

        .about-card-main p {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
            line-height: 1.7;
            position: relative;
        }

        .about-year {
            font-family: 'Poppins', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: rgba(255,255,255,0.08);
            position: absolute;
            bottom: 10px;
            right: 30px;
        }

        .about-info-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 16px;
        }

        .about-info-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .about-info-card:hover {
            box-shadow: 0 12px 30px rgba(10, 13, 94, 0.1);
            transform: translateY(-5px);
            border-color: rgba(26, 29, 126, 0.15);
        }

        .about-info-card .icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .about-info-card h5 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--sync-color);
            margin-bottom: 4px;
        }

        .about-info-card span {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* ============ SERVICES SECTION ============ */
        #services {
            background: var(--bg-section);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 30px;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa, #818cf8);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(26, 29, 126, 0.04), transparent 70%);
            border-radius: 50%;
            transition: all 0.5s ease;
            opacity: 0;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(10, 13, 94, 0.14), 0 0 0 1px rgba(99,102,241,0.08);
            border-color: transparent;
        }

        .service-card:hover::before {
            transform: scaleX(0);
        }

        .service-card:hover::after {
            opacity: 1;
            bottom: -40px;
            right: -40px;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(26, 29, 126, 0.08), rgba(139,92,246,0.06));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #1a1d7e, #4338ca);
            transform: scale(1.12) rotate(-5deg);
            box-shadow: 0 10px 25px rgba(10, 13, 94, 0.3);
        }

        .service-card:hover .service-icon svg {
            stroke: white;
            color: white;
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .service-features {
            margin-top: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .service-features li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .service-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--sync-color);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ============ CLIENTS SECTION ============ */
        #clients {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
            overflow: hidden;
        }

        .clients-slider-wrapper {
            position: relative;
            overflow: hidden;
            padding: 16px 0;
            /* Fade edges — works on any background */
            -webkit-mask-image: linear-gradient(
                90deg,
                transparent 0%,
                #000 10%,
                #000 90%,
                transparent 100%
            );
            mask-image: linear-gradient(
                90deg,
                transparent 0%,
                #000 10%,
                #000 90%,
                transparent 100%
            );
        }

        .clients-track {
            display: flex;
            gap: 24px;
            animation: scrollClients 38s linear infinite;
            width: max-content;
            will-change: transform;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .clients-track:hover {
            animation-play-state: paused;
        }

        .clients-track-reverse {
            animation-direction: reverse;
            animation-duration: 44s;
        }

        @keyframes scrollClients {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        .client-card {
            flex-shrink: 0;
            width: 220px;
            height: 140px;
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 28px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
        }

        .client-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--sync-gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px;
            z-index: 0;
        }

        .client-card:hover {
            border-color: transparent;
            box-shadow: 0 12px 40px rgba(10, 13, 94, 0.14);
            transform: translateY(-8px) scale(1.04);
        }

        .client-card:hover::after {
            opacity: 0.04;
        }

        .client-card img {
            max-width: 220px;
            max-height: 110px;
            object-fit: contain;
            filter: none;
            opacity: 0.85;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 1;
        }

        .client-card:hover img {
            filter: none;
            opacity: 1;
            transform: scale(1.08);
        }

        .client-card-placeholder {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--sync-color);
            opacity: 0.7;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-align: center;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        .client-card:hover .client-card-placeholder {
            opacity: 1;
            transform: scale(1.05);
            color: var(--sync-color);
        }

        /* ============ CONTACT SECTION ============ */
        #contact {
            background: var(--bg-section);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: stretch;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: space-between;
        }

        .contact-info h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .contact-info > p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 20px;
            background: var(--bg-white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-item:hover {
            box-shadow: 0 6px 20px rgba(10, 13, 94, 0.08);
            transform: translateX(6px);
            border-color: rgba(26, 29, 126, 0.15);
        }

        .contact-item-icon {
            width: 46px;
            height: 46px;
            background: var(--sync-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-item-text h5 {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .contact-item-text p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .contact-item-text a {
            color: var(--sync-color);
            text-decoration: none;
            font-weight: 500;
        }

        .contact-form-card {
            display: flex;
            flex-direction: column;
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
        }

        .contact-form-card h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 28px;
            color: var(--text-primary);
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
            background: var(--bg-light);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--sync-color);
            box-shadow: 0 0 0 3px rgba(26, 29, 126, 0.08);
            background: var(--bg-white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--sync-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-submit:hover {
            background: var(--sync-gradient-hover);
            box-shadow: 0 6px 25px rgba(26,29,126,0.3);
            transform: translateY(-2px);
        }

        /* ============ FOOTER ============ */
        .footer {
            background: linear-gradient(180deg, #020420 0%, #0a0d3a 30%, #0d1050 60%, #0a0d3a 100%);
            color: white;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        /* Animated mesh bg */
        .footer-bg-mesh {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image:
                radial-gradient(ellipse 600px 400px at 15% 20%, rgba(59,130,246,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 500px 500px at 85% 70%, rgba(167,139,250,0.10) 0%, transparent 70%),
                radial-gradient(ellipse 300px 300px at 50% 90%, rgba(96,165,250,0.08) 0%, transparent 70%);
        }

        .footer-bg-mesh::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 80px 80px;
        }

        /* Animated floating orbs */
        .footer-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            pointer-events: none;
            z-index: 0;
            animation: orbDrift 12s ease-in-out infinite;
            will-change: transform;
        }

        .footer-orb-1 {
            width: 300px;
            height: 300px;
            background: rgba(59,130,246,0.08);
            top: -80px;
            right: -60px;
            animation-delay: 0s;
        }

        .footer-orb-2 {
            width: 200px;
            height: 200px;
            background: rgba(167,139,250,0.06);
            bottom: 40px;
            left: -40px;
            animation-delay: -4s;
        }

        .footer-orb-3 {
            width: 250px;
            height: 250px;
            background: rgba(96,165,250,0.06);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -8s;
        }

        @keyframes orbDrift {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(20px, -25px) scale(1.1); }
            66% { transform: translate(-15px, 15px) scale(0.95); }
        }

        /* Wave separator */
        .footer-wave {
            position: relative;
            margin-top: -2px;
            z-index: 1;
        }

        .footer-wave svg {
            display: block;
            width: 100%;
            height: 80px;
        }

        /* Footer CTA Banner */
        .footer-cta {
            position: relative;
            z-index: 2;
            padding: 80px 24px 60px;
        }

        .footer-cta-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 28px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
        }

        .footer-cta-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(96,165,250,0.6), transparent);
        }

        .footer-cta-inner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
        }

        .footer-cta h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .footer-cta h3 .footer-cta-accent {
            background: linear-gradient(135deg, #60a5fa, #a78bfa, #60a5fa);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s linear infinite;
        }

        .footer-cta p {
            color: rgba(255,255,255,0.6);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .footer-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer-cta .btn-primary {
            background: white;
            color: var(--sync-color);
            padding: 15px 40px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 25px rgba(0,0,0,0.2);
        }

        .footer-cta .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(59,130,246,0.3);
        }

        .footer-cta .btn-outline-footer {
            border: 2px solid rgba(255,255,255,0.2);
            color: white;
            padding: 15px 40px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            background: rgba(255,255,255,0.04);
            transition: var(--transition);
        }

        .footer-cta .btn-outline-footer:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-3px);
        }

        /* Footer Main Content */
        .footer-main {
            position: relative;
            z-index: 2;
            padding: 70px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.5);
            font-size: 0.95rem;
            line-height: 1.9;
            max-width: 320px;
        }

        .footer-logo {
            height: 100px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
            align-self: flex-start;
            margin-top: -10px;
            margin-left: -10px;
            transition: var(--transition);
        }

        .footer-logo:hover {
            filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(96,165,250,0.5));
        }

        /* Brand social icons under description */
        .footer-brand-social {
            display: flex;
            gap: 12px;
            margin-top: 4px;
        }

        .footer-brand-social a {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 1.05rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .footer-brand-social a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(167,139,250,0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 12px;
        }

        .footer-brand-social a:hover {
            border-color: rgba(96,165,250,0.4);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(59,130,246,0.15);
        }

        .footer-brand-social a:hover::before {
            opacity: 1;
        }

        .footer-brand-social a span {
            position: relative;
            z-index: 1;
        }

        .footer h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 28px;
            color: rgba(255,255,255,0.4);
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 14px;
        }

        .footer h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #60a5fa, transparent);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0;
            padding: 4px 0;
            position: relative;
        }

        .footer-links a::before {
            content: '';
            width: 0;
            height: 1.5px;
            background: linear-gradient(90deg, #60a5fa, transparent);
            transition: width 0.3s ease;
            margin-right: 0;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(6px);
        }

        .footer-links a:hover::before {
            width: 16px;
            margin-right: 8px;
        }

        /* Contact items with icons */
        .footer-contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .footer-contact-icon {
            width: 38px;
            height: 38px;
            min-width: 38px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-contact-item:hover .footer-contact-icon {
            background: rgba(59,130,246,0.15);
            border-color: rgba(59,130,246,0.25);
        }

        .footer-contact-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .footer-contact-text span {
            color: rgba(255,255,255,0.35);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .footer-contact-text a,
        .footer-contact-text p {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.93rem;
            transition: var(--transition);
            margin: 0;
            line-height: 1.4;
        }

        .footer-contact-text a:hover {
            color: white;
        }



        /* Divider */
        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), rgba(255,255,255,0.06), transparent);
            margin: 50px 0 0;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 28px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.3);
            font-size: 0.85rem;
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 600;
        }

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

        .footer-bottom-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.3);
            font-size: 0.85rem;
            font-weight: 400;
        }

        .footer-bottom-links a:hover {
            color: rgba(255,255,255,0.7);
        }

        /* Footer responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
                text-align: left;
            }

            .footer-brand {
                align-items: flex-start;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .footer-brand-social {
                justify-content: flex-start;
            }

            .footer-logo {
                align-self: flex-start;
            }

            .footer h4 {
                text-align: left;
            }

            .footer h4::after {
                left: 0;
                transform: none;
            }

            .footer-links {
                align-items: flex-start;
            }

            .footer-contact-item {
                justify-content: flex-start;
            }

            .footer-cta h3 {
                font-size: 1.8rem;
            }

            .footer-cta-inner {
                padding: 40px 24px;
                border-radius: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: left;
            }

            .footer-bottom-right {
                flex-direction: column;
                gap: 10px;
            }
        }

        /* ============ SCROLL TO TOP ============ */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--sync-gradient);
            color: white;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(26,29,126,0.25);
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }



        /* ============ ANIMATIONS ON SCROLL ============ */
        .reveal {
            opacity: 0;
            transform: translate3d(0, 40px, 0);
            transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            backface-visibility: hidden;
        }

        .reveal.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0) rotate(0) scale3d(1, 1, 1);
        }

        /* Directional reveals */
        .reveal-left {
            opacity: 0;
            transform: translate3d(-60px, 0, 0);
            transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            backface-visibility: hidden;
        }
        .reveal-left.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        .reveal-right {
            opacity: 0;
            transform: translate3d(60px, 0, 0);
            transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            backface-visibility: hidden;
        }
        .reveal-right.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale3d(0.85, 0.85, 1);
            transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            backface-visibility: hidden;
        }
        .reveal-scale.visible {
            opacity: 1;
            transform: scale3d(1, 1, 1);
        }

        .reveal-rotate {
            opacity: 0;
            transform: translate3d(0, 30px, 0) rotate(3deg);
            transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            backface-visibility: hidden;
        }
        .reveal-rotate.visible {
            opacity: 1;
            transform: translate3d(0, 0, 0) rotate(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }
        .reveal-delay-6 { transition-delay: 0.6s; }

        /* ============ HERO TEXT STAGGER ============ */
        .hero-stagger > * {
            opacity: 0;
            transform: translateY(30px);
            animation: heroStaggerIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .hero-stagger > *:nth-child(1) { animation-delay: 0.3s; }
        .hero-stagger > *:nth-child(2) { animation-delay: 0.5s; }
        .hero-stagger > *:nth-child(3) { animation-delay: 0.7s; }
        .hero-stagger > *:nth-child(4) { animation-delay: 0.9s; }

        @keyframes heroStaggerIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ SMOOTH SECTION TRANSITIONS ============ */
        .section {
            position: relative;
        }
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }
        #about::before, #services::before {
            display: block;
        }
        #clients::before {
            display: none;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content { order: 1; }
            .hero-visual { order: 2; }
            .hero p { margin-left: auto; margin-right: auto; }
            .hero-buttons { justify-content: center; }
            .hero h1 { font-size: 2.8rem; }
            .about-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            #services [style*="grid-template-columns: repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
            #about [style*="grid-template-columns: repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
            #about [style*="grid-template-columns: repeat(3"] { grid-template-columns: repeat(1, 1fr) !important; }
        }

        /* Hide sidebar logo on desktop */
        .sidebar-logo-item {
            display: none !important;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                max-width: 80vw;
                height: 100vh;
                height: 100dvh;
                background: linear-gradient(180deg, #060b3a 0%, #0c1160 50%, #0a0e4a 100%);
                flex-direction: column;
                align-items: stretch;
                padding: 0;
                gap: 0;
                transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 40px rgba(0,0,0,0.5);
                z-index: 1000;
                overflow-y: hidden;
                border-left: 1px solid rgba(255,255,255,0.05);
            }

            .nav-links.open {
                right: 0;
            }

            /* Hide navbar logo when sidebar is open */
            .nav-links.open ~ .hamburger {
                /* hamburger stays visible */
            }

            body.sidebar-open .nav-logo {
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.25s ease;
            }

            /* Sidebar logo */
            .sidebar-logo-item {
                display: flex !important;
                padding: 22px 28px 16px !important;
                border-bottom: 1px solid rgba(255,255,255,0.08) !important;
                margin-bottom: 4px;
            }

            .sidebar-logo {
                display: flex !important;
                align-items: center;
                gap: 12px;
                padding: 0 !important;
                border-left: none !important;
                text-decoration: none;
            }

            .sidebar-logo:hover,
            .sidebar-logo:focus-visible {
                background: transparent !important;
                border-left-color: transparent !important;
            }

            .sidebar-logo img {
                height: 40px;
                width: auto;
            }

            .sidebar-logo-text {
                font-family: 'Poppins', sans-serif;
                font-size: 1.35rem;
                font-weight: 700;
                color: white;
                line-height: 1;
                letter-spacing: -0.3px;
            }

            .sidebar-logo-text span {
                font-weight: 800;
                background: linear-gradient(135deg, #60a5fa, #a78bfa);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            /* Show sidebar logo on mobile */
            .sidebar-logo-item {
                display: flex !important;
            }

            .nav-links::before {
                display: none;
            }

            .nav-links li {
                margin: 0;
                padding: 0;
            }

            .nav-links li:last-child {
                margin-top: auto;
                padding: 16px 24px 24px;
            }

            .nav-links a {
                display: flex;
                align-items: center;
                color: rgba(255,255,255,0.7) !important;
                width: 100%;
                padding: 14px 32px;
                font-size: 1.05rem;
                font-weight: 500;
                letter-spacing: 0.2px;
                border-radius: 0;
                text-decoration: none;
                transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
                position: relative;
                border-left: 3px solid transparent;
                outline: none;
                -webkit-tap-highlight-color: transparent;
            }

            .nav-links a::after {
                display: none !important;
            }

            /* Hover state */
            .nav-links a:hover {
                color: #fff !important;
                background: rgba(255,255,255,0.05) !important;
                border-left-color: rgba(255,255,255,0.15);
            }

            /* Focus-visible for keyboard nav */
            .nav-links a:focus-visible {
                color: #fff !important;
                background: rgba(96, 165, 250, 0.08) !important;
                border-left-color: #60a5fa;
                outline: none;
            }

            /* Active / current page */
            .nav-links a.active {
                color: #fff !important;
                background: linear-gradient(90deg, rgba(96,165,250,0.12) 0%, transparent 100%) !important;
                border-left-color: #60a5fa;
                font-weight: 600;
            }

            /* Pressed / tap feedback */
            .nav-links a:active {
                background: rgba(255,255,255,0.08) !important;
                transition: none;
            }

            .nav-links .nav-cta {
                display: block;
                background: linear-gradient(135deg, #1a3a8a, #2d1b69) !important;
                border: 1px solid rgba(96,165,250,0.3) !important;
                border-radius: 14px !important;
                padding: 16px 24px !important;
                text-align: center;
                font-weight: 600;
                font-size: 1rem;
                color: white !important;
                margin: 0;
                letter-spacing: 0.4px;
                transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
                border-left: 1px solid rgba(96,165,250,0.3) !important;
                width: 100%;
                box-sizing: border-box;
            }

            .nav-links .nav-cta:hover {
                background: linear-gradient(135deg, #1e42a0, #371f80) !important;
                border-color: rgba(96,165,250,0.5) !important;
                box-shadow: 0 4px 20px rgba(96,165,250,0.15);
                transform: none;
                padding: 16px 24px !important;
            }

            .nav-links .nav-cta:focus-visible {
                outline: 2px solid #60a5fa;
                outline-offset: 2px;
                background: linear-gradient(135deg, #1e42a0, #371f80) !important;
            }

            .nav-links .nav-cta:active {
                background: linear-gradient(135deg, #223fb0, #3d2290) !important;
                transform: scale(0.98);
            }

            .hamburger { display: flex; }

            .nav-logo img {
                height: 44px;
            }
            .nav-logo-text {
                font-size: 1.3rem;
            }
            .nav-logo-divider {
                height: 24px;
            }
            .navbar {
                padding: 14px 0;
            }

            .hero h1 { font-size: 2.2rem; }
            .hero-card { max-width: 350px; }
            .section { padding: 70px 0; }
            .section-header h2 { font-size: 2rem; }
            .services-grid { grid-template-columns: 1fr; }
            .about-features { grid-template-columns: 1fr; }
            .about-info-cards { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .form-row { grid-template-columns: 1fr; }
            .about-content h3 { font-size: 1.6rem; }
            .contact-info h3 { font-size: 1.6rem; }
            #services [style*="grid-template-columns: repeat(5"] { grid-template-columns: repeat(2, 1fr) !important; }
            #about [style*="grid-template-columns: repeat(5"] { grid-template-columns: repeat(2, 1fr) !important; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 1rem; }
            .hero-buttons { flex-direction: column; }
            .hero-stat-number { font-size: 1.5rem; }
            .client-card { width: 200px; height: 120px; }
        }

        /* Mobile menu overlay */
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }

        .nav-overlay.open {
            opacity: 1;
            visibility: visible;
        }

/* ============ ADDITIONAL STYLES ============ */

        /* Contact offices grid */
        .contact-offices-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        /* Mission/Vision/Goals & Growth containers */
        .mvg-container {
            margin-top: 80px;
        }
        .growth-container {
            margin-top: 80px;
        }

        /* ============ CORE MODULES GRID ============ */
        /* ============ COCKPIT MODULE MAP ============ */
        .cockpit {
            margin-bottom: 60px;
        }

        .cockpit-inner {
            display: flex;
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 2, 59, 0.18);
            min-height: 460px;
        }

        /* ---- Left sidebar list ---- */
        .cockpit-list {
            width: 260px;
            min-width: 260px;
            background: #00023b;
            border-right: none;
            display: flex;
            flex-direction: column;
            padding: 8px 0;
            overflow-y: auto;
        }

        .cockpit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 13px 20px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.88rem;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: all 0.25s ease;
            position: relative;
            cursor: pointer;
        }

        .cockpit-item:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            border-left-color: rgba(59, 130, 246, 0.5);
        }

        .cockpit-item.active {
            background: rgba(59, 130, 246, 0.12);
            color: #fff;
            border-left-color: #3b82f6;
        }

        .cockpit-num {
            font-family: 'Poppins', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.25);
            min-width: 18px;
        }

        .cockpit-item svg {
            width: 18px;
            height: 18px;
            stroke-width: 1.8px;
            flex-shrink: 0;
            opacity: 0.6;
            transition: opacity 0.25s ease;
        }

        .cockpit-item:hover svg,
        .cockpit-item.active svg {
            opacity: 1;
        }

        .cockpit-label {
            flex: 1;
            white-space: nowrap;
        }

        .cockpit-arrow {
            font-size: 1.1rem;
            opacity: 0.3;
            transition: all 0.25s ease;
        }

        .cockpit-item:hover .cockpit-arrow {
            opacity: 0.7;
            transform: translateX(2px);
        }

        .cockpit-item.active .cockpit-arrow {
            opacity: 1;
            color: #3b82f6;
        }

        /* ---- Right: Dashboard preview ---- */
        .cockpit-dash {
            flex: 1;
            display: flex;
            flex-direction: column;
            background: #fff;
        }

        .cockpit-dash-topbar {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 24px;
            border-bottom: 1px solid #e5e7eb;
            background: #fafbfc;
        }

        .cockpit-dash-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            color: #00023b;
            white-space: nowrap;
        }

        .cockpit-dash-search {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 7px 14px;
            color: #94a3b8;
            font-size: 0.82rem;
        }

        .cockpit-dash-search svg {
            width: 14px;
            height: 14px;
            stroke: #94a3b8;
            flex-shrink: 0;
        }

        .cockpit-dash-user svg {
            width: 22px;
            height: 22px;
            stroke: #64748b;
        }

        .cockpit-dash-body {
            flex: 1;
            padding: 28px 28px 24px;
        }

        .cockpit-dash-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 4px;
        }

        .cockpit-dash-subtitle {
            font-size: 0.82rem;
            color: #64748b;
            margin-bottom: 22px;
        }

        .cockpit-dash-kpis {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin-bottom: 24px;
        }

        .cockpit-kpi {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 14px 16px;
        }

        .cockpit-kpi-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .cockpit-kpi-val {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.2;
        }

        .cockpit-kpi-lbl {
            display: block;
            font-size: 0.7rem;
            color: #64748b;
            font-weight: 500;
        }

        .cockpit-dash-table {
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
        }

        .cockpit-table-head {
            display: grid;
            grid-template-columns: 40px 2fr 1fr 1fr 60px 100px;
            padding: 10px 16px;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.72rem;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cockpit-table-row {
            display: grid;
            grid-template-columns: 40px 2fr 1fr 1fr 60px 100px;
            padding: 11px 16px;
            font-size: 0.82rem;
            color: #334155;
            border-bottom: 1px solid #f1f5f9;
            align-items: center;
        }

        .cockpit-table-row:last-child {
            border-bottom: none;
        }

        .cockpit-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            text-align: center;
        }

        .cockpit-badge-green {
            background: #dcfce7;
            color: #16a34a;
        }

        .cockpit-badge-blue {
            background: #dbeafe;
            color: #2563eb;
        }

        .cockpit-badge-yellow {
            background: #fef3c7;
            color: #d97706;
        }

        /* ---- Responsive ---- */
        @media (max-width: 900px) {
            .cockpit-inner {
                flex-direction: column;
                min-height: auto;
            }
            .cockpit-list {
                width: 100%;
                min-width: auto;
                max-height: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                padding: 12px;
                gap: 4px;
            }
            .cockpit-item {
                padding: 10px 12px;
                border-left: none;
                border-bottom: 2px solid transparent;
                border-radius: 8px;
                justify-content: center;
                gap: 8px;
            }
            .cockpit-item:hover,
            .cockpit-item.active {
                border-left: none;
            }
            .cockpit-num,
            .cockpit-arrow {
                display: none;
            }
            .cockpit-dash-kpis {
                grid-template-columns: repeat(2, 1fr);
            }
            .cockpit-table-head,
            .cockpit-table-row {
                grid-template-columns: 30px 2fr 1fr 1fr 50px 80px;
                font-size: 0.72rem;
            }
        }

        @media (max-width: 600px) {
            .cockpit-list {
                grid-template-columns: repeat(2, 1fr);
            }
            .cockpit-dash-kpis {
                grid-template-columns: 1fr 1fr;
            }
            .cockpit-dash-body {
                padding: 18px 16px;
            }
            .cockpit-dash-heading {
                font-size: 1rem;
            }
            .cockpit-table-head,
            .cockpit-table-row {
                grid-template-columns: 28px 1.5fr 1fr 80px;
            }
            .cockpit-table-head span:nth-child(4),
            .cockpit-table-head span:nth-child(5),
            .cockpit-table-row span:nth-child(4),
            .cockpit-table-row span:nth-child(5) {
                display: none;
            }
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .pricing-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 28px 32px;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: var(--transition);
            overflow: visible;
        }
        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.pricing-popular {
            background: var(--bg-white);
            border: 2px solid var(--sync-color);
            box-shadow: 0 8px 30px rgba(10, 13, 94, 0.1);
        }
        .pricing-card.pricing-popular:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 50px rgba(10, 13, 94, 0.15);
        }
        .pricing-badge {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #f59e0b, #f97316);
            color: white;
            padding: 5px 20px;
            border-radius: 50px;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
            z-index: 5;
        }
        .pricing-tier {
            font-family: 'Poppins', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
            height: auto;
            display: flex;
            align-items: center;
        }
        .pricing-card .pricing-tier { color: var(--text-primary); }
        .pricing-popular .pricing-tier { color: var(--sync-color); }
        .pricing-stars {
            font-size: 1.1rem;
            color: #f59e0b;
            letter-spacing: 2px;
            margin-left: 8px;
            vertical-align: middle;
        }

        .pricing-price-row {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 6px;
            height: 48px;
        }
        .pricing-price {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 2.8rem;
            line-height: 1;
        }
        .pricing-card .pricing-price { color: var(--text-primary); }
        .pricing-currency {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            position: relative;
            top: -0.6em;
        }
        .pricing-card .pricing-currency { color: var(--text-secondary); }
        .pricing-period {
            font-size: 0.85rem;
            font-weight: 500;
        }
        .pricing-card .pricing-period { color: var(--text-light); }

        .pricing-subtitle {
            font-size: 0.85rem;
            margin-bottom: 24px;
            height: 21px;
        }
        .pricing-subtitle.pricing-subtitle-spacer {
            margin-top: 54px;
        }
        .pricing-stars-row {
            display: flex;
            align-items: center;
            height: 48px;
            font-size: 1.5rem;
            color: #f59e0b;
            letter-spacing: 4px;
            margin-bottom: 6px;
        }
        .pricing-card .pricing-subtitle { color: var(--text-secondary); }

        .pricing-cta {
            display: block;
            width: 100%;
            text-align: center;
            padding: 13px 24px;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            margin-bottom: 24px;
            cursor: pointer;
            height: 48px;
            line-height: 22px;
        }
        .pricing-cta-outline {
            background: white;
            color: var(--text-primary);
            border: 2px solid var(--border);
        }
        .pricing-cta-outline:hover {
            border-color: var(--sync-color);
            color: var(--sync-color);
            box-shadow: 0 4px 16px rgba(26, 29, 126, 0.1);
        }
        .pricing-cta-primary {
            background: var(--sync-gradient);
            color: white;
            border: 2px solid transparent;
        }
        .pricing-cta-primary:hover {
            box-shadow: 0 4px 20px rgba(26, 29, 126, 0.3);
        }
        .pricing-cta-white {
            background: white;
            color: var(--sync-color);
            border: 2px solid transparent;
            font-weight: 700;
        }
        .pricing-cta-white:hover {
            background: rgba(255,255,255,0.9);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .pricing-cta-purple {
            background: linear-gradient(135deg, #7c3aed, #4f46e5);
            color: white;
            border: 2px solid transparent;
        }
        .pricing-cta-purple:hover {
            box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
        }
        .pricing-divider {
            height: 1px;
            background: var(--border);
            margin-bottom: 20px;
        }
        .pricing-popular .pricing-divider {
            background: var(--border);
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 11px;
            flex: 1;
        }
        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            line-height: 1.4;
        }
        .pricing-card .pricing-features li { color: var(--text-primary); }
        .pricing-features li .pf-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 700;
        }
        .pf-check { background: rgba(34, 197, 94, 0.12); color: #16a34a; }
        .pf-paid { background: rgba(245, 158, 11, 0.12); color: #d97706; }
        .pf-no { background: rgba(148, 163, 184, 0.08); color: #cbd5e1; }
        .pricing-features li.pf-disabled { color: var(--text-light); }

        /* ---- Elite full-width horizontal card ---- */
        .pricing-elite-row {
            max-width: 1200px;
            margin: 24px auto 0;
        }
        .pricing-card-elite {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 48px;
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 40px;
            align-items: start;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        .pricing-card-elite:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-elite-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .pricing-elite-info .pricing-tier {
            color: #8b5cf6;
            margin-bottom: 8px;
            height: auto;
        }
        .pricing-elite-info .pricing-price {
            color: var(--text-primary);
            font-size: 1.6rem;
        }
        .pricing-elite-info .pricing-subtitle {
            color: var(--text-secondary);
            margin-bottom: 16px;
            height: auto;
        }
        .pricing-elite-info .pricing-elite-cta-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #7c3aed;
            font-size: 0.88rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        .pricing-elite-info .pricing-elite-cta-link:hover {
            color: #4f46e5;
            gap: 10px;
        }
        .pricing-elite-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 1fr;
            gap: 12px 28px;
        }
        .pricing-elite-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            line-height: 1.4;
            color: var(--text-primary);
        }
        .pricing-elite-features li .pf-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 700;
            background: rgba(34, 197, 94, 0.12);
            color: #16a34a;
        }

        @media (max-width: 1024px) {
            .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .pricing-card-elite { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
            .pricing-elite-features { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
            .pricing-elite-row { max-width: 400px; }
            .pricing-elite-features { grid-template-columns: 1fr; }
        }

        /* ============ GROWTH CHART ============ */
        .growth-chart-wrapper {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 48px 48px 32px;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }
        .growth-chart-wrapper::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--sync-gradient);
        }
        .growth-chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        .growth-chart-header .chart-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        .growth-chart-header .chart-subtitle {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .growth-stats-row { display: flex; gap: 32px; }
        .growth-stat-item { text-align: center; }
        .growth-stat-item .stat-value {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--sync-color);
        }
        .growth-stat-item .stat-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        .gc-area {
            position: relative;
            padding-left: 40px;
        }
        .gc-y-axis {
            position: absolute;
            left: 0; top: 0;
            width: 32px;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .gc-y-label {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 500;
            text-align: right;
            line-height: 1;
        }
        .gc-grid {
            position: absolute;
            top: 0; left: 40px; right: 0;
            height: 300px;
            pointer-events: none;
        }
        .gc-grid-line {
            position: absolute;
            left: 0; right: 0;
            height: 1px;
            background: var(--border);
            opacity: 0.5;
        }
        .gc-bars {
            position: relative;
            height: 300px;
            display: flex;
            align-items: stretch;
            gap: 12px;
            border-bottom: 2px solid var(--border);
        }
        .gc-col {
            flex: 1;
            position: relative;
            cursor: pointer;
        }
        .gc-val {
            position: absolute;
            left: 50%;
            transform: translateX(-50%) translateY(calc(-100% - 14px));
            font-family: 'Poppins', sans-serif;
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--sync-color);
            opacity: 0;
            transition: opacity 0.4s ease;
            white-space: nowrap;
            pointer-events: none;
            z-index: 2;
        }
        .gc-col.show .gc-val { opacity: 1; }
        .gc-col:hover .gc-val { opacity: 0; }
        .gc-tip {
            position: absolute;
            left: 50%;
            transform: translateX(-50%) translateY(calc(-100% - 16px)) scale(0.9);
            background: var(--text-primary);
            color: #fff;
            font-size: 0.75rem;
            padding: 8px 14px;
            border-radius: 8px;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: all 0.22s ease;
            z-index: 10;
            line-height: 1.4;
            text-align: center;
        }
        .gc-tip::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid var(--text-primary);
        }
        .gc-col:hover .gc-tip {
            opacity: 1;
            transform: translateX(-50%) translateY(calc(-100% - 22px)) scale(1);
        }
        .gc-years {
            display: flex;
            gap: 12px;
            padding-top: 14px;
        }
        .gc-year {
            flex: 1;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        .gc-line-svg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 300px;
            pointer-events: none;
        }
        .gc-area-fill {
            opacity: 0;
            transition: opacity 0.9s ease 0.3s;
        }
        .gc-area-fill.animated { opacity: 1; }
        .gc-line-path {
            stroke-dasharray: 2000;
            stroke-dashoffset: 2000;
        }
        .gc-line-path.animated {
            animation: gcDrawLine 1.7s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s;
        }
        .gc-dot {
            opacity: 0;
            transform-origin: center;
            animation: gcDotPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
        @keyframes gcDrawLine { to { stroke-dashoffset: 0; } }
        @keyframes gcDotPop {
            from { opacity: 0; transform: scale(0); }
            to   { opacity: 1; transform: scale(1); }
        }
        @media (max-width: 768px) {
            .growth-chart-wrapper { padding: 28px 16px 20px; }
            .growth-chart-header { flex-direction: column; gap: 16px; align-items: flex-start; }
            .gc-bars, .gc-y-axis, .gc-grid, .gc-line-svg { height: 220px; }
            .gc-val { font-size: 0.82rem; }
            .gc-year { font-size: 0.72rem; }
            .gc-area { padding-left: 28px; }
        }

        /* ============ MOBILE & TABLET RESPONSIVE FIXES ============ */

        /* --- TABLET (max-width: 1024px) --- */
        @media (max-width: 1024px) {
            .hero {
                padding-top: 100px;
                min-height: auto;
                padding-bottom: 60px;
            }
            .hero .container {
                gap: 40px;
            }
            .hero-card {
                max-width: 400px;
                margin: 0 auto;
            }

            /* Growth chart tablet */
            .growth-chart-wrapper {
                padding: 36px 28px 24px;
            }
            .growth-stats-row {
                gap: 20px;
            }
            .growth-stat-item .stat-value {
                font-size: 1.3rem;
            }

            /* Contact tablet */
            .contact-grid {
                gap: 36px;
            }

            /* Reduce container spacing on tablet */
            .mvg-container {
                margin-top: 60px;
            }
            .growth-container {
                margin-top: 60px;
            }

            /* Footer tablet */
            .footer-main {
                padding: 50px 0 0;
            }
            .footer-grid {
                gap: 40px;
            }
        }

        /* --- MOBILE (max-width: 768px) --- */
        @media (max-width: 768px) {
            /* Preloader mobile */
            .preloader-logo-wrap {
                width: 200px;
                height: 200px;
            }
            .preloader-logo-box {
                width: 145px;
                height: 145px;
            }
            .preloader-text {
                font-size: 2rem;
                gap: 0.18em;
            }
            .preloader-text-group {
                margin-top: 26px;
            }
            .preloader-subtitle {
                font-size: 0.62rem;
                letter-spacing: 0.28em;
                margin-top: 12px;
            }
            .preloader-line {
                margin-top: 12px;
            }

            /* Hero mobile */
            .hero {
                padding-top: 90px;
                padding-bottom: 50px;
            }
            .hero .container {
                gap: 32px;
            }
            .hero-badge {
                font-size: 0.75rem;
                padding: 6px 14px;
            }
            .hero p {
                font-size: 0.95rem;
                max-width: 100%;
            }
            .hero-card {
                max-width: 100%;
                padding: 28px 20px;
            }
            .hero-stats {
                gap: 10px;
            }
            .hero-stat {
                padding: 16px 12px;
                border-radius: 12px;
            }
            .hero-stat-number {
                font-size: 1.6rem;
            }
            .hero-stat-label {
                font-size: 0.72rem;
            }
            .hero-card-header {
                margin-bottom: 20px;
            }
            .hero-card-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .hero-card-title {
                font-size: 1rem;
            }

            /* Growth chart mobile */
            .growth-chart-header {
                flex-direction: column;
                gap: 16px;
                align-items: flex-start;
            }
            .growth-stats-row {
                flex-wrap: wrap;
                gap: 16px;
                width: 100%;
            }
            .growth-stat-item {
                flex: 1;
                min-width: 80px;
            }
            .growth-stat-item .stat-value {
                font-size: 1.2rem;
            }
            .growth-stat-item .stat-label {
                font-size: 0.68rem;
            }

            /* Contact mobile */
            .contact-info {
                gap: 16px;
            }
            .contact-info h3 {
                font-size: 1.5rem;
            }
            .contact-info > p {
                font-size: 0.95rem;
            }
            .contact-item {
                padding: 14px 16px;
            }
            .contact-item-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .contact-form-card h4 {
                font-size: 1.3rem;
                margin-bottom: 20px;
            }
            .form-group {
                margin-bottom: 14px;
            }
            .form-group input,
            .form-group textarea {
                padding: 11px 14px;
                font-size: 0.9rem;
            }

            /* Footer mobile */
            .footer-main {
                padding: 40px 0 0;
            }
            .footer-grid {
                gap: 32px;
            }
            .footer-logo {
                height: 80px;
                margin-top: 0;
                margin-left: 0;
            }
            .footer-brand p {
                font-size: 0.88rem;
                line-height: 1.7;
            }
            .footer h4 {
                margin-bottom: 20px;
                padding-bottom: 12px;
            }
            .footer-links {
                gap: 12px;
            }
            .footer-contact-list {
                gap: 14px;
            }
            .footer-contact-item {
                justify-content: flex-start;
                text-align: left;
            }
            .footer-contact-text {
                text-align: left;
            }
            .footer-divider {
                margin: 32px 0 0;
            }
            .footer-bottom {
                padding: 20px 0;
            }
            .footer-bottom p {
                font-size: 0.8rem;
            }
        }

        /* --- SMALL MOBILE (max-width: 480px) --- */
        @media (max-width: 480px) {
            /* Preloader small mobile */
            .preloader-logo-wrap {
                width: 175px;
                height: 175px;
            }
            .preloader-logo-box {
                width: 125px;
                height: 125px;
            }
            .preloader-text {
                font-size: 1.65rem;
                gap: 0.15em;
            }
            .preloader-text-group {
                margin-top: 22px;
            }
            .preloader-subtitle {
                font-size: 0.55rem;
                letter-spacing: 0.22em;
                margin-top: 10px;
            }

            /* Hero small mobile */
            .hero {
                padding-top: 80px;
                padding-bottom: 40px;
            }
            .nav-logo img {
                height: 38px;
            }
            .nav-logo-text {
                font-size: 1.15rem;
            }
            .nav-logo-divider {
                height: 20px;
            }
            .nav-logo {
                gap: 6px;
            }
            .hero h1 {
                font-size: 1.7rem;
                line-height: 1.12;
            }
            .hero p {
                font-size: 0.9rem;
            }
            .hero-badge {
                font-size: 0.7rem;
                padding: 5px 12px;
                gap: 6px;
            }
            .hero-badge-dot {
                width: 6px;
                height: 6px;
            }
            .hero-card {
                padding: 22px 16px;
                border-radius: 18px;
            }
            .hero-stats {
                gap: 8px;
            }
            .hero-stat {
                padding: 14px 8px;
                border-radius: 10px;
            }
            .hero-stat-number {
                font-size: 1.35rem;
            }
            .hero-stat-label {
                font-size: 0.65rem;
            }
            .hero-buttons .btn {
                padding: 11px 22px;
                font-size: 0.9rem;
                width: 100%;
                justify-content: center;
            }

            /* Growth chart small mobile */
            .growth-chart-wrapper {
                padding: 20px 12px 16px;
                border-radius: 14px;
            }
            .gc-area {
                padding-left: 22px;
            }
            .gc-y-axis {
                width: 20px;
            }
            .gc-y-label {
                font-size: 0.6rem;
            }
            .gc-bars, .gc-y-axis, .gc-grid, .gc-line-svg {
                height: 180px;
            }
            .gc-val {
                font-size: 0.7rem;
            }
            .gc-year {
                font-size: 0.6rem;
            }
            .gc-years {
                gap: 4px;
                padding-top: 10px;
            }
            .gc-bars {
                gap: 4px;
            }
            .growth-chart-header .chart-title {
                font-size: 1.05rem;
            }
            .growth-chart-header .chart-subtitle {
                font-size: 0.78rem;
            }
            .growth-stat-item .stat-value {
                font-size: 1rem;
            }
            .growth-stat-item .stat-label {
                font-size: 0.6rem;
            }

            /* Contact small mobile - HQ/Branch grid override */
            .contact-offices-grid {
                grid-template-columns: 1fr;
            }
            .contact-info h3 {
                font-size: 1.3rem;
            }
            .contact-item {
                padding: 12px 14px;
                gap: 12px;
            }
            .contact-item-icon {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
                border-radius: 10px;
            }
            .contact-item-text h5 {
                font-size: 0.85rem;
            }
            .contact-item-text p,
            .contact-item-text a {
                font-size: 0.85rem;
            }
            .contact-form-card h4 {
                font-size: 1.15rem;
                margin-bottom: 16px;
            }
            .btn-submit {
                padding: 12px;
                font-size: 0.92rem;
            }

            /* Footer small mobile */
            .footer-logo {
                height: 65px;
            }
            .footer-brand p {
                font-size: 0.82rem;
            }
            .footer h4 {
                font-size: 0.75rem;
                margin-bottom: 16px;
                letter-spacing: 2px;
            }
            .footer-links a {
                font-size: 0.88rem;
            }
            .footer-contact-icon {
                width: 34px;
                height: 34px;
                min-width: 34px;
                font-size: 0.85rem;
            }
            .footer-contact-text a,
            .footer-contact-text p {
                font-size: 0.85rem;
            }
            .footer-contact-text span {
                font-size: 0.68rem;
            }
            .footer-brand-social a {
                width: 38px;
                height: 38px;
            }
            .footer-bottom p {
                font-size: 0.75rem;
            }
            .footer-bottom a {
                font-size: 0.75rem;
            }

            /* Section headers small mobile */
            .section-header h2 {
                font-size: 1.6rem;
            }
            .section-header p {
                font-size: 0.92rem;
            }
            .section-tag {
                font-size: 0.7rem;
                padding: 6px 14px;
                letter-spacing: 1px;
            }
            .section {
                padding: 50px 0;
            }

            /* Mission/Vision/Goals override inline 3-col grid */
            #about .services-grid[style*="repeat(3"] {
                grid-template-columns: 1fr !important;
            }

            /* Reduce container spacing on mobile */
            .mvg-container {
                margin-top: 40px;
            }
            .growth-container {
                margin-top: 40px;
            }

            /* Container padding */
            .container {
                padding: 0 16px;
            }
        }

        /* --- Extra small (max-width: 360px) --- */
        @media (max-width: 360px) {
            /* Preloader extra small */
            .preloader-logo-wrap {
                width: 155px;
                height: 155px;
            }
            .preloader-logo-box {
                width: 110px;
                height: 110px;
            }
            .preloader-text {
                font-size: 1.4rem;
            }
            .preloader-text-group {
                margin-top: 18px;
            }
            .preloader-subtitle {
                font-size: 0.5rem;
                letter-spacing: 0.18em;
                margin-top: 8px;
            }

            .hero h1 {
                font-size: 1.5rem;
            }
            .hero-stat-number {
                font-size: 1.15rem;
            }
            .hero-stat-label {
                font-size: 0.6rem;
            }
            .hero-card {
                padding: 18px 12px;
            }
            .gc-bars, .gc-y-axis, .gc-grid, .gc-line-svg {
                height: 150px;
            }
            .gc-val {
                font-size: 0.6rem;
            }
            .gc-year {
                font-size: 0.55rem;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
        }

        /* ============ CONTENT VISIBILITY (skip offscreen rendering) ============ */
        #about,
        #services,
        #pricing,
        #clients,
        #contact,
        .footer {
            content-visibility: auto;
            contain-intrinsic-size: auto 800px;
        }

        /* ============ WILL-CHANGE HINTS ============ */
        .preloader {
            will-change: opacity, visibility;
        }
        .hero-card {
            will-change: transform;
        }

        /* ============ REDUCED MOTION ============ */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .hero::before,
            .hero::after,
            .footer-orb,
            .hero-card,
            .clients-track {
                animation: none !important;
            }
            .clients-track {
                overflow-x: auto;
            }
            html {
                scroll-behavior: auto;
            }
        }
