/* =========================================================
   HIREPROO — CONTRACT STAFFING
========================================================= */


/* =========================================================
   HERO
========================================================= */

.contract-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(37, 99, 235, .20),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );
}

.contract-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    pointer-events: none;
}

.contract-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.contract-hero-content {
    max-width: 680px;
}

.contract-hero-content h1 {
    margin: 15px 0 25px;
    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}

.contract-hero-content h1 span {
    display: block;
    color: #53b8ff;
}

.contract-hero-content > p {
    max-width: 620px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.contract-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.contract-hero-actions .btn {
    text-decoration: none;
}

.contract-hero-visual {
    display: flex;
    justify-content: center;
}

.contract-hero-image {
    width: min(100%, 430px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.contract-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   APPROACH
========================================================= */

.contract-approach {
    background: #fff;
}

.contract-approach-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.contract-approach-heading h2 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #071525;
}

.contract-approach-heading h2 span {
    color: #2563eb;
}

.contract-approach-heading p {
    margin: 0 auto;
    max-width: 680px;
    line-height: 1.75;
    color: #64748b;
}

.contract-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.contract-benefit {
    position: relative;
    padding: 30px 25px;
    border: 1px solid #e1e8f0;
    border-radius: 14px;
    background: #fff;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.contract-benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15,23,42,.09);
}

.contract-benefit-number {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
}

.contract-benefit-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 11px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 21px;
}

.contract-benefit h3 {
    margin: 0 0 12px;
    font-size: 19px;
    color: #0f172a;
}

.contract-benefit p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
}


/* =========================================================
   CTA
========================================================= */

.contract-cta {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(37,99,235,.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );
}

.contract-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.contract-cta-content {
    max-width: 720px;
}

.contract-cta-content h2 {
    margin: 14px 0 18px;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1;
    letter-spacing: -2px;
}

.contract-cta-content h2 span {
    display: block;
    color: #53b8ff;
}

.contract-cta-content p {
    max-width: 620px;
    margin: 0;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
}

.contract-cta-action {
    flex-shrink: 0;
}

.contract-cta-action .btn {
    white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .contract-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contract-hero-content {
        max-width: 760px;
    }

    .contract-hero-visual {
        justify-content: flex-start;
    }

    .contract-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .contract-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contract-hero {
        min-height: auto;
    }

    .contract-hero-container {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .contract-hero-content h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .contract-hero-content > p {
        font-size: 16px;
    }

    .contract-hero-actions {
        flex-direction: column;
    }

    .contract-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contract-hero-image {
        width: min(100%, 420px);
    }

    .contract-approach-heading h2 {
        font-size: 36px;
    }

    .contract-benefits {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .contract-benefit {
        padding: 27px;
    }

    .contract-cta {
        padding: 70px 0;
    }

    .contract-cta-content h2 {
        font-size: 40px;
    }

    .contract-cta-action {
        width: 100%;
    }

    .contract-cta-action .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }

}
/* =========================================================
   HIREPROO — DIRECT HIRE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.direct-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(37,99,235,.20),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );
}

.direct-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    pointer-events: none;
}

.direct-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.direct-hero-content {
    max-width: 680px;
}

.direct-hero-content h1 {
    margin: 15px 0 25px;
    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}

.direct-hero-content h1 span {
    display: block;
    color: #53b8ff;
}

.direct-hero-content > p {
    max-width: 620px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.direct-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.direct-hero-actions .btn {
    text-decoration: none;
}

.direct-hero-visual {
    display: flex;
    justify-content: center;
}

.direct-hero-image {
    width: min(100%, 430px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.direct-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   APPROACH
========================================================= */

.direct-approach {
    background: #fff;
}

.direct-approach-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.direct-approach-heading h2 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #071525;
}

.direct-approach-heading h2 span {
    color: #2563eb;
}

.direct-approach-heading p {
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
    color: #64748b;
}

.direct-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.direct-benefit {
    position: relative;
    padding: 30px 25px;
    border: 1px solid #e1e8f0;
    border-radius: 14px;
    background: #fff;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.direct-benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15,23,42,.09);
}

.direct-benefit-number {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
}

.direct-benefit-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 11px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 21px;
}

.direct-benefit h3 {
    margin: 0 0 12px;
    font-size: 19px;
    color: #0f172a;
}

.direct-benefit p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
}


/* =========================================================
   CTA
========================================================= */

.direct-cta {
    padding: 85px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(37,99,235,.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );
}

.direct-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.direct-cta-content {
    max-width: 720px;
}

.direct-cta-content h2 {
    margin: 14px 0 18px;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1;
    letter-spacing: -2px;
}

.direct-cta-content h2 span {
    display: block;
    color: #53b8ff;
}

.direct-cta-content p {
    max-width: 620px;
    margin: 0;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
}

.direct-cta-action {
    flex-shrink: 0;
}

.direct-cta-action .btn {
    white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .direct-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .direct-hero-content {
        max-width: 760px;
    }

    .direct-hero-visual {
        justify-content: flex-start;
    }

    .direct-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .direct-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .direct-hero {
        min-height: auto;
    }

    .direct-hero-container {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .direct-hero-content h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .direct-hero-content > p {
        font-size: 16px;
    }

    .direct-hero-actions {
        flex-direction: column;
    }

    .direct-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .direct-hero-image {
        width: min(100%, 420px);
    }

    .direct-approach-heading h2 {
        font-size: 36px;
    }

    .direct-benefits {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .direct-benefit {
        padding: 27px;
    }

    .direct-cta {
        padding: 70px 0;
    }

    .direct-cta-content h2 {
        font-size: 40px;
    }

    .direct-cta-action {
        width: 100%;
    }

    .direct-cta-action .btn {
        width: 100%;
        white-space: normal;
        justify-content: center;
    }

}
/* =========================================================
   HIREPROO — PROJECT TEAMS
   project-teams.css
========================================================= */


/* =========================================================
   HERO
========================================================= */

.service-page-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(37, 99, 235, .20),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32 55%,
            #04101d
        );
}

.service-page-hero-bg {
    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: 65px 65px;
    pointer-events: none;
}

.service-page-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.service-page-hero-content {
    max-width: 700px;
}

.service-page-hero-content h1 {
    margin: 15px 0 25px;
    font-size: clamp(45px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}

.service-page-hero-content h1 span {
    display: block;
    color: #53b8ff;
}

.service-page-hero-content > p {
    max-width: 640px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.service-page-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.service-page-buttons .btn {
    text-decoration: none;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.service-page-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-page-image-wrapper {
    position: relative;
    width: min(100%, 440px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
    box-shadow:
        0 30px 70px rgba(0,0,0,.35),
        0 0 60px rgba(37,99,235,.12);
}

.service-page-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-page-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(37,99,235,.18),
            transparent 55%,
            rgba(0,0,0,.25)
        );
    pointer-events: none;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.service-page-section {
    padding: 110px 0;
    background: #fff;
}

.service-page-intro {
    max-width: 780px;
    margin-bottom: 60px;
}

.service-page-intro h2 {
    margin: 14px 0 20px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #071525;
}

.service-page-intro h2 span {
    color: #2563eb;
}

.service-page-intro > p {
    max-width: 720px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-feature-card {
    position: relative;
    min-height: 230px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #e1e8f0;
    border-radius: 15px;
    background: #f8fafc;
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.service-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37,99,235,.30);
    box-shadow: 0 20px 45px rgba(15,23,42,.08);
}

.service-feature-number {
    display: block;
    margin-bottom: 35px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2563eb;
}

.service-feature-card h3 {
    margin: 0 0 13px;
    font-size: 21px;
    color: #0f172a;
}

.service-feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #64748b;
}


/* =========================================================
   CTA
========================================================= */

.service-page-cta {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(37,99,235,.24),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );
}

.service-page-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .10;
    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: 65px 65px;
    pointer-events: none;
}

.service-page-cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.service-page-cta h2 {
    margin: 14px 0 18px;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1;
    letter-spacing: -2px;
}

.service-page-cta h2 span {
    display: block;
    color: #53b8ff;
}

.service-page-cta p {
    max-width: 650px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
}

.service-page-cta .btn {
    flex-shrink: 0;
    white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .service-page-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-page-hero-content {
        max-width: 750px;
    }

    .service-page-hero-visual {
        justify-content: flex-start;
    }

    .service-page-image-wrapper {
        width: min(100%, 500px);
    }

    .service-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-page-cta-container {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .service-page-hero {
        min-height: auto;
    }

    .service-page-hero-container {
        padding-top: 65px;
        padding-bottom: 70px;
        gap: 40px;
    }

    .service-page-hero-content h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .service-page-hero-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .service-page-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .service-page-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .service-page-hero-visual {
        justify-content: center;
    }

    .service-page-image-wrapper {
        width: min(100%, 400px);
    }

    .service-page-section {
        padding: 75px 0;
    }

    .service-page-intro {
        margin-bottom: 40px;
    }

    .service-page-intro h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-feature-card {
        min-height: auto;
        padding: 28px;
    }

    .service-page-cta {
        padding: 70px 0;
    }

    .service-page-cta h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .service-page-cta p {
        font-size: 15px;
    }

    .service-page-cta .btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .service-page-hero-content h1 {
        font-size: 37px;
    }

    .service-page-intro h2 {
        font-size: 33px;
    }

    .service-feature-card {
        padding: 24px;
    }

    .service-page-cta h2 {
        font-size: 35px;
    }

}
/* =========================================================
   HIREPROO — GLOBAL STAFFING
   global-staffing.css
========================================================= */


/* =========================================================
   HERO
========================================================= */

.service-page-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(37, 99, 235, 0.20),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #06111f 0%,
            #0a1d32 55%,
            #04101d 100%
        );
}

.service-page-hero-bg {
    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: 65px 65px;
    pointer-events: none;
}

.service-page-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr);
    gap: 70px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.service-page-hero-content {
    max-width: 700px;
}

.service-page-hero-content h1 {
    margin: 15px 0 25px;
    font-size: clamp(45px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
}

.service-page-hero-content h1 span {
    display: block;
    color: #53b8ff;
}

.service-page-hero-content > p {
    max-width: 640px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.68);
}

.service-page-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.service-page-buttons .btn {
    text-decoration: none;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.service-page-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-page-image-wrapper {
    position: relative;
    width: min(100%, 440px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px;
    background: rgba(255,255,255,.04);
    box-shadow:
        0 30px 70px rgba(0,0,0,.35),
        0 0 60px rgba(37,99,235,.12);
}

.service-page-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-page-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            rgba(37,99,235,.18),
            transparent 55%,
            rgba(0,0,0,.25)
        );
}


/* =========================================================
   CONTENT SECTION
========================================================= */

.service-page-section {
    padding: 110px 0;
    background: #fff;
}

.service-page-intro {
    max-width: 780px;
    margin-bottom: 60px;
}

.service-page-intro h2 {
    margin: 14px 0 20px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #071525;
}

.service-page-intro h2 span {
    color: #2563eb;
}

.service-page-intro > p {
    max-width: 720px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-feature-card {
    position: relative;
    min-height: 230px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #e1e8f0;
    border-radius: 15px;
    background: #f8fafc;
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.service-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37,99,235,.30);
    box-shadow: 0 20px 45px rgba(15,23,42,.08);
}

.service-feature-number {
    display: block;
    margin-bottom: 35px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2563eb;
}

.service-feature-card h3 {
    margin: 0 0 13px;
    font-size: 21px;
    color: #0f172a;
}

.service-feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #64748b;
}


/* =========================================================
   CTA
========================================================= */

.service-page-cta {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(37,99,235,.24),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );
}

.service-page-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .10;
    pointer-events: none;
    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: 65px 65px;
}

.service-page-cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.service-page-cta h2 {
    margin: 14px 0 18px;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1;
    letter-spacing: -2px;
}

.service-page-cta h2 span {
    display: block;
    color: #53b8ff;
}

.service-page-cta p {
    max-width: 650px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
}

.service-page-cta .btn {
    flex-shrink: 0;
    white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .service-page-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-page-hero-content {
        max-width: 750px;
    }

    .service-page-hero-visual {
        justify-content: flex-start;
    }

    .service-page-image-wrapper {
        width: min(100%, 500px);
    }

    .service-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-page-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .service-page-hero {
        min-height: auto;
    }

    .service-page-hero-container {
        padding-top: 65px;
        padding-bottom: 70px;
        gap: 40px;
    }

    .service-page-hero-content h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .service-page-hero-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .service-page-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .service-page-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .service-page-hero-visual {
        justify-content: center;
    }

    .service-page-image-wrapper {
        width: min(100%, 400px);
    }

    .service-page-section {
        padding: 75px 0;
    }

    .service-page-intro {
        margin-bottom: 40px;
    }

    .service-page-intro h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-feature-card {
        min-height: auto;
        padding: 28px;
    }

    .service-page-cta {
        padding: 70px 0;
    }

    .service-page-cta h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .service-page-cta p {
        font-size: 15px;
    }

    .service-page-cta .btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .service-page-hero-content h1 {
        font-size: 37px;
    }

    .service-page-intro h2 {
        font-size: 33px;
    }

    .service-feature-card {
        padding: 24px;
    }

    .service-page-cta h2 {
        font-size: 35px;
    }

}
/* =========================================================
   HIREPROO — HEALTHCARE IT STAFFING
   healthcare-it-staffing.css
========================================================= */


/* =========================================================
   HERO
========================================================= */

.healthcare-it-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(37, 99, 235, 0.22),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #06111f 0%,
            #0a1d32 55%,
            #04101d 100%
        );
}

.healthcare-it-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.07) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    pointer-events: none;
}

.healthcare-it-hero-container {
    position: relative;
    z-index: 2;
    width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 70px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.healthcare-it-hero-content {
    max-width: 700px;
}

.healthcare-it-hero-content .section-label {
    margin-bottom: 22px;
    color: #53b8ff;
}

.healthcare-it-hero-content h1 {
    margin: 0;
    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
}

.healthcare-it-hero-content h1 span {
    display: block;
    color: #53b8ff;
}

.healthcare-it-hero-content p {
    max-width: 650px;
    margin: 28px 0 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.68);
}

.healthcare-it-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.healthcare-it-buttons .btn {
    text-decoration: none;
}

.healthcare-it-hero-visual {
    display: flex;
    justify-content: center;
}

.healthcare-it-image-wrapper {
    position: relative;
    width: min(100%, 470px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.35),
        0 0 60px rgba(37,99,235,0.12);
}

.healthcare-it-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(0,110,255,0.16),
            transparent 48%,
            rgba(0,0,0,0.28)
        );
    pointer-events: none;
}

.healthcare-it-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.healthcare-it-solutions {
    background: #ffffff;
}

.healthcare-it-heading {
    max-width: 800px;
    margin-bottom: 55px;
}

.healthcare-it-heading .section-label {
    color: #2563eb;
}

.healthcare-it-heading h2 {
    margin: 15px 0 20px;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #071525;
}

.healthcare-it-heading h2 span {
    display: block;
    color: #2563eb;
}

.healthcare-it-heading p {
    max-width: 720px;
    margin: 0;
    color: #64748b;
    line-height: 1.8;
}

.healthcare-it-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.healthcare-it-card {
    position: relative;
    min-height: 220px;
    padding: 32px;
    border: 1px solid #e1e8f0;
    border-radius: 15px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.healthcare-it-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37,99,235,0.30);
    box-shadow: 0 20px 45px rgba(15,23,42,0.08);
}

.healthcare-it-number {
    display: block;
    margin-bottom: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #2563eb;
}

.healthcare-it-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    color: #0f172a;
}

.healthcare-it-card p {
    max-width: 560px;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #64748b;
}


/* =========================================================
   CTA
========================================================= */

.healthcare-it-cta {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(37,99,235,0.24),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );
}

.healthcare-it-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.10;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );
    background-size: 65px 65px;
    pointer-events: none;
}

.healthcare-it-cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.healthcare-it-cta-container > div {
    max-width: 750px;
}

.healthcare-it-cta .light-label {
    color: #53b8ff;
}

.healthcare-it-cta h2 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.healthcare-it-cta h2 span {
    color: #53b8ff;
}

.healthcare-it-cta p {
    max-width: 620px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
}

.healthcare-it-cta .btn {
    flex-shrink: 0;
    white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .healthcare-it-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .healthcare-it-hero-content {
        max-width: 760px;
    }

    .healthcare-it-hero-visual {
        justify-content: flex-start;
    }

    .healthcare-it-image-wrapper {
        width: min(100%, 520px);
    }

    .healthcare-it-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .healthcare-it-hero {
        min-height: auto;
    }

    .healthcare-it-hero-container {
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .healthcare-it-hero-content h1 {
        font-size: clamp(40px, 11vw, 56px);
        letter-spacing: -2px;
    }

    .healthcare-it-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .healthcare-it-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .healthcare-it-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .healthcare-it-hero-visual {
        justify-content: center;
    }

    .healthcare-it-image-wrapper {
        width: min(100%, 430px);
    }

    .healthcare-it-heading {
        margin-bottom: 40px;
    }

    .healthcare-it-heading h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .healthcare-it-heading p {
        font-size: 15px;
    }

    .healthcare-it-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .healthcare-it-card {
        min-height: auto;
        padding: 27px;
    }

    .healthcare-it-card h3 {
        font-size: 19px;
    }

    .healthcare-it-card p {
        font-size: 13px;
    }

    .healthcare-it-cta {
        padding: 70px 0;
    }

    .healthcare-it-cta h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .healthcare-it-cta p {
        font-size: 15px;
    }

    .healthcare-it-cta .btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .healthcare-it-hero-content h1 {
        font-size: 38px;
    }

    .healthcare-it-heading h2 {
        font-size: 34px;
    }

    .healthcare-it-card {
        padding: 24px;
    }

    .healthcare-it-cta h2 {
        font-size: 35px;
    }

}
/* =========================================================
   HIREPROO
   BACKGROUND VERIFICATION & PAYROLL SERVICES
   bgv-and-payroll-services.css
========================================================= */


/* =========================================================
   HERO
========================================================= */

.bgv-payroll-hero {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    display: flex;
    align-items: center;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(37, 99, 235, 0.22),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #06111f 0%,
            #0a1d32 55%,
            #04101d 100%
        );
}

.bgv-payroll-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.07) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

.bgv-payroll-hero-container {
    position: relative;
    z-index: 2;

    width: 1200px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.85fr);

    gap: 70px;
    align-items: center;

    padding-top: 85px;
    padding-bottom: 85px;
}

.bgv-payroll-hero-content {
    max-width: 700px;
}

.bgv-payroll-hero-content .section-label {
    margin-bottom: 22px;
    color: #53b8ff;
}

.bgv-payroll-hero-content h1 {
    margin: 0;

    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
}

.bgv-payroll-hero-content h1 span {
    display: block;
    color: #53b8ff;
}

.bgv-payroll-hero-content p {
    max-width: 650px;
    margin: 28px 0 0;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255,255,255,0.68);
}

.bgv-payroll-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.bgv-payroll-buttons .btn {
    text-decoration: none;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.bgv-payroll-hero-visual {
    display: flex;
    justify-content: center;
}

.bgv-payroll-image-wrapper {
    position: relative;

    width: min(100%, 470px);
    aspect-ratio: 4 / 5;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 22px;

    background: rgba(255,255,255,0.04);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.35),
        0 0 60px rgba(37,99,235,0.12);
}

.bgv-payroll-image-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(0,110,255,0.16),
            transparent 48%,
            rgba(0,0,0,0.28)
        );
}

.bgv-payroll-image-wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   SERVICES
========================================================= */

.bgv-payroll-services {
    background: #ffffff;
}

.bgv-payroll-heading {
    max-width: 800px;
    margin-bottom: 55px;
}

.bgv-payroll-heading .section-label {
    color: #2563eb;
}

.bgv-payroll-heading h2 {
    margin: 15px 0 20px;

    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;

    color: #071525;
}

.bgv-payroll-heading h2 span {
    display: block;
    color: #2563eb;
}

.bgv-payroll-heading p {
    max-width: 720px;
    margin: 0;

    color: #64748b;
    line-height: 1.8;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.bgv-payroll-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.bgv-payroll-card {
    position: relative;

    min-height: 215px;
    padding: 32px;

    border: 1px solid #e1e8f0;
    border-radius: 15px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.bgv-payroll-card:hover {
    transform: translateY(-6px);

    border-color: rgba(37,99,235,0.30);

    box-shadow:
        0 20px 45px rgba(15,23,42,0.08);
}

.bgv-payroll-number {
    display: block;

    margin-bottom: 28px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #2563eb;
}

.bgv-payroll-card h3 {
    margin: 0 0 12px;

    font-size: 21px;

    color: #0f172a;
}

.bgv-payroll-card p {
    max-width: 560px;

    margin: 0;

    font-size: 14px;
    line-height: 1.75;

    color: #64748b;
}


/* =========================================================
   VALUE / CTA SECTION
========================================================= */

.bgv-payroll-value {
    position: relative;
    overflow: hidden;

    padding: 85px 0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(37,99,235,0.24),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );
}

.bgv-payroll-value::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.10;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );

    background-size: 65px 65px;
}

.bgv-payroll-value-container {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.bgv-payroll-value-content {
    max-width: 750px;
}

.bgv-payroll-value .light-label {
    color: #53b8ff;
}

.bgv-payroll-value h2 {
    margin: 14px 0 18px;

    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.bgv-payroll-value h2 span {
    display: block;
    color: #53b8ff;
}

.bgv-payroll-value p {
    max-width: 620px;

    margin: 0;

    font-size: 16px;
    line-height: 1.75;

    color: rgba(255,255,255,0.65);
}

.bgv-payroll-value .btn {
    flex-shrink: 0;
    white-space: nowrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .bgv-payroll-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;

        padding-top: 75px;
        padding-bottom: 75px;
    }

    .bgv-payroll-hero-content {
        max-width: 760px;
    }

    .bgv-payroll-hero-visual {
        justify-content: flex-start;
    }

    .bgv-payroll-image-wrapper {
        width: min(100%, 520px);
    }

    .bgv-payroll-value-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .bgv-payroll-hero {
        min-height: auto;
    }

    .bgv-payroll-hero-container {
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .bgv-payroll-hero-content h1 {
        font-size: clamp(40px, 11vw, 56px);
        letter-spacing: -2px;
    }

    .bgv-payroll-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .bgv-payroll-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bgv-payroll-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .bgv-payroll-hero-visual {
        justify-content: center;
    }

    .bgv-payroll-image-wrapper {
        width: min(100%, 430px);
    }


    /* SERVICES */

    .bgv-payroll-heading {
        margin-bottom: 40px;
    }

    .bgv-payroll-heading h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .bgv-payroll-heading p {
        font-size: 15px;
    }

    .bgv-payroll-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bgv-payroll-card {
        min-height: auto;
        padding: 27px;
    }

    .bgv-payroll-card h3 {
        font-size: 19px;
    }

    .bgv-payroll-card p {
        font-size: 13px;
    }


    /* CTA */

    .bgv-payroll-value {
        padding: 70px 0;
    }

    .bgv-payroll-value h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .bgv-payroll-value p {
        font-size: 15px;
    }

    .bgv-payroll-value .btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bgv-payroll-hero-content h1 {
        font-size: 38px;
    }

    .bgv-payroll-heading h2 {
        font-size: 34px;
    }

    .bgv-payroll-card {
        padding: 24px;
    }

    .bgv-payroll-value h2 {
        font-size: 35px;
    }

}