/* assets/css/style.css — RecrutePro Public */

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

:root {
  --bg:          #f5f7fc;
  --surface:     #ffffff;
  --surface2:    #f0f3f9;
  --surface3:    #e4e9f2;
  --border:      rgba(0,0,0,0.07);
  --border2:     rgba(0,0,0,0.12);
  --text:        #111827;
  --text-muted:  #4b5563;
  --text-dim:    #9ca3af;
  --accent:      #4f46e5;
  --accent2:     #6366f1;
  --accent-glow: rgba(79,70,229,0.18);
  --green:       #059669;
  --blue:        #0284c7;
  --amber:       #d97706;
  --red:         #dc2626;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:'Plus Jakarta Sans', var(--font);
  --transition:  0.2s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent2); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }

img { max-width: 100%; display: block; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 64px; padding: 0 24px;
  max-width: 1200px; margin: 0 auto;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: var(--text); letter-spacing: -0.3px;
}

.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  box-shadow: 0 0 16px var(--accent-glow);
}

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.nav-link {
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: all var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--text); background: var(--surface2); }

.nav-cta {
  padding: 8px 18px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--accent-glow);
}
.nav-cta:hover { background: var(--accent2); color: #fff; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(79,70,229,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(99,102,241,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid rgba(79,70,229,0.2);
  background: rgba(79,70,229,0.06);
  font-size: 12px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px; color: var(--text-muted);
  max-width: 560px; line-height: 1.7;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex; gap: 40px; margin-bottom: 48px;
}

.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--text); line-height: 1;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 12px; color: var(--text-dim); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── SEARCH BAR ───────────────────────────────────────────── */
.search-wrap {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex; gap: 8px; align-items: center;
  max-width: 720px;
  box-shadow: var(--shadow);
}

.search-field {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-right: 1px solid var(--border);
}

.search-field:last-of-type { border-right: none; }

.search-field svg { color: var(--text-dim); flex-shrink: 0; }

.search-field input, .search-field select {
  background: none; border: none; outline: none;
  color: var(--text); font-size: 14px; width: 100%;
  font-family: var(--font);
}

.search-field input::placeholder { color: var(--text-dim); }

.search-field select option { background: var(--surface); color: var(--text); }

.search-btn {
  padding: 12px 24px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  border: none; cursor: pointer; font-weight: 600; font-size: 14px;
  white-space: nowrap; transition: all var(--transition);
  font-family: var(--font);
}
.search-btn:hover { background: var(--accent2); transform: translateY(-1px); }

/* ── FILTERS ──────────────────────────────────────────────── */
.filters {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin: 40px 0 28px;
}

.filter-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

.filter-chip {
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid var(--border2);
  background: var(--surface);
  font-size: 13px; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap;
}

.filter-chip:hover { border-color: var(--accent); color: var(--accent2); }
.filter-chip.active {
  background: var(--accent); border-color: var(--accent);
  color: #fff; box-shadow: 0 2px 8px var(--accent-glow);
}

/* ── ORG TABS ─────────────────────────────────────────────── */
.org-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none;
}
.org-tabs::-webkit-scrollbar { display: none; }

.org-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  border: 1px solid var(--border2);
  background: var(--surface);
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap; text-decoration: none;
}

.org-tab:hover { color: var(--text); border-color: var(--border2); background: var(--surface2); }
.org-tab.active { color: #fff; }

.org-tab-dot {
  width: 8px; height: 8px; border-radius: 50%;
}

/* ── JOB GRID ─────────────────────────────────────────────── */
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px;
}
.section-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.section-count { font-size: 13px; color: var(--text-dim); }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
  cursor: pointer;
}

.job-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0; transition: opacity var(--transition);
}

.job-card:hover {
  border-color: rgba(79,70,229,0.25);
  background: var(--surface2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.job-card:hover::before { opacity: 1; }

.job-card.featured {
  border-color: rgba(79,70,229,0.18);
}

.job-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}

.job-org-logo {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff;
  flex-shrink: 0;
}

.job-featured-badge {
  padding: 3px 10px; border-radius: 50px;
  background: rgba(79,70,229,0.08);
  border: 1px solid rgba(79,70,229,0.2);
  font-size: 10px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.5px; text-transform: uppercase;
}

.job-org-name { font-size: 12px; color: var(--text-dim); margin-bottom: 4px; }

.job-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; line-height: 1.3;
  color: var(--text); margin-bottom: 12px;
}

.job-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px;
}

.tag {
  padding: 3px 10px; border-radius: 50px;
  background: var(--surface2); border: 1px solid var(--border2);
  font-size: 11px; font-weight: 500; color: var(--text-muted);
}

.job-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-dim);
  margin-bottom: 18px;
}
.job-meta-item { display: flex; align-items: center; gap: 5px; }

.job-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.job-salary { font-size: 13px; font-weight: 600; color: var(--green); }
.job-date { font-size: 12px; color: var(--text-dim); }

.btn-apply {
  padding: 8px 18px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; transition: all var(--transition);
  font-family: var(--font);
  text-decoration: none; display: inline-block;
}
.btn-apply:hover { background: var(--accent2); color: #fff; transform: translateY(-1px); }

/* ── BADGES ───────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 600;
}
.badge-success { background: rgba(5,150,105,0.08);  color: var(--green); border: 1px solid rgba(5,150,105,0.2); }
.badge-warning { background: rgba(217,119,6,0.08);  color: var(--amber); border: 1px solid rgba(217,119,6,0.2); }
.badge-info    { background: rgba(2,132,199,0.08);   color: var(--blue);  border: 1px solid rgba(2,132,199,0.2); }
.badge-danger  { background: rgba(220,38,38,0.08);   color: var(--red);   border: 1px solid rgba(220,38,38,0.2); }
.badge-secondary { background: var(--surface2); color: var(--text-muted); border: 1px solid var(--border2); }

/* ── JOB DETAIL ───────────────────────────────────────────── */
.job-detail { padding: 60px 0 80px; }

.job-detail-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
  position: relative; overflow: hidden;
}

.job-detail-header::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(79,70,229,0.06);
  filter: blur(40px);
}

.jdh-top {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 24px;
}

.jdh-logo {
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff; flex-shrink: 0;
}

.jdh-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  line-height: 1.2; margin-bottom: 6px;
}
.jdh-org { font-size: 15px; color: var(--text-muted); }

.jdh-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.jdh-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted);
}
.jdh-meta-item strong { color: var(--text); }

.jdh-actions { display: flex; gap: 12px; }

.btn-primary {
  padding: 13px 28px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: all var(--transition); font-family: var(--font);
  box-shadow: 0 0 20px var(--accent-glow); text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent2); color: #fff; transform: translateY(-1px); }

.btn-secondary {
  padding: 13px 24px; border-radius: var(--radius-sm);
  background: var(--surface2); color: var(--text-muted);
  font-size: 15px; font-weight: 500; border: 1px solid var(--border2); cursor: pointer;
  transition: all var(--transition); font-family: var(--font); text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { color: var(--text); background: var(--surface3); }

.job-detail-body { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }

.job-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
}

.job-section h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  margin-bottom: 16px; color: var(--text);
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}

.job-section p { color: var(--text-muted); line-height: 1.8; font-size: 14px; }

.job-section ul {
  list-style: none; padding: 0;
}
.job-section ul li {
  padding: 7px 0; color: var(--text-muted); font-size: 14px;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.job-section ul li:last-child { border-bottom: none; }
.job-section ul li::before {
  content: '→'; color: var(--accent2); flex-shrink: 0; margin-top: 1px;
}

.job-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.job-sidebar-card h4 {
  font-weight: 700; font-size: 14px; margin-bottom: 16px;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
}
.sidebar-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item span:first-child { color: var(--text-dim); }
.sidebar-item span:last-child { color: var(--text); font-weight: 500; }

/* ── APPLY FORM ───────────────────────────────────────────── */
.apply-wrap { padding: 60px 0 80px; }

.apply-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.apply-header { margin-bottom: 32px; }
.apply-header h1 { font-family: var(--font-display); font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.apply-header p { color: var(--text-muted); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }

label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.2px;
}
label .req { color: var(--red); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="url"],
select, textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b5563' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }

textarea { resize: vertical; min-height: 100px; }

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.form-help { font-size: 12px; color: var(--text-dim); margin-top: 5px; }

.char-count { font-size: 11px; color: var(--text-dim); text-align: right; margin-top: 4px; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(17,24,39,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 540px; width: 100%;
  max-height: 80vh; overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.modal-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.modal-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { color: var(--text); background: var(--surface3); }

/* ── ORG CARDS (page orgs) ───────────────────────────────── */
.orgs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.org-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.org-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.org-card-banner {
  font-size: 11px; color: var(--text-dim);
  font-style: italic; margin-top: 6px;
}

.org-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.org-card-logo {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff;
}

.org-card-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }

.org-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.org-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.org-job-count { font-size: 13px; color: var(--text-dim); }
.org-job-count strong { color: var(--accent2); }

/* ── WHY US SECTION ───────────────────────────────────────── */
.why-section { padding: 80px 0; }

.why-section .section-heading {
  text-align: center; margin-bottom: 56px;
}
.section-heading h2 {
  font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px);
  font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px;
}
.section-heading p { font-size: 16px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: var(--shadow); }

.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.why-card h3 { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(79,70,229,0.06) 0%, transparent 70%);
}
.cta-box {
  background: var(--surface);
  border: 1px solid rgba(79,70,229,0.15);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  box-shadow: var(--shadow);
}
.cta-box h2 { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.cta-box p { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }

/* ── ALERT TOAST ──────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  padding: 14px 20px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border2);
  font-size: 14px; color: var(--text);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  transform: translateY(20px); opacity: 0;
  transition: all 0.3s;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.toast-success { border-color: rgba(5,150,105,0.3); background: #f0fdf4; }
.toast.toast-error   { border-color: rgba(220,38,38,0.3); background: #fef2f2; }

/* ── EMPTY STATE ──────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 80px 0;
}
.empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 14px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-stats { gap: 24px; }
  .search-wrap { flex-direction: column; }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); }
  .search-field:last-of-type { border-bottom: none; }
  .jobs-grid { grid-template-columns: 1fr; }
  .job-detail-body { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .apply-card { padding: 24px; }
  .nav-links .nav-link { display: none; }
  .jdh-actions { flex-direction: column; }
  .cta-box { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 50px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .job-detail-header { padding: 24px; }
}
