/* =========================================================
   JOB PORTAL HOME — uses tokens from style.css
   (navy / indigo / amber / teal / cream)
========================================================= */

/* ---------- HERO ---------- */
.job-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--navy-950) 0%, var(--navy-900) 50%, #0E2A5C 100%);
    padding: 56px 5% 0;
}

.job-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 41, .12), transparent 70%);
    pointer-events: none;
}

.job-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 44px;
    align-items: center;
}

.job-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .35);
}

.job-chip i {
    color: var(--amber-500);
}

.job-hero-copy h1 {
    font-size: clamp(36px, 4.6vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.job-hero-copy h1 .highlight {
    background: linear-gradient(90deg, var(--amber-500), var(--amber-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.job-hero-copy > p {
    font-size: 15px;
    color: var(--slate-300);
    max-width: 400px;
    margin-bottom: 30px;
    line-height: 1.65;
}

.job-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.job-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 160px;
}

.job-hero-feature i {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .1);
    color: var(--amber-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: .25s;
}

.job-hero-feature:hover i {
    background: var(--amber-500);
    color: #fff;
    transform: translateY(-2px);
}

.job-hero-feature b {
    display: block;
    font-size: 13.5px;
    color: #fff;
    margin-bottom: 2px;
}

.job-hero-feature span {
    font-size: 12px;
    color: var(--slate-300);
    line-height: 1.4;
}

/* ---------- Visual ---------- */
.job-hero-visual {
    position: relative;
}

.job-hero-visual::before {
    content: "";
    position: absolute;
    inset: -14px -14px 14px 14px;
    background: linear-gradient(135deg, rgba(54, 84, 255, .18), rgba(255, 122, 41, .14));
    border-radius: calc(var(--radius-lg) + 6px);
    z-index: 0;
}

.job-hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-pop);
    height: 500px;
    object-fit: cover;
}

.job-hero-stat-card {
    position: absolute;
    left: 50%;
    bottom: -0px;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-pop);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px 10px;
}

.jhs-item {
    text-align: center;
    border-right: 1px solid var(--line);
    padding: 0 5px;
    transition: .25s;
}

.jhs-item:last-child {
    border-right: none;
}

.jhs-item:hover {
    transform: translateY(-3px);
}

.jhs-item i {
    color: var(--indigo-600);
    font-size: 17px;
    margin-bottom: 6px;
}

.jhs-item h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.1;
}

.jhs-item span {
    font-size: 10.5px;
    color: var(--slate-500);
}

/* ===== Hero Action Buttons — modern gradient + micro interaction ===== */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    min-width: 255px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: .3s cubic-bezier(.2, .7, .2, 1);
    cursor: pointer;
    overflow: hidden;
}

.hero-actions .btn i {
    font-size: 15px;
    transition: transform .25s;
}

.hero-actions .btn:hover i {
    transform: translateX(3px);
}

/* Primary Button */

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 14px 28px -10px rgba(255, 122, 41, .55);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px -10px rgba(255, 122, 41, .6);
}

/* Outline Button */

.hero-actions .btn-outline {
    background: #fff;
    color: var(--indigo-600);
    border: 2px solid var(--line);
}

.hero-actions .btn-outline:hover {
    border-color: var(--indigo-600);
    background: rgba(54, 84, 255, .06);
    transform: translateY(-3px);
}

/* Mobile */

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 100%;
        padding: 15px;
    }
}

/* search bar sits below hero, overlapping the stat card space */
.job-search-wrap {
    max-width: 1280px;
    margin: 28px 10px 20px;
    padding: 0 3%;
}


.job-search-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 10px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 6px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}

.job-search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-right: 1px solid var(--line);
    transition: .2s;
}

.job-search-field:focus-within {
    background: rgba(54, 84, 255, .05);
    border-radius: 10px;
}

.job-search-field:last-of-type {
    border-right: none;
}

.job-search-field i {
    color: var(--indigo-600);
    font-size: 15px;
}

.job-search-field input,
.job-search-field select {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink-900);
}

.job-search-box button {
    border: none;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: #fff;
    padding: 0 26px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    transition: .25s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.job-search-box button:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .job-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .job-hero-copy > p { margin-left: auto; margin-right: auto; }
    .job-hero-features { justify-content: center; }
    .job-hero-feature { text-align: left; }
    .job-hero-stat-card { position: static; transform: none; width: 100%; margin-top: 18px; background: #fff; }
    .job-search-wrap { margin-top: 30px; }
}

@media (max-width: 700px) {
    .job-search-box { grid-template-columns: 1fr; }
    .job-search-field { border-right: none; border-bottom: 1px solid var(--line); }
    .jhs-item { border-right: none; }
}

/* ---------- SHARED BLOCK LAYOUT ---------- */
.job-block {
    padding: 60px 5%;
    max-width: 1280px;
    margin: auto;
}

.job-block.alt {
    background: var(--cream-50);
    max-width: none;
    padding-left: 5%;
    padding-right: 5%;
}

.job-block.alt > * {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.job-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.job-block-head h2 {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    color: var(--navy-900);
}

.view-all {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--indigo-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .2s;
}

.view-all:hover {
    gap: 10px;
}
/* ---------- JOB TYPE ---------- */
.job-type-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 14px;
}

.job-type-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px 12px;
    text-align: center;
    transition: .25s;
}

.job-type-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}

.job-type-tile i {
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.job-type-tile b {
    display: block;
    font-size: 12.5px;
    color: var(--navy-900);
    margin-bottom: 3px;
}

.job-type-tile span {
    font-size: 10.5px;
    color: var(--slate-500);
}

.t-indigo { color: var(--indigo-600); }
.t-amber  { color: var(--amber-500); }
.t-teal   { color: var(--teal-600); }
.t-purple { color: #7B5CFA; }
.t-red    { color: #E0397F; }

@media (max-width: 1100px) { .job-type-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 700px)  { .job-type-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px)  { .job-type-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- JOB CATEGORIES ---------- */
.job-cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}


.job-cat-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 14px;
    text-align: center;
    transition: .25s;
}

.job-cat-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}

.job-cat-tile i {
    font-size: 22px;
    margin-bottom: 12px;
    display: block;
}

.job-cat-tile b {
    display: block;
    font-size: 13px;
    color: var(--navy-900);
    margin-bottom: 3px;
}

.job-cat-tile span {
    font-size: 11px;
    color: var(--slate-500);
}
.category-jobs-view {
    margin-top: 10px;
}
/* ---------- Detailed job cards (Web/Full Stack/MERN/Python/PHP/Frontend) ---------- */
.jc-detail-card {
    flex-direction: column;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding: 0;
    gap: 0;
}

.jc-detail-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 46px 46px 0;
    border-color: transparent var(--ribbon-color, var(--indigo-600)) transparent transparent;
}

.jc-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 14px;
}

.jc-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.jc-detail-header h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy-900);
    text-transform: uppercase;
    letter-spacing: .02em;
}

.jc-detail-info {
    list-style: none;
    padding: 0 20px;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jc-detail-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--slate-500);
}

.jc-detail-info li i {
    color: var(--indigo-600);
    font-size: 11px;
    width: 14px;
    flex-shrink: 0;
}

.jc-detail-skills {
    margin: 0 20px 16px;
    background: var(--cream-50);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.jc-detail-skills-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--navy-900);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.jc-detail-skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.jc-detail-skills-tags span {
    font-size: 10.5px;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink-900);
    padding: 4px 10px;
    border-radius: 100px;
}

.jc-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.jc-detail-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ribbon-color, var(--indigo-600));
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    padding: 9px 16px;
    border-radius: 100px;
    transition: .25s;
}

.jc-detail-apply:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.jc-detail-caption {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--slate-500);
    font-weight: 600;
}

.cat-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy-900);
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 18px;
    border-radius: 100px;
    cursor: pointer;
    margin-bottom: 24px;
    transition: .25s;
}

.cat-back-btn:hover {
    background: var(--indigo-600);
    border-color: var(--indigo-600);
    color: #fff;
}

.category-jobs-heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 20px;
}

@media (max-width: 991px) { .job-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .job-cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- LATEST JOBS ---------- */
.latest-job-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.latest-job-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: .25s;
}

.latest-job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.ljc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ljc-logo {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 9.5px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ljc-save {
    color: var(--slate-300);
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
}

.ljc-save:hover {
    color: var(--amber-500);
}

.latest-job-card h4 {
    font-size: 15px;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.ljc-company {
    display: block;
    font-size: 12.5px;
    color: var(--slate-500);
    margin-bottom: 6px;
}

.ljc-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--slate-500);
    margin-bottom: 12px;
}

.ljc-loc i {
    color: var(--indigo-600);
    font-size: 11px;
}

.ljc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.ljc-tags .tag {
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--cream-50);
    color: var(--slate-500);
}

.ljc-tags .tag.full {
    background: rgba(54, 84, 255, .1);
    color: var(--indigo-600);
}

.ljc-tags .tag.part {
    background: rgba(255, 122, 41, .14);
    color: var(--amber-500);
}

.ljc-time {
    font-size: 11px;
    color: var(--slate-300);
    border-top: 1px solid var(--line);
    display: block;
    padding-top: 10px;
}

.job-view-more {
    text-align: center;
    margin-top: 34px;
}

.job-view-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-900);
    color: #fff;
    padding: 12px 26px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: .25s;
}

.job-view-more a:hover {
    background: var(--indigo-600);
}

.lj-viewall-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-900);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: .25s;
}

.lj-viewall-btn:hover {
    background: var(--indigo-600);
}

.lj-extra.lj-hidden {
    display: none !important;
}

/* ---------- LATEST JOBS HEADER + FILTER PILLS ---------- */
.job-section-head-center {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 34px;
}

.job-section-head-center .job-eyebrow {
    display: block;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--indigo-600);
    margin-bottom: 10px;
}

.job-section-head-center h2 {
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.job-section-head-center p {
    color: var(--slate-500);
    font-size: 15px;
}

.job-filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.job-filter-pills .lj-filter-btn {
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-900);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: .25s;
    font-family: var(--font-body);
}

.job-filter-pills .lj-filter-btn:hover {
    border-color: var(--indigo-600);
    color: var(--indigo-600);
}

.job-filter-pills .lj-filter-btn.active {
    background: var(--indigo-600);
    border-color: var(--indigo-600);
    color: #fff;
}

/* ---------- NEW STYLE JOB CARDS (colored icon avatars) ---------- */
.latest-job-grid.icon-style {
    grid-template-columns: repeat(3, 1fr);
}

.jc-icon-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: .25s;
}

.jc-icon-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}

.jc-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.jc-avatar.bg-red    { background: #FDE8E8; color: #E23838; }
.jc-avatar.bg-orange { background: #FEEEE0; color: #E0620F; }
.jc-avatar.bg-purple { background: #EFECFB; color: #7B5CFA; }
.jc-avatar.bg-yellow  { background: #FEF6DB; color: #E0B400; }
.jc-avatar.bg-pink    { background: #FCE8F1; color: #E0397F; }
.jc-avatar.bg-blue    { background: #E7ECFF; color: var(--indigo-600); }
.jc-avatar.bg-green   { background: #E4F7EC; color: #1FA34B; }
.jc-avatar.bg-teal    { background: var(--teal-100); color: var(--teal-600); }
.jc-avatar.bg-brown   { background: #F3E9E0; color: #8A5A2B; }

.jc-body {
    flex: 1;
    min-width: 0;
}

.jc-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.jc-body h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 3px;
}

.jc-save {
    color: var(--slate-300);
    font-size: 14px;
    cursor: pointer;
    transition: .2s;
    flex-shrink: 0;
    margin-top: 2px;
}

.jc-save:hover {
    color: var(--amber-500);
}

.jc-company {
    display: block;
    font-size: 12.5px;
    color: var(--slate-500);
    margin-bottom: 2px;
}

.jc-loc {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--slate-500);
    margin-bottom: 10px;
}

.jc-loc i {
    font-size: 10px;
}

.jc-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.jc-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.jc-tag.tag-full   { background: #E4F7EC; color: #1FA34B; }
.jc-tag.tag-part   { background: #FEEEE0; color: #E0620F; }
.jc-tag.tag-wfh    { background: #EFECFB; color: #7B5CFA; }
.jc-tag.tag-remote { background: #E7ECFF; color: var(--indigo-600); }

.jc-time {
    font-size: 11px;
    color: var(--slate-300);
}

@media (max-width: 991px) { .latest-job-grid.icon-style { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .latest-job-grid.icon-style { grid-template-columns: 1fr; } }


@media (max-width: 991px) { .latest-job-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .latest-job-grid { grid-template-columns: 1fr; } }

/* ---------- INDUSTRIES / LOCATIONS / WHY CHOOSE ---------- */
.job-triple {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.job-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
}

.job-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.job-panel-head h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy-900);
}

.job-panel-head a {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--indigo-600);
}

.popular-industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
}

.pi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.pi-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(54, 84, 255, .1);
    color: var(--indigo-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pi-item span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.3;
}

.location-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.loc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
}

.loc-item:last-child {
    border-bottom: none;
}

.loc-item span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-900);
    font-weight: 600;
}

.loc-item span i {
    color: var(--indigo-600);
    font-size: 12px;
}

.loc-item b {
    color: var(--indigo-600);
    font-size: 12.5px;
    font-weight: 700;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.why-list li i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(14, 142, 122, .12);
    color: var(--teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.why-list li b {
    display: block;
    font-size: 13.5px;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.why-list li span {
    font-size: 12px;
    color: var(--slate-500);
    line-height: 1.4;
}

@media (max-width: 991px) { .job-triple { grid-template-columns: 1fr; } }

/* ---------- COMMITMENT STATS BANNER ---------- */
.commit-banner {
    background: var(--navy-950);
    padding: 40px 5%;
}

.commit-inner {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.commit-copy h2 {
    color: #fff;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 800;
    line-height: 1.35;
}

.commit-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.cstat {
    text-align: center;
}

.cstat h3 {
    color: var(--amber-500);
    font-size: 26px;
    font-weight: 800;
}

.cstat span {
    color: var(--slate-300);
    font-size: 11.5px;
}

.commit-illustration {
    width: 130px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: none;
}

@media (min-width: 992px) {
    .commit-illustration { display: block; }
}

@media (max-width: 991px) {
    .commit-inner { grid-template-columns: 1fr; text-align: center; }
}

/* ---------- READY TO TAKE NEXT STEP ---------- */
.next-step {
    background: #fff;
    padding: 60px 5%;
}

.next-step-inner {
    max-width: 1280px;
    margin: auto;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.next-step-visual {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.next-step-copy h2 {
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.next-step-copy p {
    font-size: 14px;
    color: var(--slate-500);
    max-width: 320px;
}

.next-step-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ns-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ns-item i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(54, 84, 255, .1);
    color: var(--indigo-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.ns-item b {
    display: block;
    font-size: 13.5px;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.ns-item span {
    font-size: 11.5px;
    color: var(--slate-500);
    line-height: 1.4;
}

.next-step-btn {
    grid-column: 1 / -1;
    justify-self: center;
}

@media (max-width: 991px) {
    .next-step-inner { grid-template-columns: 1fr; text-align: center; }
    .next-step-copy p { margin: 0 auto; }
    .ns-item { text-align: left; }
}
.lj-empty-msg {
    text-align: center;
    color: var(--slate-500);
    font-size: 14.5px;
    margin-top: 20px;
    width: 100%;
}
