
/* =========================================================
   PUZZLE STUDIO — PRINT & PRODUCTION
   ========================================================= */

.pz-print-page {
    direction: rtl;
    background: #f5f7fa;
    color: #10233f;
    overflow: hidden;
}


/* =========================================================
   HERO
   ========================================================= */

.pz-print-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: #071526;
    color: #fff;
    overflow: hidden;
}

.pz-print-hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: -220px;
    top: -180px;
    border-radius: 50%;
    border: 1px solid rgba(76, 181, 255, .15);
    box-shadow:
        0 0 0 70px rgba(76, 181, 255, .025),
        0 0 0 140px rgba(76, 181, 255, .02);
}

.pz-print-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 50px 50px;
}

.pz-print-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}


/* =========================================================
   HERO TEXT
   ========================================================= */

.pz-print-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .045);
    color: #8fcfff;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 28px;
}

.pz-print-kicker img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.pz-print-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0 0 25px;
}

.pz-print-hero h1 span {
    display: block;
    color: #62bdff;
}

.pz-print-description {
    max-width: 620px;
    color: rgba(255, 255, 255, .68);
    font-size: 18px;
    line-height: 2;
    margin-bottom: 32px;
}

.pz-print-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: .25s ease;
}

.pz-print-btn.primary {
    background: #0563df;
    color: #fff;
}

.pz-print-btn.primary:hover {
    transform: translateY(-3px);
    background: #1475f0;
}


/* =========================================================
   PRINT STACK VISUAL
   ========================================================= */

.pz-print-stack {
    position: relative;
    height: 430px;
    perspective: 1000px;
}

.pz-paper {
    position: absolute;
    width: 270px;
    height: 350px;
    border-radius: 8px;
    left: 50%;
    top: 50%;
    transform-origin: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
    transition: .5s ease;
}

.pz-paper.one {
    background: #0563df;
    transform: translate(-50%, -50%) rotate(-11deg);
}

.pz-paper.two {
    background: #fff;
    transform: translate(-50%, -50%) rotate(5deg);
}

.pz-paper.three {
    background: #eaf4ff;
    transform: translate(-50%, -50%) rotate(-2deg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pz-paper.three::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #0563df;
    top: 65px;
    right: -50px;
    opacity: .12;
}

.pz-paper.three::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #00a8d8;
    bottom: -30px;
    left: -25px;
    opacity: .15;
}

.pz-paper-content {
    position: relative;
    z-index: 2;
    width: 80%;
}

.pz-paper-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 30px;
}

.pz-paper-line {
    height: 8px;
    width: 80%;
    background: #10233f;
    border-radius: 10px;
    margin-bottom: 12px;
}

.pz-paper-line.short {
    width: 48%;
}

.pz-paper-line.blue {
    background: #0563df;
    width: 65%;
    margin-top: 30px;
}

.pz-print-stack:hover .pz-paper.one {
    transform: translate(-68%, -50%) rotate(-15deg);
}

.pz-print-stack:hover .pz-paper.two {
    transform: translate(-33%, -50%) rotate(12deg);
}


/* =========================================================
   INTRO
   ========================================================= */

.pz-print-intro {
    padding: 110px 20px;
    background: #fff;
}

.pz-print-intro-inner {
    width: min(1000px, 100%);
    margin: auto;
    text-align: center;
}

.pz-print-label {
    color: #0563df;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.pz-print-intro h2 {
    font-size: clamp(30px, 4.5vw, 54px);
    line-height: 1.4;
    margin: 0;
    font-weight: 900;
}

.pz-print-intro h2 span {
    color: #0563df;
}

.pz-print-intro p {
    max-width: 760px;
    margin: 25px auto 0;
    color: #718096;
    line-height: 2;
    font-size: 17px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.pz-print-process {
    padding: 100px 20px;
    background: #f5f7fa;
}

.pz-print-process-inner {
    width: min(1180px, 100%);
    margin: auto;
}

.pz-print-heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.pz-print-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 0 0 15px;
    font-weight: 900;
}

.pz-print-heading p {
    margin: 0;
    color: #718096;
    line-height: 1.9;
}

.pz-print-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pz-print-flow-card {
    position: relative;
    padding: 32px 28px;
    min-height: 260px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    transition: .3s ease;
}

.pz-print-flow-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(16, 35, 63, .08);
}

.pz-print-flow-number {
    font-size: 12px;
    font-weight: 900;
    color: #0563df;
    margin-bottom: 50px;
}

.pz-print-flow-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
}

.pz-print-flow-card p {
    color: #718096;
    line-height: 1.9;
    font-size: 14px;
    margin: 0;
}

.pz-print-arrow {
    position: absolute;
    left: 22px;
    top: 28px;
    font-size: 25px;
    color: #d5e2f0;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.pz-print-products {
    padding: 110px 20px;
    background: #fff;
}

.pz-print-products-inner {
    width: min(1180px, 100%);
    margin: auto;
}

.pz-product-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.pz-product {
    position: relative;
    min-height: 220px;
    padding: 30px;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f8fc;
    border: 1px solid #e3eaf2;
    transition: .3s ease;
}

.pz-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(16, 35, 63, .08);
}

.pz-product.big {
    grid-column: span 6;
}

.pz-product.small {
    grid-column: span 3;
}

.pz-product-number {
    font-size: 12px;
    font-weight: 900;
    color: #0563df;
    margin-bottom: 35px;
}

.pz-product h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.pz-product p {
    color: #718096;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.pz-product-shape {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    left: -45px;
    bottom: -60px;
    background: rgba(5, 99, 223, .07);
}


/* =========================================================
   IMPORTANT DIFFERENCE
   ========================================================= */

.pz-print-difference {
    padding: 110px 20px;
    background: #071526;
    color: #fff;
}

.pz-print-difference-inner {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.pz-print-difference h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.4;
    margin: 0 0 20px;
    font-weight: 900;
}

.pz-print-difference h2 span {
    color: #62bdff;
}

.pz-print-difference>.pz-print-difference-inner>div>p {
    color: rgba(255, 255, 255, .62);
    line-height: 2;
}

.pz-print-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pz-print-point {
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
}

.pz-print-point strong {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
}

.pz-print-point span {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.pz-print-cta {
    margin: 80px 20px;
    padding: 80px 25px;
    border-radius: 32px;
    text-align: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(76, 181, 255, .22), transparent 25%),
        #0563df;
    color: #fff;
}

.pz-print-cta h2 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900;
    margin: 0 0 18px;
}

.pz-print-cta p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, .78);
    line-height: 2;
}

.pz-print-cta .pz-print-btn {
    background: #fff;
    color: #0563df;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .pz-print-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pz-print-description {
        margin-left: auto;
        margin-right: auto;
    }

    .pz-print-stack {
        width: 400px;
        max-width: 100%;
        margin: auto;
        height: 360px;
        transform: scale(.85);
    }

    .pz-print-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .pz-print-difference-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 650px) {

    .pz-print-hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .pz-print-hero h1 {
        letter-spacing: -1px;
    }

    .pz-print-description {
        font-size: 15px;
    }

    .pz-print-stack {
        transform: scale(.7);
        margin-top: -30px;
        margin-bottom: -40px;
    }

    .pz-print-flow {
        grid-template-columns: 1fr;
    }

    .pz-product-grid {
        grid-template-columns: 1fr;
    }

    .pz-product.big,
    .pz-product.small {
        grid-column: span 1;
    }

    .pz-print-points {
        grid-template-columns: 1fr;
    }

    .pz-print-cta {
        margin: 50px 15px;
        border-radius: 24px;
    }
}

