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

.onzo-career-hero {
    background: #f8f8fc;
    overflow: hidden;
}

.onzo-career-wrapper {
    display: flex;
    align-items: center;

    min-height: 540px;

    /* Behave like Bootstrap container for equal side spacing */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
}
@media (min-width: 576px) {
    .onzo-career-wrapper {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-career-wrapper {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-career-wrapper {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-career-wrapper {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-career-wrapper {
        max-width: 1320px;
    }
}

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

.onzo-career-content {
    width: 42%;
    /* Let wrapper control gutters */
    padding-left: 0;
    padding-right: 50px;
}

.onzo-career-badge {
    display: inline-flex;

    background: #f1edff;
    color: var(--purple);

    padding: 8px 18px;

    border-radius: 40px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 25px;
}

.onzo-career-content h1 {
    font-size: 50px;
    line-height: 1.05;
    font-weight: 700;

    color: black;

    margin-bottom: 24px;
}

.onzo-career-content h1 span {
    display: block;
    color: var(--purple);
}

.onzo-career-content p {
    font-size: 20px;
    line-height: 1.7;

    color: #68708f;

    max-width: 580px;

    margin-bottom: 45px;
}

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

.onzo-career-image {
    /* Make right image bleed to viewport right while left stays aligned */
    width: calc(58% + (50vw - 50%));
    margin-right: calc(50% - 50vw);

    display: flex;
    justify-content: flex-end;
    align-items: center;

    /* Use background so we can anchor flush-right without cropping */
    background-image: url("../images/landing-v2/van.png");
    background-size: contain; /* show full image */
    background-repeat: no-repeat;
    background-position: right center;
    border-radius: 40px 0 0 40px; /* keep left curve, right flush */
    overflow: hidden;
    min-height: 540px;
}

/* Hide inline img to avoid double rendering */
.onzo-career-image img {
    display: none;
}

/* ==========================
   FEATURES
========================== */

.onzo-career-features {
    display: flex;
    gap: 35px;
}

.onzo-career-feature {
    max-width: 170px;
}

.onzo-career-icon {
    width: 58px;
    height: 58px;

    background: #f1edff;

    border-radius: 16px;

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

    margin-bottom: 18px;
}

.onzo-career-icon i {
    color: var(--purple);
    font-size: 26px;
}

.onzo-career-feature h4 {
    font-size: 16px;
    font-weight: 700;

    color: black;

    margin-bottom: 10px;
}

.onzo-career-feature p {
    margin: 0;

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

    color: #7a819e;
}

/* ==========================
   LARGE DESKTOP
========================== */

@media (max-width: 1400px) {
    .onzo-career-content h1 {
        font-size: 56px;
    }
}

/* ==========================
   LAPTOP
========================== */

@media (max-width: 1199px) {
    .onzo-career-content {
        width: 48%;
        padding-left: 40px;
    }

    .onzo-career-image {
        width: calc(52% + (50vw - 50%));
        margin-right: calc(50% - 50vw);
        background-position: right center;
        border-radius: 60px 0 0 60px;
    }

    .onzo-career-content h1 {
        font-size: 48px;
    }

    .onzo-career-features {
        gap: 20px;
    }
}

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

@media (max-width: 991px) {
    .onzo-career-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .onzo-career-content {
        width: 100%;
        padding: 60px 30px 40px;
        text-align: center;
    }

    .onzo-career-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .onzo-career-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .onzo-career-image {
        width: 100%;
    }

    .onzo-career-content h1 {
        font-size: 42px;
    }
}

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

@media (max-width: 767px) {
    .onzo-career-content {
        padding: 50px 20px 30px;
    }

    .onzo-career-content h1 {
        font-size: 34px;
    }

    .onzo-career-content p {
        font-size: 16px;
    }

    .onzo-career-features {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .onzo-career-feature {
        max-width: 280px;
    }
}

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

@media (max-width: 480px) {
    .onzo-career-content h1 {
        font-size: 30px;
    }
}
/* ==================================
   1600px
================================== */

@media (max-width: 1600px) {
    /* .onzo-career-content {
        padding-left: 60px;
        padding-right: 40px;
    } */

    .onzo-career-content h1 {
        font-size: 50px;
    }

    .onzo-career-content p {
        font-size: 18px;
    }
}

/* ==================================
   1400px
================================== */

@media (max-width: 1400px) {
    .onzo-career-content {
        width: 45%;
    }

    .onzo-career-image {
        width: calc(55% + (50vw - 50%));
        margin-right: calc(50% - 50vw);
        background-position: right center;
    }

    .onzo-career-content h1 {
        font-size: 42px;
    }

    .onzo-career-content p {
        font-size: 17px;
        margin-bottom: 35px;
    }

    .onzo-career-features {
        gap: 24px;
    }

    .onzo-career-feature {
        max-width: 150px;
    }
}

/* ==================================
   1200px
================================== */

@media (max-width: 1199px) {
    .onzo-career-content {
        width: 48%;
        padding-left: 40px;
        padding-right: 30px;
    }

    .onzo-career-image {
        width: 52%;
    }

    .onzo-career-content h1 {
        font-size: 38px;
    }

    .onzo-career-content p {
        font-size: 16px;
    }

    .onzo-career-icon {
        width: 52px;
        height: 52px;
    }

    .onzo-career-icon i {
        font-size: 22px;
    }

    .onzo-career-feature h4 {
        font-size: 16px;
    }
}

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

@media (max-width: 991px) {
    .onzo-career-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .onzo-career-content {
        width: 100%;
        text-align: center;
        padding: 60px 30px 40px;
    }

    .onzo-career-content p {
        margin-left: auto;
        margin-right: auto;
        max-width: 650px;
    }

    .onzo-career-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 30px;
    }

    .onzo-career-feature {
        max-width: 220px;
    }

    .onzo-career-image {
        /* Keep flush-right behavior on smaller screens */
        width: calc(100% + (50vw - 50%));
        margin-right: calc(50% - 50vw);
        background-position: right center;
        border-radius: 40px 0 0 40px;
        min-height: 380px;
    }

    .onzo-career-content h1 {
        font-size: 42px;
    }
}

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

@media (max-width: 767px) {
    .onzo-career-content {
        padding: 50px 20px 25px;
    }

    .onzo-career-badge {
        font-size: 12px;
        padding: 7px 15px;
        margin-bottom: 18px;
    }

    .onzo-career-content h1 {
        font-size: 34px;
        line-height: 1.15;
    }

    .onzo-career-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .onzo-career-features {
        gap: 20px;
    }

    .onzo-career-feature {
        max-width: 160px;
    }

    .onzo-career-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }

    .onzo-career-icon i {
        font-size: 22px;
    }

    .onzo-career-feature h4 {
        font-size: 15px;
    }

    .onzo-career-feature p {
        font-size: 13px;
    }
}

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

@media (max-width: 575px) {
    .onzo-career-content h1 {
        font-size: 30px;
    }

    .onzo-career-content p {
        font-size: 15px;
    }

    .onzo-career-features {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .onzo-career-feature {
        max-width: 260px;
    }

    .onzo-career-image img {
        width: 100%;
    }
}

/* Next Section  */
/* Next Section  */
/* Next Section  */
/* Next Section  */
/* Next Section  */
/* ==================================
   CLEANER BENEFITS
================================== */

.onzo-benefits-section {
    padding: 70px 0px 0px 0px;
    background: #fff;
}

.onzo-benefits-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;

    background: #f8f8fc;

    border-radius: 24px;

    padding: 32px 24px;

    display: grid;
    grid-template-columns: 230px repeat(6, 1fr);

    align-items: start;
}
@media (min-width: 576px) {
    .onzo-benefits-card {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-benefits-card {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-benefits-card {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-benefits-card {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-benefits-card {
        max-width: 1320px;
    }
}

.onzo-benefits-heading {
    padding: 0 25px 0 10px;
}

.onzo-benefits-heading h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;

    color: black;

    margin: 0;
}

.onzo-benefits-heading span {
    color: var(--purple);
}

/* ==========================
   BENEFIT ITEM
========================== */

.onzo-benefit-item {
    text-align: center;

    padding: 0 8px;

    border-left: 1px solid #e8e5f8;
}

.onzo-benefit-icon {
    margin-bottom: 18px;
}

.onzo-benefit-icon i {
    font-size: 42px;
    color: var(--purple);
}

.onzo-benefit-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: black;

    margin-bottom: 12px;
}

.onzo-benefit-item p {
    margin: 0;

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

    color: #7b829f;
}

/* ==================================
   1200px
================================== */

@media (max-width: 1199px) {
    .onzo-benefits-card {
        margin: 0 20px;

        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .onzo-benefits-heading {
        grid-column: span 3;
        text-align: center;
        padding: 0;
    }

    .onzo-benefit-item {
        border-left: 0;
        border-top: 1px solid #ece9fa;
        padding-top: 25px;
    }
}

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

@media (max-width: 991px) {
    .onzo-benefits-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .onzo-benefits-heading {
        grid-column: span 2;
    }
}

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

@media (max-width: 767px) {
    .onzo-benefits-section {
        padding: 50px 0;
    }

    .onzo-benefits-card {
        grid-template-columns: 1fr;

        padding: 30px 20px;
    }

    .onzo-benefits-heading {
        grid-column: auto;
    }

    .onzo-benefits-heading h2 {
        font-size: 32px;
        text-align: center;
    }

    .onzo-benefit-item {
        border-left: 0;
        border-top: 1px solid #ece9fa;

        padding-top: 25px;
    }

    .onzo-benefit-item h4 {
        font-size: 17px;
    }

    .onzo-benefit-item p {
        font-size: 14px;
    }
}

/* NEW PAGE  */
/* NEW PAGE  */
/* NEW PAGE  */
/* NEW PAGE  */
/* NEW PAGE  */
/* ==================================
   OPEN VACANCIES
================================== */

.onzo-vacancies-section {
    padding: 70px 0px 0px 0px;
    background: #fff;
}

.onzo-vacancies-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;

    border: 1px solid #ece9fa;
    border-radius: 28px;

    padding: 32px;
}
@media (min-width: 576px) {
    .onzo-vacancies-card {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .onzo-vacancies-card {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .onzo-vacancies-card {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .onzo-vacancies-card {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .onzo-vacancies-card {
        max-width: 1320px;
    }
}

/* TITLE */

.onzo-vacancies-title {
    font-size: 42px;
    font-weight: 700;
    color: black;
    margin-bottom: 24px;
}

/* JOB ROW */

.onzo-job-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: 1px solid #ece9fa;
    border-radius: 18px;

    padding: 18px 22px;

    margin-bottom: 12px;
}

.onzo-job-left {
    display: flex;
    align-items: center;
    gap: 18px;

    min-width: 400px;
}

.onzo-job-left i {
    font-size: 22px;
    color: var(--purple);
}

.onzo-job-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.onzo-job-top h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: black;
}

.onzo-job-left p {
    margin: 6px 0 0;
    color: #7d84a1;
    font-size: 16px;
}

/* BADGE */

.onzo-job-badge {
    background: #f1edff;
    color: var(--purple);

    padding: 6px 14px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;
}

/* SALARY */

.onzo-job-salary {
    color: #6d7392;
    font-size: 18px;
    font-weight: 600;
}

/* APPLY */

.onzo-apply-btn {
    width: 150px;
    height: 54px;

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

    background: var(--purple);
    color: #fff;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;
}

.onzo-apply-btn:hover {
    color: #fff;
}

/* VIEW ALL */

.onzo-view-all-wrap {
    text-align: center;
    margin: 35px 0;
}

.onzo-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    border: 2px solid var(--purple);
    color: var(--purple);

    padding: 18px 42px;

    border-radius: 12px;

    font-weight: 700;
    text-decoration: none;
}

.onzo-view-all-btn i {
    font-size: 20px;
}

/* INFO BOX */

.onzo-how-to-apply {
    background: #faf8ff;

    border-radius: 18px;

    padding: 22px 24px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.onzo-info-icon i {
    color: var(--purple);
    font-size: 34px;
}

.onzo-how-to-apply h5 {
    margin: 0 0 5px;
    color: black;
    font-size: 18px;
    font-weight: 700;
}

.onzo-how-to-apply p {
    margin: 0;
    color: #6d7392;
}

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

@media (max-width: 991px) {
    .onzo-vacancies-card {
        margin: 0 20px;
        padding: 20px;
    }

    .onzo-job-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .onzo-job-left {
        min-width: auto;
        width: 100%;
    }

    .onzo-job-salary {
        width: 100%;
    }

    .onzo-job-action {
        width: 100%;
    }

    .onzo-apply-btn {
        width: 100%;
    }
}

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

@media (max-width: 767px) {
    .onzo-vacancies-title {
        font-size: 30px;
    }

    .onzo-job-top {
        flex-wrap: wrap;
    }

    .onzo-job-top h4 {
        font-size: 18px;
    }

    .onzo-job-salary {
        font-size: 16px;
    }

    .onzo-view-all-btn {
        width: 100%;
        justify-content: center;
    }

    .onzo-how-to-apply {
        flex-direction: column;
        text-align: center;
    }
}

/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */
/* NEXT SECTION  */
/* ==================================
   HIRING PROCESS
================================== */

.onzo-process-section {
    padding: 90px 0;
    background: #fff;
}

.onzo-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.onzo-process-badge {
    display: inline-flex;

    padding: 8px 18px;

    border-radius: 40px;

    background: #f1edff;
    color: #6f4df6;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 15px;
}

.onzo-process-header h2 {
    margin: 0;

    font-size: 48px;
    font-weight: 700;

    color: black;
}

.onzo-process-header h2 span {
    color: var(--purple);
}

/* ==========================
   STEPS
========================== */

.onzo-process-wrapper {
    max-width: 1320px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;

    position: relative;
}

/* Dashed line */

.onzo-process-wrapper::before {
    content: "";

    position: absolute;

    top: 48px;
    left: 12%;
    right: 12%;

    border-top: 2px dashed #d9d0ff;

    z-index: 1;
}

.onzo-process-step {
    width: 20%;
    text-align: center;

    position: relative;
    z-index: 2;
}

.onzo-process-icon {
    width: 96px;
    height: 96px;

    margin: 0 auto 24px;

    border-radius: 50%;

    background: #f7f4ff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.onzo-process-icon i {
    font-size: 42px;
    color: var(--purple);
}

/* Number */

.onzo-step-number {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: var(--purple);
    color: #fff;

    font-size: 13px;
    font-weight: 700;

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

    margin: 0 auto 14px;
}

.onzo-process-step h4 {
    font-size: 24px;
    font-weight: 700;

    color: black;

    margin-bottom: 12px;
}

.onzo-process-step p {
    margin: 0 auto;

    max-width: 210px;

    color: #727996;

    font-size: 16px;
    line-height: 1.8;
}

/* ==================================
   LAPTOP
================================== */

@media (max-width: 1199px) {
    .onzo-process-header h2 {
        font-size: 40px;
    }

    .onzo-process-step h4 {
        font-size: 20px;
    }

    .onzo-process-step p {
        font-size: 15px;
    }
}

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

@media (max-width: 991px) {
    .onzo-process-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }

    .onzo-process-wrapper::before {
        display: none;
    }

    .onzo-process-step {
        width: calc(50% - 20px);
    }
}

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

@media (max-width: 767px) {
    .onzo-process-section {
        padding: 60px 0;
    }

    .onzo-process-header {
        margin-bottom: 40px;
    }

    .onzo-process-header h2 {
        font-size: 34px;
    }

    .onzo-process-step {
        width: 100%;
    }

    .onzo-process-icon {
        width: 80px;
        height: 80px;
    }

    .onzo-process-icon i {
        font-size: 34px;
    }

    .onzo-process-step h4 {
        font-size: 18px;
    }

    .onzo-process-step p {
        font-size: 14px;
        max-width: 260px;
    }
}

/* NEXT SECTION */
/* NEXT SECTION */
/* NEXT SECTION */
/* NEXT SECTION */
/* NEXT SECTION */
/* NEXT SECTION */
/* ==================================
   CAREER CTA
================================== */

.onzo-career-cta-section {
    padding: 80px 0;
    background: #fff;
}

.onzo-career-cta {
    max-width: 1320px;
    margin: 0 auto;

    background: linear-gradient(90deg, #5f3df2 0%, #6f4df6 45%, #4d32e6 100%);

    border-radius: 18px;

    min-height: 190px;

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

    overflow: hidden;

    padding: 0 35px;
}

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

.onzo-career-cta-image {
    flex-shrink: 0;
}

.onzo-career-cta-image img {
    width: 210px;
    display: block;
}

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

.onzo-career-cta-content {
    flex: 1;
    padding: 0 40px;
}

.onzo-career-cta-content h2 {
    color: #fff;

    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;

    margin-bottom: 14px;
}

.onzo-career-cta-content h2 span {
    display: block;
}

.onzo-career-cta-content p {
    color: rgba(255, 255, 255, 0.9);

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

    margin: 0;
}

/* ==========================
   DOWNLOAD AREA
========================== */

.onzo-career-cta-download {
    flex-shrink: 0;
}

.onzo-download-title {
    background: #fff;

    color: #6f4df6;

    text-align: center;

    border-radius: 10px;

    font-size: 22px;
    font-weight: 700;

    padding: 18px 25px;

    margin-bottom: 15px;

    min-width: 280px;
}

.onzo-store-buttons {
    display: flex;
    gap: 10px;
}

.onzo-store-btn {
    background: #000;

    border-radius: 8px;

    min-width: 135px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #fff;
    text-decoration: none;

    padding: 0 12px;
}

.onzo-store-btn i {
    font-size: 24px;
}

.onzo-store-btn img {
    width: 20px;
}

.onzo-store-btn small {
    display: block;
    font-size: 9px;
    line-height: 1;
}

.onzo-store-btn strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
}

/* ==================================
   1200
================================== */

@media (max-width: 1199px) {
    .onzo-career-cta {
        margin: 0 20px;
    }

    .onzo-career-cta-content h2 {
        font-size: 24px;
    }

    .onzo-career-cta-content p {
        font-size: 16px;
    }

    .onzo-career-cta-image img {
        width: 180px;
    }
}

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

@media (max-width: 991px) {
    .onzo-career-cta {
        flex-direction: column;

        text-align: center;

        padding: 40px 25px;
    }

    .onzo-career-cta-content {
        padding: 25px 0;
    }

    .onzo-career-cta-download {
        width: 100%;
    }

    .onzo-download-title {
        min-width: auto;
        width: 100%;
    }

    .onzo-store-buttons {
        justify-content: center;
    }
}

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

@media (max-width: 767px) {
    .onzo-career-cta-section {
        padding: 60px 0;
    }

    .onzo-career-cta-image img {
        width: 150px;
    }

    .onzo-career-cta-content h2 {
        font-size: 22px;
    }

    .onzo-career-cta-content p {
        font-size: 15px;
    }

    .onzo-store-buttons {
        flex-direction: column;
    }

    .onzo-store-btn {
        width: 100%;
    }
}
