
/* =========================================================
   PUZZLE STUDIO — IT SERVICES PAGE
   ========================================================= */

.pz-it-page {
    direction: rtl;
    background: #f5f8fc;
    color: #10233f;
    overflow: hidden;
}

/* =========================
   HERO
   ========================= */

.pz-it-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 25%, rgba(5, 99, 223, .28), transparent 30%),
        radial-gradient(circle at 85% 70%, rgba(76, 181, 255, .16), transparent 25%),
        #071526;
    color: #fff;
    overflow: hidden;
}

.pz-it-grid {
    position: absolute;
    inset: 0;
    opacity: .14;
    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: 55px 55px;
}

.pz-it-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.pz-it-orb.one {
    width: 260px;
    height: 260px;
    left: -100px;
    top: 80px;
    border: 1px solid rgba(76, 181, 255, .25);
}

.pz-it-orb.two {
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -200px;
    border: 1px solid rgba(5, 99, 223, .35);
}

.pz-it-hero-inner {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
    position: relative;
    z-index: 2;
}

.pz-it-hero-content {
    max-width: 720px;
}

.pz-it-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    font-size: 13px;
    letter-spacing: .5px;
    margin-bottom: 28px;
}

.pz-it-kicker img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.pz-it-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    margin: 0 0 25px;
    font-weight: 900;
    letter-spacing: -2px;
}

.pz-it-hero h1 span {
    display: block;
    color: #63bfff;
}

.pz-it-hero-description {
    max-width: 650px;
    font-size: 18px;
    line-height: 2;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 34px;
}

.pz-it-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pz-it-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: .25s ease;
}

.pz-it-btn.primary {
    background: #0563df;
    color: #fff;
    box-shadow: 0 12px 30px rgba(5, 99, 223, .28);
}

.pz-it-btn.primary:hover {
    transform: translateY(-3px);
    background: #1475f0;
}

.pz-it-btn.secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .05);
}

.pz-it-btn.secondary:hover {
    background: rgba(255, 255, 255, .1);
}

/* =========================
   NETWORK VISUAL
   ========================= */

.pz-it-network {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 390px;
    height: 390px;
    opacity: .9;
}

.pz-node {
    position: absolute;
    width: 66px;
    height: 66px;
    border-radius: 18px;
    border: 1px solid rgba(99, 191, 255, .35);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}

.pz-node img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.pz-node.main {
    width: 92px;
    height: 92px;
    left: 145px;
    top: 145px;
    border-radius: 26px;
    background: rgba(5, 99, 223, .22);
    border-color: rgba(99, 191, 255, .6);
}

.pz-node.main img {
    width: 42px;
    height: 42px;
}

.pz-node.n1 {
    left: 20px;
    top: 55px;
}

.pz-node.n2 {
    right: 20px;
    top: 40px;
}

.pz-node.n3 {
    left: 0;
    bottom: 55px;
}

.pz-node.n4 {
    right: 0;
    bottom: 65px;
}

.pz-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 191, 255, .45), transparent);
    transform-origin: center;
}

.pz-line.l1 {
    width: 145px;
    left: 70px;
    top: 130px;
    transform: rotate(30deg);
}

.pz-line.l2 {
    width: 145px;
    right: 70px;
    top: 125px;
    transform: rotate(-30deg);
}

.pz-line.l3 {
    width: 145px;
    left: 70px;
    bottom: 130px;
    transform: rotate(-30deg);
}

.pz-line.l4 {
    width: 145px;
    right: 70px;
    bottom: 130px;
    transform: rotate(30deg);
}

/* =========================
   INTRO
   ========================= */

.pz-it-intro {
    padding: 110px 20px 80px;
    background: #fff;
}

.pz-it-intro-inner {
    width: min(1080px, 100%);
    margin: auto;
    text-align: center;
}

.pz-it-eyebrow {
    font-size: 13px;
    color: #0563df;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pz-it-intro h2 {
    max-width: 850px;
    margin: auto;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.35;
    font-weight: 900;
}

.pz-it-intro h2 span {
    color: #0563df;
}

.pz-it-intro p {
    max-width: 750px;
    margin: 25px auto 0;
    color: #68778d;
    line-height: 2;
    font-size: 17px;
}

/* =========================
   CAPABILITIES
   ========================= */

.pz-it-capabilities {
    padding: 80px 20px 110px;
    background: #f5f8fc;
}

.pz-it-section-head {
    width: min(1180px, 100%);
    margin: 0 auto 45px;
}

.pz-it-section-head h2 {
    font-size: clamp(30px, 4vw, 45px);
    margin: 0 0 12px;
    font-weight: 900;
}

.pz-it-section-head p {
    color: #718096;
    margin: 0;
    line-height: 1.9;
}

.pz-it-cap-grid {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.pz-it-card {
    position: relative;
    min-height: 270px;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e4ebf3;
    overflow: hidden;
    transition: .3s ease;
}

.pz-it-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(24, 62, 100, .09);
}

.pz-it-card.large {
    grid-column: span 6;
}

.pz-it-card.small {
    grid-column: span 3;
}

.pz-it-card.dark {
    background: #0a1a2d;
    color: #fff;
    border-color: #0a1a2d;
}

.pz-it-card-number {
    font-size: 13px;
    font-weight: 800;
    color: #0563df;
    margin-bottom: 35px;
}

.pz-it-card.dark .pz-it-card-number {
    color: #63bfff;
}

.pz-it-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 22px;
}

.pz-it-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 850;
}

.pz-it-card p {
    margin: 0;
    line-height: 1.9;
    color: #718096;
    font-size: 14px;
}

.pz-it-card.dark p {
    color: rgba(255, 255, 255, .62);
}

.pz-it-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    left: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(5, 99, 223, .08);
}

/* =========================
   BUSINESS PROTECTION
   ========================= */

.pz-it-security {
    padding: 110px 20px;
    background: #071526;
    color: #fff;
}

.pz-it-security-inner {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
}

.pz-it-security-label {
    color: #63bfff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pz-it-security h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.35;
    margin: 0 0 22px;
    font-weight: 900;
}

.pz-it-security p {
    color: rgba(255, 255, 255, .65);
    line-height: 2;
}

.pz-it-security-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pz-it-security-item {
    padding: 28px;
    min-height: 160px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .035);
}

.pz-it-security-item strong {
    display: block;
    margin-bottom: 12px;
    font-size: 17px;
}

.pz-it-security-item span {
    color: rgba(255, 255, 255, .55);
    line-height: 1.8;
    font-size: 14px;
}

/* =========================
   APPROACH
   ========================= */

.pz-it-approach {
    padding: 100px 20px;
    background: #fff;
}

.pz-it-approach-inner {
    width: min(1180px, 100%);
    margin: auto;
}

.pz-it-approach-title {
    max-width: 650px;
    margin-bottom: 55px;
}

.pz-it-approach-title h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.4;
    margin: 0;
    font-weight: 900;
}

.pz-it-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #dfe7ef;
}

.pz-it-step {
    padding: 30px 20px 0;
    border-left: 1px solid #dfe7ef;
}

.pz-it-step:last-child {
    border-left: 0;
}

.pz-it-step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0563df;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 25px;
}

.pz-it-step h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.pz-it-step p {
    color: #718096;
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
}

/* =========================
   CTA
   ========================= */

.pz-it-cta {
    margin: 0 20px 80px;
    padding: 75px 30px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 10% 20%, rgba(76, 181, 255, .18), transparent 25%),
        #0563df;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.pz-it-cta h2 {
    margin: 0 0 15px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
}

.pz-it-cta p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .78);
    line-height: 2;
}

.pz-it-cta .pz-it-btn {
    background: #fff;
    color: #0563df;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1050px) {

    .pz-it-network {
        opacity: .25;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .pz-it-hero-content {
        position: relative;
        z-index: 3;
        margin: auto;
        text-align: center;
    }

    .pz-it-actions {
        justify-content: center;
    }

    .pz-it-card.large {
        grid-column: span 6;
    }

    .pz-it-card.small {
        grid-column: span 6;
    }
}

@media (max-width: 800px) {

    .pz-it-hero {
        min-height: 600px;
    }

    .pz-it-network {
        width: 300px;
        height: 300px;
    }

    .pz-node.main {
        left: 104px;
        top: 104px;
    }

    .pz-node.n1 {
        left: 0;
        top: 35px;
    }

    .pz-node.n2 {
        right: 0;
        top: 25px;
    }

    .pz-node.n3 {
        left: 0;
        bottom: 35px;
    }

    .pz-node.n4 {
        right: 0;
        bottom: 40px;
    }

    .pz-it-security-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .pz-it-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .pz-it-step:nth-child(2) {
        border-left: 0;
    }
}

@media (max-width: 600px) {

    .pz-it-hero h1 {
        letter-spacing: -1px;
    }

    .pz-it-hero-description {
        font-size: 15px;
    }

    .pz-it-kicker {
        font-size: 11px;
    }

    .pz-it-cap-grid {
        grid-template-columns: 1fr;
    }

    .pz-it-card.large,
    .pz-it-card.small {
        grid-column: span 1;
    }

    .pz-it-card {
        min-height: auto;
    }

    .pz-it-security-box {
        grid-template-columns: 1fr;
    }

    .pz-it-steps {
        grid-template-columns: 1fr;
    }

    .pz-it-step {
        border-left: 0;
        border-bottom: 1px solid #dfe7ef;
        padding-bottom: 25px;
    }

    .pz-it-step:last-child {
        border-bottom: 0;
    }

    .pz-it-cta {
        margin-bottom: 50px;
        border-radius: 24px;
    }
}

