
        :root {
            --blue: #1466e0;
            --blue-deep: #0b4fd6;
            --cyan: #16b8f0;
            --cyan-bright: #19c8f5;
            --ink: #0e1b2e;
            --ink-soft: #33455e;
            --mut: #64748b;
            --bg: #f4f8fe;
            --card: #ffffff;
            --line: #e3ebf6;
            --tint: #eaf3ff;
            --grad: linear-gradient(110deg, #0b4fd6 0%, #1f8af5 55%, #19c8f5 100%);
            --shadow: 0 12px 40px -12px rgba(14, 27, 46, 0.08);
            --shadow-hover: 0 20px 50px -12px rgba(14, 27, 46, 0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background: #fff; color: var(--ink-soft); line-height: 1.6; -webkit-font-smoothing: antialiased; }
        
        h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
        p { font-size: 1.1rem; }
        a { text-decoration: none; transition: all 0.2s ease; }
        ul { list-style: none; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .section-pad { padding: 100px 0; }
        
        .eyebrow { 
            display: flex; align-items: center; gap: 12px;
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; 
            letter-spacing: 0.1em; color: var(--blue); margin-bottom: 24px;
        }
        .eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--blue); }

        /* Header */
        header { 
            position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.9); 
            backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); height: 80px;
            display: flex; align-items: center;
        }
        .header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo { font-weight: 800; font-size: 1.25rem; color: var(--ink); letter-spacing: -0.01em; }
        nav { display: flex; gap: 32px; align-items: center; }
        nav a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); }
        nav a:hover { color: var(--blue); }
        .header-right { display: flex; align-items: center; gap: 24px; }
        .phone-link { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
        
        /* Buttons */
        .btn { 
            display: inline-flex; align-items: center; justify-content: center;
            padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
            cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn:active { transform: scale(0.98); }
        .btn-primary { background: var(--blue); color: #fff; border: none; }
        .btn-white { background: #fff; color: var(--blue-deep); border: none; box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
        .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
        .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

        /* Hero */
        .hero { 
            background: var(--grad); color: #fff; padding: 140px 0 180px 0; 
            position: relative; overflow: hidden;
        }
        .hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; max-width: 900px; }
        .hero .sub { font-size: 1.25rem; max-width: 600px; margin-bottom: 40px; opacity: 0.9; }
        .hero .eyebrow { color: #fff; opacity: 0.9; }
        .hero .eyebrow::before { background: #fff; }
        .hero-btns { display: flex; gap: 16px; }
        .hero-wave { 
            position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; 
        }
        .hero-wave svg { fill: #fff; height: 80px; width: 100%; }

        /* Problem */
        .problem { background: var(--ink); color: #fff; padding: 80px 0; text-align: center; }
        .problem h2 { color: #fff; font-size: 2.25rem; margin-bottom: 16px; }
        .problem p { color: var(--mut); font-size: 1.25rem; max-width: 800px; margin: 0 auto; }

        /* Services */
        .services { background: var(--bg); }
        .services-head { margin-bottom: 60px; }
        .services-head h2 { font-size: 2.75rem; max-width: 600px; }
        .services-grid { 
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; 
        }
        .service-card { 
            background: var(--card); padding: 40px; border-radius: 16px; 
            border: 1px solid var(--line); transition: all 0.3s ease;
            display: flex; flex-direction: column; gap: 20px;
        }
        .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--blue); }
        .service-card.featured { 
            grid-column: span 2; background: #fff; 
            border: 2px solid var(--blue); position: relative;
            display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
        }
        .service-card .icon-box { 
            width: 56px; height: 56px; background: var(--tint); 
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            color: var(--blue);
        }
        .service-card h3 { font-size: 1.5rem; }
        .service-card p { color: var(--ink-soft); font-size: 1rem; }
        .featured-tag { 
            position: absolute; top: 20px; right: 20px; background: var(--blue); 
            color: #fff; font-size: 0.7rem; font-weight: 800; padding: 4px 12px; 
            border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em;
        }

        /* How it works */
        .how { background: var(--tint); }
        .how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 60px; }
        .step { position: relative; }
        .step-num { 
            font-size: 4rem; font-weight: 800; color: var(--blue); opacity: 0.15; 
            position: absolute; top: -30px; left: -5px; z-index: 1;
        }
        .step-content { position: relative; z-index: 2; font-weight: 700; font-size: 1.1rem; color: var(--ink); padding-top: 10px; }

        /* Industries */
        .industries { background: #fff; }
        .ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
        .ind-card { 
            display: flex; align-items: center; gap: 20px; padding: 24px; 
            border: 1px solid var(--line); border-radius: 12px; transition: 0.2s;
        }
        .ind-card:hover { border-color: var(--blue); background: var(--bg); }
        .ind-card span { font-weight: 600; color: var(--ink); }
        .ind-icon { color: var(--blue); opacity: 0.8; }

        /* Proof */
        .proof { background: var(--grad); color: #fff; padding: 60px 0; }
        .proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
        .proof-item h4 { color: #fff; font-size: 1.75rem; margin-bottom: 4px; }
        .proof-item p { font-size: 0.9rem; opacity: 0.8; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

        /* CTA */
        .final-cta { background: var(--bg); text-align: center; }
        .final-cta h2 { font-size: 3rem; margin-bottom: 16px; }
        .final-cta p { margin-bottom: 40px; color: var(--ink-soft); }

        /* Footer */
        footer { background: var(--ink); color: #fff; padding: 80px 0 40px; }
        .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 60px; }
        .footer-brand { max-width: 400px; }
        .footer-brand h4 { color: #fff; font-size: 1.5rem; margin-bottom: 16px; }
        .footer-brand p { color: var(--mut); font-size: 0.95rem; }
        .footer-contact { text-align: right; }
        .footer-contact a { display: block; color: #fff; font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; color: var(--mut); font-size: 0.85rem; text-align: center; }

        /* Responsive */
        @media (max-width: 1024px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .service-card.featured { grid-column: span 2; }
            .how-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
        }
        @media (max-width: 768px) {
            .header-right, nav { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .services-grid, .ind-grid, .proof-grid, .how-grid { grid-template-columns: 1fr; }
            .service-card.featured { grid-template-columns: 1fr; grid-column: span 1; }
            .footer-top { flex-direction: column; gap: 40px; text-align: center; }
            .footer-contact { text-align: center; width: 100%; }
            .section-pad { padding: 60px 0; }
        }

        /* Animations */
        [data-reveal] { opacity: 0; transform: translateY(20px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
        .revealed { opacity: 1; transform: translateY(0); }
    

/* FIX: content always visible (reveal JS not ported) */
*{opacity:1 !important; animation:none !important}
/* my header/footer parts override Gemini's leftover chrome CSS */
header.wp-block-group, footer.wp-block-group{ position:static !important; max-width:100% !important; width:100% !important; left:0 !important; right:0 !important; box-shadow:none; }
header.wp-block-group{ box-shadow:0 1px 0 rgba(255,255,255,.08); }
