/* Post Job Landing Page — New Design */

:root {
    --primary-2: #0024A6;
    --primary-1: #113DD9;
    --primary0: #265CFF;
    --primary1: #77A2FF;
    --primary3: #BAD2FF;
    --primary4: #EBF1FF;
    --primary-transparent: #77a2ff6b;
    --text-header: #0d0e0f;
    --text-body: #000000;
    --text-gray: #000000;
    --shadow-small: 0 8px 12px 2px rgba(0, 28, 53, 0.05);
}

/* Page wrapper */
.pjl-wrapper {
    overflow-x: hidden;
}

/* ===================== HERO SECTION ===================== */
.pjl-hero {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    padding: 0;
    display: flex;
    align-items: center;
}

.pjl-hero__container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 84px 24px 44px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.pjl-hero__left {
    flex: 0 0 46%;
    min-width: 0;
}

.pjl-hero__right {
    flex: 0 0 54%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 46px;
}

.pjl-hero__image {
    width: 100%;
    max-width: 720px;
    height: auto;
    margin-top: -100px;
}

/* Badge */
.pjl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e8f0fe;
    border: 1px solid #d0dffc;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 18px;
}

.pjl-badge__dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary0);
    border-radius: 50%;
    flex-shrink: 0;
}

.pjl-badge__text {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary0);
    line-height: 20px;
}

/* Heading */
.pjl-heading {
    font-size: 68px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-header);
    margin-bottom: 18px;
}

.pjl-heading--blue {
    display: block;
    color: var(--primary0);
}

/* Subtext */
.pjl-subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    margin-bottom: 24px;
    max-width: 520px;
}

/* CTA Buttons */
.pjl-cta-group {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
}

.pjl-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary0);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 16px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
}

.pjl-cta-primary:hover {
    color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
    text-decoration: none;
}

.pjl-cta-arrow {
    font-size: 16px;
}

.pjl-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    color: var(--text-header);
    font-size: 15px;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 10px;
    border: 1px solid #d9dde3;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
}

.pjl-cta-secondary:hover {
    color: var(--text-header);
    box-shadow: var(--shadow-small);
    text-decoration: none;
}

.pjl-cta-play {
    font-size: 10px;
    color: var(--text-header);
}

/* ===================== DIVIDER & STATS ===================== */
.pjl-divider {
    border: none;
    border-top: 2px solid #eff2f6;
    margin: 30px 0 24px;
    width: 720px;
    max-width: 100%;
}

.pjl-stats {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 48px;
    max-width: 620px;
}

.pjl-stat {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pjl-stat__value {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-header);
    margin-bottom: 2px;
}

.pjl-stat__label {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 20px;
}

/* ===================== PARTNERS ===================== */
.pjl-partners {
    background: #f7f9fc;
    border-top: 1px solid #edf1f7;
    border-bottom: 1px solid #edf1f7;
    margin-top: 10px;
}

.pjl-partners__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 44px 24px 44px;
    text-align: center;
}

.pjl-partners__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #000000;
    margin-bottom: 16px;
}

.pjl-partners__marquee {
    --marquee-gap: 56px;
    --marquee-duration: 48s;
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.pjl-partners__scroll {
    display: flex;
    width: max-content;
    gap: var(--marquee-gap);
    animation: pjl-partners-scroll var(--marquee-duration) linear infinite;
}

.pjl-partners__marquee:hover .pjl-partners__scroll {
    animation-play-state: paused;
}

.pjl-partners__track {
    display: flex;
    align-items: center;
    gap: var(--marquee-gap);
    list-style: none;
    margin: 0;
    padding: 0;
}

.pjl-partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 36px;
}

.pjl-partners__logo {
    height: 28px;
    width: auto;
    max-width: 100%;
    opacity: 0.92;
    transition: opacity 180ms ease, transform 180ms ease;
}

.pjl-partners__logo:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.pjl-partners__logo--text {
    display: inline-flex;
    align-items: center;
    height: 28px;
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand, #111827);
    white-space: nowrap;
    line-height: 1;
}

@keyframes pjl-partners-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - var(--marquee-gap) / 2)); }
}

@media (prefers-reduced-motion: reduce) {
    .pjl-partners__scroll {
        animation: none;
    }
}

/* ===================== AI MATCHING ===================== */
.pjl-ai {
    background: #ffffff;
}

.pjl-ai__container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.pjl-ai__left {
    flex: 0 0 46%;
    min-width: 0;
}

.pjl-ai__right {
    flex: 0 0 54%;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 52px;
}

.pjl-ai__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eef3ff;
    color: var(--primary0);
    margin-bottom: 24px;
}

.pjl-ai__badge-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.pjl-ai__badge-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
}

.pjl-ai__heading {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-header);
    margin-bottom: 22px;
}

.pjl-ai__heading-blue {
    color: var(--primary0);
}

.pjl-ai__subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    max-width: 520px;
    margin-bottom: 26px;
}

.pjl-ai__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pjl-ai__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pjl-ai__feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
}

.pjl-ai__feature-icon img {
    width: 50px;
    height: 50px;
    display: block;
}

.pjl-ai__feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-header);
    line-height: 24px;
    margin-bottom: 4px;
}

.pjl-ai__feature-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    max-width: 520px;
}

.pjl-ai__card {
    width: min(720px, 100%);
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.pjl-ai__image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================== RECEIVE APPLICATIONS ===================== */
.pjl-free {
    background: #F8FAFC;
}

.pjl-free__container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 24px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.pjl-free__left {
    flex: 0 0 54%;
    min-width: 0;
}

.pjl-free__image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 720px;
    margin-top: -60px;
}

.pjl-free__right {
    flex: 0 0 46%;
    min-width: 0;
}

.pjl-free__heading {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-header);
    margin-bottom: 18px;
}

.pjl-free__heading-blue {
    display: block;
    color: var(--primary0);
}

.pjl-free__subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    max-width: 520px;
    margin-bottom: 22px;
}

.pjl-free__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.pjl-free__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pjl-free__check {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--primary0);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    flex: 0 0 18px;
    margin-top: 3px;
}

.pjl-free__item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
}

.pjl-free__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    background: var(--primary0);
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0px 10px 24px rgba(38, 92, 255, 0.22);
}

.pjl-free__cta:hover {
    color: #ffffff;
    text-decoration: none;
}

/* ===================== PRICING ===================== */
.pjl-pricing {
    background: #ffffff;
}

.pjl-pricing__container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 24px 72px;
}

.pjl-pricing__header {
    text-align: center;
    margin-bottom: 38px;
}

.pjl-pricing__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-header);
    margin-bottom: 10px;
}

.pjl-pricing__subtitle {
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    color: #000000;
}

.pjl-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    gap: 18px;
    align-items: start;
    justify-content: center;
}

.pjl-price-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e6edf7;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
    padding: 30px 30px 26px;
    display: flex;
    flex-direction: column;
}

.pjl-price-card--featured {
    border: 2px solid var(--primary0);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    transform: translateY(-10px);
}

.pjl-price-card__badge {
    position: absolute;
    top: -12px;
    right: 26px;
    background: var(--primary0);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}

.pjl-price-card__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-header);
    margin-bottom: 14px;
}

.pjl-price-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pjl-price-card__amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-header);
}

.pjl-price-card__unit {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.pjl-price-card__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    margin-bottom: 18px;
}

.pjl-price-card__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
    margin-bottom: 26px;
}

.pjl-price-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
}

.pjl-price-card__check {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    flex: 0 0 18px;
    margin-top: 2px;
}

.pjl-price-card__check--green {
    color: #00bf58;
    background: transparent;
}

.pjl-price-card__check--gray {
    color: #64748b;
    background: transparent;
}

.pjl-price-card__cta {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.pjl-price-card__cta--muted {
    background: #f1f5f9;
    color: #0f172a;
}

.pjl-price-card__cta--primary {
    background: var(--primary0);
    color: #ffffff;
    box-shadow: 0px 10px 24px rgba(38, 92, 255, 0.22);
}

.pjl-price-card__cta--outline {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.pjl-price-card__cta:hover {
    text-decoration: none;
}

.pjl-price-card__cta--primary:hover {
    color: #ffffff;
}

/* ===================== TESTIMONIALS ===================== */
.pjl-testimonials {
    background: #F8FAFC;
}

.pjl-testimonials__container {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 24px 72px;
}

.pjl-testimonials__stage {
    position: relative;
    overflow: visible;
}

.pjl-testimonials__frame {
    overflow: visible;
}

.pjl-testimonials__slider {
    position: relative;
}

.pjl-testimonials__viewport {
    overflow: hidden;
    border-radius: 20px;
    padding: 0;
    background: #F8FAFC;
}

.pjl-testimonials__track {
    display: flex;
    width: 100%;
    gap: 0;
    transform: translateX(0%);
    transition: transform 280ms ease;
}

.pjl-testimonial {
    flex: 0 0 100%;
    padding: 12px;
    box-sizing: border-box;
    background: #F8FAFC;
}

.pjl-testimonial__card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 44% 56%;
    overflow: hidden;
}

.pjl-testimonial__media {
    position: relative;
    background: #e8edf5;
}

.pjl-testimonial__image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.pjl-testimonial__meta {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: #ffffff;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.pjl-testimonial__stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.pjl-testimonial__verified {
    font-size: 13px;
    font-weight: 600;
}

.pjl-testimonial__content {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pjl-testimonial__quote {
    font-size: 44px;
    line-height: 1;
    color: #b6c7ff;
    margin-bottom: 12px;
}

.pjl-testimonial__text {
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    color: #0f172a;
    margin-bottom: 22px;
}

.pjl-testimonial__name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.pjl-testimonial__title {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
}

.pjl-testimonials__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
    z-index: 2;
}

.pjl-testimonials__nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pjl-testimonials__nav--prev {
    left: -22px;
}

.pjl-testimonials__nav--next {
    right: -22px;
}

.pjl-testimonials__nav--mobile {
    display: none;
}

.pjl-testimonials__nav--desktop {
    display: inline-flex;
}

.pjl-testimonials__controls {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-height: 44px;
}

.pjl-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pjl-testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #dbe4ff;
    cursor: pointer;
}

.pjl-testimonials__dot.is-active {
    background: var(--primary0);
    width: 24px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
    .pjl-hero__container {
        padding: 40px 24px 40px;
    }

    .pjl-heading {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .pjl-hero__container {
        flex-direction: column;
        padding: 44px 20px 34px;
        gap: 20px;
    }

    .pjl-hero__left {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .pjl-badge {
        justify-content: center;
        text-align: center;
    }

    .pjl-heading,
    .pjl-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .pjl-hero__right {
        justify-content: center;
        padding-top: 0;
    }

    .pjl-hero__image {
        margin-top: 0;
    }

    .pjl-heading {
        font-size: 36px;
    }

    .pjl-subtext {
        max-width: 100%;
    }

    .pjl-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .pjl-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .pjl-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 34px;
        max-width: 100%;
    }

    .pjl-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .pjl-partners__container {
        padding: 40px 20px;
    }

    .pjl-partners__marquee {
        --marquee-gap: 44px;
        --marquee-duration: 42s;
    }

    .pjl-ai__container,
    .pjl-free__container {
        flex-direction: column;
        padding: 48px 20px;
        gap: 24px;
    }

    .pjl-ai__left,
    .pjl-ai__right,
    .pjl-free__left,
    .pjl-free__right {
        flex: none;
        width: 100%;
    }

    .pjl-ai__right,
    .pjl-free__left {
        justify-content: center;
        display: flex;
        padding-top: 0;
    }

    .pjl-free__image {
        margin-top: 0;
    }

    .pjl-pricing__container {
        padding: 54px 20px 60px;
    }

    .pjl-pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 360px));
        gap: 16px;
        justify-content: center;
    }

    .pjl-testimonials__container {
        padding: 54px 20px 60px;
    }

    .pjl-testimonial__card {
        grid-template-columns: 40% 60%;
    }

    .pjl-testimonial__content {
        padding: 28px 28px;
    }

    .pjl-testimonials__nav--prev {
        left: -16px;
    }

    .pjl-testimonials__nav--next {
        right: -16px;
    }
}

@media (max-width: 767px) {
    .pjl-heading {
        font-size: 32px;
    }

    .pjl-ai__heading,
    .pjl-free__heading {
        font-size: 34px;
    }

    .pjl-ai__container,
    .pjl-free__container {
        padding: 44px 20px;
    }

    .pjl-partners__container {
        padding: 42px 16px;
    }

    .pjl-pricing__container {
        padding: 54px 16px 60px;
    }

    .pjl-free__right {
        order: 1;
    }

    .pjl-free__left {
        order: 2;
    }

    .pjl-testimonial__card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        min-height: 520px;
    }

    .pjl-testimonial__content {
        min-height: 260px;
        padding: 22px 18px 24px;
    }

    .pjl-testimonial__text {
        font-size: 16px;
        line-height: 26px;
    }

    .pjl-testimonials__nav {
        position: static;
        transform: none;
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .pjl-testimonials__controls {
        justify-content: space-between;
        gap: 10px;
        margin-top: 10px;
        min-height: 40px;
    }

    .pjl-testimonials__dots {
        gap: 8px;
    }

    .pjl-testimonials__nav--desktop {
        display: none;
    }

    .pjl-testimonials__nav--mobile {
        display: inline-flex;
    }
}

@media (max-width: 575px) {
    .pjl-heading {
        font-size: 30px;
    }

    .pjl-stat__value {
        font-size: 28px;
    }

    .pjl-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .pjl-cta-primary,
    .pjl-cta-secondary {
        width: 260px;
        max-width: 100%;
        justify-content: center;
        padding-left: 22px;
        padding-right: 22px;
    }

    .pjl-partners__marquee {
        --marquee-gap: 32px;
        --marquee-duration: 32s;
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    }

    .pjl-partners__logo {
        height: 22px;
    }

    .pjl-partners__logo--text {
        height: 22px;
        font-size: 16px;
    }

    .pjl-pricing__grid {
        grid-template-columns: 1fr;
    }

    .pjl-price-card--featured {
        transform: none;
    }

    .pjl-testimonials__container {
        padding: 48px 16px 54px;
    }

    .pjl-testimonial {
        padding: 8px;
    }

    .pjl-testimonials__controls {
        margin-top: 8px;
        min-height: 38px;
    }

    .pjl-testimonials__dots {
        gap: 8px;
    }

    .pjl-testimonials__dot {
        width: 8px;
        height: 8px;
    }

    .pjl-testimonials__dot.is-active {
        width: 20px;
    }

    .pjl-testimonials__nav--next {
        right: -12px;
    }
}

/* ============================================================
   MOVED FROM "For Employers": Cost Per Hire + Smarter Hiring (videos).
   Brand variables scoped to these section roots so they render
   identically to the original (no collision with page variables).
   ============================================================ */
.fe-costhire-b,
.fe-videos {
    --primary0: #265CFF;
    --text-header: #0d0e0f;
    --shadow-small: 0 8px 12px 2px rgba(0, 28, 53, 0.05);
}

/* --- shared CTA buttons --- */
.fe-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.fe-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f7f8fa;
    color: var(--text-header);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 19px 44px;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.fe-cta-primary:hover {
    color: var(--text-header);
    box-shadow: var(--shadow-small);
    text-decoration: none;
}
.fe-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary0);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    padding: 19px 36px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.fe-cta-secondary:hover {
    color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
    text-decoration: none;
}
.fe-costhire-b__container .fe-cta-group {
    justify-content: center;
}
@media (max-width: 991px) {
    .fe-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width: 575px) {
    .fe-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .fe-cta-primary,
    .fe-cta-secondary {
        width: 100%;
        max-width: 360px;
        justify-content: center;
        padding: 14px 22px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
}
@media (max-width: 575px) {
    .fe-costhire-b .fe-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .fe-costhire-b .fe-cta-group .fe-cta-primary,
    .fe-costhire-b .fe-cta-group .fe-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* --- Cost Per Hire --- */
.fe-costhire-b {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(38, 92, 255, 0.08);
}
.fe-costhire-b__glow {
    display: none;
}
.fe-costhire-b__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 88px 24px;
    text-align: center;
}
.fe-costhire-b__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary0);
    margin-bottom: 16px;
}
.fe-costhire-b__heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-header);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.fe-costhire-b__heading--gradient {
    color: var(--primary0);
}
.fe-costhire-b__subtext {
    font-size: 15px;
    line-height: 26px;
    color: #1f2937;
    max-width: 640px;
    margin: 0 auto 48px;
}
.fe-costhire-b__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 40px;
}
.fe-costhire-b__price-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(150deg, #265CFF 0%, #113DD9 100%);
    border-radius: 20px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 12px 40px rgba(38, 92, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fe-costhire-b__price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(38, 92, 255, 0.35);
}
.fe-costhire-b__price-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}
.fe-costhire-b__price-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.fe-costhire-b__price-dollar {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}
.fe-costhire-b__price-number {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -3px;
}
.fe-costhire-b__price-per {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}
.fe-costhire-b__price-vs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.fe-costhire-b__price-old {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    text-decoration-color: #ef4444;
}
.fe-costhire-b__price-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}
.fe-costhire-b__price-new {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}
.fe-costhire-b__price-save {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
}
.fe-costhire-b__card {
    background: #f7f9fc;
    border: 1px solid #edf1f7;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.fe-costhire-b__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.fe-costhire-b__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(38, 92, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary0);
    margin-bottom: 16px;
}
.fe-costhire-b__card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-header);
    margin-bottom: 8px;
    line-height: 1.3;
}
.fe-costhire-b__card-desc {
    font-size: 13px;
    line-height: 20px;
    color: #1f2937;
}
.fe-costhire-b__stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}
.fe-costhire-b__stat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #f0f4ff;
    border: 1px solid #dde5ff;
    border-radius: 50px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.fe-costhire-b__stat-pill:hover {
    box-shadow: 0 4px 16px rgba(38, 92, 255, 0.12);
    transform: translateY(-2px);
}
.fe-costhire-b__stat-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary0);
    line-height: 1;
}
.fe-costhire-b__stat-txt {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.02em;
}
.fe-costhire-b__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 44px;
    background: linear-gradient(135deg, #265CFF 0%, #113DD9 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(38, 92, 255, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fe-costhire-b__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(38, 92, 255, 0.4);
}
@media (max-width: 991px) {
    .fe-costhire-b__heading {
        font-size: 32px;
        line-height: 1.3;
    }
    .fe-costhire-b__bento {
        grid-template-columns: 1fr 1fr;
    }
    .fe-costhire-b__price-card {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 32px 24px;
    }
    .fe-costhire-b__price-number {
        font-size: 56px;
    }
    .fe-costhire-b__stats {
        flex-wrap: wrap;
    }
}
@media (max-width: 575px) {
    .fe-costhire-b__heading {
        font-size: 26px;
        line-height: 1.35;
        margin-bottom: 12px;
    }
    .fe-costhire-b__subtext {
        font-size: 14px;
        line-height: 24px;
    }
    .fe-costhire-b__container {
        padding: 64px 20px;
    }
    .fe-costhire-b__bento {
        grid-template-columns: 1fr;
    }
    .fe-costhire-b__price-number {
        font-size: 48px;
    }
    .fe-costhire-b__stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 32px;
    }
    .fe-costhire-b__stat-pill {
        width: 100%;
        justify-content: center;
    }
    .fe-costhire-b__card {
        padding: 24px 20px;
    }
}

/* --- Smarter Hiring (videos) --- */
.fe-videos {
    background: #ffffff;
}
.fe-videos--smart {
    background: rgba(38, 92, 255, 0.06);
    border-top: 1px solid rgba(38, 92, 255, 0.10);
    border-bottom: 1px solid rgba(38, 92, 255, 0.10);
}
.fe-videos--smart .fe-videos__container {
    padding: 96px 24px 96px;
}
.fe-videos__header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 56px;
}
.fe-videos--smart .fe-videos__heading {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.8px;
}
.fe-videos__subheading {
    font-size: 16px;
    line-height: 26px;
    color: #2a2a2a;
    max-width: 720px;
}
.fe-videos__nav-arrows--bottom {
    justify-content: center;
    margin-top: 36px;
}
.fe-videos--smart .fe-videos__arrow {
    border-color: #265CFF;
    color: #265CFF;
}
.fe-videos--smart .fe-videos__arrow:hover {
    background: #265CFF;
    color: #ffffff;
    border-color: #265CFF;
    box-shadow: 0 8px 20px rgba(38, 92, 255, 0.25);
}
@media (max-width: 991px) {
    .fe-videos--smart .fe-videos__heading {
        font-size: 36px;
    }
    .fe-videos--smart .fe-videos__container {
        padding: 72px 24px 80px;
    }
}
@media (max-width: 575px) {
    .fe-videos--smart .fe-videos__heading {
        font-size: 28px;
        line-height: 1.3;
    }
    .fe-videos__subheading {
        font-size: 14px;
        line-height: 24px;
    }
}
.fe-videos__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 24px 80px;
}
.fe-videos__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.fe-videos__heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-header);
    letter-spacing: -0.3px;
}
.fe-videos__nav-arrows {
    display: flex;
    gap: 10px;
}
.fe-videos__arrow {
    appearance: none;
    -webkit-appearance: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}
.fe-videos__arrow:hover {
    border-color: var(--primary0);
    color: var(--primary0);
    box-shadow: 0 4px 12px rgba(38, 92, 255, 0.12);
}
.fe-videos__track-wrapper {
    overflow: hidden;
    border-radius: 14px;
}
.fe-videos__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.fe-videos__track::-webkit-scrollbar {
    display: none;
}
.fe-videos__card {
    min-width: calc(33.333% - 16px);
    scroll-snap-align: start;
    flex-shrink: 0;
}
.fe-videos__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a2e;
    cursor: pointer;
}
.fe-videos__player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fe-videos__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    background: var(--primary0);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(38, 92, 255, 0.35);
}
.fe-videos__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(38, 92, 255, 0.5);
}
.fe-videos--smart .fe-videos__track {
    gap: 24px;
    padding: 4px;
    margin: -4px;
    justify-content: center;
}
.fe-videos--smart .fe-videos__track-wrapper {
    border-radius: 0;
    overflow: visible;
}
.fe-videos--smart .fe-videos__card {
    flex: 0 1 calc((100% - 72px) / 4);
    min-width: 220px;
    max-width: 280px;
}
.fe-videos--smart .fe-videos__player {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: #0d0e0f;
    box-shadow:
        0 18px 40px -18px rgba(0, 28, 80, 0.30),
        0 4px 12px -4px rgba(0, 28, 80, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fe-videos--smart .fe-videos__player video {
    object-fit: cover;
    object-position: center top;
}
.fe-videos--smart .fe-videos__player:hover {
    transform: translateY(-4px);
    box-shadow:
        0 28px 56px -20px rgba(0, 28, 80, 0.36),
        0 10px 24px -8px rgba(38, 92, 255, 0.22);
}
.fe-videos--smart .fe-videos__player::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.65) 100%);
    transition: opacity 0.3s ease;
}
.fe-videos--smart .fe-videos__player:hover::after {
    opacity: 0.65;
}
.fe-videos__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    line-height: 1;
}
.fe-videos__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF4D6A;
    box-shadow: 0 0 0 3px rgba(255, 77, 106, 0.30);
    animation: fe-vid-pulse 1.6s ease-in-out infinite;
}
@keyframes fe-vid-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 77, 106, 0.30); }
    50%      { box-shadow: 0 0 0 5px rgba(255, 77, 106, 0.12); }
}
.fe-videos--smart .fe-videos__play-btn {
    top: auto;
    left: auto;
    bottom: 14px;
    right: 14px;
    transform: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary0);
    z-index: 3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.fe-videos--smart .fe-videos__play-btn svg {
    display: block;
    width: 16px;
    height: 16px;
    transform: translateX(1px);
}
.fe-videos--smart .fe-videos__play-btn svg path {
    fill: #265CFF;
}
.fe-videos--smart .fe-videos__player:hover .fe-videos__play-btn {
    transform: scale(1.08);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(38, 92, 255, 0.40);
}
.fe-videos__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 16px 72px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #ffffff;
    pointer-events: none;
}
.fe-videos__caption-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.1px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    line-height: 1.25;
}
.fe-videos__caption-sub {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.04em;
}
@media (max-width: 1199px) {
    .fe-videos--smart .fe-videos__card {
        flex: 0 1 calc((100% - 48px) / 3);
        max-width: 320px;
    }
}
@media (max-width: 991px) {
    .fe-videos--smart .fe-videos__track {
        justify-content: flex-start;
    }
    .fe-videos--smart .fe-videos__card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: 220px;
        max-width: none;
    }
}
@media (max-width: 575px) {
    .fe-videos--smart .fe-videos__track {
        gap: 16px;
    }
    .fe-videos--smart .fe-videos__card {
        flex: 0 0 80%;
        min-width: 240px;
    }
    .fe-videos__caption-title {
        font-size: 14px;
    }
}
.fe-videos__lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.fe-videos__lightbox.is-open {
    display: flex;
}
.fe-videos__lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: background 0.2s ease;
    z-index: 10;
}
.fe-videos__lightbox-close svg {
    display: block;
}
.fe-videos__lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}
.fe-videos__lightbox-content {
    position: relative;
    display: inline-block;
    line-height: 0;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    background: #0d0e0f;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.50);
}
.fe-videos__lightbox-video {
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    background: #000000;
    border-radius: 20px;
}
.fe-videos__lightbox.is-landscape .fe-videos__lightbox-video {
    width: 90vw;
    max-width: 1280px;
    height: auto;
}
@media (max-width: 991px) {
    .fe-videos__card {
        min-width: calc(50% - 12px);
    }
    .fe-videos__container {
        padding: 56px 20px 64px;
    }
}
@media (max-width: 575px) {
    .fe-videos__card {
        min-width: calc(100% - 0px);
    }
    .fe-videos__container {
        padding: 44px 16px 52px;
    }
    .fe-videos__heading {
        font-size: 24px;
    }
}

/* --- Calendly: inline expand (mobile) + modal popup (desktop) --- */
.fe-calendly-inline {
    display: none;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 32px;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    animation: fe-slideDown 0.3s ease;
}
.fe-calendly-inline.is-open {
    display: block;
}
.fe-calendly-inline iframe {
    width: 100%;
    height: 580px;
    border: none;
    display: block;
}
@keyframes fe-slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fe-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
    align-items: center;
    justify-content: center;
    animation: fe-fadeIn 0.2s ease;
}
.fe-modal-overlay.is-open {
    display: flex;
}
@keyframes fe-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.fe-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 680px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    animation: fe-scaleIn 0.25s ease;
    position: relative;
}
@keyframes fe-scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}
.fe-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
}
.fe-modal__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-header);
}
.fe-modal__close {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #6b7280;
    transition: background 0.15s ease;
}
.fe-modal__close:hover {
    background: #f3f4f6;
}
.fe-modal__body {
    padding: 0;
}
.fe-modal__body iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}
