
        * { 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: 24px;
            --font: system-ui, -apple-system, BlinkMacSystemFont, '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; }
        h1 { font-size:clamp(2.2rem,5vw,4rem); }
        h2 { font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:1rem; }
        h2 span { color:var(--brand); }
        a { text-decoration:none; color:inherit; }
        img { max-width:100%; height:auto; display:block; }

        /* Header spacer - matches critical CSS */
        .header-spacer { height: var(--header-height, 80px); width: 100%; contain: layout; }
        @media (max-width: 768px) { .header-spacer { height: var(--header-height-mobile, 70px); } }

        /* ===== HERO ===== */
        .hero-inner-page {
            background: linear-gradient(135deg, #001a4d 0%, #1e40af 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        .hero-inner-page h1 { color:white; margin-bottom:1rem; }
        .hero-inner-page p { font-size:1.2rem; opacity:0.95; max-width:700px; margin:0 auto; }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-wrapper {
            background: var(--bg-soft); padding:12px 0; border-bottom:1px solid var(--border);
            contain: layout;
        }
        .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;
        }
        .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); }

        /* ===== SECTION HEADER ===== */
        .section-header {
            text-align:center; max-width:800px; margin:0 auto 40px;
        }
        .section-header h2 { color:var(--deep-blue); }
        .section-header p { color:var(--text-muted); font-size:1.1rem; }

        /* Disable transitions for performance */
        .project-card, .project-card *, .cta-btn { transition: none !important; }

        /* ===== PROJECT GRID (cards with image + content merged) ===== */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .project-card {
            background: white;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .project-image {
            height: 200px;
            background: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .project-content {
            padding: 24px;
        }
        .project-content h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: var(--deep-blue);
        }
        .project-link {
            display: inline-block;
            color: var(--brand);
            font-weight: 600;
            margin-bottom: 12px;
            word-break: break-all;
        }
        .project-desc {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size:0.95rem;
            line-height:1.6;
        }
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }
        .project-tags span {
            background: var(--light-blue);
            color: var(--brand);
            padding: 4px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* ===== CATEGORY SPACING ===== */
        .category-section {
            padding: 40px 0;
        }
        .category-section:nth-child(even) {
            background: var(--bg-soft);
        }

        /* ===== CTA (same 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;
            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;
            border: none;
        }
        .cta-btn .icon { width: 22px; height: 22px; fill: currentColor; display: inline-block; flex-shrink: 0; }
        .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; }
        }

        