/* ============================================================
   JOB HAITI V2 — APP CSS (Matching React Design)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === Variables === */
:root {
  --jh-bg:        #f5f7fc;
  --jh-white:     #ffffff;
  --jh-gray-50:   #f9fafb;
  --jh-gray-100:  #f3f4f6;
  --jh-gray-400:  #9ca3af;
  --jh-gray-500:  #6b7280;
  --jh-gray-600:  #4b5563;
  --jh-gray-900:  #111827;
  --jh-blue-50:   #eff6ff;
  --jh-blue-100:  #dbeafe;
  --jh-blue-400:  #60a5fa;
  --jh-blue-500:  #3b82f6;
  --jh-blue-600:  #2563eb;
  --jh-blue-700:  #1d4ed8;
  --jh-emerald-50: #ecfdf5;
  --jh-emerald-500: #10b981;
  --jh-emerald-600: #059669;
  --jh-amber-100: #fef3c7;
  --jh-amber-400: #fbbf24;
  --jh-amber-700: #b45309;

  --jh-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --jh-shadow:    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --jh-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --jh-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --jh-shadow-blue: 0 10px 15px -3px rgba(37, 99, 235, 0.2);

  --jh-t: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --jh-w: 1280px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--jh-bg);
  color: var(--jh-gray-600);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select { font: inherit; border: none; background: none; outline: none; }

/* === Layout === */
.jh2-container {
  max-width: var(--jh-w);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .jh2-container { padding: 0 1.5rem; } }
.jh2-main { padding-top: 80px; }

/* === Scroll Animations === */
[data-animate] { opacity: 0; transition: opacity .6s var(--jh-t), transform .6s var(--jh-t); }
[data-animate="fade-up"]    { transform: translateY(20px); }
[data-animate="fade-left"]  { transform: translateX(-20px); }
[data-animate="fade-right"] { transform: translateX(20px); }
[data-animate="scale-up"]   { transform: scale(0.95); }
[data-animate].is-visible   { opacity: 1; transform: none; }

/* === Header === */
.jh2-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all var(--jh-t);
  background: transparent; padding: 1.25rem 0;
}
.jh2-header--scrolled, .jh2-header--solid {
  background: var(--jh-white);
  box-shadow: var(--jh-shadow-sm);
  border-bottom: 1px solid var(--jh-gray-50);
  padding: 0.75rem 0;
}
.jh2-header__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.jh2-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.5rem; font-weight: 700; color: var(--jh-gray-900);
  letter-spacing: -0.025em;
}
.jh2-brand__icon {
  width: 2.5rem; height: 2.5rem; background: var(--jh-blue-600);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: var(--jh-shadow-blue);
}
.jh2-nav { display: none; }
@media (min-width: 1024px) {
  .jh2-nav { display: flex; align-items: center; gap: 2rem; }
}
.jh2-nav__link {
  font-weight: 600; color: var(--jh-gray-500); transition: color var(--jh-t);
}
.jh2-nav__link:hover, .jh2-nav__link.is-active { color: var(--jh-blue-600); }

.jh2-header__actions { display: none; }
@media (min-width: 1024px) {
  .jh2-header__actions { display: flex; align-items: center; gap: 1.5rem; }
}
.jh2-login-link {
  font-weight: 700; color: var(--jh-gray-900); transition: color var(--jh-t);
}
.jh2-login-link:hover { color: var(--jh-blue-600); }

.jh2-btn-post {
  background: var(--jh-blue-50); color: var(--jh-blue-600);
  padding: 0.75rem 1.5rem; border-radius: 0.75rem;
  font-weight: 700; transition: all var(--jh-t);
  box-shadow: var(--jh-shadow-sm);
}
.jh2-btn-post:hover { background: var(--jh-blue-600); color: white; }

.jh2-hamburger {
  display: block; color: var(--jh-gray-900); background: none; border: none; padding: 0.5rem; cursor: pointer;
}
@media (min-width: 1024px) { .jh2-hamburger { display: none; } }

/* === Hero Section === */
.jh2-hero {
  position: relative; padding: 3rem 0 5rem; overflow: hidden; background: var(--jh-white);
}
.jh2-hero__bg {
  position: absolute; top: 0; right: 0; width: 66.666%; height: 100%;
  background: var(--jh-bg); border-bottom-left-radius: 100px; z-index: 0;
  display: none;
}
@media (min-width: 1024px) {
  .jh2-hero__bg { display: block; border-bottom-left-radius: 300px; }
}
.jh2-hero__inner {
  position: relative; z-index: 10;
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) {
  .jh2-hero__inner { grid-template-columns: repeat(2, 1fr); }
}
.jh2-hero__content h1 {
  font-size: 2.25rem; font-weight: 700; color: var(--jh-gray-900);
  line-height: 1.1; margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .jh2-hero__content h1 { font-size: 3.75rem; } }
.jh2-hero__content h1 span { color: var(--jh-blue-600); }
.jh2-hero__content p {
  font-size: 1.125rem; color: var(--jh-gray-600); margin-bottom: 2rem; max-width: 32rem; line-height: 1.625;
}

/* Search Console */
.jh2-search-console {
  background: var(--jh-white); padding: 0.5rem; border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.05);
  border: 1px solid var(--jh-gray-100);
  display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .jh2-search-console { flex-direction: row; align-items: stretch; border-radius: 1rem; }
}
.jh2-search-field {
  display: flex; align-items: center; padding: 0.75rem 1rem;
  flex: 1; border-bottom: 1px solid var(--jh-gray-100);
}
@media (min-width: 768px) {
  .jh2-search-field { border-bottom: none; border-right: 1px solid var(--jh-gray-100); }
  .jh2-search-field:last-of-type { border-right: none; }
}
.jh2-search-field svg { color: var(--jh-gray-400); margin-right: 0.75rem; width: 1.25rem; height: 1.25rem; }
.jh2-search-field input, .jh2-search-field select {
  width: 100%; color: var(--jh-gray-900); font-weight: 500;
}
.jh2-search-btn {
  background: var(--jh-blue-600); color: white; font-weight: 700;
  padding: 1rem 2rem; border-radius: 0.75rem; transition: var(--jh-t);
  display: flex; justify-content: center; align-items: center;
}
.jh2-search-btn:hover { background: var(--jh-blue-700); }

/* Avatars */
.jh2-hero__avatars { display: flex; align-items: center; gap: 1rem; }
.jh2-avatar-group { display: flex; margin-left: 0.75rem; }
.jh2-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px; border: 2px solid white;
  margin-left: -0.75rem; overflow: hidden; background: var(--jh-gray-100);
}
.jh2-avatar img { width: 100%; height: 100%; object-fit: cover; }
.jh2-avatar--plus {
  background: var(--jh-blue-50); color: var(--jh-blue-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem;
}
.jh2-avatars-text span { font-weight: 700; color: var(--jh-gray-900); display: block; font-size: 0.875rem;}
.jh2-avatars-text p { color: var(--jh-gray-500); font-size: 0.75rem; margin: 0; }

/* Hero Visual */
.jh2-hero__visual { position: relative; display: none; }
@media (min-width: 1024px) { .jh2-hero__visual { display: block; } }
.jh2-hero__visual-inner {
  position: relative; z-index: 10; border-radius: 9999px; padding: 1rem;
  background: rgba(255,255,255,0.5); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}
.jh2-hero__visual-img {
  width: 100%; border-radius: 9999px; filter: grayscale(0.2); box-shadow: var(--jh-shadow-xl);
}
.jh2-blob-1 { position: absolute; top: -2.5rem; right: -2.5rem; width: 16rem; height: 16rem; background: rgba(37,99,235,0.1); border-radius: 9999px; filter: blur(24px); z-index: 0; }
.jh2-blob-2 { position: absolute; bottom: 0; left: -2.5rem; width: 12rem; height: 12rem; background: rgba(96,165,250,0.05); border-radius: 9999px; filter: blur(16px); z-index: 0; }

/* === Marquee === */
.jh2-marquee { padding: 4rem 0; background: var(--jh-white); border-top: 1px solid var(--jh-gray-50); overflow: hidden; }
.jh2-marquee__title { text-align: center; color: var(--jh-gray-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; margin-bottom: 3rem; }
.jh2-marquee__track {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem;
  opacity: 0.3; filter: grayscale(1) saturate(0);
}
@media (min-width: 1024px) { .jh2-marquee__track { gap: 4rem; } }
.jh2-marquee__item { font-size: 1.875rem; font-weight: 900; }
.jh2-marquee__item.italic { font-style: italic; }

/* === Categories === */
.jh2-section { padding: 6rem 0; }
.jh2-section--bg { background: var(--jh-bg); }
.jh2-section-header { text-align: center; margin-bottom: 4rem; }
.jh2-section-title { font-size: 2.25rem; font-weight: 700; color: var(--jh-gray-900); margin-bottom: 1rem; }
.jh2-section-desc { color: var(--jh-gray-500); }

.jh2-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .jh2-cat-grid { grid-template-columns: repeat(4, 1fr); } }
.jh2-cat-card {
  background: var(--jh-white); padding: 1.5rem; border-radius: 1rem;
  border: 1px solid var(--jh-gray-100); text-align: center; cursor: pointer;
  transition: all var(--jh-t); text-decoration: none; display: block;
}
.jh2-cat-card:hover {
  box-shadow: var(--jh-shadow-lg); transform: translateY(-5px); border-color: transparent;
}
.jh2-cat-icon {
  width: 4rem; height: 4rem; background: rgba(239, 246, 255, 0.5);
  border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  color: var(--jh-blue-600); margin: 0 auto 1rem; transition: var(--jh-t);
}
.jh2-cat-icon svg { width: 2rem; height: 2rem; }
.jh2-cat-card:hover .jh2-cat-icon { background: var(--jh-blue-600); color: white; }
.jh2-cat-card h3 { font-weight: 700; color: var(--jh-gray-900); margin-bottom: 0.25rem; transition: var(--jh-t); }
.jh2-cat-card:hover h3 { color: var(--jh-blue-600); }
.jh2-cat-card p { color: var(--jh-gray-500); font-size: 0.875rem; }

/* === Featured Jobs === */
.jh2-jobs-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .jh2-jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .jh2-jobs-grid { grid-template-columns: repeat(4, 1fr); } }

.jh2-job-card {
  background: var(--jh-white); padding: 2rem; border-radius: 1.5rem;
  border: 1px solid var(--jh-gray-100); transition: all var(--jh-t);
  text-align: center; cursor: pointer; position: relative;
}
.jh2-job-card:hover {
  box-shadow: var(--jh-shadow-xl); transform: translateY(-5px);
}
.jh2-job-card__badges { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.jh2-badge-type { background: var(--jh-emerald-50); color: var(--jh-emerald-600); font-size: 0.625rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; text-transform: uppercase; }
.jh2-badge-status { background: var(--jh-amber-100); color: var(--jh-amber-700); font-size: 0.625rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; text-transform: uppercase; }

.jh2-job-card__logo {
  width: 4rem; height: 4rem; background: var(--jh-gray-50); border-radius: 1rem;
  margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; padding: 0.75rem;
}
.jh2-job-card__logo img { width: 100%; height: 100%; object-fit: contain; }
.jh2-job-card__company { color: var(--jh-blue-600); font-size: 0.75rem; font-weight: 700; margin-bottom: 0.25rem; }
.jh2-job-card__title { font-size: 1.125rem; font-weight: 700; color: var(--jh-gray-900); margin-bottom: 1rem; line-height: 1.25; transition: var(--jh-t); }
.jh2-job-card__title a { color: inherit; text-decoration: none; }
.jh2-job-card:hover .jh2-job-card__title { color: var(--jh-blue-600); }
.jh2-job-card__loc { display: flex; align-items: center; justify-content: center; color: var(--jh-gray-400); font-size: 0.875rem; }
.jh2-job-card__loc svg { width: 1rem; height: 1rem; margin-right: 0.25rem; }

.jh2-center-btn { text-align: center; margin-top: 3rem; }
.jh2-btn-primary {
  background: var(--jh-blue-600); color: white; padding: 1rem 2.5rem;
  border-radius: 0.75rem; font-weight: 700; transition: var(--jh-t);
  box-shadow: var(--jh-shadow-blue); display: inline-block;
}
.jh2-btn-primary:hover { background: var(--jh-blue-700); transform: translateY(-2px); }

/* === Cities === */
.jh2-cities-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.jh2-cities-header h2 { font-size: 2.25rem; font-weight: 700; color: var(--jh-gray-900); margin-bottom: 1rem; }
.jh2-cities-header p { color: var(--jh-gray-500); font-weight: 500; }
.jh2-cities-link { color: var(--jh-blue-600); font-weight: 700; display: flex; align-items: center; }
.jh2-cities-link:hover { text-decoration: underline; }

.jh2-cities-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .jh2-cities-grid { grid-template-columns: repeat(3, 1fr); } }

.jh2-city-card {
  position: relative; height: 350px; border-radius: 40px; overflow: hidden;
  cursor: pointer; box-shadow: var(--jh-shadow-xl); transition: var(--jh-t);
}
.jh2-city-card:hover { transform: translateY(-10px); }
.jh2-city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.jh2-city-card:hover img { transform: scale(1.1); }
.jh2-city-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent); }
.jh2-city-card__content { position: absolute; bottom: 2rem; left: 2rem; color: white; }
.jh2-city-card__content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; letter-spacing: -0.025em; }
.jh2-city-card__content p { font-size: 0.875rem; opacity: 0.8; font-weight: 500; }

/* === CV Builder CTA === */
.jh2-cv-cta { padding: 6rem 0; background: var(--jh-white); overflow: hidden; }
.jh2-cv-box {
  background: var(--jh-gray-900); border-radius: 50px; padding: 2rem;
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .jh2-cv-box { flex-direction: row; padding: 5rem; }
}
.jh2-cv-content { position: relative; z-index: 10; flex: 1; }
.jh2-cv-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(37,99,235,0.1); color: var(--jh-blue-400);
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.75rem;
  font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.jh2-cv-content h2 {
  font-size: 2.25rem; font-weight: 900; color: white; line-height: 1.2; margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .jh2-cv-content h2 { font-size: 3rem; } }
.jh2-cv-content h2 span { color: var(--jh-blue-500); }
.jh2-cv-content p { color: var(--jh-gray-400); font-size: 1.125rem; margin-bottom: 2.5rem; line-height: 1.625; }

.jh2-cv-visual { flex: 1; position: relative; width: 100%; }
.jh2-cv-mockup {
  position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem; padding: 1rem; backdrop-filter: blur(12px); box-shadow: var(--jh-shadow-xl);
}
.jh2-cv-paper { background: white; border-radius: 1rem; padding: 1.5rem; aspect-ratio: 4/5; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.jh2-cv-bar-1 { width: 100%; height: 3rem; background: var(--jh-blue-600); border-radius: 0.5rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; }
.jh2-cv-bar-1::after { content: ''; width: 50%; height: 0.5rem; background: rgba(255,255,255,0.3); border-radius: 999px; }
.jh2-cv-lines { display: flex; flex-direction: column; gap: 1rem; }
.jh2-cv-line { height: 0.75rem; background: var(--jh-gray-100); border-radius: 999px; }
.jh2-cv-box-1 { width: 100%; height: 5rem; background: var(--jh-gray-50); border-radius: 0.75rem; }
.jh2-cv-float {
  position: absolute; bottom: -1.5rem; left: -1.5rem; background: white; padding: 1rem;
  border-radius: 1rem; box-shadow: var(--jh-shadow-xl); display: flex; align-items: center; gap: 1rem;
}
.jh2-cv-float-icon { width: 2.5rem; height: 2.5rem; background: var(--jh-emerald-50); color: var(--jh-emerald-500); border-radius: 9999px; display: flex; align-items: center; justify-content: center; }
.jh2-cv-float-text h4 { font-size: 0.75rem; font-weight: 900; color: var(--jh-gray-900); text-transform: uppercase; margin:0;}
.jh2-cv-float-text p { font-size: 0.625rem; font-weight: 700; color: var(--jh-gray-400); margin:0;}

.jh2-cv-blob { position: absolute; top: -6rem; right: -6rem; width: 24rem; height: 24rem; background: rgba(37,99,235,0.1); border-radius: 9999px; filter: blur(24px); }

/* === Testimonials === */
.jh2-testimonials { background: var(--jh-white); padding: 6rem 0; }
.jh2-testi-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .jh2-testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .jh2-testi-grid { grid-template-columns: repeat(3, 1fr); } }

.jh2-testi-card {
  background: var(--jh-gray-50); padding: 2rem; border-radius: 40px;
  border: 1px solid var(--jh-gray-100); display: flex; flex-direction: column;
  transition: var(--jh-t);
}
.jh2-testi-card:hover { transform: translateY(-10px); }
.jh2-testi-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.jh2-testi-head img { width: 3.5rem; height: 3.5rem; border-radius: 1rem; object-fit: cover; filter: grayscale(1); transition: var(--jh-t); box-shadow: var(--jh-shadow); }
.jh2-testi-card:hover .jh2-testi-head img { filter: grayscale(0); }
.jh2-testi-info h4 { font-weight: 900; color: var(--jh-gray-900); font-size: 0.875rem; text-transform: uppercase; margin: 0; }
.jh2-testi-info p { font-size: 0.625rem; font-weight: 900; color: var(--jh-blue-600); text-transform: uppercase; letter-spacing: 0.1em; margin: 0; }
.jh2-testi-text { color: var(--jh-gray-600); font-weight: 500; font-style: italic; font-size: 0.875rem; line-height: 1.625; flex: 1; }
.jh2-testi-stars { display: flex; gap: 0.25rem; color: var(--jh-amber-400); margin-top: 1.5rem; }
.jh2-testi-stars svg { width: 1rem; height: 1rem; fill: currentColor; }

/* === Newsletter === */
.jh2-newsletter { padding: 6rem 0; background: var(--jh-white); position: relative; overflow: hidden; }
.jh2-news-blob { position: absolute; top: 0; right: 0; width: 16rem; height: 16rem; background: var(--jh-blue-50); border-radius: 9999px; filter: blur(24px); transform: translate(50%, -50%); z-index: 0; }
.jh2-news-box {
  background: var(--jh-blue-600); border-radius: 50px; padding: 3rem; text-align: center; color: white;
  position: relative; overflow: hidden; box-shadow: var(--jh-shadow-blue); max-width: 56rem; margin: 0 auto;
}
@media (min-width: 1024px) { .jh2-news-box { padding: 5rem; } }
.jh2-news-box h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; position: relative; z-index: 10; }
.jh2-news-box p { color: var(--jh-blue-100); font-size: 1.125rem; margin-bottom: 2.5rem; opacity: 0.8; position: relative; z-index: 10; }
.jh2-news-form {
  display: flex; flex-direction: column; gap: 0.75rem; background: white; padding: 0.5rem;
  border-radius: 1rem; box-shadow: var(--jh-shadow-lg); position: relative; z-index: 10;
}
@media (min-width: 640px) { .jh2-news-form { flex-direction: row; } }
.jh2-news-form input { flex: 1; padding: 1rem 1.5rem; color: var(--jh-gray-900); font-weight: 500; }
.jh2-news-form button { background: var(--jh-gray-900); color: white; padding: 1rem 2.5rem; border-radius: 0.75rem; font-weight: 700; transition: var(--jh-t); }
.jh2-news-form button:hover { background: black; }
.jh2-news-box-blob { position: absolute; bottom: -5rem; right: -5rem; width: 16rem; height: 16rem; background: rgba(255,255,255,0.1); border-radius: 9999px; }

/* === Footer === */
.jh2-footer { background: var(--jh-white); border-top: 1px solid var(--jh-gray-100); padding: 6rem 0 3rem; }
.jh2-footer-grid { display: grid; gap: 3rem; margin-bottom: 5rem; }
@media (min-width: 1024px) { .jh2-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.jh2-footer-brand { margin-bottom: 2rem; }
.jh2-footer-contact h4 { font-weight: 700; color: var(--jh-gray-900); margin-bottom: 0.5rem; }
.jh2-footer-phone { color: var(--jh-blue-600); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.jh2-footer-address { color: var(--jh-gray-600); line-height: 1.625; max-width: 20rem; }

.jh2-footer-col h4 { font-weight: 700; color: var(--jh-gray-900); font-size: 1.125rem; margin-bottom: 2rem; }
.jh2-footer-col ul { display: flex; flex-direction: column; gap: 1rem; }
.jh2-footer-col a { color: var(--jh-gray-500); transition: var(--jh-t); }
.jh2-footer-col a:hover { color: var(--jh-blue-600); }

.jh2-footer-bottom { border-top: 1px solid var(--jh-gray-100); padding-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .jh2-footer-bottom { flex-direction: row; } }
.jh2-footer-copy { color: var(--jh-gray-500); font-size: 0.875rem; }
.jh2-footer-social { display: flex; gap: 1.5rem; }
.jh2-footer-social a { color: var(--jh-gray-400); transition: var(--jh-t); }
.jh2-footer-social a:hover { color: var(--jh-blue-600); }

/* === Mobile Menu === */
.jh2-mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0; background: var(--jh-white);
  box-shadow: var(--jh-shadow-xl); border-top: 1px solid var(--jh-gray-100);
  padding: 1.5rem 0; display: none;
}
.jh2-mobile-menu.is-open { display: block; }
.jh2-mobile-nav { display: flex; flex-direction: column; gap: 1rem; padding: 0 1.5rem; }
.jh2-mobile-nav a { font-weight: 700; color: var(--jh-gray-500); }
.jh2-mobile-nav a.is-active { color: var(--jh-blue-600); }
.jh2-mobile-actions { margin-top: 1rem; padding: 1rem 1.5rem 0; border-top: 1px solid var(--jh-gray-100); display: flex; flex-direction: column; gap: 0.75rem; }
.jh2-mobile-btn-login { width: 100%; padding: 0.75rem; font-weight: 700; color: var(--jh-gray-900); border: 1px solid var(--jh-gray-100); border-radius: 0.5rem; text-align: center; }
.jh2-mobile-btn-post { width: 100%; padding: 0.75rem; font-weight: 700; background: var(--jh-amber-400); color: var(--jh-gray-900); border-radius: 0.5rem; text-align: center; box-shadow: var(--jh-shadow-sm); }
/* Archive Jobs */
.jh2-archive-hero { background: var(--jh-white); border-bottom: 1px solid var(--jh-gray-100); padding: 4rem 1rem; text-align: center; }
.jh2-archive-hero .jh2-eyebrow { display: inline-block; padding: 0.375rem 1rem; background: var(--jh-blue-50); color: var(--jh-blue-600); border-radius: 9999px; font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.jh2-archive-hero h1 { font-size: 3rem; font-weight: 900; color: var(--jh-gray-900); margin-bottom: 1rem; }
.jh2-archive-hero p { font-size: 1.125rem; color: var(--jh-gray-500); max-width: 42rem; margin: 0 auto; }
.jh2-archive-count { display: inline-block; margin-top: 1.5rem; font-size: 0.875rem; font-weight: 700; color: var(--jh-gray-400); }

.jh2-archive-body { padding: 3rem 1rem; max-width: 64rem; margin: 0 auto; }

.jh2-search-bar { background: var(--jh-white); padding: 1rem; border-radius: 1rem; box-shadow: var(--jh-shadow-lg); border: 1px solid var(--jh-gray-100); margin-top: -6rem; margin-bottom: 4rem; position: relative; z-index: 10; }
.jh2-search-bar__form { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: center; }
@media (min-width: 768px) { .jh2-search-bar__form { grid-template-columns: 1fr 1fr 1fr auto; } }
.jh2-search-bar__field { position: relative; display: flex; align-items: center; border-right: 1px solid var(--jh-gray-100); }
.jh2-search-bar__field:last-of-type { border-right: none; }
.jh2-search-bar__icon { position: absolute; left: 1rem; color: var(--jh-gray-400); }
.jh2-search-bar__input, .jh2-search-bar__select { width: 100%; padding: 1rem 1rem 1rem 3rem; border: none; outline: none; background: transparent; font-weight: 600; color: var(--jh-gray-900); appearance: none; }

.jh2-job-list { display: flex; flex-direction: column; gap: 1.5rem; }
.jh2-job-row { background: var(--jh-white); border-radius: 1.5rem; padding: 2rem; border: 1px solid var(--jh-gray-100); box-shadow: var(--jh-shadow-sm); display: flex; flex-direction: column; gap: 1.5rem; transition: all 0.3s ease; }
@media (min-width: 768px) { .jh2-job-row { flex-direction: row; align-items: flex-start; } }
.jh2-job-row:hover { box-shadow: var(--jh-shadow-lg); transform: translateY(-2px); border-color: var(--jh-blue-100); }

.jh2-job-row__mark { width: 4rem; height: 4rem; flex-shrink: 0; background: var(--jh-gray-50); border-radius: 1rem; padding: 0.5rem; display: flex; align-items: center; justify-content: center; }
.jh2-job-row__mark img { width: 100%; height: 100%; object-fit: contain; }

.jh2-job-row__body { flex: 1; }
.jh2-job-row__head h2 { font-size: 1.25rem; font-weight: 800; color: var(--jh-gray-900); margin-bottom: 0.25rem; }
.jh2-job-row__head h2 a { color: inherit; text-decoration: none; }
.jh2-job-row__head h2 a:hover { color: var(--jh-blue-600); }
.jh2-job-row__company { font-size: 0.875rem; font-weight: 700; color: var(--jh-blue-600); margin-bottom: 1rem; }

.jh2-job-row__chips { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; font-size: 0.875rem; font-weight: 600; color: var(--jh-gray-500); }
.jh2-job-row__actions { display: flex; gap: 1rem; margin-top: 1.5rem; }

.jh2-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-weight: 700; cursor: pointer; transition: all 0.2s; text-decoration: none; border: none; }
.jh2-btn--primary { background: var(--jh-blue-600); color: var(--jh-white); }
.jh2-btn--primary:hover { background: var(--jh-blue-700); }
.jh2-btn--outline { background: transparent; border: 2px solid var(--jh-gray-200); color: var(--jh-gray-700); }
.jh2-btn--outline:hover { border-color: var(--jh-blue-600); color: var(--jh-blue-600); }
/* Single Job */
.jh2-single-job { max-width: 64rem; margin: 0 auto; padding: 3rem 1rem; }
.jh2-back-link { margin-bottom: 2rem; font-size: 0.875rem; font-weight: 700; }
.jh2-back-link a { color: var(--jh-gray-500); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.jh2-back-link a:hover { color: var(--jh-blue-600); }

.jh2-single-job__header { margin-bottom: 3rem; }
.jh2-single-job__header h1 { font-size: 2.5rem; font-weight: 900; color: var(--jh-gray-900); margin-bottom: 1rem; line-height: 1.2; }
@media (min-width: 768px) { .jh2-single-job__header h1 { font-size: 3rem; } }
.jh2-single-job__chips { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 1rem; font-weight: 600; color: var(--jh-gray-500); }

.jh2-single-job__layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .jh2-single-job__layout { grid-template-columns: 2fr 1fr; } }

.jh2-single-job__main { display: flex; flex-direction: column; gap: 2.5rem; }
.jh2-single-job__thumb { border-radius: 1.5rem; overflow: hidden; }
.jh2-single-job__thumb img { width: 100%; height: auto; display: block; }

.jh2-single-job__desc h2 { font-size: 1.5rem; font-weight: 800; color: var(--jh-gray-900); margin-bottom: 1.5rem; }
.jh2-desc-section { margin-bottom: 2rem; }
.jh2-desc-section h3 { font-size: 1.25rem; font-weight: 700; color: var(--jh-gray-800); margin-bottom: 1rem; }
.jh2-entry { color: var(--jh-gray-600); font-size: 1rem; line-height: 1.7; }
.jh2-entry p { margin-bottom: 1rem; }
.jh2-entry ul { margin-bottom: 1rem; padding-left: 1.5rem; list-style-type: disc; }
.jh2-entry li { margin-bottom: 0.5rem; }

.jh2-single-job__sidebar { display: flex; flex-direction: column; gap: 2rem; }
.jh2-company-mark--xl { width: 6rem; height: 6rem; background: var(--jh-white); border-radius: 1.5rem; padding: 1rem; box-shadow: var(--jh-shadow-md); border: 1px solid var(--jh-gray-100); display: flex; align-items: center; justify-content: center; }
.jh2-company-mark--xl img { width: 100%; height: 100%; object-fit: contain; }

.jh2-key-facts { background: var(--jh-gray-50); border-radius: 1.5rem; padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; border: 1px solid var(--jh-gray-100); }
.jh2-key-facts div { display: flex; flex-direction: column; gap: 0.25rem; }
.jh2-key-facts span { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--jh-gray-400); }
.jh2-key-facts strong { font-size: 1rem; font-weight: 700; color: var(--jh-gray-900); }

.jh2-btn--full { width: 100%; padding: 1.25rem; font-size: 1.125rem; }
.jh2-apply-note { font-size: 0.875rem; color: var(--jh-gray-500); text-align: center; font-style: italic; }
