        /* =========================================
           MODERN CSS RESET & VARIABLES
           ========================================= */
        :root {
            /* General Site Variables */
            --primary: #1d4f9f;
            --dark: #2a2a2c;
            --dark-secondary: #313133;
            --gray: #6d6e71;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            
            /* Slider Specific Variables */
            --bg-color: #1a499a; 
            --accent-cyan: #00d2ff;
            --accent-blue: #0077ff;
            --text-main: #ffffff;
            --text-muted: #b0cbe8;
            --box-bg: rgba(6, 20, 50, 0.4); 
            --box-border: rgba(0, 210, 255, 0.3);
            --glow-color: rgba(0, 210, 255, 0.4);
        }

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

        /* RESTORED ORIGINAL BODY CSS */
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-secondary);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
            /* Removed overflow: hidden and height: 100vh from here so the site scrolls normally */
        }

        img { max-width: 100%; display: block; }
        
        /* Typography Utilities */
        h1, h2, h3 { font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; }
        .text-primary { color: var(--primary); }
        .text-white { color: var(--white); }
        .text-gray { color: var(--gray); }
        .text-dark { color: var(--dark); }
        .text-center { text-align: center; }
        
        .container {
            max-width: 1366px; 
            margin: 0 auto;
            padding: 0 24px;
        }

        /* =========================================
           BUTTONS (Original Site Buttons)
           ========================================= */
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            border-radius: 10px; font-weight: 700; text-transform: uppercase;
            text-decoration: none; transition: var(--transition);
            cursor: pointer;
        }
        .btn-white-outline {
            border: 2px solid var(--white); color: var(--white); padding: 13px 36px;
        }
        .btn-white-outline:hover {
            background-color: var(--white); color: var(--primary); transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }
        .btn-dark-outline {
            border: 2px solid var(--dark-secondary); color: var(--dark-secondary); padding: 13px 32px;
        }
        .btn-dark-outline:hover {
            background-color: var(--dark-secondary); color: var(--white); transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .btn-primary-outline {
            border: 2px solid var(--primary); color: var(--primary); padding: 13px 24px;
            font-size: 14px; border-radius: 10px;
        }
        .btn-primary-outline:hover {
            background-color: var(--primary); color: var(--white); transform: translateY(-2px);
        }
        .btn-primary-solid {
            background-color: var(--white); border: 2px solid var(--primary); color: var(--primary);
            padding: 13px 48px; font-size: 16px; border-radius: 10px;
        }
        .btn-primary-solid:hover {
            background-color: var(--primary); color: var(--white); transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        /* =========================================
           HEADER & NAVIGATION
           ========================================= */
        .header {
            display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
            padding: 24px 0; background-color: var(--white);
        }
        .logo-container { display: flex; justify-content: flex-start; }
        .nav-links { display: flex; gap: 32px; justify-content: center; }
        .nav-links a {
            text-decoration: none; color: var(--gray); font-size: 18px; font-weight: 500;
            transition: var(--transition);
        }
        .nav-links a.active, .nav-links a:hover { color: var(--primary); font-weight: 600; }
        .contact-container { display: flex; justify-content: flex-end; }
        .contact-number { font-size: 20px; font-weight: 700; color: var(--primary); }

        /* =========================================
           ENTERPRISE SAAS SLIDER SECTION (ISOLATED CSS)
           ========================================= */
        .hero-wrapper {
            position: relative;
            width: 100vw;
            height: 90vh; /* Changed from 100vh to 90vh so it sits below header nicely */
            min-height: 700px;
            background-color: #040c1e; /* Dark navy — matches gradient endpoint so no hard edge */
            color: var(--text-main);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            padding-bottom: 90px; /* room for stats bar */
        }

        /* Moving Particles Canvas */
        #particle-canvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.8;
        }

        .ambient-glow {
            position: absolute;
            top: 50%; right: 25%;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
            transform: translateY(-50%);
            z-index: 1;
            filter: blur(80px);
            pointer-events: none;
            animation: breathe 5s ease-in-out infinite alternate;
        }

        @keyframes breathe {
            0% { opacity: 0.5; transform: translateY(-50%) scale(0.9); }
            100% { opacity: 1; transform: translateY(-50%) scale(1.1); }
        }

        /* Navigation Arrows */
        .nav-btn {
            position: absolute;
            top: 50%; transform: translateY(-50%);
            width: 48px; height: 48px;
            border-radius: 50%;
            background: rgba(10, 25, 60, 0.6);
            border: 1px solid rgba(255,255,255,0.2);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            z-index: 50;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }
        .nav-btn:hover { 
            border-color: var(--accent-cyan); 
            background: rgba(0, 210, 255, 0.15);
            box-shadow: 0 0 20px var(--glow-color); 
        }
        .nav-btn svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }
        .prev-btn { left: 40px; }
        .next-btn { right: 40px; }

        /* Main Slider Wrapper */
        .slider-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
        }

        .slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            display: flex;
            align-items: center;
            opacity: 0;
            visibility: hidden;
        }
        .slide.active { opacity: 1; visibility: visible; }

        /* ================= CENTERED CONTENT ================= */
        .content-section {
            flex: 1;
            padding: 0 20px 90px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 20;
            text-align: center;
            height: 100%;
        }

        .slide-counter {
            font-family: 'Space Mono', monospace;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-muted);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            letter-spacing: 1px;
        }
        .slide-counter::before {
            content: '';
            width: 32px; height: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 8px var(--accent-cyan);
        }
        .current-num { color: var(--text-main); }

        .hero-wrapper .main-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 12px;
            line-height: 1.1;
            text-transform: uppercase;
            text-shadow: 0 4px 15px rgba(0,0,0,0.2);
            color: var(--text-main);
        }

        .hero-wrapper .sub-title {
            font-size: 1.15rem;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 24px;
            color: var(--accent-cyan);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-wrapper .description {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text-main);
            opacity: 0.85;
            line-height: 1.6;
            margin: 0 auto 40px auto;
            max-width: 480px;
            font-weight: 300;
        }

        /* Renamed to avoid conflict with standard .btn */
        .slider-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 32px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff !important;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            width: max-content;
            margin-bottom: 40px;
            /* Only transition hover-specific properties — NOT opacity/transform (those are managed by GSAP) */
            transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
            letter-spacing: 0.5px;
            backdrop-filter: blur(5px);
            will-change: opacity, transform;
        }
        .slider-btn:hover {
            border-color: var(--accent-cyan);
            background: rgba(0, 210, 255, 0.15);
            box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
            color: #fff;
        }

        .pagination { display: flex; gap: 12px; }
        .hero-wrapper .dot {
            width: 10px; height: 10px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: none;
            padding: 0;
            background: transparent;
        }
        .hero-wrapper .dot.active { 
            border-color: var(--accent-cyan); 
            background: var(--accent-cyan);
            box-shadow: 0 0 12px var(--accent-cyan);
            transform: scale(1.3);
        }

        /* ================= VIDEO BACKGROUND ================= */
        .bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            filter: brightness(0.35); /* Darken video to make text readable */
        }

        /* Bottom gradient — blends video bottom edge into dark seamlessly.
           Covers bottom 65% so even if video ends early the area is fully dark. */
        .slide::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65%;
            background: linear-gradient(
                to bottom,
                transparent              0%,
                rgba(4, 12, 30, 0.15)   15%,
                rgba(4, 12, 30, 0.55)   35%,
                rgba(4, 12, 30, 0.88)   55%,
                rgba(4, 12, 30, 0.97)   72%,
                rgba(4, 12, 30, 1.00)   85%,
                rgba(4, 12, 30, 1.00)  100%
            );
            z-index: 2;
            pointer-events: none;
        }

        .graphic-wrapper {
            position: relative;
            width: 100%;
            max-width: 550px;
            aspect-ratio: 1; 
        }

        .svg-layer {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 1;
            pointer-events: none;
            overflow: visible;
        }

        /* SVG Lines */
        .line-base {
            fill: none;
            stroke: rgba(255,255,255,0.15);
            stroke-width: 1.5;
            stroke-linejoin: round;
        }
        .line-glow {
            fill: none;
            stroke: var(--accent-cyan);
            stroke-width: 5;
            stroke-dasharray: 6 50;
            filter: drop-shadow(0 0 8px var(--accent-cyan));
            opacity: 0.6;
            animation: fiberFlow 3s linear infinite;
            stroke-linejoin: round;
        }
        .line-core {
            fill: none;
            stroke: #ffffff;
            stroke-width: 2;
            stroke-dasharray: 6 50;
            animation: fiberFlow 3s linear infinite;
            stroke-linejoin: round;
        }
        @keyframes fiberFlow { to { stroke-dashoffset: -56; } }

        .joint-node {
            fill: var(--accent-cyan);
            filter: drop-shadow(0 0 6px var(--accent-cyan));
        }

        /* CONSISTENT CENTER HUB FOR ALL SLIDES */
        .center-hub-container {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            display: flex; align-items: center; justify-content: center;
            z-index: 15;
        }

        .center-hub {
            width: 130px; height: 130px;
            border-radius: 50%;
            background: var(--box-bg);
            border: 2px solid var(--accent-cyan);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 0 20px rgba(0, 210, 255, 0.3);
            display: flex; align-items: center; justify-content: center;
            backdrop-filter: blur(15px);
        }
        .center-hub svg {
            width: 55px; height: 55px;
            fill: none; stroke: var(--text-main); stroke-width: 1.5;
            filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.8));
        }

        /* CONSISTENT NODES FOR ALL SLIDES */
        .node-wrapper {
            position: absolute;
            z-index: 10;
        }

        .node-box {
            position: absolute;
            top: 0; left: 0;
            transform: translate(-50%, -50%);
            width: 75px; height: 75px;
            background: var(--box-bg);
            border: 1px solid var(--box-border);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3), inset 0 0 15px rgba(0, 210, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .node-wrapper:hover .node-box {
            transform: translate(-50%, -60%) scale(1.08); 
            border-color: var(--accent-cyan);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4), inset 0 0 25px rgba(0, 210, 255, 0.4);
        }
        
        .node-box svg {
            width: 32px; height: 32px;
            fill: none; stroke: var(--text-main); stroke-width: 1.5;
            transition: 0.3s;
        }
        .node-wrapper:hover .node-box svg { stroke: var(--accent-cyan); filter: drop-shadow(0 0 5px var(--accent-cyan)); }

        .node-label {
            position: absolute;
            top: 45px; 
            left: 0;
            transform: translateX(-50%);
            width: 160px;
            font-size: 0.75rem;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-main);
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
            pointer-events: none;
        }

        /* STRICT MATHEMATICAL COORDINATES (For Perfect Symmetry) */
        .pos-20-20 { top: 20%; left: 20%; } 
        .pos-80-20 { top: 20%; left: 80%; } 
        .pos-20-80 { top: 80%; left: 20%; } 
        .pos-80-80 { top: 80%; left: 80%; } 
        .pos-50-15 { top: 15%; left: 50%; } 
        .pos-50-85 { top: 85%; left: 50%; } 
        .pos-15-50 { top: 50%; left: 15%; } 
        .pos-85-50 { top: 50%; left: 85%; } 
        .pos-20-30 { top: 30%; left: 20%; } 
        .pos-80-30 { top: 30%; left: 80%; } 
        .pos-20-70 { top: 70%; left: 20%; } 
        .pos-80-70 { top: 70%; left: 80%; } 
        .pos-25-25 { top: 25%; left: 25%; } 
        .pos-75-25 { top: 25%; left: 75%; } 
        .pos-25-75 { top: 75%; left: 25%; } 
        .pos-75-75 { top: 75%; left: 75%; } 
        .pos-30-20 { top: 20%; left: 30%; } 
        .pos-70-20 { top: 20%; left: 70%; } 
        .pos-30-80 { top: 80%; left: 30%; } 
        .pos-70-80 { top: 80%; left: 70%; } 

        /* Background Rings */
        .bg-rings {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        .ring {
            fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 1.5;
        }

        /* Animations */
        .spin-slow { animation: spin 30s linear infinite; transform-origin: center; }
        .spin-reverse { animation: spinRev 30s linear infinite; transform-origin: center; }
        .float { animation: floatAnim 4s ease-in-out infinite alternate; }
        
        @keyframes spin { 100% { transform: rotate(360deg); } }
        @keyframes spinRev { 100% { transform: rotate(-360deg); } }
        @keyframes floatAnim { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }

        /* Responsiveness for Slider */
        @media (max-width: 1024px) {
            .slide { flex-direction: column; opacity: 1; visibility: visible; display: none; }
            .slide.active { display: flex; }
            .content-section { flex: none; padding-right: 0; text-align: center; align-items: center; margin-bottom: 40px; }
            .hero-wrapper .main-title { font-size: 2.5rem; }
            .nav-btn { display: none; } 
        }
        @media (max-width: 768px) {
            /* Slider: 75% screen height so content below is visible */
            .hero-wrapper { height: 75svh; min-height: 480px; padding-bottom: 0; }

            /* Video: full height fills wrapper, object-position top reduces zoom/crop feel */
            .bg-video {
                height: 100%;
                width: 100%;
                top: 0;
                object-fit: cover;
                object-position: center 20%;
            }

            /* Hide slide counter — desktop only */
            .slide-counter { display: none; }

            /* Content: full width so centering is relative to full screen, not content width.
               padding-top pushes visual center downward;
               padding-bottom reserves space for stats strip (≈78px) + 30px gap. */
            .content-section {
                width: 100%;
                box-sizing: border-box;
                padding-top: 60px;
                padding-bottom: 100px;
                padding-left: 20px;
                padding-right: 20px;
                justify-content: center;
                align-items: center;
                text-align: center;
                margin-bottom: 0;
            }

            /* Heading: 1 line, smaller font */
            .hero-wrapper .main-title {
                font-size: 1.35rem;
                white-space: nowrap;
                letter-spacing: 0.5px;
            }
            /* Hide <br> tags so each title stays on one line */
            .hero-wrapper .main-title br { display: none; }

            /* Sub-title: slightly smaller than heading */
            .hero-wrapper .sub-title {
                font-size: 0.78rem;
                letter-spacing: 1.5px;
                margin-bottom: 18px;
            }

            /* Description: tighter on mobile */
            .hero-wrapper .description {
                font-size: 0.88rem;
                margin-bottom: 24px;
            }

            /* Slider button: smaller padding on mobile */
            .slider-btn {
                padding: 10px 22px;
                font-size: 0.8rem;
                margin-bottom: 24px;
            }
        }

        /* =========================================
           INTRO SECTION
           ========================================= */
        .intro-section { padding: 70px 0; }
        .intro-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch;
        }
        .intro-title { font-size: 30px; line-height: 1.2; }
        
        .intro-right {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 250px;
        }
        .intro-right img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: var(--shadow-soft);
        }

        /* =========================================
           4-COLUMN SERVICES GRID
           ========================================= */
        .services-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
            padding: 70px 0;
        }
        .service-item { text-align: center; }
        .service-icon-box {
            width: 120px; height: 120px; margin: 0 auto 28px;
            border: 2px solid #dce8f8; border-radius: 26px;
            display: flex; align-items: center; justify-content: center;
            transition: var(--transition);
            background: linear-gradient(145deg, #eef4ff 0%, #ffffff 100%);
            box-shadow: 0 6px 24px rgba(29, 79, 159, 0.10);
            overflow: hidden;
        }
        .service-icon-box img { max-width: 68%; max-height: 68%; object-fit: contain; }
        .service-icon-box i { font-size: 44px; color: var(--primary); }
        .service-item:hover .service-icon-box {
            transform: translateY(-6px);
            box-shadow: 0 12px 36px rgba(29, 79, 159, 0.18);
            border-color: var(--primary);
            background: linear-gradient(145deg, #dceaff 0%, #eef4ff 100%);
        }
        .service-item h3 { font-size: 20px; margin-bottom: 16px; min-height: 48px; }
        .service-item p { font-size: 15px; color: var(--gray); }

        /* =========================================
           FEATURED SOLUTIONS — PREMIUM REDESIGN
           ========================================= */
        .featured-band {
            background: linear-gradient(140deg, #061020 0%, #0d2255 50%, #091a42 100%);
            padding: 70px 0;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }
        /* Subtle dot-grid texture */
        .featured-band::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
            z-index: 0;
        }
        /* Top glow bloom */
        .featured-band::after {
            content: '';
            position: absolute;
            top: -160px; left: 50%;
            transform: translateX(-50%);
            width: 900px; height: 380px;
            background: radial-gradient(ellipse, rgba(0, 174, 255, 0.13) 0%, transparent 68%);
            pointer-events: none;
            z-index: 0;
        }
        /* Section heading */
        .featured-band-header {
            text-align: center;
            margin-bottom: 56px;
            position: relative;
            z-index: 2;
        }
        .featured-band-header .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: #00d2ff;
            margin-bottom: 18px;
        }
        .featured-band-header .eyebrow::before,
        .featured-band-header .eyebrow::after {
            content: '';
            display: block;
            width: 36px; height: 1px;
            background: linear-gradient(to right, transparent, #00d2ff);
            opacity: 0.7;
        }
        .featured-band-header .eyebrow::after {
            background: linear-gradient(to left, transparent, #00d2ff);
        }
        .featured-band-header h2 {
            font-size: 44px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -1.5px;
            line-height: 1.15;
        }
        .featured-band-header h2 span { color: #00d2ff; }

        /* Grid */
        .featured-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        /* Card shell */
        .feat-card {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            height: 500px;
            cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        box-shadow 0.4s ease;
        }
        .feat-card:hover {
            transform: translateY(-14px);
            box-shadow: 0 32px 64px rgba(0,0,0,0.55),
                        0 0 0 1px rgba(0, 210, 255, 0.35),
                        0 0 50px rgba(0, 174, 255, 0.18);
        }
        /* Background image layer */
        .feat-card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.65s ease, filter 0.4s ease;
            filter: brightness(0.42) saturate(0.65);
        }
        .feat-card:hover .feat-card-bg {
            transform: scale(1.07);
            filter: brightness(0.52) saturate(0.75);
        }
        /* Dark gradient overlay */
        .feat-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(6, 16, 40, 0.18) 0%,
                rgba(6, 16, 40, 0.52) 40%,
                rgba(6, 16, 40, 0.96) 100%
            );
            z-index: 1;
        }
        /* Glowing left accent bar on hover */
        .feat-card-accent {
            position: absolute;
            left: 0; top: 18%; bottom: 18%;
            width: 3px;
            background: linear-gradient(to bottom, transparent, #00d2ff, transparent);
            border-radius: 0 3px 3px 0;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 3;
        }
        .feat-card:hover .feat-card-accent { opacity: 1; }

        /* Inner content */
        .feat-card-inner {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 32px 30px;
            text-align: left;
        }
        /* Giant faded card number */
        .feat-card-num {
            position: absolute;
            top: 16px; right: 22px;
            font-size: 96px;
            font-weight: 900;
            font-family: 'Montserrat', sans-serif;
            color: rgba(255,255,255,0.055);
            line-height: 1;
            letter-spacing: -5px;
            user-select: none;
            transition: color 0.4s ease;
            z-index: 2;
        }
        .feat-card:hover .feat-card-num { color: rgba(0, 210, 255, 0.10); }

        /* Category pill tag */
        .feat-card-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #00d2ff;
            background: rgba(0, 210, 255, 0.12);
            border: 1px solid rgba(0, 210, 255, 0.28);
            padding: 5px 13px;
            border-radius: 20px;
            margin-bottom: 18px;
            width: fit-content;
            backdrop-filter: blur(4px);
        }
        /* Card title */
        .feat-card-title {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.25;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        /* Animated accent line */
        .feat-card-line {
            width: 36px; height: 2px;
            background: linear-gradient(to right, #00d2ff, rgba(0,210,255,0.15));
            border-radius: 2px;
            margin-bottom: 18px;
            transition: width 0.4s ease;
        }
        .feat-card:hover .feat-card-line { width: 64px; }

        /* Bullet list */
        .feat-card-list {
            list-style: none;
            padding: 0; margin: 0 0 22px;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }
        .feat-card-list li {
            font-size: 14px;
            color: rgba(255,255,255,0.72);
            font-weight: 500;
            display: flex;
            align-items: flex-start;
            gap: 9px;
            line-height: 1.4;
        }
        .feat-card-list li::before {
            content: '';
            display: block;
            width: 6px; height: 6px;
            min-width: 6px;
            border-radius: 50%;
            background: #00d2ff;
            margin-top: 5px;
            box-shadow: 0 0 7px rgba(0, 210, 255, 0.7);
        }
        /* Hover CTA */
        .feat-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
        }
        .feat-card-cta .cta-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px; height: 30px;
            border-radius: 50%;
            border: 1px solid rgba(0, 210, 255, 0.55);
            color: #00d2ff;
            font-size: 15px;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .feat-card:hover .feat-card-cta { opacity: 1; transform: translateY(0); }
        .feat-card:hover .feat-card-cta .cta-arrow {
            background: rgba(0, 210, 255, 0.18);
            transform: translateX(4px);
        }

        /* =========================================
           MORE SOLUTIONS
           ========================================= */
        .more-solutions { padding: 60px 0; }
        .more-solutions-intro {
            font-size: 18px; max-width: 1000px; margin: 0 auto 60px; text-align: center;
        }
        .solutions-3-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
        }
        .solution-card {
            background: var(--white); border-radius: 24px; padding: 30px;
            box-shadow: var(--shadow-soft); transition: var(--transition);
            border: 1px solid #f1f5f9; display: flex; flex-direction: column; align-items: center; text-align: center;
        }
        .solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
        .solution-img { 
            width: 220px; height: 220px; border-radius: 50%; 
            object-fit: cover; margin-bottom: 30px; 
            border: 4px solid #f1f5f9; 
        }
        .solution-card h3 { font-size: 24px; margin-bottom: 16px; }
        .solution-card p { font-size: 15px; margin-bottom: 24px; flex-grow: 1; }

        /* =========================================
           BLOG POSTS
           ========================================= */
        .blog-section { padding: 60px 0 80px; }
        .blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 40px; }
        .blog-card {
            display: flex; gap: 24px; align-items: flex-start;
            background: var(--white); padding: 24px; border-radius: 20px;
            box-shadow: var(--shadow-soft); transition: var(--transition); border: 1px solid #f1f5f9;
        }
        .blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
        .blog-img { width: 180px; height: 220px; border-radius: 12px; object-fit: cover; }
        .blog-content h3 { font-size: 20px; margin-bottom: 12px; }
        .blog-content p { font-size: 14px; margin-bottom: 16px; }
        .blog-meta { font-size: 13px; color: var(--dark-secondary); margin-bottom: 20px; font-weight: 600; }
        .blog-meta i { margin-right: 6px; color: var(--primary); }

        /* =========================================
           PROMO SECTION (Shopodex) - Restored correctly
           ========================================= */
        .promo-section { padding: 80px 0; text-align: center; }
        .promo-logo { max-width: 500px; margin: 30px auto; }
        .promo-title { font-size: 32px; color: var(--gray); font-weight: 500; }
        .promo-subtitle { font-size: 36px; color: var(--primary); margin-bottom: 40px; }
        .promo-text { font-size: 18px; max-width: 900px; margin: 40px auto 0; color: var(--dark-secondary); font-weight: 500; }

        /* =========================================
           CONTACT SECTION
           ========================================= */
        .contact-section { padding: 80px 0; background-color: var(--light-bg); }
        .contact-card {
            background: var(--white); border-radius: 24px; padding: 60px;
            box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
            border: 1px solid #f1f5f9;
        }
        .contact-info h2 { font-size: 36px; margin-bottom: 24px; color: var(--primary); }
        .contact-info p { color: var(--gray); margin-bottom: 40px; font-size: 16px; }
        .contact-details { display: flex; flex-direction: column; gap: 20px; }
        .contact-detail-item { display: flex; align-items: center; gap: 16px; }
        .contact-detail-item i { 
            width: 48px; height: 48px; background: var(--light-bg); color: var(--primary); 
            display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 20px; 
        }
        .contact-detail-item span { font-weight: 600; color: var(--dark-secondary); }

        .contact-form { display: flex; flex-direction: column; gap: 20px; }
        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-group label { font-size: 14px; font-weight: 600; color: var(--dark-secondary); }
        .form-control {
            padding: 16px; border-radius: 12px; border: 1px solid #cbd5e1;
            font-family: inherit; font-size: 16px; transition: var(--transition);
            background-color: var(--white); color: var(--dark-secondary);
        }
        .form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(29, 79, 159, 0.1); }
        textarea.form-control { resize: vertical; min-height: 120px; }

        /* =========================================
           FOOTER - Restored to original screenshot format
           ========================================= */
        .footer { background-color: #313133; color: var(--white); }
        .footer-main { padding: 60px 0; }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; align-items: start;
        }
        .footer-logo-container { display: flex; align-items: center; gap: 16px; }
        .footer-logo-icon { font-size: 48px; color: var(--white); display: flex; align-items: center; justify-content: center; }
        .footer-logo-text { font-size: 22px; font-weight: 600; line-height: 1.1; letter-spacing: -0.5px; margin: 0; }
        
        .footer-nav-col { display: flex; flex-direction: column; gap: 16px; text-align: left; }
        .footer-nav-col a { color: var(--white); text-decoration: none; font-size: 16px; font-weight: 600; transition: var(--transition); }
        .footer-nav-col a:hover { color: #cbd5e1; }
        
        .footer-newsletter { display: flex; flex-direction: column; gap: 16px; align-items: flex-end;}
        .footer-phone { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; width: 100%; justify-content: flex-end; }
        .newsletter-input-wrapper { position: relative; width: 100%; max-width: 300px; }
        .newsletter-input-wrapper input {
            width: 100%; padding: 12px 40px 12px 16px; border-radius: 8px; border: none; outline: none;
            font-family: inherit; font-size: 14px;
        }
        .newsletter-input-wrapper i {
            position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--dark-secondary); cursor: pointer;
        }
        .newsletter-text { font-size: 14px; font-weight: 600; text-align: left; width: 100%; max-width: 300px; }

        .footer-bottom-bar { background-color: #232323; padding: 20px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-bottom-bar p { margin: 0; font-size: 14px; font-weight: 600; color: var(--white); }
        .footer-bottom-bar span { padding: 0 16px; color: #6d6e71; font-weight: 400; }

        /* Global Responsiveness */
        @media (max-width: 1024px) {
            .intro-grid, .services-grid, .featured-cards-grid, .solutions-3-grid, .blog-grid, .contact-card {
                grid-template-columns: 1fr 1fr;
            }
            .header, .footer-top { grid-template-columns: 1fr; gap: 20px; }
            .logo-container, .contact-container, .footer-logo-container, .footer-contact-container { justify-content: center; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
            .footer-newsletter, .footer-phone { align-items: flex-start; justify-content: flex-start; }
        }
        @media (max-width: 768px) {
            .nav-links { flex-wrap: wrap; justify-content: center; }
            .intro-grid, .services-grid, .featured-cards-grid, .solutions-3-grid, .blog-grid, .contact-card {
                grid-template-columns: 1fr;
            }
            .contact-card { padding: 40px 24px; gap: 40px; }
            .blog-card { flex-direction: column; }
            .blog-img { width: 100%; height: 250px; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-nav-col { text-align: center; }
            .footer-logo-container, .footer-phone { justify-content: center; align-items: center; }
            .footer-newsletter { align-items: center; }
            .newsletter-text { text-align: center; }
            .newsletter-input-wrapper { margin: 0 auto; }
            .footer-bottom-bar span { display: block; margin: 5px 0; opacity: 0;}
        }
