/* ═══════════════════════════════════════════════════════════
   NEXISJOB — Complete Stylesheet
   Font: Inter | Theme: Green #3cb648 / White / Grey
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --grn:   #3cb648;
  --grnh:  #2ea03a;
  --grnl:  #4dd15a;
  --grnp:  #edfbef;
  --grna:  #f2fdf3;
  --grnb:  #c8f0cc;
  --w:     #ffffff;
  --g50:   #fafafa;
  --g100:  #f5f5f5;
  --g200:  #eeeeee;
  --g300:  #e0e0e0;
  --g400:  #bdbdbd;
  --g500:  #9e9e9e;
  --g600:  #757575;
  --g700:  #616161;
  --g800:  #1a1a2e;
  --tx:    #1a1a2e;
  --r:     8px;
  --rl:    12px;
  --sh:    0 1px 8px rgba(0,0,0,.07);
  --shl:   0 4px 24px rgba(0,0,0,.10);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter',sans-serif;
  background:var(--g100);
  color:var(--tx);
  font-size:14px;
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }
button { font-family:'Inter',sans-serif; }

/* ═══════════════════════════════════════════════════════════
   CONTAINER SYSTEM
═══════════════════════════════════════════════════════════ */
.container {
  width:100%;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  padding-left:24px;
  padding-right:24px;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
nav#main-nav {
  position:sticky;
  top:0;
  z-index:500;
  background:var(--w);
  border-bottom:2px solid var(--g200);
  box-shadow:var(--sh);
  height:62px;
}
.nav-inner {
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo {
  font-size:20px;
  font-weight:800;
  color:var(--g800);
  letter-spacing:-.5px;
  flex-shrink:0;
}
.logo em { font-style:normal; color:var(--grn); }
.nl { display:flex; align-items:center; gap:2px; }
.nl a {
  color:var(--g600);
  font-size:13px;
  font-weight:500;
  padding:6px 13px;
  border-radius:6px;
  transition:.15s;
  white-space:nowrap;
}
.nl a:hover, .nl a.active { color:var(--grn); background:var(--grna); }
.nb { display:flex; gap:10px; align-items:center; }

/* ── HAMBURGER ── */
.hamburger {
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
  width:38px;
  height:38px;
  border-radius:6px;
  transition:background .15s;
}
.hamburger:hover { background:var(--g100); }
.hamburger span {
  display:block;
  width:22px;
  height:2px;
  background:var(--g800);
  border-radius:2px;
  transition:all .25s;
}
.hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mob-menu {
  display:none;
  flex-direction:column;
  background:var(--w);
  border-bottom:2px solid var(--grn);
  box-shadow:0 4px 16px rgba(0,0,0,.08);
  position:sticky;
  top:62px;
  z-index:490;
  width:100%;
}
.mob-menu.open { display:flex; }
.mob-menu a {
  padding:14px 24px;
  font-size:14px;
  font-weight:500;
  color:var(--g700);
  border-bottom:1px solid var(--g100);
  transition:.13s;
}
.mob-menu a:hover { background:var(--grna); color:var(--grn); }
.mob-divider { height:1px; background:var(--g200); margin:4px 0; }
.mob-out { color:#ef5350 !important; }
.mob-signup {
  background:var(--grn) !important;
  color:#fff !important;
  margin:10px 24px !important;
  border-radius:8px;
  text-align:center;
  font-weight:700;
  border-bottom:none !important;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 18px;
  border-radius:var(--r);
  border:none;
  cursor:pointer;
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:13px;
  transition:.15s;
  white-space:nowrap;
}
.br  { background:var(--grn);  color:#fff; }
.br:hover  { background:var(--grnh); }
.bor { background:var(--w);    border:1.5px solid var(--grn); color:var(--grn); }
.bor:hover { background:var(--grna); }
.bo  { background:var(--w);    border:1.5px solid var(--g300); color:var(--g700); }
.bo:hover  { background:var(--g100); }
.bw  { background:var(--w);    color:var(--g800); font-weight:700; }
.bw:hover  { background:var(--g100); }
.bsm { padding:6px 14px; font-size:12px; }
.blg { padding:12px 26px; font-size:15px; }

/* ═══════════════════════════════════════════════════════════
   FLASH MESSAGES
═══════════════════════════════════════════════════════════ */
.flash {
  padding:12px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:13px;
  font-weight:500;
}
.flash button { background:none; border:none; cursor:pointer; font-size:18px; opacity:.7; }
.flash-success { background:#e8f5e9; color:#2e7d32; border-bottom:2px solid var(--grn); }
.flash-error   { background:#ffebee; color:#c62828; border-bottom:2px solid #c62828; }
.flash-warning { background:#fff8e1; color:#f57f17; border-bottom:2px solid #f57f17; }
.flash-info    { background:#e3f2fd; color:#1565c0; border-bottom:2px solid #1565c0; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (About / Jobs / Employers)
═══════════════════════════════════════════════════════════ */
.page-hero {
  position:relative;
  width:100%;
  min-height:260px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:var(--g800);
}
.page-hero-bg {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:transform 7s ease;
}
.page-hero:hover .page-hero-bg { transform:scale(1.04); }
.page-hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(10,10,30,.85) 0%,
    rgba(10,10,30,.5) 60%,
    rgba(10,10,30,.3) 100%
  );
}
.page-hero-content {
  position:relative;
  z-index:2;
  width:100%;
  padding-bottom:36px;
}
.page-hero-content .container { padding-top:52px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:4px 8px;
  margin-bottom:14px;
}
.breadcrumb a {
  font-size:12px;
  color:rgba(255,255,255,.6);
  font-weight:500;
  transition:.15s;
}
.breadcrumb a:hover { color:var(--grn); }
.breadcrumb-sep  { font-size:12px; color:rgba(255,255,255,.3); }
.breadcrumb-cur  { font-size:12px; color:var(--grn); font-weight:600; }

/* ── HERO TEXT ── */
.page-hero h1 {
  font-size:clamp(24px,4vw,44px);
  font-weight:800;
  color:#fff;
  line-height:1.1;
  letter-spacing:-1px;
  margin-bottom:10px;
}
.page-hero h1 em { font-style:normal; color:var(--grn); }
.page-hero p {
  font-size:14px;
  color:rgba(255,255,255,.72);
  max-width:560px;
  line-height:1.7;
}
.page-hero-stats {
  display:flex;
  gap:28px;
  margin-top:20px;
  flex-wrap:wrap;
}
.ph-stat strong {
  display:block;
  font-size:20px;
  font-weight:800;
  color:#fff;
  line-height:1;
}
.ph-stat span { font-size:11px; color:rgba(255,255,255,.5); margin-top:3px; display:block; }

/* ── HERO SEARCH BAR ── */
.hero-search {
  margin-top:22px;
  max-width:640px;
  display:flex;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.22);
}
.hs-field {
  flex:1;
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 14px;
}
.hs-field + .hs-field { border-left:1px solid var(--g200); }
.hs-field svg { width:15px; height:15px; color:var(--g400); flex-shrink:0; }
.hs-field input, .hs-field select {
  border:none;
  background:transparent;
  font-family:'Inter',sans-serif;
  font-size:13px;
  color:var(--g800);
  width:100%;
  outline:none;
}
.hs-field input::placeholder { color:var(--g400); }
.hs-submit {
  background:var(--grn);
  color:#fff;
  border:none;
  padding:0 22px;
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:.15s;
  white-space:nowrap;
  flex-shrink:0;
}
.hs-submit:hover { background:var(--grnh); }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — HERO SLIDER
═══════════════════════════════════════════════════════════ */
.hero-slider {
  position:relative;
  width:100%;
  height:480px;
  overflow:hidden;
  background:var(--g800);
}
.hs-slide {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .7s ease;
}
.hs-slide.active { opacity:1; }
.hs-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to right,rgba(10,10,20,.78) 40%,rgba(10,10,20,.3));
}
.hs-content {
  position:absolute;
  top:50%;
  left:0;
  right:0;
  transform:translateY(-60%);
  z-index:2;
}
.hs-content .container { }
.hs-content h1 {
  font-size:clamp(28px,4vw,52px);
  font-weight:800;
  color:#fff;
  line-height:1.1;
  letter-spacing:-1px;
  margin-bottom:14px;
}
.hs-content h1 span { color:var(--grn); }
.hs-content p { font-size:15px; color:rgba(255,255,255,.75); font-weight:500; }

/* Arrows */
.hs-arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(4px);
  border:none;
  color:#fff;
  font-size:30px;
  width:46px;
  height:46px;
  border-radius:50%;
  cursor:pointer;
  z-index:5;
  transition:.2s;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.hs-arrow:hover { background:rgba(60,182,72,.8); }
.hs-prev { left:20px; }
.hs-next { right:20px; }

/* Dots */
.hs-dots {
  position:absolute;
  bottom:78px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:5;
}
.hs-dot {
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.4);
  border:none;
  cursor:pointer;
  transition:.25s;
  padding:0;
}
.hs-dot.active { background:var(--grn); width:28px; border-radius:5px; }

/* Feature Bar */
.hs-feature-bar {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:var(--grn);
  z-index:5;
  height:66px;
}
.hs-feature-bar .container {
  height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.hs-feat {
  display:flex;
  align-items:center;
  gap:12px;
  flex:1;
}
.hs-feat svg { width:28px; height:28px; flex-shrink:0; opacity:.9; }
.hs-feat strong { display:block; font-size:13px; font-weight:700; color:#fff; }
.hs-feat span   { font-size:11px; color:rgba(255,255,255,.75); }
.hs-feat-div { width:1px; height:36px; background:rgba(255,255,255,.3); }

/* ── HOMEPAGE SEARCH ── */
.home-search-wrap { background:#fff; border-bottom:1px solid var(--g200); }
.home-search-wrap .container { padding-top:20px; padding-bottom:20px; }
.home-search-form {
  display:flex;
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  max-width:820px;
  margin:0 auto;
  width:100%;
}
.hsf-field {
  flex:1;
  display:flex;
  align-items:center;
  gap:8px;
  padding:11px 16px;
}
.hsf-field + .hsf-field { border-left:1px solid var(--g200); }
.hsf-field svg { width:15px; height:15px; color:var(--g500); flex-shrink:0; }
.hsf-field input, .hsf-field select {
  border:none;
  background:transparent;
  font-family:'Inter',sans-serif;
  font-size:13px;
  color:var(--g800);
  width:100%;
  outline:none;
}
.hsf-field input::placeholder { color:var(--g400); }
.hsf-btn {
  background:var(--grn);
  color:#fff;
  border:none;
  padding:0 28px;
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:7px;
  transition:.15s;
  white-space:nowrap;
  flex-shrink:0;
}
.hsf-btn:hover { background:var(--grnh); }
.hsf-btn svg { width:14px; height:14px; }

/* ── STATS RIBBON ── */
.stats-ribbon { background:var(--g800); }
.stats-ribbon .container {
  padding-top:18px;
  padding-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  flex-wrap:wrap;
}
.sr-item { text-align:center; flex:1; min-width:120px; padding:8px 0; }
.sr-item strong { display:block; font-size:22px; font-weight:800; color:#fff; }
.sr-item span   { font-size:11px; color:rgba(255,255,255,.45); text-transform:uppercase; letter-spacing:.5px; }
.sr-div { width:1px; height:32px; background:rgba(255,255,255,.12); margin:0 12px; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — JOBS SECTION
═══════════════════════════════════════════════════════════ */
.jobs-section { background:var(--g100); width:100%; }
.jobs-section .container { padding-top:44px; padding-bottom:48px; width:100%; }
.js-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:26px;
  flex-wrap:wrap;
  gap:12px;
  width:100%;
}
.js-header h2 { font-size:clamp(20px,2.5vw,28px); font-weight:800; color:var(--g800); }
.js-filters { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.js-sel {
  padding:8px 14px;
  border:1.5px solid var(--g200);
  border-radius:8px;
  font-family:'Inter',sans-serif;
  font-size:12px;
  font-weight:600;
  color:var(--g700);
  background:#fff;
  outline:none;
  cursor:pointer;
  transition:.15s;
}
.js-sel:focus { border-color:var(--grn); }

/* ── JOB CARDS ── */
.jc-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  width:100%;
}
.jc {
  background:#fff;
  border-radius:var(--rl);
  border:1.5px solid var(--g200);
  overflow:hidden;
  transition:all .2s;
  width:100%;
  min-width:0;
}
.jc:hover {
  box-shadow:0 6px 28px rgba(0,0,0,.1);
  transform:translateY(-3px);
  border-color:var(--grnb);
}
.jc-img-wrap {
  position:relative;
  height:150px;
  background:linear-gradient(135deg,var(--grnp) 0%,var(--grnb) 100%);
  overflow:hidden;
  width:100%;
}
.jc-img-bg {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.jc-logo-big {
  font-size:46px;
  font-weight:800;
  color:var(--grn);
  opacity:.15;
  font-family:'Inter',sans-serif;
  letter-spacing:-2px;
}
.jc-price {
  position:absolute;
  top:12px;
  left:12px;
  background:#fff;
  color:var(--g800);
  font-size:12px;
  font-weight:700;
  padding:4px 10px;
  border-radius:6px;
  box-shadow:0 2px 8px rgba(0,0,0,.1);
  z-index:2;
}
.jc-heart {
  position:absolute;
  top:10px;
  right:10px;
  background:#fff;
  border:none;
  border-radius:50%;
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,.1);
  z-index:2;
  transition:.2s;
}
.jc-heart:hover { transform:scale(1.15); }
.jc-heart.liked svg { fill:#ef5350; stroke:#ef5350; }
.jc-heart svg { width:16px; height:16px; transition:.2s; }
.jc-body { padding:16px; }
.jc-title { margin:0 0 4px; }
.jc-title a {
  font-size:14px;
  font-weight:700;
  color:var(--g800);
  transition:.15s;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.jc-title a:hover { color:var(--grn); }
.jc-company { font-size:12px; color:var(--g500); margin:0 0 9px; }
.jc-meta { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:10px; }
.jc-tag {
  font-size:10px;
  font-weight:600;
  padding:3px 8px;
  border-radius:20px;
  background:var(--grnp);
  color:var(--grnh);
}
.jc-tag.gray { background:var(--g100); color:var(--g600); }
.jc-stars { display:flex; align-items:center; gap:5px; }
.jc-stars > span:first-child { color:#f59e0b; font-size:13px; letter-spacing:-1px; }
.jc-rating { font-size:12px; font-weight:700; color:var(--g800); }
.jc-rcount { font-size:11px; color:var(--g500); }

/* ── LOAD MORE ── */
.load-more-wrap { text-align:center; margin-top:36px; }
.load-more-btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  border:none;
  font-family:'Inter',sans-serif;
  font-size:14px;
  font-weight:600;
  color:var(--grn);
  cursor:pointer;
  padding:10px 20px;
  border-radius:8px;
  transition:.15s;
}
.load-more-btn:hover { background:var(--grna); }
.lm-dots { display:inline-flex; gap:4px; align-items:center; }
.lm-dots span {
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--grn);
  animation:lmBounce 1.2s infinite;
}
.lm-dots span:nth-child(2) { animation-delay:.2s; }
.lm-dots span:nth-child(3) { animation-delay:.4s; }
@keyframes lmBounce {
  0%,80%,100% { transform:scale(.6); opacity:.4; }
  40%         { transform:scale(1);  opacity:1;  }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — CATEGORIES STRIP
═══════════════════════════════════════════════════════════ */
.cat-section { background:#fff; overflow:hidden; width:100%; }
.cat-section .container { padding-top:40px; padding-bottom:40px; overflow:hidden; }
.cat-scroll {
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  width:100%;
  overflow:hidden;
}
.cat-track {
  display:flex;
  gap:12px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  flex:1;
  padding:4px 2px 8px;
  /* Prevent track from pushing outside container */
  min-width:0;
  width:0;
}
.cat-track::-webkit-scrollbar { display:none; }
.cat-pill {
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:14px 16px;
  min-width:100px;
  max-width:130px;
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:var(--rl);
  transition:.18s;
  flex-shrink:0;
  text-decoration:none;
}
.cat-pill:hover {
  border-color:var(--grn);
  background:var(--grna);
  transform:translateY(-2px);
  box-shadow:0 4px 16px rgba(60,182,72,.12);
}
.cat-pill-icon  { font-size:22px; margin-bottom:6px; }
.cat-pill-name  { font-size:12px; font-weight:700; color:var(--g800); text-align:center; margin-bottom:3px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:100%; }
.cat-pill-count { font-size:10px; color:var(--g500); }
.cat-scroll-btn {
  width:34px;
  height:34px;
  min-width:34px;
  border-radius:50%;
  background:#fff;
  border:1.5px solid var(--g200);
  font-size:18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--g600);
  transition:.15s;
  flex-shrink:0;
  line-height:1;
  z-index:2;
}
.cat-scroll-btn:hover { background:var(--grn); color:#fff; border-color:var(--grn); }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how-section { background:var(--g800); }
.how-section .container { padding-top:36px; padding-bottom:36px; }
.how-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px,1fr));
  gap:22px;
  max-width:900px;
  margin:24px auto 0;
}
.how-card { text-align:center; padding:20px 16px; }
.how-num {
  width:48px;
  height:48px;
  background:var(--grn);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
  color:#fff;
  margin:0 auto 14px;
}
.how-card h4 { color:#fff; font-size:15px; font-weight:700; margin-bottom:8px; }
.how-card p  { color:rgba(255,255,255,.45); font-size:12px; line-height:1.7; }
.how-section .stitle { color:#fff; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-section { background:var(--g100); }
.cta-section .container { padding-top:44px; padding-bottom:44px; }
.cta-inner {
  background:var(--grn);
  border-radius:14px;
  padding:48px 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.cta-inner h2 { color:#fff; font-size:clamp(20px,2.5vw,28px); font-weight:800; margin-bottom:6px; }
.cta-inner p  { color:rgba(255,255,255,.8); font-size:13px; }

/* ═══════════════════════════════════════════════════════════
   LABELS & SECTION TITLES
═══════════════════════════════════════════════════════════ */
.slabel {
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:var(--grn);
  margin-bottom:7px;
}
.stitle {
  font-size:clamp(20px,3vw,32px);
  font-weight:800;
  color:var(--g800);
  letter-spacing:-.5px;
  margin-bottom:7px;
}
.ssub { color:var(--g600); font-size:13px; max-width:500px; margin-bottom:34px; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE SECTIONS
═══════════════════════════════════════════════════════════ */
.about-why-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  align-items:center;
}
.about-values-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(220px,1fr));
  gap:16px;
  margin-top:28px;
}
.about-val-card {
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:var(--rl);
  padding:24px;
  transition:.18s;
}
.about-val-card:hover {
  border-color:var(--grn);
  transform:translateY(-3px);
  box-shadow:0 6px 24px rgba(60,182,72,.1);
}
.about-team-grid {
  display:grid;
  grid-template-columns:repeat(2, 280px);
  gap:24px;
  margin-top:28px;
  justify-content:start;
}
.about-team-card {
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:var(--rl);
  padding:0;
  text-align:center;
  transition:.18s;
  overflow:hidden;
  width:280px;
}
.about-team-card:hover {
  border-color:var(--grn);
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(60,182,72,.15);
}
.about-team-av {
  width:64px;
  height:64px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--grnp), var(--grn));
  margin:0 auto 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:800;
  color:#fff;
}
.about-team-photo {
  width:100%;
  height:300px;
  object-fit:cover;
  object-position:top center;
  display:block;
}
.about-team-info {
  padding:16px;
}
.about-img-box {
  position:relative;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,.13);
}
.about-img-box img {
  width:100%;
  height:300px;
  object-fit:cover;
}
.about-img-overlay {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(to top, rgba(26,26,46,.92), transparent);
  padding:22px;
}

/* ═══════════════════════════════════════════════════════════
   EMPLOYERS PAGE
═══════════════════════════════════════════════════════════ */
.emp-feat-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(280px,1fr));
  gap:18px;
  margin-top:28px;
}
.emp-feat-card {
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:var(--rl);
  padding:24px;
  transition:.18s;
}
.emp-feat-card:hover {
  border-color:var(--grn);
  transform:translateY(-3px);
  box-shadow:0 6px 24px rgba(60,182,72,.1);
}
.emp-feat-icon {
  width:46px;
  height:46px;
  background:var(--grnp);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:14px;
}
.emp-steps { display:flex; flex-direction:column; gap:18px; }
.emp-step  { display:flex; gap:14px; align-items:flex-start; }
.emp-step-num {
  width:36px;
  height:36px;
  background:var(--grn);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#fff;
  font-size:14px;
  flex-shrink:0;
}
.emp-price-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:18px;
  max-width:860px;
  margin:0 auto;
}
.emp-plan {
  background:rgba(255,255,255,.05);
  border:1.5px solid rgba(255,255,255,.1);
  border-radius:14px;
  padding:30px;
}
.emp-plan.popular {
  background:var(--grn);
  border-color:var(--grnl);
  position:relative;
}
.emp-plan-badge {
  position:absolute;
  top:-13px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  color:var(--grnh);
  font-size:10px;
  font-weight:800;
  padding:4px 14px;
  border-radius:20px;
  letter-spacing:.5px;
  white-space:nowrap;
}
.emp-plan h3  { color:#fff; font-size:18px; font-weight:700; margin-bottom:10px; }
.emp-plan .price { font-size:34px; font-weight:800; color:#fff; margin-bottom:6px; }
.emp-plan p   { color:rgba(255,255,255,.5); font-size:13px; margin-bottom:20px; }
.emp-plan.popular p { color:rgba(255,255,255,.8); }
.emp-plan ul  { color:rgba(255,255,255,.7); font-size:13px; line-height:2.2; margin-bottom:22px; padding:0; }
.emp-plan.popular ul { color:rgba(255,255,255,.95); }
.emp-plan-btn {
  display:block;
  text-align:center;
  padding:10px;
  border-radius:8px;
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  transition:.15s;
  background:transparent;
  border:1.5px solid rgba(255,255,255,.3);
  color:#fff;
}
.emp-plan-btn:hover  { background:rgba(255,255,255,.1); }
.emp-plan.popular .emp-plan-btn { background:#fff; color:var(--grnh); border:none; }
.emp-plan.popular .emp-plan-btn:hover { background:var(--grnp); }

/* ═══════════════════════════════════════════════════════════
   FIND JOBS PAGE
═══════════════════════════════════════════════════════════ */
.fj-wrap {
  max-width:1200px;
  margin:0 auto;
  padding:28px 24px;
  display:grid;
  grid-template-columns:260px 1fr;
  gap:24px;
  box-sizing:border-box;
}
.fj-panel {
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:var(--rl);
  padding:20px;
  height:fit-content;
  position:sticky;
  top:76px;
}
.fj-panel h4 { font-size:14px; font-weight:700; color:var(--g800); margin-bottom:16px; }
.fj-flabel {
  display:block;
  font-size:10px;
  font-weight:700;
  color:var(--g500);
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.fj-radio {
  display:flex;
  align-items:center;
  gap:7px;
  font-size:13px;
  margin-bottom:7px;
  cursor:pointer;
}
.fj-radio input { accent-color:var(--grn); }
.fsel {
  width:100%;
  padding:8px 11px;
  border:1.5px solid var(--g200);
  border-radius:var(--r);
  font-family:'Inter',sans-serif;
  font-size:12px;
  color:var(--tx);
  background:#fff;
  outline:none;
}
.fsel:focus { border-color:var(--grn); }

/* ── JOB LIST CARD ── */
.jlc {
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:var(--rl);
  padding:18px 20px;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:16px;
  transition:.18s;
}
.jlc:hover { border-color:var(--grn); box-shadow:0 4px 20px rgba(60,182,72,.1); }
.jlc-logo {
  width:50px;
  height:50px;
  background:linear-gradient(135deg,var(--grnp),var(--grnb));
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:14px;
  color:var(--grnh);
  flex-shrink:0;
}
.jlc-info { flex:1; min-width:0; }
.jlc-info h4 { font-size:14px; font-weight:700; margin:0 0 3px; }
.jlc-info h4 a { color:var(--g800); transition:.15s; }
.jlc-info h4 a:hover { color:var(--grn); }
.jlc-info span { font-size:12px; color:var(--g500); }
.jlc-tags { display:flex; flex-wrap:wrap; gap:5px; margin-top:7px; }
.jlc-tag {
  font-size:10px;
  font-weight:600;
  padding:3px 8px;
  border-radius:20px;
  background:var(--grnp);
  color:var(--grnh);
}
.jlc-tag.gray { background:var(--g100); color:var(--g600); }
.jlc-right { text-align:right; flex-shrink:0; }
.jlc-right .sal { font-size:15px; font-weight:800; color:var(--g800); }
.jlc-right .dt  { font-size:11px; color:var(--g400); margin:3px 0 10px; }

/* ── PAGINATION ── */
.pgn { display:flex; gap:6px; justify-content:center; margin-top:24px; flex-wrap:wrap; }
.pgn a, .pgn span {
  padding:8px 14px;
  border:1.5px solid var(--g200);
  border-radius:8px;
  font-size:12px;
  font-weight:600;
  background:#fff;
  color:var(--g700);
  text-decoration:none;
  transition:.15s;
}
.pgn a:hover { border-color:var(--grn); color:var(--grn); }
.pgn .cur { background:var(--grn); color:#fff; border-color:var(--grn); }

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════════ */
.authpg {
  min-height:calc(100vh - 62px);
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--g100);
  padding:40px 24px;
}
.acard {
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:var(--rl);
  padding:40px;
  width:100%;
  max-width:430px;
  box-shadow:var(--shl);
}
.acard h2 { font-size:22px; font-weight:800; color:var(--g800); margin-bottom:4px; }
.acard > p { color:var(--g500); font-size:12px; margin-bottom:24px; }
.fg { margin-bottom:14px; }
.fg label { display:block; font-size:11px; font-weight:700; color:var(--g700); margin-bottom:5px; }
.fg input, .fg select, .fg textarea {
  width:100%;
  padding:9px 12px;
  border:1.5px solid var(--g200);
  border-radius:var(--r);
  font-family:'Inter',sans-serif;
  font-size:13px;
  color:var(--tx);
  background:#fff;
  outline:none;
  transition:.15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--grn); }
.fg textarea { resize:vertical; }
.frow { display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.alink { text-align:center; font-size:12px; margin-top:16px; color:var(--g600); }
.alink a { color:var(--grn); font-weight:700; }

/* ═══════════════════════════════════════════════════════════
   JOB DETAIL
═══════════════════════════════════════════════════════════ */
.job-detail { max-width:900px; margin:28px auto; padding:0 24px; }
.jd-header {
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:var(--rl);
  padding:28px;
  margin-bottom:16px;
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.jd-logo {
  width:60px;
  height:60px;
  background:var(--grnp);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:16px;
  color:var(--grnh);
  flex-shrink:0;
}
.jd-info h1 { font-size:22px; font-weight:800; color:var(--g800); margin-bottom:4px; }
.jd-info p  { font-size:13px; color:var(--g500); }
.jd-meta { display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.jd-m {
  background:var(--g50);
  border:1px solid var(--g200);
  border-radius:6px;
  padding:5px 12px;
  font-size:12px;
  color:var(--g700);
}
.jd-body {
  background:#fff;
  border:1.5px solid var(--g200);
  border-radius:var(--rl);
  padding:24px;
  margin-bottom:16px;
}
.jd-body h3 { font-size:15px; font-weight:700; color:var(--g800); margin-bottom:12px; }
.jd-body p, .jd-body li { font-size:13px; color:var(--g600); line-height:1.75; }
.jd-body ul { padding-left:18px; list-style:disc; }

/* ═══════════════════════════════════════════════════════════
   APPLY MODAL
═══════════════════════════════════════════════════════════ */
.moverlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:999;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.moverlay.open { display:flex; }
.modal {
  background:#fff;
  border-radius:var(--rl);
  width:100%;
  max-width:500px;
  max-height:90vh;
  overflow-y:auto;
  box-shadow:0 16px 60px rgba(0,0,0,.18);
}
.mhd {
  padding:20px 24px 16px;
  border-bottom:1px solid var(--g200);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
}
.mhd h3 { font-size:16px; font-weight:800; color:var(--g800); }
.mclose { background:none; border:none; cursor:pointer; font-size:20px; color:var(--g400); }
.mclose:hover { color:var(--g800); }
.mbody { padding:20px 24px; }
.mfoot { padding:14px 24px; border-top:1px solid var(--g200); display:flex; gap:8px; justify-content:flex-end; }
.sdots { display:flex; align-items:center; gap:8px; margin-bottom:18px; }
.sdot {
  width:24px;
  height:24px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-weight:700;
  background:var(--g200);
  color:var(--g500);
}
.sdot.done   { background:var(--grn);  color:#fff; }
.sdot.active { background:var(--g800); color:#fff; }
.sline { flex:1; height:2px; background:var(--g200); }
.sline.done  { background:var(--grn); }
.uzone {
  border:2px dashed var(--g300);
  border-radius:var(--rl);
  padding:28px;
  text-align:center;
  cursor:pointer;
  transition:.15s;
}
.uzone:hover { border-color:var(--grn); background:var(--grna); }
.pinf {
  background:var(--grna);
  border:1.5px solid var(--grnb);
  border-radius:var(--r);
  padding:14px;
  margin-bottom:16px;
}
.pamt { font-size:24px; font-weight:800; color:var(--grnh); }
.pmsg { text-align:center; padding:16px 0; }
.spin {
  width:38px;
  height:38px;
  border:3px solid var(--g200);
  border-top-color:var(--grn);
  border-radius:50%;
  margin:0 auto 11px;
  animation:sp .85s linear infinite;
}
@keyframes sp { to { transform:rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════
   BADGES
═══════════════════════════════════════════════════════════ */
.badge { font-size:10px; font-weight:700; padding:3px 9px; border-radius:20px; white-space:nowrap; }
.bp  { background:#fff8e1; color:#f57f17; }
.ba  { background:#e8f5e9; color:#2e7d32; }
.br2 { background:#fce4ec; color:#c62828; }
.bv  { background:#e3f2fd; color:#1565c0; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer { background:var(--g800); border-top:3px solid var(--grn); }
footer .container { padding-top:44px; padding-bottom:26px; }
.fgrid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:36px;
  margin-bottom:32px;
}
.fbrand p { color:rgba(255,255,255,.4); font-size:12px; margin-top:10px; max-width:240px; }
.fcol h5 {
  color:#fff;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:12px;
}
.fcol a {
  display:block;
  color:rgba(255,255,255,.42);
  font-size:12px;
  margin-bottom:7px;
  transition:.15s;
}
.fcol a:hover { color:var(--grnl); }
.fbot {
  border-top:1px solid rgba(255,255,255,.07);
  padding-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
}
.fbot p { color:rgba(255,255,255,.28); font-size:11px; }

/* ═══════════════════════════════════════════════════════════
   DASHBOARD — User
═══════════════════════════════════════════════════════════ */
.d-wrap  { display:grid; grid-template-columns:220px 1fr; min-height:100vh; }
.d-side  { background:#fff; border-right:1.5px solid #eee; display:flex; flex-direction:column; width:220px; min-height:100vh; }
.d-logo  { padding:18px 20px; border-bottom:1.5px solid #eee; font-family:'Inter',sans-serif; font-size:18px; font-weight:800; color:#1a1a2e; letter-spacing:-.4px; }
.d-logo em { font-style:normal; color:#3cb648; }
.d-user  { padding:14px 20px; border-bottom:1px solid #eee; }
.d-av    { width:42px; height:42px; border-radius:50%; background:#3cb648; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:800; color:#fff; margin-bottom:8px; }
.d-user h4 { font-size:13px; font-weight:700; color:#1a1a2e; margin:0; }
.d-user span { font-size:11px; color:#9e9e9e; }
.d-menu  { display:flex; flex-direction:column; padding:10px 0; flex:1; }
.d-menu a {
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  width:100%;
  padding:11px 20px;
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:500;
  color:#757575;
  text-decoration:none;
  border-left:3px solid transparent;
  border-top:none !important;
  border-right:none !important;
  border-bottom:none !important;
  background:transparent;
  cursor:pointer;
  transition:all .15s;
  gap:10px;
}
.d-menu a:hover, .d-menu a.act { color:#3cb648; background:#f2fdf3; border-left-color:#3cb648; }
.d-menu a.act { font-weight:600; }
.d-menu a.out { color:#ef9a9a !important; }
.d-menu a.out:hover { color:#e53935 !important; background:#fff5f5 !important; border-left-color:#e53935 !important; }
.d-menu svg { width:16px; height:16px; flex-shrink:0; min-width:16px; }
.d-main    { display:flex; flex-direction:column; overflow:hidden; flex:1; }
.d-top     { background:#fff; border-bottom:1.5px solid #eee; padding:0 24px; height:54px; display:flex; align-items:center; justify-content:space-between; position:sticky; top:0; z-index:50; }
.d-top h3  { font-size:15px; font-weight:700; color:#1a1a2e; margin:0; }
.d-content { padding:24px; background:#f5f5f5; flex:1; overflow-y:auto; }
.d-hamburger {
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
  flex-direction:column;
  gap:5px;
  align-items:center;
  justify-content:center;
}
.d-hamburger span { display:block; width:20px; height:2px; background:#1a1a2e; border-radius:2px; transition:all .25s; }
.d-logo-row { display:flex; align-items:center; justify-content:space-between; padding:14px 20px; border-bottom:1.5px solid #eee; width:100%; }
.d-logo-inner { font-family:'Inter',sans-serif; font-size:18px; font-weight:800; color:#1a1a2e; }
.d-logo-inner em { font-style:normal; color:#3cb648; }

/* ═══════════════════════════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════════════════════════ */
.adm-wrap { display:grid; grid-template-columns:210px 1fr; min-height:100vh; }
.adm-side { background:#1a1a2e; border-right:2px solid rgba(60,182,72,.25); display:flex; flex-direction:column; width:210px; min-height:100vh; }
.adm-logo { padding:18px 18px 14px; border-bottom:1px solid rgba(255,255,255,.08); font-family:'Inter',sans-serif; font-size:16px; font-weight:800; color:#fff; letter-spacing:-.3px; }
.adm-logo em { font-style:normal; color:#3cb648; }
.adm-badge { display:inline-block; background:#3cb648; color:#fff; font-size:9px; font-weight:700; padding:2px 8px; border-radius:20px; margin-left:7px; vertical-align:middle; letter-spacing:.3px; }
.adm-user { padding:12px 18px; border-bottom:1px solid rgba(255,255,255,.07); }
.adm-av   { width:38px; height:38px; border-radius:50%; background:#3cb648; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; color:#fff; margin-bottom:7px; }
.adm-user h4 { font-size:12px; font-weight:700; color:#fff; margin:0; }
.adm-user span { font-size:10px; color:rgba(255,255,255,.4); }
.adm-menu { display:flex; flex-direction:column; padding:8px 0; flex:1; }
.adm-menu a {
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  width:100%;
  padding:10px 18px;
  font-family:'Inter',sans-serif;
  font-size:12px;
  font-weight:500;
  color:rgba(255,255,255,.55);
  text-decoration:none;
  border-left:3px solid transparent;
  border-top:none !important;
  border-right:none !important;
  border-bottom:none !important;
  background:transparent;
  cursor:pointer;
  transition:all .13s;
  gap:9px;
  position:relative;
}
.adm-menu a:hover, .adm-menu a.act { color:#fff; background:rgba(60,182,72,.18); border-left-color:#3cb648; }
.adm-menu a.act { font-weight:600; }
.adm-menu svg { width:15px; height:15px; flex-shrink:0; min-width:15px; }
.adm-nbadge { position:absolute; right:12px; background:#3cb648; color:#fff; font-size:9px; font-weight:700; padding:1px 7px; border-radius:20px; }
.adm-foot { padding:12px 18px; border-top:1px solid rgba(255,255,255,.07); }
.adm-main { display:flex; flex-direction:column; overflow:hidden; flex:1; }
.adm-top  { background:#fff; border-bottom:1.5px solid #eee; padding:0 24px; height:52px; display:flex; align-items:center; justify-content:space-between; position:sticky; top:0; z-index:50; }
.adm-top h3 { font-size:14px; font-weight:700; color:#1a1a2e; margin:0; }
.adm-content { padding:22px; background:#f5f5f5; flex:1; overflow-y:auto; }
.adm-hamburger { display:none; background:none; border:none; cursor:pointer; padding:8px; flex-direction:column; gap:5px; align-items:center; justify-content:center; }
.adm-hamburger span { display:block; width:20px; height:2px; background:#fff; border-radius:2px; }
.adm-logo-row { display:flex; align-items:center; justify-content:space-between; padding:14px 18px; border-bottom:1px solid rgba(255,255,255,.08); width:100%; }
.adm-logo-inner { font-family:'Inter',sans-serif; font-size:16px; font-weight:800; color:#fff; }
.adm-logo-inner em { font-style:normal; color:#3cb648; }
.adm-user-mob { display:flex; align-items:center; gap:10px; padding:10px 18px; }

/* ── ADMIN TABLES & CARDS ── */
.admin-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:13px; margin-bottom:20px; }
.asc { background:#fff; border:1.5px solid #eee; border-radius:12px; padding:16px 18px; position:relative; overflow:hidden; }
.asc::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:#eee; }
.asc.grn::after { background:#3cb648; }
.asc span { font-size:10px; color:#9e9e9e; display:block; margin-bottom:4px; text-transform:uppercase; letter-spacing:.4px; }
.asc strong { font-size:24px; font-weight:800; color:#1a1a2e; }
.asc .chg { font-size:10px; color:#2e7d32; font-weight:600; margin-top:3px; }
.admin-card { background:#fff; border:1.5px solid #eee; border-radius:12px; overflow:hidden; margin-bottom:16px; }
.admin-card-hd { padding:14px 18px; border-bottom:1px solid #eee; display:flex; align-items:center; justify-content:space-between; }
.admin-card-hd h4 { font-size:13px; font-weight:700; color:#1a1a2e; }
.tbl { width:100%; border-collapse:collapse; }
.tbl th { background:#fafafa; font-size:10px; font-weight:700; color:#757575; text-transform:uppercase; letter-spacing:.4px; padding:10px 14px; text-align:left; border-bottom:1px solid #eee; white-space:nowrap; }
.tbl td { padding:11px 14px; border-bottom:1px solid #f5f5f5; font-size:12px; color:#616161; }
.tbl tr:last-child td { border-bottom:none; }
.tbl tr:hover td { background:#fafafa; }
.tbl-wrap { overflow-x:auto; }
.tab-row { display:flex; gap:2px; border-bottom:2px solid #eee; padding:0 18px; overflow-x:auto; }
.tab-btn { padding:10px 16px; font-size:11px; font-weight:500; border:none; background:none; cursor:pointer; color:#9e9e9e; border-bottom:2px solid transparent; margin-bottom:-2px; font-family:'Inter',sans-serif; transition:.13s; white-space:nowrap; }
.tab-btn.active { color:#3cb648; border-bottom-color:#3cb648; font-weight:700; }
.search-in { padding:7px 12px; border:1.5px solid #eee; border-radius:8px; font-family:'Inter',sans-serif; font-size:12px; outline:none; width:200px; }
.search-in:focus { border-color:#3cb648; }
.bap { background:#e8f5e9; color:#2e7d32; font-size:11px; padding:5px 11px; border-radius:6px; border:none; cursor:pointer; font-family:'Inter',sans-serif; font-weight:600; transition:.13s; }
.bap:hover { background:#3cb648; color:#fff; }
.brj { background:#fce4ec; color:#c62828; font-size:11px; padding:5px 11px; border-radius:6px; border:none; cursor:pointer; font-family:'Inter',sans-serif; font-weight:600; transition:.13s; }
.brj:hover { background:#c62828; color:#fff; }
.bed { background:#f5f5f5; color:#616161; font-size:11px; padding:5px 11px; border-radius:6px; border:none; cursor:pointer; font-family:'Inter',sans-serif; font-weight:600; transition:.13s; }
.bed:hover { background:#e0e0e0; }

/* ── ADMIN MODAL ── */
.mov { display:none; position:fixed; inset:0; background:rgba(0,0,0,.4); z-index:999; align-items:center; justify-content:center; padding:20px; }
.mov.open { display:flex; }
.mdl { background:#fff; border-radius:12px; width:100%; max-width:480px; max-height:90vh; overflow-y:auto; box-shadow:0 12px 50px rgba(0,0,0,.16); }
.mhd2 { padding:18px 22px 14px; border-bottom:1px solid #eee; display:flex; justify-content:space-between; align-items:center; }
.mhd2 h3 { font-size:14px; font-weight:800; color:#1a1a2e; }
.mc { background:none; border:none; cursor:pointer; font-size:18px; color:#9e9e9e; }
.mc:hover { color:#1a1a2e; }
.mbdy2 { padding:18px 22px; }
.mft { padding:13px 22px; border-top:1px solid #eee; display:flex; gap:8px; justify-content:flex-end; }

/* ═══════════════════════════════════════════════════════════
   STATS (dashboard)
═══════════════════════════════════════════════════════════ */
.stats { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:20px; }
.grid2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — COMPLETE
═══════════════════════════════════════════════════════════ */
@media (max-width:1024px) {
  .fgrid { grid-template-columns:1fr 1fr; }
  .admin-stats { grid-template-columns:1fr 1fr; }
  .jc-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
}

@media (max-width:900px) {
  .fj-wrap { grid-template-columns:1fr !important; }
  .fj-panel { position:static; }
  .about-why-grid { grid-template-columns:1fr; }
  .grid2 { grid-template-columns:1fr; }
}

@media (max-width:768px) {
  /* NAV */
  .nl, #nav-auth { display:none !important; }
  .hamburger { display:flex !important; }

  /* PAGE HERO */
  .page-hero { min-height:200px; }
  .page-hero h1 { font-size:22px; }
  .page-hero p { font-size:13px; }
  .page-hero-stats { gap:16px; }
  .ph-stat strong { font-size:16px; }
  .hero-search { flex-direction:column; border-radius:10px; }
  .hs-field + .hs-field { border-left:none; border-top:1px solid var(--g200); }
  .hs-submit { border-radius:0 0 10px 10px; padding:12px; justify-content:center; }

  /* SLIDER */
  .hero-slider { height:320px; }
  .hs-content h1 { font-size:22px; }
  .hs-feature-bar .container { flex-direction:column; height:auto !important; padding-top:12px; padding-bottom:12px; gap:12px; }
  .hs-feat { justify-content:center; }
  .hs-feat-div { display:none; }
  .hs-dots { bottom:auto; top:auto; bottom:4px; }
  .hs-arrow { display:none; }

  /* SEARCH */
  .home-search-form { flex-direction:column; }
  .hsf-field + .hsf-field { border-left:none; border-top:1px solid var(--g200); }
  .hsf-btn { width:100%; justify-content:center; padding:12px; border-radius:0 0 10px 10px; }

  /* STATS */
  .stats-ribbon .container { flex-wrap:wrap; gap:4px; }
  .sr-div { display:none; }
  .sr-item { min-width:40%; }

  /* CATEGORIES - mobile fix */
  .cat-section { overflow:hidden; }
  .cat-section .container { overflow:hidden; padding-left:14px; padding-right:14px; }
  .cat-scroll { gap:6px; overflow:hidden; }
  .cat-track { gap:8px; padding:4px 0 8px; }
  .cat-pill { min-width:88px; padding:12px 10px; }
  .cat-pill-name { font-size:11px; }
  .cat-scroll-btn { width:28px; height:28px; min-width:28px; font-size:16px; }

  /* GRIDS */
  .jc-grid { grid-template-columns:1fr 1fr; gap:14px; }
  .how-grid { grid-template-columns:1fr 1fr; }
  .about-values-grid { grid-template-columns:1fr 1fr; }
  .emp-feat-grid { grid-template-columns:1fr; }
  .emp-price-grid { grid-template-columns:1fr; }
  .fgrid { grid-template-columns:1fr; }
  .stats { grid-template-columns:1fr 1fr; }
  .admin-stats { grid-template-columns:1fr 1fr; }
  .frow { grid-template-columns:1fr; }

  /* CTA */
  .cta-inner { padding:28px 20px; flex-direction:column; text-align:center; }

  /* FOOTER */
  .fbot { flex-direction:column; text-align:center; }

  /* CONTAINER */
  .container { padding-left:16px; padding-right:16px; }
  .fj-wrap { padding:16px; }

  /* AUTH */
  .authpg { padding:20px 16px; }
  .acard  { padding:24px; }

  /* JOB DETAIL */
  .jd-header { flex-direction:column; gap:12px; }
  .job-detail { padding:0 16px; }

  /* DASHBOARD */
  .d-wrap { grid-template-columns:1fr !important; }
  .d-side { width:100% !important; min-height:auto !important; }
  #d-logo-desk { display:none !important; }
  #d-logo-mob  { display:flex !important; }
  .d-menu { display:none !important; }
  .d-menu.mob-open { display:flex !important; }
  .d-hamburger { display:flex !important; }
  .d-content { padding:16px !important; }

  /* ADMIN */
  .adm-wrap { grid-template-columns:1fr !important; }
  .adm-side { width:100% !important; min-height:auto !important; }
  #adm-logo-desk { display:none !important; }
  #adm-logo-mob  { display:flex !important; }
  .adm-menu { display:none !important; }
  .adm-menu.mob-open { display:flex !important; }
  .adm-hamburger { display:flex !important; }
  .adm-content { padding:14px !important; }
}

@media (max-width:480px) {
  .container { padding-left:14px; padding-right:14px; }
  .cat-section .container { padding-left:12px; padding-right:12px; }
  .cat-pill { min-width:80px; padding:10px 8px; }
  .cat-pill-icon { font-size:20px; margin-bottom:4px; }
  .cat-pill-name { font-size:10px; }
  .cat-scroll-btn { display:none; }
  .jc-grid { grid-template-columns:1fr; }
  .how-grid { grid-template-columns:1fr; }
  .about-values-grid { grid-template-columns:1fr; }
  .about-team-grid { grid-template-columns:repeat(2,1fr); width:100%; }
  .about-team-card { width:100%; }
  .about-team-photo { height:240px; }
  .stats { grid-template-columns:1fr 1fr; }
  .admin-stats { grid-template-columns:1fr 1fr; }
  .page-hero h1 { font-size:20px; }
  .hero-slider { height:280px; }
  .hs-content h1 { font-size:18px; }
}

/* ── CHOOSE SIGNUP RESPONSIVE ── */
@media (max-width:600px) {
  .choose-grid { grid-template-columns:1fr !important; }
}
/* ═══════════════════════════════════════════════════════════
   NEXISJOB — INTER TYPOGRAPHY SYSTEM
   Premium enterprise-grade typography upgrade
═══════════════════════════════════════════════════════════ */

/* ── Typography Hierarchy ── */
h1,h2,h3,h4,h5,h6 {
  font-family:'Inter',sans-serif;
  font-weight:700;
  line-height:1.25;
  letter-spacing:-0.02em;
  color:#1a1a2e;
}
h1 { font-size:clamp(28px,4vw,42px); font-weight:800; letter-spacing:-0.03em; }
h2 { font-size:clamp(22px,3vw,32px); font-weight:700; }
h3 { font-size:clamp(17px,2.5vw,22px); font-weight:700; }
h4 { font-size:clamp(15px,2vw,18px); font-weight:600; }
p  { line-height:1.75; color:#424242; }

/* ── Navigation Typography ── */
#main-nav .nl a {
  font-size:13.5px;
  font-weight:500;
  letter-spacing:-0.01em;
}
#main-nav .nl a:hover { font-weight:600; }

/* ── Button Typography ── */
.btn, button[type=submit] {
  font-family:'Inter',sans-serif;
  font-weight:600;
  letter-spacing:-0.01em;
}

/* ── Card Titles ── */
.admin-card strong,
.admin-card h3,
.admin-card h4 {
  font-weight:700;
  letter-spacing:-0.01em;
}

/* ── Table Typography ── */
.tbl thead th {
  font-size:10.5px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:#9e9e9e;
}
.tbl tbody td {
  font-size:13px;
  color:#1a1a2e;
}

/* ── Form Labels ── */
label, .pf-label, .mb-label, .cf-label {
  font-size:10.5px;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:#9e9e9e;
}

/* ── Input/Textarea Typography ── */
input, textarea, select {
  font-family:'Inter',sans-serif;
  font-size:13.5px;
  font-weight:400;
  color:#1a1a2e;
}

/* ── Badge/Tag Typography ── */
.badge, .tag, [class*="badge"], [class*="tag"] {
  font-family:'Inter',sans-serif;
  font-weight:600;
  letter-spacing:0.01em;
}

/* ── Section Headers ── */
.slabel {
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.stitle {
  font-weight:800;
  letter-spacing:-0.025em;
}

/* ── Admin Panel Typography ── */
.adm-logo, .d-logo, .d-logo-inner {
  font-family:'Inter',sans-serif;
  font-weight:800;
  letter-spacing:-0.04em;
}

/* ── Flash/Alert Messages ── */
.flash { font-size:13.5px; font-weight:500; }

/* ── Page Title (Admin & Provider) ── */
.pv-topbar h2 {
  font-size:18px;
  font-weight:800;
  letter-spacing:-0.025em;
}

/* ── Stat Numbers ── */
.stat-card > div:nth-child(2) {
  font-size:26px;
  font-weight:800;
  letter-spacing:-0.03em;
}

/* ── Responsive Typography Scaling ── */
@media (max-width:768px) {
  body { font-size:13.5px; }
  h1   { letter-spacing:-0.02em; }
  h2   { letter-spacing:-0.02em; }
}

/* ── Link States ── */
a { transition: color .15s, opacity .15s; }

/* ── Number/Currency Formatting ── */
.price, [class*="price"],
.salary, [class*="salary"] {
  font-feature-settings:'tnum' on,'lnum' on;
  font-variant-numeric:tabular-nums;
}

/* ── Premium Scrollbar ── */
::-webkit-scrollbar { width:6px; height:6px; }
::-webkit-scrollbar-track { background:#f5f5f5; }
::-webkit-scrollbar-thumb { background:#c8f0cc; border-radius:6px; }
::-webkit-scrollbar-thumb:hover { background:#3cb648; }

/* ── Selection Color ── */
::selection { background:#3cb648; color:#fff; }
::-moz-selection { background:#3cb648; color:#fff; }

/* ── Focus Ring ── */
:focus-visible {
  outline:2px solid #3cb648;
  outline-offset:2px;
  border-radius:4px;
}