
        /*-------- FLOWRUSH OFFICIAL COLOR THEME --------*/
        * { margin:0; padding:0; box-sizing:border-box; }
        :root {
            --deep-blue: #001a4d;
            --brand: #1e40af;
            --accent: #3b82f6;
            --light-blue: #dbeafe;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-soft: #f8fafc;
            --border: #e2e8f0;
            --grad-primary: linear-gradient(135deg, #1e40af, #3b82f6);
            --shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            --radius: 28px;
            --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            font-family: var(--font);
            color: var(--text-dark);
            background: white;
            line-height: 1.5;
            overflow-x: hidden;
        }
        .container { max-width:1280px; margin:0 auto; padding:0 24px; width:100%; }
        @media (min-width:768px) { .container { padding:0 30px; } }
        h1,h2,h3 { font-weight:700; line-height:1.2; letter-spacing:-0.02em; }
        h1 { font-size:clamp(2.5rem,7vw,4.5rem); }
        h2 { font-size:clamp(1.8rem,5vw,2.8rem); margin-bottom:0.5rem; }
        img { max-width:100%; height:auto; display:block; }
        a { text-decoration:none; color:inherit; }

        /* Header spacer (since header is loaded separately) */
        .header-spacer { height:85px; }

        /* ===== HERO FULL COVER (100vh) ===== */
        .hero-full {
            background: linear-gradient(135deg, #001a4d, #1e3a8a);
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .hero-full::before {
            content: '';
            position: absolute; inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.05) 2px, transparent 2px);
            background-size: 30px 30px;
            opacity: 0.3;
            z-index: 1;
        }
        .hero-full .container {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        .hero-full h1 {
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .hero-full p {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .hero-stats-mini {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }
        .hero-stats-mini .stat {
            font-size: 2.5rem;
            font-weight: 800;
            color: #d4af37;
            line-height: 1.2;
        }
        .hero-stats-mini .label {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-wrapper {
            background: var(--bg-soft);
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: nowrap;
            gap: 8px;
            list-style: none;
            font-size: 0.9rem;
            overflow-x: auto;
            white-space: nowrap;
            padding: 4px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }
        .breadcrumb::-webkit-scrollbar { display: none; }
        .breadcrumb-item a { color: var(--brand); font-weight: 500; }
        .breadcrumb-item.active { color: var(--text-muted); }
        .breadcrumb-item + .breadcrumb-item::before { content: "/"; padding-right: 8px; color: var(--text-muted); }

        /* ===== STATS MARQUEE ===== */
        .stats-marquee {
            background: white;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }
        .marquee-container {
            display: flex;
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        .marquee-track {
            display: flex;
            gap: 40px;
            animation: marqueeScroll 25s linear infinite;
            white-space: nowrap;
        }
        .marquee-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--deep-blue);
        }
        .marquee-item i { color: var(--accent); font-size: 1.5rem; }
        .marquee-item span { background: var(--light-blue); padding: 4px 12px; border-radius: 40px; font-size: 0.8rem; }
        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ===== FEATURED STATS CARDS ===== */
        .featured-stats {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 60px auto;
            text-align: center;
        }
        .stat-card {
            background: white;
            border-radius: var(--radius);
            padding: 30px 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .stat-card .stat-value { font-size: 2.8rem; font-weight:800; color:var(--brand); }
        .stat-card .stat-label { font-weight:600; margin:5px 0; }
        .stat-card .stat-desc { color:var(--text-muted); font-size:0.9rem; }
        @media (max-width:768px) { .featured-stats { grid-template-columns:1fr; gap:20px; } }

        /* ===== MERGED CASE STUDY BOX (image + content together) ===== */
        .case-study-merged {
            background: white;
            border-radius: 40px;
            box-shadow: 0 25px 45px -12px rgba(0,0,0,0.15);
            border: 1px solid var(--border);
            overflow: hidden;
            margin: 40px 0;
            transition: 0.3s;
        }
        .case-study-merged:hover { box-shadow: 0 30px 50px -12px rgba(30,64,175,0.2); }
        .merged-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: stretch;
        }
        .merged-image {
            min-height: 100%;
            background: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        .merged-image img {
            width: 100%;
            max-width: 450px;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .merged-content {
            padding: 2.5rem 2rem;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .merged-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--deep-blue);
        }
        .merged-content h2 span { color: var(--brand); }
        .merged-content .lead {
            font-size: 1.1rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1.2rem;
        }
        .merged-content p {
            color: var(--text-muted);
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        .client-quote {
            background: var(--bg-soft);
            padding: 1.2rem 1.5rem;
            border-radius: 20px;
            border-left: 4px solid var(--accent);
            margin: 1rem 0;
            font-style: italic;
        }
        .client-quote .client-name {
            font-weight: 600;
            color: var(--deep-blue);
            margin-top: 0.5rem;
        }
        .keyword-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 1.2rem 0 0;
        }
        .keyword-tag {
            background: var(--light-blue);
            color: var(--brand);
            padding: 5px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        /* reverse order for alternating look */
        .merged-grid.reverse { direction: rtl; }
        .merged-grid.reverse .merged-content { direction: ltr; }
        .merged-grid.reverse .merged-image { direction: ltr; }
        @media (max-width: 992px) {
            .merged-grid { grid-template-columns: 1fr; }
            .merged-grid.reverse { direction: ltr; }
            .merged-image { order: 1; }
            .merged-content { order: 2; }
        }

        /* ===== SERVICE ICONS MARQUEE ===== */
        .service-marquee {
            background: var(--bg-soft);
            padding: 20px 0;
        }
        .service-track {
            display: flex;
            gap: 40px;
            animation: marqueeScroll 20s linear infinite;
        }
        .service-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--deep-blue);
        }
        .service-item i { color: var(--accent); font-size: 1.5rem; }

        /* ===== MODERN CTA (exact style as other pages) ===== */
        .cta-gradient-box {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            border-radius: 32px;
            padding: 60px 45px;
            display: flex;
            flex-direction: column;
            gap: 35px;
            color: white;
            box-shadow: 0 20px 30px rgba(0,0,0,0.2);
            margin: 40px 0 60px;
        }
        .cta-gradient-box h2 { font-size: 2.2rem; color: white !important; }
        .cta-gradient-box p { font-size: 1.2rem; line-height: 1.7; color: rgba(255,255,255,0.95); }
        .cta-buttons-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 14px;
            background: white; color: #000;
            padding: 18px 44px; border-radius: 60px;
            font-weight: 700; font-size: 1.2rem;
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            border: none; transition: 0.2s;
        }
        .cta-btn i { font-size: 1.4rem; }
        .cta-btn.wa { background: #25D366; color: white; }
        @media (max-width: 768px) {
            .cta-gradient-box { padding: 40px 25px; gap: 25px; }
            .cta-buttons-row { flex-direction: column; }
            .cta-btn { justify-content: center; padding: 16px 30px; }
        }

        /* ===== REFLECTION ANIMATION ===== */
        .reflect-image { position: relative; overflow: hidden; }
        .reflect-image::after {
            content: ''; position: absolute; top:0; left:-150%; width:100%; height:100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
            animation: shine 4s infinite; pointer-events: none;
        }
        @keyframes shine {
            0% { transform: translateX(-100%) skewX(-30deg); }
            20%, 100% { transform: translateX(200%) skewX(-30deg); }
        }

        .footer-credit {
            padding: 1.5rem 0;
            text-align: center;
            color: #aaa;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
        }
