        /* =========================================================
           PUZZLE PREMIUM HOMEPAGE
        ========================================================= */

        :root {
            --pz-blue: #0563df;
            --pz-blue-dark: #034ba8;
            --pz-blue-light: #4cb5ff;

            --pz-navy: #07111f;
            --pz-navy-2: #0b1a2e;
            --pz-navy-3: #10243c;

            --pz-gold: #f5c842;
            --pz-gold-dark: #c99718;
            --pz-gold-soft: rgba(245, 200, 66, .14);

            --pz-white: #ffffff;
            --pz-text: #172033;
            --pz-muted: #6b7280;

            --pz-radius: 24px;
            --pz-shadow: 0 25px 70px rgba(4, 18, 38, .18);
        }


        /* =========================================================
           GLOBAL
        ========================================================= */

        .puzzle-home {
            overflow: hidden;
            background: #f7f9fc;
        }

        .puzzle-home *,
        .puzzle-home *::before,
        .puzzle-home *::after {
            box-sizing: border-box;
        }

        .puzzle-home img {
            max-width: 100%;
        }

        .puzzle-home a {
            text-decoration: none;
        }

        /*
         * IMPORTANT:
         * Reset span behavior ONLY inside our homepage.
         * This prevents style.css/index.css from making title spans
         * smaller, uneven or incorrectly positioned on mobile.
         */

        .puzzle-home h1 span,
        .puzzle-home h2 span,
        .puzzle-home h3 span,
        .puzzle-home p span,
        .puzzle-home .puzzle-section-title span,
        .puzzle-home .puzzle-final-cta span {
            font-size: inherit;
            line-height: inherit;
            font-weight: inherit;
        }


        /* =========================================================
           TEXT REVEAL
        ========================================================= */

        .pz-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition:
                opacity .8s ease,
                transform .8s cubic-bezier(.2, .8, .2, 1);
        }

        .pz-reveal.pz-visible {
            opacity: 1;
            transform: translateY(0);
        }


        /* =========================================================
           HERO
        ========================================================= */

        .pz-hero {
            position: relative;
            min-height: 100vh;
            padding: 42px 0;
            display: flex;
            align-items: center;
            background:
                radial-gradient(circle at 15% 20%, rgba(5, 99, 223, .10), transparent 28%),
                radial-gradient(circle at 85% 80%, rgba(245, 200, 66, .08), transparent 25%),
                #f5f8fc;
        }

        .pz-hero-shell {
            position: relative;
            width: min(1400px, 95%);
            min-height: 690px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
            isolation: isolate;

            background-image:
                linear-gradient(105deg,
                    rgba(4, 13, 27, .96) 0%,
                    rgba(6, 25, 48, .88) 45%,
                    rgba(5, 45, 82, .72) 100%),
                url('img/home/hero.jpg');

            background-size: cover;
            background-position: center;

            box-shadow:
                0 35px 100px rgba(4, 15, 31, .38),
                inset 0 0 0 1px rgba(255, 255, 255, .08);
        }

        .pz-hero-shell::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg,
                    transparent 0 65%,
                    rgba(5, 99, 223, .14) 100%);
            pointer-events: none;
        }

        .pz-hero-shell::after {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            left: -170px;
            bottom: -240px;
            background: rgba(5, 99, 223, .15);
            filter: blur(10px);
            pointer-events: none;
        }

        .pz-hero-pattern {
            position: absolute;
            inset: 0;
            opacity: .22;
            background-image:
                linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
            background-size: 70px 70px;
            mask-image: linear-gradient(to bottom, black, transparent);
            pointer-events: none;
        }

        .pz-hero-content {
            position: relative;
            z-index: 3;
            min-height: 690px;
            display: flex;
            align-items: center;
            padding: 80px 7%;
        }

        .pz-hero-copy {
            max-width: 780px;
        }

        .pz-hero-eyebrow {
            display: inline-flex !important;
            align-items: center;
            gap: 12px;
            padding: 9px 15px;
            border: 1px solid rgba(245, 200, 66, .28);
            background: rgba(245, 200, 66, .07);
            border-radius: 999px;
            color: #f8d76b;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 22px;
            width: auto !important;
        }

        .pz-hero-eyebrow::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--pz-gold);
            box-shadow: 0 0 16px rgba(245, 200, 66, .8);
        }

        .pz-hero-title {
            color: #fff !important;
            font-size: clamp(3rem, 6vw, 5.8rem) !important;
            line-height: 1.08 !important;
            font-weight: 900 !important;
            margin: 0 !important;
            letter-spacing: -2px;
        }

        .pz-hero-title .gold {
            position: relative;
            display: inline-block !important;
            width: auto !important;
            color: var(--pz-gold);
            font-size: inherit !important;
            font-weight: inherit !important;
            line-height: inherit !important;
        }

        .pz-hero-title .gold::after {
            content: "";
            position: absolute;
            right: 0;
            left: 0;
            bottom: -10px;
            height: 5px;
            border-radius: 10px;
            background: linear-gradient(90deg,
                    var(--pz-gold),
                    var(--pz-gold-dark));
            box-shadow: 0 0 20px rgba(245, 200, 66, .3);
        }

        .pz-hero-subtitle {
            color: rgba(255, 255, 255, .72) !important;
            font-size: clamp(1rem, 1.6vw, 1.25rem);
            line-height: 2;
            margin: 32px 0 0;
            max-width: 620px;
        }

        .pz-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
        }

        .pz-btn {
            min-height: 54px;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 30px;
            border-radius: 999px;
            font-weight: 800;
            transition:
                transform .3s ease,
                box-shadow .3s ease,
                background .3s ease,
                border-color .3s ease;
        }

        .pz-btn:hover {
            transform: translateY(-4px);
        }

        .pz-btn-primary {
            background: linear-gradient(135deg, #f7d45c, #d9aa22);
            color: #091525 !important;
            box-shadow: 0 12px 35px rgba(245, 200, 66, .25);
        }

        .pz-btn-primary:hover {
            box-shadow: 0 18px 45px rgba(245, 200, 66, .38);
        }

        .pz-btn-outline {
            color: #fff !important;
            border: 1px solid rgba(255, 255, 255, .24);
            background: rgba(255, 255, 255, .055);
            backdrop-filter: blur(12px);
        }

        .pz-btn-outline:hover {
            border-color: rgba(245, 200, 66, .55);
            background: rgba(245, 200, 66, .08);
        }

        .pz-hero-services {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
            margin-top: 42px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, .09);
        }

        .pz-hero-services span {
            display: inline-flex !important;
            width: auto !important;
            color: rgba(255, 255, 255, .42) !important;
            font-size: .72rem !important;
            font-weight: 700 !important;
            letter-spacing: 1.5px;
            line-height: 1.4 !important;
            white-space: nowrap;
        }

        .pz-hero-services span:not(:last-child)::after {
            content: "/";
            margin-right: 9px;
            color: rgba(245, 200, 66, .4);
        }

        .pz-hero-scroll {
            position: absolute;
            z-index: 5;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, .48);
            font-size: .7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .pz-hero-scroll::after {
            content: "";
            width: 1px;
            height: 35px;
            background: linear-gradient(to bottom,
                    var(--pz-gold),
                    transparent);
        }


        /* =========================================================
           FLOATING PUZZLE DECORATION
        ========================================================= */

        .pz-floating-piece {
            position: absolute;
            z-index: 2;
            width: 75px;
            height: 75px;
            border: 1px solid rgba(245, 200, 66, .16);
            background: rgba(255, 255, 255, .025);
            backdrop-filter: blur(8px);
            border-radius: 18px;
            transform: rotate(14deg);
            animation: pzFloat 6s ease-in-out infinite;
            pointer-events: none;
        }

        .pz-floating-piece::before {
            content: "";
            position: absolute;
            inset: 18px;
            border: 1px solid rgba(76, 181, 255, .22);
            border-radius: 12px;
        }

        .pz-floating-piece.one {
            top: 16%;
            right: 7%;
        }

        .pz-floating-piece.two {
            bottom: 17%;
            right: 12%;
            width: 50px;
            height: 50px;
            animation-delay: -2s;
        }

        .pz-floating-piece.three {
            top: 28%;
            left: 5%;
            width: 42px;
            height: 42px;
            animation-delay: -4s;
        }

        @keyframes pzFloat {

            0%,
            100% {
                transform: translateY(0) rotate(14deg);
            }

            50% {
                transform: translateY(-18px) rotate(23deg);
            }
        }


        /* =========================================================
           STATEMENT
        ========================================================= */

        .pz-statement {
            position: relative;
            padding: 110px 0;
            background:
                radial-gradient(circle at 10% 50%, rgba(5, 99, 223, .18), transparent 28%),
                linear-gradient(135deg, #07111f, #10243c);
            overflow: hidden;
        }

        .pz-statement::before {
            content: "";
            position: absolute;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            top: -300px;
            right: -200px;
            border: 1px solid rgba(245, 200, 66, .09);
            box-shadow:
                0 0 0 80px rgba(245, 200, 66, .025),
                0 0 0 160px rgba(245, 200, 66, .015);
        }

        .pz-statement-visual {
            position: relative;
            width: 330px;
            height: 330px;
            margin: auto;
        }

        .pz-statement-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid var(--pz-blue-light);
            box-shadow:
                0 25px 70px rgba(0, 0, 0, .55),
                0 0 0 12px rgba(245, 200, 66, .06);
        }

        .pz-orbit {
            position: absolute;
            inset: -25px;
            border: 1px dashed rgba(76, 181, 255, .25);
            border-radius: 50%;
            animation: pzOrbit 18s linear infinite;
        }

        .pz-orbit::before,
        .pz-orbit::after {
            content: "";
            position: absolute;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--pz-gold);
            box-shadow: 0 0 25px rgba(245, 200, 66, .55);
        }

        .pz-orbit::before {
            top: 12px;
            right: 22%;
        }

        .pz-orbit::after {
            bottom: 15px;
            left: 18%;
        }

        @keyframes pzOrbit {
            to {
                transform: rotate(360deg);
            }
        }

        .pz-statement-kicker {
            color: var(--pz-gold);
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        .pz-statement-title {
            color: #fff;
            font-size: clamp(2.2rem, 4vw, 3.8rem);
            line-height: 1.25;
            font-weight: 900;
            margin: 0;
        }

        .pz-statement-title span {
            color: var(--pz-gold) !important;
        }

        .pz-statement-line {
            width: 85px;
            height: 4px;
            margin: 25px 0;
            border-radius: 20px;
            background: linear-gradient(90deg,
                    var(--pz-gold),
                    var(--pz-gold-dark));
        }

        .pz-statement-text {
            color: rgba(255, 255, 255, .67);
            font-size: 1.08rem;
            line-height: 2.1;
            max-width: 700px;
            margin: 0;
        }


        /* =========================================================
           SECTION COMMON
        ========================================================= */

        .pz-section {
            position: relative;
            padding: 110px 0;
            overflow: hidden;
        }

        .pz-section-light {
            background:
                radial-gradient(circle at 90% 10%, rgba(5, 99, 223, .05), transparent 25%),
                #f7f9fc;
        }

        .pz-section-dark {
            background:
                radial-gradient(circle at 10% 20%, rgba(5, 99, 223, .13), transparent 25%),
                #07111f;
        }

        .pz-kicker {
            color: var(--pz-blue);
            font-size: .76rem;
            font-weight: 900;
            letter-spacing: 3px;
            margin-bottom: 14px;
        }

        .pz-kicker.gold {
            color: var(--pz-gold);
        }

        .pz-title {
            color: #101827;
            font-size: clamp(2rem, 4vw, 3.4rem);
            line-height: 1.3;
            font-weight: 900;
            margin: 0;
        }

        .pz-title span {
            color: var(--pz-blue);
        }

        .pz-title-light {
            color: #fff;
        }

        .pz-title-light span {
            color: var(--pz-gold);
        }

        .pz-subtitle {
            color: #6b7280;
            max-width: 700px;
            margin: 18px auto 0;
            line-height: 2;
            font-size: 1rem;
        }


        /* =========================================================
           ECOSYSTEM
        ========================================================= */

        .pz-ecosystem {
            margin-top: 65px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
        }

        .pz-eco-card {
            position: relative;
            min-height: 315px;
            padding: 30px 22px;
            border-radius: 24px;
            background: rgba(255, 255, 255, .85);
            border: 1px solid rgba(5, 99, 223, .08);
            box-shadow: 0 12px 35px rgba(5, 30, 60, .07);
            overflow: hidden;
            transition:
                transform .4s ease,
                box-shadow .4s ease,
                border-color .4s ease;
        }

        .pz-eco-card::before {
            content: "";
            position: absolute;
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: rgba(5, 99, 223, .055);
            top: -60px;
            left: -50px;
            transition: transform .5s ease;
        }

        .pz-eco-card:hover {
            transform: translateY(-12px);
            border-color: rgba(5, 99, 223, .2);
            box-shadow: 0 25px 55px rgba(5, 30, 60, .14);
        }

        .pz-eco-card:hover::before {
            transform: scale(1.5);
        }

        .pz-eco-icon {
            position: relative;
            width: 85px;
            height: 85px;
            padding: 13px;
            border-radius: 22px;
            background: linear-gradient(145deg,
                    #edf6ff,
                    #fff);
            border: 1px solid rgba(5, 99, 223, .08);
            margin-bottom: 22px;
        }

        .pz-eco-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .pz-eco-card h3 {
            position: relative;
            color: #111827;
            font-size: 1.15rem;
            font-weight: 900;
            margin-bottom: 12px;
        }

        .pz-eco-card p {
            position: relative;
            color: #6b7280;
            font-size: .9rem;
            line-height: 1.9;
            margin: 0;
        }


        /* =========================================================
           ABOUT
        ========================================================= */

        .pz-about {
            padding: 90px 0;
            background: #fff;
        }

        .pz-about-card {
            max-width: 900px;
            margin: 30px auto 0;
            padding: 35px;
            border-radius: 26px;
            background:
                linear-gradient(135deg,
                    rgba(5, 99, 223, .035),
                    rgba(245, 200, 66, .07));
            border: 1px solid rgba(5, 99, 223, .08);
        }

        .pz-about h2 {
            color: #101827;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
        }

        .pz-about h2 img {
            width: 55px !important;
            height: 55px !important;
            object-fit: contain;
            vertical-align: middle;
        }

        .pz-about .lead {
            color: #667085;
            line-height: 2.1;
            font-size: 1.08rem;
        }

        .pz-quote {
            margin: 0;
            color: #263246;
            font-weight: 700;
            line-height: 2;
        }


        /* =========================================================
           DIAGNOSTIC
        ========================================================= */

        .pz-diagnostic {
            background:
                radial-gradient(circle at 80% 20%, rgba(5, 99, 223, .14), transparent 30%),
                #edf3f9;
        }

        .pz-diagnostic-box {
            max-width: 1050px;
            margin: 55px auto 0;
            padding: 38px;
            border-radius: 30px;
            background: rgba(255, 255, 255, .8);
            border: 1px solid rgba(255, 255, 255, .9);
            box-shadow: var(--pz-shadow);
            backdrop-filter: blur(20px);
        }

        .pz-diagnostic-question {
            text-align: center;
            margin-bottom: 30px;
        }

        .pz-diagnostic-question h3 {
            color: #101827;
            font-size: 1.45rem;
            font-weight: 900;
        }

        .pz-diagnostic-question h3 img {
            width: 48px !important;
            height: 48px !important;
            object-fit: contain;
            vertical-align: middle;
            margin-left: 8px;
        }

        .pz-diagnostic-question p {
            color: #7a8494;
            margin: 10px 0 0;
        }

        .pz-diagnostic-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .pz-diagnostic-option {
            position: relative;
            width: 100%;
            text-align: right;
            border: 1px solid #e1e7ef;
            border-radius: 18px;
            background: #fff;
            padding: 20px;
            cursor: pointer;
            transition:
                transform .3s ease,
                border-color .3s ease,
                box-shadow .3s ease,
                background .3s ease;
        }

        .pz-diagnostic-option strong {
            display: block;
            color: #172033;
            font-size: .98rem;
            margin-bottom: 6px;
        }

        .pz-diagnostic-option span {
            display: block !important;
            width: auto !important;
            color: #8490a0;
            font-size: .8rem;
            line-height: 1.7 !important;
        }

        .pz-diagnostic-option:hover,
        .pz-diagnostic-option.active {
            transform: translateY(-4px);
            border-color: rgba(5, 99, 223, .45);
            background: linear-gradient(135deg,
                    #fff,
                    #f2f8ff);
            box-shadow: 0 15px 30px rgba(5, 99, 223, .10);
        }

        .pz-diagnostic-option.active::after {
            content: "";
            position: absolute;
            top: 12px;
            left: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--pz-gold);
            box-shadow: 0 0 14px rgba(245, 200, 66, .65);
        }

        .pz-diagnostic-result {
            display: none;
            margin-top: 25px;
            padding: 25px;
            border-radius: 20px;
            background: linear-gradient(135deg,
                    #07111f,
                    #102c4c);
            color: #fff;
            border: 1px solid rgba(245, 200, 66, .16);
        }

        .pz-diagnostic-result.show {
            display: block;
            animation: pzResult .5s ease forwards;
        }

        @keyframes pzResult {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pz-diagnostic-result strong {
            color: var(--pz-gold);
            font-size: 1.1rem;
        }

        .pz-diagnostic-result p {
            color: rgba(255, 255, 255, .68);
            line-height: 1.9;
            margin: 8px 0 0;
        }


        /* =========================================================
           STATS
        ========================================================= */

        .pz-stats {
            position: relative;
            padding: 100px 0;
            background:
                radial-gradient(circle at 10% 20%,
                    rgba(5, 99, 223, .30),
                    transparent 25%),
                radial-gradient(circle at 90% 80%,
                    rgba(245, 200, 66, .10),
                    transparent 25%),
                linear-gradient(135deg,
                    #06101d,
                    #0b1c32 55%,
                    #07111f);
            overflow: hidden;
        }

        .pz-stats::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: .35;
            background-image:
                linear-gradient(rgba(255, 255, 255, .035) 1px,
                    transparent 1px),
                linear-gradient(90deg,
                    rgba(255, 255, 255, .035) 1px,
                    transparent 1px);
            background-size: 55px 55px;
            mask-image: linear-gradient(to bottom,
                    transparent,
                    black,
                    transparent);
            pointer-events: none;
        }

        .pz-stats-header {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 45px;
        }

        .pz-stats-header .kicker {
            color: var(--pz-gold);
            font-size: .72rem;
            font-weight: 900;
            letter-spacing: 3px;
        }

        .pz-stats-header h2 {
            color: #fff;
            font-size: clamp(2rem, 4vw, 3.1rem);
            font-weight: 900;
            margin: 12px 0 0;
        }

        .pz-stats-header p {
            color: rgba(255, 255, 255, .55);
            max-width: 600px;
            margin: 12px auto 0;
            line-height: 1.9;
        }

        .pz-stats-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .pz-stat-card {
            position: relative;
            min-height: 205px;
            padding: 32px 22px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-radius: 24px;
            background:
                linear-gradient(145deg,
                    rgba(255, 255, 255, .09),
                    rgba(255, 255, 255, .025));
            border: 1px solid rgba(255, 255, 255, .09);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, .05),
                0 18px 40px rgba(0, 0, 0, .18);
            backdrop-filter: blur(14px);
            overflow: hidden;
            transition:
                transform .35s ease,
                border-color .35s ease;
        }

        .pz-stat-card::before {
            content: "";
            position: absolute;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            top: -65px;
            right: -45px;
            background: rgba(245, 200, 66, .08);
        }

        .pz-stat-card::after {
            content: "";
            position: absolute;
            width: 70px;
            height: 2px;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            background: linear-gradient(90deg,
                    transparent,
                    var(--pz-gold),
                    transparent);
        }

        .pz-stat-card:hover {
            transform: translateY(-8px);
            border-color: rgba(245, 200, 66, .24);
        }

        .pz-stat-number {
            position: relative;
            z-index: 2;
            color: var(--pz-gold);
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            line-height: 1;
            font-weight: 900;
            letter-spacing: -1px;
        }

        .pz-stat-label {
            position: relative;
            z-index: 2;
            margin-top: 14px;
            color: rgba(255, 255, 255, .7);
            font-size: .95rem;
            font-weight: 700;
        }

        .pz-stat-mini {
            position: relative;
            z-index: 2;
            width: 32px;
            height: 3px;
            margin-top: 18px;
            border-radius: 10px;
            background: var(--pz-blue-light);
        }


        /* =========================================================
           SERVICES
        ========================================================= */

        .pz-services {
            padding: 110px 0;
            background: #f7f9fc;
        }

        .pz-service-card {
            height: 100%;
            padding: 32px;
            border-radius: 25px;
            background: #fff;
            border: 1px solid rgba(5, 99, 223, .07);
            box-shadow: 0 12px 35px rgba(4, 30, 60, .06);
            transition:
                transform .35s ease,
                box-shadow .35s ease;
        }

        .pz-service-card:hover {
            transform: translateY(-9px);
            box-shadow: 0 25px 55px rgba(4, 30, 60, .12);
        }

        .pz-service-icon {
            width: 75px;
            height: 75px;
            padding: 12px;
            border-radius: 20px;
            background: #eef6ff;
            margin-bottom: 22px;
        }

        .pz-service-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .pz-service-card h3 {
            color: #121a29;
            font-size: 1.2rem;
            font-weight: 900;
        }

        .pz-service-card p {
            color: #737d8e;
            line-height: 2;
            font-size: .9rem;
            min-height: 120px;
        }

        .pz-service-link {
            display: inline-flex;
            color: var(--pz-blue);
            font-weight: 800;
            margin-top: 10px;
        }


        /* =========================================================
           WORKFLOW
        ========================================================= */

        .pz-workflow {
            background: #fff;
        }

        .pz-workflow-grid {
            position: relative;
            margin-top: 65px;
        }

        .pz-workflow-grid::before {
            content: "";
            position: absolute;
            top: 48px;
            right: 12%;
            left: 12%;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(5, 99, 223, .2),
                    rgba(245, 200, 66, .4),
                    transparent);
        }

        .pz-step {
            position: relative;
            text-align: center;
            padding: 0 18px;
        }

        .pz-step-number {
            width: 70px;
            height: 70px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--pz-blue);
            background: #fff;
            border: 1px solid rgba(5, 99, 223, .15);
            box-shadow: 0 10px 30px rgba(5, 99, 223, .08);
            font-weight: 900;
            position: relative;
            z-index: 2;
        }

        .pz-step h3 {
            color: #111827;
            font-weight: 900;
        }

        .pz-step p {
            color: #778194;
            line-height: 1.9;
            font-size: .9rem;
        }


        /* =========================================================
           PROJECT SHOWCASE
        ========================================================= */

        .pz-projects {
            background:
                radial-gradient(circle at 85% 20%,
                    rgba(5, 99, 223, .13),
                    transparent 28%),
                #07111f;
        }

        .pz-project {
            position: relative;
            margin-top: 60px;
            border-radius: 32px;
            overflow: hidden;
            background:
                linear-gradient(110deg,
                    #0a1728 0%,
                    #102d4b 55%,
                    #07111f 100%);
            border: 1px solid rgba(255, 255, 255, .08);
            box-shadow:
                0 35px 80px rgba(0, 0, 0, .32);
        }

        .pz-project-inner {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 540px;
        }

        /*
         * THIS IS THE PRODUCT IMAGE AREA.
         *
         * Replace:
         * img/home/project-showcase.jpg
         *
         * with your actual product screenshot/mockup.
         */

        .pz-project-image {
            position: relative;
            min-height: 540px;
            padding: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background:
                radial-gradient(circle,
                    rgba(5, 99, 223, .18),
                    transparent 65%);
        }

        .pz-project-image::before {
            content: "";
            position: absolute;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            border: 1px solid rgba(245, 200, 66, .10);
            box-shadow:
                0 0 0 50px rgba(245, 200, 66, .025),
                0 0 0 100px rgba(245, 200, 66, .015);
        }

        .pz-product-frame {
            position: relative;
            width: min(100%, 560px);
            border-radius: 18px;
            padding: 8px;
            background:
                linear-gradient(145deg,
                    rgba(255, 255, 255, .22),
                    rgba(255, 255, 255, .04));
            box-shadow:
                0 30px 70px rgba(0, 0, 0, .45),
                0 0 0 1px rgba(255, 255, 255, .08);
            transform: perspective(1000px) rotateY(7deg) rotateX(2deg);
            transition: transform .5s ease;
        }

        .pz-project:hover .pz-product-frame {
            transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-5px);
        }

        .pz-product-frame img {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            border-radius: 12px;
            background: #10243c;
        }

        .pz-product-placeholder {
            position: absolute;
            bottom: 35px;
            right: 35px;
            left: 35px;
            padding: 12px 16px;
            border-radius: 12px;
            color: rgba(255, 255, 255, .6);
            background: rgba(7, 17, 31, .72);
            border: 1px solid rgba(255, 255, 255, .08);
            backdrop-filter: blur(10px);
            text-align: center;
            font-size: .75rem;
        }

        .pz-project-content {
            padding: 70px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pz-project-label {
            color: var(--pz-gold);
            font-size: .7rem;
            font-weight: 900;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        .pz-project-content h3 {
            color: #fff;
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 900;
            line-height: 1.25;
            margin: 0;
        }

        .pz-project-content p {
            color: rgba(255, 255, 255, .62);
            line-height: 2;
            margin: 22px 0 30px;
            max-width: 500px;
        }


        /* =========================================================
           TRUST / INFINITE CLIENT CAROUSEL
        ========================================================= */

        .pz-trust {
            padding: 80px 0 0;
            background: #07111f;
        }

        .pz-trust-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .pz-trust-header span {
            color: rgba(255, 255, 255, .35);
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: 3px;
        }

        .pz-trust-header h3 {
            color: #fff;
            margin: 10px 0 0;
            font-size: 1.4rem;
            font-weight: 800;
        }

        .pz-marquee {
            position: relative;
            width: 100%;
            overflow: hidden;
            direction: ltr;
            mask-image: linear-gradient(90deg,
                    transparent,
                    black 10%,
                    black 90%,
                    transparent);
        }

        .pz-marquee-track {
            width: max-content;
            display: flex;
            align-items: center;
            gap: 18px;
            animation: pzMarquee 30s linear infinite;
        }

        .pz-marquee:hover .pz-marquee-track {
            animation-play-state: paused;
        }

        .pz-trust-card {
            width: 220px;
            height: 105px;
            flex: 0 0 220px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, .07);
            background:
                linear-gradient(145deg,
                    rgba(255, 255, 255, .07),
                    rgba(255, 255, 255, .025));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition:
                border-color .3s ease,
                transform .3s ease;
        }

        .pz-trust-card:hover {
            transform: translateY(-4px);
            border-color: rgba(245, 200, 66, .25);
        }

        .pz-trust-logo {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pz-gold);
            border: 1px dashed rgba(245, 200, 66, .35);
            font-size: .65rem;
            font-weight: 900;
        }

        .pz-trust-card strong {
            color: rgba(255, 255, 255, .72);
            font-size: .8rem;
            direction: rtl;
        }

        .pz-trust-card small {
            color: rgba(255, 255, 255, .3);
            font-size: .62rem;
            direction: rtl;
        }

        @keyframes pzMarquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }


        /* =========================================================
           WHY PUZZLE
        ========================================================= */

        .pz-why {
            background: #07111f;
            padding-top: 100px;
        }

        .pz-why-top {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 60px;
            align-items: end;
        }

        .pz-why-copy p {
            color: rgba(255, 255, 255, .55);
            line-height: 2;
            margin: 0;
        }

        .pz-why-image {
            margin-top: 30px;
            text-align: center;
        }

        .pz-why-image img {
            width: min(100%, 520px);
            border-radius: 22px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
        }

        .pz-why-grid {
            margin-top: 70px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-top: 1px solid rgba(255, 255, 255, .08);
        }

        .pz-why-item {
            padding: 45px 30px;
            border-left: 1px solid rgba(255, 255, 255, .08);
        }

        .pz-why-item:last-child {
            border-left: none;
        }

        .pz-why-number {
            color: var(--pz-gold);
            font-size: .72rem;
            font-weight: 900;
            letter-spacing: 2px;
        }

        .pz-why-item h3 {
            color: #fff;
            font-size: 1.3rem;
            font-weight: 900;
            margin: 16px 0 12px;
        }

        .pz-why-item p {
            color: rgba(255, 255, 255, .48);
            line-height: 1.9;
            margin: 0;
        }


        /* =========================================================
           FOUNDER WRAPPER
        ========================================================= */

        .pz-founder-wrapper {
            background: #f7f9fc;
            padding: 30px 0 0;
        }


        /* =========================================================
           FINAL CTA
        ========================================================= */

        .pz-final {
            position: relative;
            padding: 120px 0;
            background:
                radial-gradient(circle at 50% 0,
                    rgba(5, 99, 223, .18),
                    transparent 35%),
                linear-gradient(135deg,
                    #07111f,
                    #0d2743);
            text-align: center;
            overflow: hidden;
        }

        .pz-final::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            border: 1px solid rgba(245, 200, 66, .08);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow:
                0 0 0 80px rgba(245, 200, 66, .025),
                0 0 0 160px rgba(245, 200, 66, .012);
        }

        .pz-final-content {
            position: relative;
            z-index: 2;
        }

        .pz-final h2 {
            color: #fff;
            font-size: clamp(2.2rem, 5vw, 4.2rem);
            line-height: 1.25;
            font-weight: 900;
            margin: 15px 0 20px;
        }

        .pz-final h2 span {
            color: var(--pz-gold);
        }

        .pz-final p {
            color: rgba(255, 255, 255, .6);
            max-width: 650px;
            margin: 0 auto 30px;
            line-height: 2;
        }


        /* =========================================================
           SCROLL PROGRESS
        ========================================================= */

        .pz-scroll-progress {
            position: fixed;
            top: 0;
            right: 0;
            height: 3px;
            width: 0;
            z-index: 99999;
            background: linear-gradient(90deg,
                    var(--pz-blue),
                    var(--pz-gold));
            box-shadow: 0 0 15px rgba(5, 99, 223, .35);
        }


        /* =========================================================
           CURSOR GLOW
        ========================================================= */

        .pz-cursor-glow {
            position: fixed;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle,
                    rgba(5, 99, 223, .055),
                    transparent 65%);
            display: none;
        }


        /* =========================================================
           MOBILE
        ========================================================= */

        @media (max-width: 1199px) {

            .pz-ecosystem {
                grid-template-columns: repeat(3, 1fr);
            }

            .pz-project-content {
                padding: 50px 40px;
            }

        }


        @media (max-width: 991px) {

            .pz-hero {
                min-height: auto;
                padding: 20px 0;
            }

            .pz-hero-shell {
                width: 94%;
                min-height: 650px;
            }

            .pz-hero-content {
                min-height: 650px;
                padding: 70px 8%;
            }

            .pz-hero-title {
                font-size: clamp(2.8rem, 8vw, 4.5rem) !important;
            }

            .pz-statement {
                padding: 85px 0;
            }

            .pz-statement-visual {
                width: 280px;
                height: 280px;
                margin-bottom: 45px;
            }

            .pz-ecosystem {
                grid-template-columns: repeat(2, 1fr);
            }

            .pz-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pz-project-inner {
                grid-template-columns: 1fr;
            }

            .pz-project-image {
                min-height: auto;
                padding: 50px 30px 30px;
            }

            .pz-product-frame {
                transform: none;
            }

            .pz-project-content {
                padding: 40px 30px 55px;
            }

            .pz-why-top {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .pz-why-grid {
                grid-template-columns: 1fr;
            }

            .pz-why-item {
                border-left: none;
                border-bottom: 1px solid rgba(255, 255, 255, .08);
            }

            .pz-why-item:last-child {
                border-bottom: none;
            }

        }


        @media (max-width: 767px) {

            .pz-section {
                padding: 80px 0;
            }

            .pz-hero-shell {
                min-height: 650px;
                border-radius: 22px;
            }

            .pz-hero-content {
                min-height: 650px;
                padding: 60px 25px;
            }

            .pz-hero-copy {
                width: 100%;
            }

            .pz-hero-eyebrow {
                font-size: .65rem;
                letter-spacing: 1.5px;
            }

            .pz-hero-title {
                font-size: clamp(2.55rem, 12vw, 4rem) !important;
                letter-spacing: -1px;
            }

            .pz-hero-title .gold {
                display: inline !important;
            }

            .pz-hero-title .gold::after {
                height: 3px;
                bottom: -5px;
            }

            .pz-hero-subtitle {
                font-size: .95rem;
                line-height: 2;
                margin-top: 25px;
            }

            .pz-hero-actions {
                flex-direction: column;
            }

            .pz-btn {
                width: 100%;
            }

            .pz-hero-services {
                gap: 7px;
            }

            .pz-hero-services span {
                font-size: .64rem !important;
            }

            .pz-floating-piece {
                display: none;
            }

            .pz-statement {
                padding: 75px 0;
            }

            .pz-statement-visual {
                width: 240px;
                height: 240px;
            }

            .pz-statement-title {
                font-size: 2.25rem;
            }

            .pz-statement-text {
                font-size: .96rem;
                line-height: 2;
            }

            .pz-ecosystem {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .pz-eco-card {
                min-height: auto;
                padding: 25px;
            }

            .pz-about {
                padding: 70px 0;
            }

            .pz-about-card {
                padding: 25px 20px;
            }

            .pz-diagnostic-box {
                padding: 20px;
                border-radius: 22px;
            }

            .pz-diagnostic-options {
                grid-template-columns: 1fr;
            }

            .pz-diagnostic-option {
                padding: 18px;
            }

            .pz-stats {
                padding: 80px 0;
            }

            .pz-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .pz-stat-card {
                min-height: 170px;
                padding: 25px 12px;
            }

            .pz-stat-number {
                font-size: 2.25rem;
            }

            .pz-stat-label {
                font-size: .8rem;
            }

            .pz-services {
                padding: 80px 0;
            }

            .pz-service-card {
                padding: 25px;
            }

            .pz-service-card p {
                min-height: auto;
            }

            .pz-workflow-grid {
                margin-top: 45px;
            }

            .pz-workflow-grid::before {
                display: none;
            }

            .pz-step {
                margin-bottom: 35px;
            }

            .pz-project-image {
                padding: 35px 18px 20px;
            }

            .pz-project-content {
                padding: 35px 22px 45px;
            }

            .pz-project-content h3 {
                font-size: 2rem;
            }

            .pz-project-content p {
                font-size: .9rem;
            }

            .pz-trust {
                padding-top: 55px;
            }

            .pz-trust-card {
                width: 180px;
                flex-basis: 180px;
            }

            .pz-final {
                padding: 90px 0;
            }

        }


        @media (max-width: 480px) {

            .pz-hero-shell {
                width: 92%;
            }

            .pz-hero-content {
                padding: 55px 20px;
            }

            .pz-hero-title {
                font-size: 2.45rem !important;
            }

            .pz-stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .pz-stat-card {
                min-height: 155px;
            }

            .pz-stat-number {
                font-size: 2rem;
            }

            .pz-stat-label {
                font-size: .74rem;
            }

            .pz-trust-card {
                width: 160px;
                flex-basis: 160px;
            }

        }


        /* =========================================================
           ACCESSIBILITY / REDUCED MOTION
        ========================================================= */

        @media (prefers-reduced-motion: reduce) {

            .pz-floating-piece,
            .pz-orbit,
            .pz-marquee-track {
                animation: none !important;
            }

            .pz-reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .pz-btn,
            .pz-eco-card,
            .pz-stat-card,
            .pz-product-frame {
                transition: none !important;
            }

        }
