        * {
            font-family: 'Inter', sans-serif;
        }

        h1,
        h2,
        h3,
        .font-display {
            font-family: 'Syne', sans-serif;
        }

        .gradient-text {
            background: linear-gradient(135deg, #6366f1, #06b6d4, #8b5cf6);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient 6s ease infinite;
        }

        .hero-gradient {
            background: radial-gradient(ellipse at top left, rgba(99, 102, 241, .15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(6, 182, 212, .1) 0%, transparent 50%),
                #0f0f1a;
        }

        .card-glow:hover {
            box-shadow: 0 0 40px rgba(99, 102, 241, .2);
        }

        /* nav underline */
        .nav-link::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #06b6d4);
            transition: width .3s ease;
            margin-top: 2px;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* buttons */
        .btn-primary {
            background: linear-gradient(135deg, #6366f1, #4f46e5);
            transition: all .3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #06b6d4, #6366f1);
            transition: left .4s ease;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .mesh-bg {
            background-image: radial-gradient(rgba(99, 102, 241, .08) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #0f0f1a;
        }

        ::-webkit-scrollbar-thumb {
            background: #6366f1;
            border-radius: 3px;
        }

        .glass {
            background: rgba(255, 255, 255, .03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, .08);
        }

        .service-card:hover .service-icon,.service-icon:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon {
            transition: transform .3s ease;
        }

        /* ── Service card SVG illustration ── */
        .service-svg-illustration {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .service-svg-illustration svg {
            max-width: 100%;
            height: auto;
            max-height: 160px;
            display: block;
        }

        /* ── Navbar scrolled ── */
        #navbar.scrolled {
            background: rgba(13, 13, 22, .95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
        }

        /* ── Desktop Mega Menu ── */
        .mega-panel {
            /* sizing & positioning handled by Tailwind; only non-Tailwind props here */
            background: rgba(13, 13, 22, .98);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, .08);
            box-shadow: 0 25px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(99, 102, 241, .08);
            /* fixed width — Tailwind w-[800px] works but this keeps it out of markup */
            width: 800px;
        }

        .mega-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #06b6d4, #8b5cf6);
        }

        /* open / closed states driven by JS toggling these classes */
        .mega-panel.is-open {
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: all !important;
            transform: translateX(-50%) translateY(0) !important;
        }

        .mega-item {
            border-radius: 12px;
            transition: background .18s ease, transform .18s ease;
        }

        .mega-item:hover {
            background: rgba(255, 255, 255, .05);
            transform: translateX(3px);
        }

        .cat-label {
            font-size: .6rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            font-weight: 800;
        }

        /* CTA panel gradient — replaces inline style */
        .mega-cta-panel {
            background: linear-gradient(160deg, rgba(99, 102, 241, .12), rgba(6, 182, 212, .06));
        }

        /* Drawer borders — replaces inline style */
        .drawer-header {
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .drawer-footer {
            border-top: 1px solid rgba(255, 255, 255, .07);
        }

        .mob-acc-item {
            border: 1px solid rgba(255, 255, 255, .06);
        }

        .mob-acc-inner {
            background: rgba(255, 255, 255, .02);
        }

        /* mega bottom bar */
        .mega-bottom-bar {
            background: rgba(255, 255, 255, .02);
        }

        /* ── Mobile Drawer ── */
        #drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .65);
            backdrop-filter: blur(4px);
            z-index: 199;
            opacity: 0;
            pointer-events: none;
            transition: opacity .35s ease;
        }

        #drawer-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        #mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(340px, 100vw);
            background: #0d0d16;
            border-left: 1px solid rgba(255, 255, 255, .07);
            box-shadow: -20px 0 60px rgba(0, 0, 0, .7);
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1);
            z-index: 200;
            overflow-y: auto;
            overscroll-behavior: contain;
            display: flex;
            flex-direction: column;
        }

        #mobile-drawer.open {
            transform: translateX(0);
        }

        /* accordion */
        .mob-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height .32s cubic-bezier(.4, 0, .2, 1);
        }

        .mob-body.open {
            max-height: 500px;
        }

        .mob-chevron {
            transition: transform .3s ease;
        }

        .mob-acc-btn.open .mob-chevron {
            transform: rotate(180deg);
        }

        /* ── Services — category tab filter ── */
        .service-tab-btn {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            color: #9ca3af;
            cursor: pointer;
        }

        .service-tab-btn:hover {
            background: rgba(255, 255, 255, .08);
            color: #fff;
        }

        .service-tab-btn.active {
            background: linear-gradient(135deg, #6366f1, #4f46e5);
            border-color: transparent;
            color: #fff;
        }

        /* ── Single Service — Gutenberg content prose ── */
        .prose-service { color: #d1d5db; line-height: 1.8; }
        .prose-service h2 { font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 700; color: #fff; margin: 2.5rem 0 1rem; }
        .prose-service h3 { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 600; color: #e5e7eb; margin: 2rem 0 0.75rem; }
        .prose-service p  { margin-bottom: 1.25rem; }
        .prose-service ul, .prose-service ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
        .prose-service li { margin-bottom: 0.4rem; }
        .prose-service a  { color: #818cf8; text-decoration: underline; }
        .prose-service a:hover { color: #a5b4fc; }
        .prose-service strong { color: #fff; font-weight: 600; }
        .prose-service blockquote {
            border-left: 3px solid #6366f1; padding-left: 1.25rem;
            color: #9ca3af; font-style: italic; margin: 1.5rem 0;
        }
        .prose-service img { border-radius: 12px; max-width: 100%; height: auto; margin: 1.5rem 0; }
        .prose-service pre {
            background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
            border-radius: 8px; padding: 1.25rem; overflow-x: auto;
            font-size: 0.875rem; margin-bottom: 1.25rem;
        }
        .prose-service code {
            background: rgba(99,102,241,.15); color: #a5b4fc;
            padding: 2px 6px; border-radius: 4px; font-size: 0.875em;
        }

        /* ── Service Benefits — rich text output ── */
        .wp-block-gizmosol-service-benefits p strong,
        .wp-block-gizmosol-service-benefits p b { color: #fff; font-weight: 700; }
        .wp-block-gizmosol-service-benefits p u { text-decoration: underline; text-underline-offset: 2px; }
        .wp-block-gizmosol-service-benefits p a { color: #818cf8; text-decoration: underline; }
        .wp-block-gizmosol-service-benefits p a:hover { color: #a5b4fc; }
        .wp-block-gizmosol-service-benefits p s { opacity: .55; }

        /* ── Blog — category filter pills ── */
        .blog-cat-pill {
            cursor: pointer;
            white-space: nowrap;
            user-select: none;
            line-height: 1;
        }

        .blog-cat-pill.active {
            background: linear-gradient(135deg, #6366f1, #4f46e5);
            border-color: transparent !important;
            color: #fff !important;
        }

        .blog-cat-pill:focus-visible {
            outline: 2px solid #6366f1;
            outline-offset: 2px;
        }
