/* =============================================
   JobPortal Pro — Main Stylesheet v2.0
   #039a5b · #2a343b · #f5f2ec
   ============================================= */

/* ── Tokens ── */
:root {
  --c-teal:       #039a5b;
  --c-teal-dk:    #027a48;
  --c-teal-lt:    #e6f7f0;
  --c-teal-mid:   #04b86b;
  --c-dark:       #2a343b;
  --c-dark-lt:    #3d4f5a;
  --c-dark-xlt:   #526472;
  --c-cream:      #f5f2ec;
  --c-cream-dk:   #ede9e1;
  --c-cream-xdk:  #e3ded6;
  --c-amber:      #f59e0b;
  --c-amber-lt:   #fffbeb;
  --c-red:        #ef4444;
  --c-red-lt:     #fef2f2;
  --c-text:       #2a343b;
  --c-text-2:     #4a5a66;
  --c-text-3:     #7a8a94;
  --c-border:     #ddd9d0;
  --c-border-lt:  #e9e5dc;
  --c-white:      #ffffff;

  --shadow-sm:    0 1px 3px rgba(42,52,59,.06), 0 1px 2px rgba(42,52,59,.04);
  --shadow-md:    0 4px 16px rgba(42,52,59,.08), 0 2px 6px rgba(42,52,59,.04);
  --shadow-lg:    0 8px 32px rgba(42,52,59,.10), 0 4px 12px rgba(42,52,59,.06);
  --shadow-teal:  0 6px 24px rgba(3,154,91,.20);
  --shadow-teal-lg: 0 10px 40px rgba(3,154,91,.25);

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-pill: 999px;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1160px;
  --header-h: 68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.jp-site {
  font-family: var(--font);
  background: var(--c-cream);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.jp-site * { box-sizing: border-box; }
body.jp-site a { color: var(--c-teal); text-decoration: none; }
body.jp-site a:hover { color: var(--c-teal-dk); }
body.jp-site img { max-width: 100%; display: block; }
body.jp-site ul { list-style: none; padding: 0; margin: 0; }
body.jp-site input, body.jp-site select, body.jp-site textarea, body.jp-site button {
  font-family: var(--font);
}

/* ── Container ── */
.jp-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.jp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--c-dark);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.jp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.jp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.jp-brand-mark {
  width: 38px; height: 38px;
  background: var(--c-teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-teal);
}
.jp-brand-name {
  font-size: 18px; font-weight: 800;
  color: var(--c-cream);
  letter-spacing: -.3px;
}
.jp-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.jp-nav-link {
  padding: 8px 13px;
  font-size: 13.5px; font-weight: 600;
  color: rgba(245,242,236,.65);
  border-radius: var(--r-md);
  transition: all .16s;
  text-decoration: none;
  white-space: nowrap;
}
.jp-nav-link:hover,
.jp-nav-link.active { color: var(--c-cream); background: rgba(245,242,236,.1); }
.jp-nav-link.active { color: var(--c-teal-mid); }
.jp-nav-cta {
  margin-left: 8px;
  padding: 9px 20px;
  background: var(--c-teal);
  color: #fff;
  font-size: 13.5px; font-weight: 700;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
  box-shadow: var(--shadow-teal);
}
.jp-nav-cta:hover { background: var(--c-teal-dk); color: #fff; box-shadow: var(--shadow-teal-lg); transform: translateY(-1px); }

/* Burger */
.jp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}
.jp-burger span {
  display: block; width: 22px; height: 2px;
  background: rgba(245,242,236,.8); border-radius: 2px;
  transition: all .25s;
}
.jp-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.jp-burger.open span:nth-child(2) { opacity: 0; }
.jp-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Drawer */
.jp-drawer {
  position: fixed;
  top: var(--header-h); right: -280px;
  width: 280px; bottom: 0;
  background: var(--c-dark);
  z-index: 999;
  transition: right .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.3);
  border-left: 1px solid rgba(255,255,255,.06);
}
.jp-drawer.open { right: 0; }
.jp-drawer-inner { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.jp-drawer-link {
  padding: 12px 16px;
  color: rgba(245,242,236,.75);
  font-size: 15px; font-weight: 600;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all .15s;
}
.jp-drawer-link:hover { background: rgba(245,242,236,.08); color: var(--c-cream); }
.jp-drawer-cta {
  margin-top: 12px;
  padding: 13px 16px;
  background: var(--c-teal);
  color: #fff;
  font-size: 15px; font-weight: 700;
  border-radius: var(--r-md);
  text-align: center;
  text-decoration: none;
}
.jp-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity .28s;
  backdrop-filter: blur(2px);
}
.jp-overlay.show { opacity: 1; pointer-events: all; }

/* ── Main content (offset for fixed header) ── */
.jp-main { padding-top: var(--header-h); min-height: 100vh; }

/* ── Buttons ── */
.jp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 24px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 700;
  cursor: pointer; border: none;
  transition: all .18s; white-space: nowrap; text-decoration: none;
  background: var(--c-teal); color: #fff;
}
.jp-btn:hover { background: var(--c-teal-dk); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-teal-lg); }
.jp-btn-dark    { background: var(--c-dark); color: #fff; box-shadow: var(--shadow-md); }
.jp-btn-dark:hover { background: var(--c-dark-lt); box-shadow: var(--shadow-lg); }
.jp-btn-outline { background: transparent; color: var(--c-teal); border: 2px solid var(--c-teal); }
.jp-btn-outline:hover { background: var(--c-teal); color: #fff; }
.jp-btn-ghost-light { background: rgba(245,242,236,.15); color: var(--c-cream); border: 1.5px solid rgba(245,242,236,.3); }
.jp-btn-ghost-light:hover { background: rgba(245,242,236,.25); color: #fff; }
.jp-btn-sm  { padding: 7px 16px; font-size: 13px; }
.jp-btn-lg  { padding: 14px 32px; font-size: 15px; }
.jp-btn-xl  { padding: 16px 40px; font-size: 16px; }
.jp-btn-wide { width: 100%; justify-content: center; }

/* ── Cards ── */
.jp-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* ── Tags / Badges ── */
.jp-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 600;
  background: var(--c-cream-dk); color: var(--c-text-2);
  border: 1px solid var(--c-border);
}
.jp-tag-teal  { background: var(--c-teal-lt); color: var(--c-teal-dk); border-color: #9edfc3; }
.jp-tag-amber { background: var(--c-amber-lt); color: #92400e; border-color: #fcd34d; }
.jp-tag-red   { background: var(--c-red-lt); color: #991b1b; border-color: #fca5a5; }
.jp-tag-dark  { background: var(--c-dark); color: var(--c-cream); border-color: var(--c-dark); }
.jp-badge-pill {
  display: inline-block;
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
  background: rgba(245,242,236,.12); color: rgba(245,242,236,.7);
}
.jp-badge-pill.green { background: rgba(3,154,91,.2); color: #4dd898; }

/* ── Section ── */
.jp-section { padding: 56px 0; }
.jp-section-sm { padding: 36px 0; }
.jp-section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.jp-section-title {
  font-size: 24px; font-weight: 800;
  color: var(--c-dark); letter-spacing: -.4px;
}
.jp-section-title em { font-style: normal; color: var(--c-teal); }
.jp-see-all { font-size: 13px; font-weight: 700; color: var(--c-teal); }
.jp-see-all:hover { text-decoration: underline; }

/* ── Page header band ── */
.jp-page-hero {
  background: var(--c-dark);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.jp-page-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(3,154,91,.12);
  pointer-events: none;
}
.jp-page-hero h1 { font-size: 32px; font-weight: 800; color: var(--c-cream); margin-bottom: 6px; letter-spacing: -.5px; }
.jp-page-hero p  { font-size: 15px; color: rgba(245,242,236,.6); }

/* ── Ad placeholder ── */
.jp-ad-slot {
  background: var(--c-cream-dk);
  border: 2px dashed var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px; text-align: center;
  color: var(--c-text-3); font-size: 13px;
}

/* ─────────────────────────────────────────
   HOME PAGE
───────────────────────────────────────── */

/* Hero */
.jp-hero {
  background: linear-gradient(155deg, #1e2a31 0%, #2a343b 45%, #1a2830 100%);
  padding: 92px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jp-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,154,91,.14) 0%, transparent 70%);
  pointer-events: none;
}
.jp-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,242,236,.03) 0%, transparent 70%);
}
.jp-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; position: relative; }
.jp-hero-badge {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  background: rgba(3,154,91,.18); color: #4dd898;
  padding: 5px 16px; border-radius: var(--r-pill);
  margin-bottom: 22px; letter-spacing: .04em;
  border: 1px solid rgba(3,154,91,.25);
}
.jp-hero-title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800; color: var(--c-cream);
  margin-bottom: 16px; line-height: 1.12;
  letter-spacing: -.04em;
}
.jp-hero-title em { font-style: normal; color: var(--c-teal-mid); }
.jp-hero-sub {
  font-size: 17px; color: rgba(245,242,236,.6);
  margin-bottom: 44px; line-height: 1.65;
}

/* Hero search */
.jp-hero-search {
  max-width: 700px;
  margin: 0 auto 44px;
}
.jp-hero-search-wrap {
  display: flex; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 8px;
  backdrop-filter: blur(10px);
}
.jp-hero-field {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 0 16px;
  min-width: 0;
}
.jp-hero-field svg { flex-shrink: 0; opacity: .45; }
.jp-hero-field input {
  border: none; outline: none;
  width: 100%; padding: 14px 0;
  font-size: 14.5px; color: var(--c-dark);
  background: transparent;
}
.jp-hero-field input::placeholder { color: #a8a49c; }
.jp-hero-search-btn {
  flex-shrink: 0;
  background: var(--c-teal);
  color: #fff; border: none;
  border-radius: var(--r-md);
  padding: 0 32px;
  font-size: 14.5px; font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}
.jp-hero-search-btn:hover { background: var(--c-teal-dk); transform: translateY(-1px); }

/* Hero stats */
.jp-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 16px 32px;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.jp-hero-stat { text-align: center; }
.jp-hero-stat strong { display: block; font-size: 24px; font-weight: 800; color: var(--c-teal-mid); }
.jp-hero-stat span   { font-size: 11px; color: rgba(245,242,236,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.jp-hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* Categories grid */
.jp-cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 14px; }
.jp-cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 22px 14px;
  text-decoration: none; color: var(--c-dark);
  transition: all .2s;
  cursor: pointer;
}
.jp-cat-card:hover {
  border-color: var(--c-teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-4px);
  color: var(--c-dark);
}
.jp-cat-icon { font-size: 28px; line-height: 1; }
.jp-cat-name { font-size: 13px; font-weight: 700; text-align: center; }
.jp-cat-count {
  font-size: 11px; font-weight: 700;
  color: var(--c-teal); background: var(--c-teal-lt);
  padding: 2px 9px; border-radius: var(--r-pill);
}

/* Featured jobs grid */
.jp-feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.jp-feat-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all .2s;
  position: relative;
}
.jp-feat-card:hover { border-color: var(--c-teal); box-shadow: var(--shadow-teal); transform: translateY(-4px); }
.jp-feat-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.jp-feat-logo img  { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; }
.jp-feat-logo-ph {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--c-teal-lt); color: var(--c-teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  border: 1.5px solid var(--c-border-lt);
}
.jp-feat-title a { font-size: 15.5px; font-weight: 700; color: var(--c-dark); display: block; margin-bottom: 4px; }
.jp-feat-title a:hover { color: var(--c-teal); }
.jp-feat-company { font-size: 13px; font-weight: 700; color: var(--c-teal); margin-bottom: 12px; }
.jp-feat-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.jp-feat-meta span { font-size: 12px; color: var(--c-text-3); }
.jp-feat-footer { display: flex; justify-content: space-between; align-items: center; }
.jp-feat-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.jp-feat-apply {
  font-size: 13px; font-weight: 700; color: var(--c-teal);
  background: var(--c-teal-lt); padding: 7px 14px; border-radius: var(--r-md);
  text-decoration: none; transition: all .18s; white-space: nowrap;
}
.jp-feat-apply:hover { background: var(--c-teal); color: #fff; }

/* Recent jobs list */
.jp-recent-list { display: flex; flex-direction: column; gap: 10px; }
.jp-recent-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 18px;
  transition: all .18s;
  position: relative;
}
.jp-recent-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--c-teal); border-radius: var(--r-lg) 0 0 var(--r-lg);
  transition: width .18s;
}
.jp-recent-card:hover { border-color: var(--c-teal); box-shadow: var(--shadow-teal); transform: translateX(4px); }
.jp-recent-card:hover::before { width: 4px; }
.jp-recent-logo { flex-shrink: 0; }
.jp-recent-logo-ph {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--c-teal-lt); color: var(--c-teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.jp-recent-logo img { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; }
.jp-recent-info { flex: 1; min-width: 0; }
.jp-recent-title a { font-size: 15px; font-weight: 700; color: var(--c-dark); display: block; margin-bottom: 3px; }
.jp-recent-title a:hover { color: var(--c-teal); }
.jp-recent-company { font-size: 13px; font-weight: 700; color: var(--c-teal); margin-bottom: 6px; }
.jp-recent-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.jp-recent-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.jp-recent-time { font-size: 11px; color: var(--c-text-3); }

/* Why us */
.jp-why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.jp-why-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all .2s;
}
.jp-why-card:hover { border-color: var(--c-teal); box-shadow: var(--shadow-teal); }
.jp-why-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.jp-why-card h4 { font-size: 15px; font-weight: 700; color: var(--c-dark); margin-bottom: 8px; }
.jp-why-card p  { font-size: 13.5px; color: var(--c-text-2); line-height: 1.65; }

/* Alert CTA band */
.jp-alert-band {
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dk) 100%);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.jp-alert-band::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.jp-alert-band-inner {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.jp-alert-band-text { flex: 1; min-width: 240px; }
.jp-alert-band-text h2 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.jp-alert-band-text p  { font-size: 15px; color: rgba(255,255,255,.75); }
.jp-alert-band-form { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 10px; }
.jp-alert-band-form input {
  padding: 14px 18px; border: none;
  border-radius: var(--r-md);
  font-size: 14.5px; outline: none;
  font-family: var(--font);
}
#jp-alert-message { font-size: 13px; color: rgba(255,255,255,.9); font-weight: 600; display: none; }
#jp-alert-message.show { display: block; }

/* Recruiter band */
.jp-recruiter-band {
  background: var(--c-cream-dk);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.jp-recruiter-band-icon { font-size: 52px; flex-shrink: 0; }
.jp-recruiter-band-text { flex: 1; min-width: 200px; }
.jp-recruiter-band-text h3 { font-size: 22px; font-weight: 800; color: var(--c-dark); margin-bottom: 6px; }
.jp-recruiter-band-text p  { font-size: 14px; color: var(--c-text-2); }

/* ─────────────────────────────────────────
   BROWSE JOBS PAGE
───────────────────────────────────────── */
.jp-jobs-layout {
  display: flex; gap: 28px; align-items: flex-start;
  margin-top: 32px;
}
.jp-sidebar {
  width: 256px; flex-shrink: 0;
  position: sticky; top: calc(var(--header-h) + 16px);
}
.jp-sidebar-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.jp-sidebar-card h4 {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--c-text-3); margin-bottom: 14px;
}
.jp-filter-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; cursor: pointer; font-size: 13.5px;
  color: var(--c-text); transition: color .15s;
}
.jp-filter-item:hover { color: var(--c-teal); }
.jp-filter-item input[type=checkbox] { accent-color: var(--c-teal); width: 15px; height: 15px; }
.jp-jobs-main { flex: 1; min-width: 0; }
.jp-search-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  background: var(--c-dark);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 24px;
}
.jp-search-field {
  flex: 1; min-width: 180px;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: var(--r-md); padding: 0 14px;
  border: 1.5px solid transparent; transition: border-color .18s;
}
.jp-search-field:focus-within { border-color: var(--c-teal); }
.jp-search-field svg { opacity: .4; flex-shrink: 0; }
.jp-search-field input {
  border: none; outline: none; width: 100%;
  padding: 12px 0; font-size: 14px; color: var(--c-dark);
}
.jp-search-field input::placeholder { color: #aaa; }
.jp-results-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.jp-results-count { font-size: 13px; font-weight: 700; color: var(--c-text-2); }
.jp-job-list { display: flex; flex-direction: column; gap: 12px; }

/* Job card */
.jp-job-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: all .2s;
  position: relative;
  display: flex; align-items: flex-start; gap: 18px;
}
.jp-job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--c-teal); border-radius: var(--r-lg) 0 0 var(--r-lg);
  transition: width .18s;
}
.jp-job-card:hover { border-color: var(--c-teal); box-shadow: var(--shadow-teal); transform: translateY(-2px); }
.jp-job-card:hover::before { width: 4px; }
.jp-job-card.featured { border-color: var(--c-amber); background: linear-gradient(135deg, #fffef5 0%, #fff 100%); }
.jp-job-card.featured::before { background: var(--c-amber); }
.jp-job-logo { flex-shrink: 0; width: 54px; height: 54px; }
.jp-job-logo img { width: 54px; height: 54px; object-fit: contain; border-radius: 10px; border: 1.5px solid var(--c-border-lt); }
.jp-job-logo-ph {
  width: 54px; height: 54px; border-radius: 10px;
  background: var(--c-teal-lt); color: var(--c-teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  border: 1.5px solid var(--c-border-lt);
}
.jp-job-body { flex: 1; min-width: 0; }
.jp-job-title { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.jp-job-title a { color: var(--c-dark); }
.jp-job-title a:hover { color: var(--c-teal); }
.jp-job-company { font-size: 13px; font-weight: 700; color: var(--c-teal); margin-bottom: 10px; }
.jp-job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.jp-job-skills { display: flex; flex-wrap: wrap; gap: 5px; }
.jp-skill-pill {
  font-size: 11px; padding: 3px 9px; border-radius: var(--r-sm);
  background: var(--c-cream-dk); color: var(--c-text-2);
  border: 1px solid var(--c-border);
}
.jp-job-actions { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; padding-left: 16px; }
.jp-job-meta-bottom { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.jp-job-views, .jp-job-posted { font-size: 11px; color: var(--c-text-3); }
.jp-card-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--r-pill); text-transform: uppercase; letter-spacing: .5px;
}
.jp-badge-featured { background: var(--c-amber); color: #fff; }
.jp-badge-urgent   { background: var(--c-red-lt); color: var(--c-red); border: 1px solid #fca5a5; }

/* No jobs */
.jp-no-jobs { text-align: center; padding: 80px 20px; }
.jp-no-jobs-icon { font-size: 56px; margin-bottom: 18px; }
.jp-no-jobs h3 { font-size: 20px; font-weight: 700; color: var(--c-dark); margin-bottom: 10px; }
.jp-no-jobs p  { color: var(--c-text-2); font-size: 15px; }

/* Pagination */
.jp-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.jp-pagination a, .jp-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-md);
  border: 1.5px solid var(--c-border); font-size: 14px;
  font-weight: 600; color: var(--c-dark);
  background: #fff; text-decoration: none; transition: all .18s;
}
.jp-pagination a:hover, .jp-pagination .current {
  background: var(--c-teal); color: #fff; border-color: var(--c-teal);
  box-shadow: 0 4px 12px rgba(3,154,91,.3);
}
.jp-pagination .prev, .jp-pagination .next { width: auto; padding: 0 16px; }

/* ─────────────────────────────────────────
   SINGLE JOB PAGE
───────────────────────────────────────── */
.jp-single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; margin-top: 32px; }
.jp-single-main {}
.jp-single-header {
  background: var(--c-white); border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-xl); padding: 32px; margin-bottom: 24px;
}
.jp-single-top { display: flex; gap: 20px; margin-bottom: 28px; }
.jp-single-logo img { width: 80px; height: 80px; object-fit: contain; border-radius: 14px; border: 1.5px solid var(--c-border-lt); }
.jp-single-logo-ph {
  width: 80px; height: 80px; border-radius: 14px;
  background: var(--c-teal-lt); color: var(--c-teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 24px;
}
.jp-single-title-area { flex: 1; }
.jp-single-h1 { font-size: 26px; font-weight: 800; color: var(--c-dark); margin-bottom: 6px; line-height: 1.2; }
.jp-single-company a { font-size: 16px; font-weight: 700; color: var(--c-teal); }
.jp-single-quick-info { display: flex; flex-wrap: wrap; gap: 0; border-top: 1.5px solid var(--c-cream-dk); padding-top: 20px; }
.jp-qi { display: flex; align-items: center; gap: 10px; padding: 10px 20px 10px 0; min-width: 180px; }
.jp-qi-icon { font-size: 20px; }
.jp-qi small { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-text-3); }
.jp-qi strong { font-size: 13px; color: var(--c-dark); font-weight: 700; }
.jp-single-body {
  background: var(--c-white); border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-xl); padding: 32px; margin-bottom: 24px;
}
.jp-single-body h2 { font-size: 17px; font-weight: 800; color: var(--c-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--c-cream-dk); }
.jp-job-description { font-size: 14.5px; line-height: 1.8; color: var(--c-text-2); }
.jp-job-description ul { list-style: disc; padding-left: 20px; margin: 10px 0; }
.jp-job-description li { margin-bottom: 6px; }
.jp-skills-row { display: flex; flex-wrap: wrap; gap: 8px; }
.jp-apply-form-card {
  background: var(--c-white); border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-xl); padding: 32px;
}
.jp-apply-form-card h2 { font-size: 20px; font-weight: 800; color: var(--c-dark); margin-bottom: 22px; }
.jp-single-sidebar { }
.jp-sidebar-widget {
  background: var(--c-white); border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-xl); padding: 24px; margin-bottom: 20px;
}
.jp-sidebar-widget h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--c-text-3); margin-bottom: 16px; border-bottom: 2px solid var(--c-cream-dk); padding-bottom: 10px; }
.jp-apply-widget { background: var(--c-dark); border-color: var(--c-dark); }
.jp-apply-widget h4 { color: rgba(245,242,236,.5); border-color: rgba(255,255,255,.1); }
.jp-apply-widget .jp-btn { width: 100%; margin-bottom: 12px; }
.jp-views-badge { font-size: 12px; color: rgba(245,242,236,.5); text-align: center; }
.jp-overview-list { display: flex; flex-direction: column; gap: 0; }
.jp-overview-item { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--c-cream-dk); font-size: 13.5px; }
.jp-overview-item:last-child { border: none; }
.jp-overview-item span:first-child { font-size: 18px; flex-shrink: 0; width: 28px; }
.jp-overview-item span:last-child { color: var(--c-text-2); }
.jp-alert-widget { background: linear-gradient(135deg, #e6f7f0 0%, #f0fbf6 100%); border-color: #9edfc3; }
.jp-alert-widget h4 { color: var(--c-teal-dk); border-color: #9edfc3; }
.jp-alert-widget input { padding: 10px 12px; border: 1.5px solid var(--c-border); border-radius: var(--r-md); font-size: 13px; width: 100%; margin-bottom: 10px; font-family: var(--font); }
.jp-alert-widget input:focus { outline: none; border-color: var(--c-teal); }
.jp-alert-widget .jp-btn { width: 100%; }

/* ─────────────────────────────────────────
   FORMS (post a job, contact, alerts)
───────────────────────────────────────── */
.jp-form-page { max-width: 860px; margin: 32px auto 0; }
.jp-form-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border-lt);
  border-radius: var(--r-xl); padding: 36px;
  margin-bottom: 24px;
}
.jp-form-card h3 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--c-text-3); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--c-cream-dk); }
.jp-field-row { margin-bottom: 20px; }
.jp-field-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.jp-field-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.jp-field { display: flex; flex-direction: column; gap: 6px; }
.jp-field label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--c-dark); }
.jp-req { color: var(--c-red); }
.jp-field input,
.jp-field select,
.jp-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 14px; color: var(--c-dark);
  background: var(--c-white);
  font-family: var(--font);
  transition: all .18s;
}
.jp-field input:focus,
.jp-field select:focus,
.jp-field textarea:focus {
  outline: none; border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(3,154,91,.1);
}
.jp-form-msg { padding: 12px 16px; border-radius: var(--r-md); font-size: 14px; font-weight: 600; margin-bottom: 16px; display: none; }
.jp-form-msg.success { background: var(--c-teal-lt); border: 1.5px solid #9edfc3; color: var(--c-teal-dk); display: block; }
.jp-form-msg.error   { background: var(--c-red-lt); border: 1.5px solid #fca5a5; color: #991b1b; display: block; }
.jp-form-note { font-size: 12px; color: var(--c-text-3); margin-top: 8px; }

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.jp-about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 36px 0; }
.jp-about-stat-card { background: var(--c-white); border: 1.5px solid var(--c-border-lt); border-radius: var(--r-xl); padding: 32px 20px; text-align: center; }
.jp-about-stat-card strong { display: block; font-size: 36px; font-weight: 800; color: var(--c-teal); margin-bottom: 6px; }
.jp-about-stat-card span { font-size: 13px; color: var(--c-text-2); font-weight: 600; }
.jp-about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.jp-about-feat { display: flex; gap: 16px; background: var(--c-white); border: 1.5px solid var(--c-border-lt); border-radius: var(--r-xl); padding: 24px; }
.jp-about-feat .icon { font-size: 28px; flex-shrink: 0; }
.jp-about-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--c-dark); }
.jp-about-feat p  { font-size: 13.5px; color: var(--c-text-2); line-height: 1.65; }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.jp-contact-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; margin-top: 32px; }
.jp-contact-info-card { background: var(--c-white); border: 1.5px solid var(--c-border-lt); border-radius: var(--r-xl); padding: 28px; margin-bottom: 20px; }
.jp-contact-info-card h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--c-text-3); margin-bottom: 16px; border-bottom: 2px solid var(--c-cream-dk); padding-bottom: 10px; }
.jp-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: var(--c-text-2); }
.jp-contact-item .ci-icon { font-size: 20px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.jp-footer {
  background: var(--c-dark);
  padding: 60px 0 0;
  margin-top: 60px;
}
.jp-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.jp-footer-brand-col {}
.jp-footer-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 14px;
}
.jp-footer-brand span { font-size: 17px; font-weight: 800; color: var(--c-cream); }
.jp-footer-desc { font-size: 13px; line-height: 1.75; color: rgba(245,242,236,.45); margin-bottom: 18px; }
.jp-footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.jp-footer-col h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--c-cream); margin-bottom: 16px; }
.jp-footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.jp-footer-col a { font-size: 13px; color: rgba(245,242,236,.45); text-decoration: none; transition: color .15s; }
.jp-footer-col a:hover { color: var(--c-teal-mid); }
.jp-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px; padding: 20px 0;
  font-size: 12px; color: rgba(245,242,236,.25);
}

/* ── Misc Utilities ── */
.jp-cream-bg { background: var(--c-cream); }
.jp-white-bg  { background: var(--c-white); }
.jp-mt-8 { margin-top: 32px; }
.jp-mt-6 { margin-top: 24px; }
.jp-mb-4 { margin-bottom: 16px; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  .jp-single-layout { grid-template-columns: 1fr; }
  .jp-contact-layout { grid-template-columns: 1fr; }
  .jp-single-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .jp-single-sidebar .jp-sidebar-widget { margin-bottom: 0; }
}
@media (max-width: 900px) {
  .jp-nav { display: none; }
  .jp-burger { display: flex; }
  .jp-footer-grid { grid-template-columns: 1fr 1fr; }
  .jp-footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .jp-hero { padding: 70px 0 60px; }
  .jp-hero-title { font-size: 32px; }
  .jp-hero-search-wrap { flex-direction: column; }
  .jp-hero-field { width: 100%; }
  .jp-hero-search-btn { padding: 13px; }
  .jp-hero-stats { padding: 14px 20px; gap: 20px; }
  .jp-jobs-layout { flex-direction: column; }
  .jp-sidebar { width: 100%; position: static; }
  .jp-feat-grid { grid-template-columns: 1fr 1fr; }
  .jp-about-stats { grid-template-columns: 1fr 1fr; }
  .jp-about-feats { grid-template-columns: 1fr; }
  .jp-alert-band-inner { flex-direction: column; }
  .jp-recruiter-band { flex-direction: column; text-align: center; }
  .jp-form-page { margin-top: 20px; }
  .jp-field-2col, .jp-field-3col { grid-template-columns: 1fr; }
  .jp-single-top { flex-wrap: wrap; }
  .jp-single-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .jp-feat-grid { grid-template-columns: 1fr; }
  .jp-about-stats { grid-template-columns: 1fr; }
  .jp-hero-stats { flex-direction: column; gap: 16px; }
  .jp-hero-divider { width: 60px; height: 1px; }
  .jp-footer-grid { grid-template-columns: 1fr; }
  .jp-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .jp-recent-card { flex-wrap: wrap; }
  .jp-recent-right { flex-direction: row; width: 100%; justify-content: space-between; }
  .jp-job-card { flex-wrap: wrap; }
  .jp-job-actions { flex-direction: row; width: 100%; justify-content: space-between; padding-left: 0; padding-top: 12px; }
}
