:root {
  --bg: #f4f7fb;
  --panel: #ffffff;
  --text: #122033;
  --muted: #627086;
  --line: #dfe7f1;
  --primary: #2f6fed;
  --primary-dark: #1f5ad1;
  --soft: #edf4ff;
  --success: #117a4c;
  --warning: #9b6b00;
  --danger: #b62f3a;
  --shadow: 0 18px 40px rgba(15, 32, 64, 0.08);
  --radius: 22px;
  --chat-safe: 170px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f6f9fd 0%, #eef4fb 100%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.nh-shell { max-width: 1240px; margin: 0 auto; padding: 22px 18px calc(var(--chat-safe) + 26px); }
.nh-header {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 24px;
  padding: 18px 22px; box-shadow: var(--shadow); position: sticky; top: 10px; z-index: 40;
  backdrop-filter: blur(8px);
}
.nh-brand-wrap { min-width: 0; }
.nh-brand { font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; }
.nh-tagline { margin: 6px 0 0; color: var(--muted); font-size: .95rem; }
.nh-nav { display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: flex-start; }
.nh-nav a { padding: 10px 14px; border-radius: 14px; color: var(--muted); background: transparent; font-weight: 600; }
.nh-nav a:hover, .nh-nav a:focus-visible { background: var(--soft); color: var(--primary); }
.nh-main { padding-top: 20px; }
.nh-hero, .nh-card, .nh-form-card, .nh-table-card, .nh-copy-page, .nh-mini-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.nh-hero { padding: 30px; display: grid; grid-template-columns: 1.4fr .9fr; gap: 24px; align-items: center; }
.nh-pill-row, .nh-filter-row, .nh-stat-row, .nh-feature-list { display: flex; flex-wrap: wrap; gap: 10px; }
.nh-pill, .nh-chip {
  display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 999px; background: var(--soft); color: var(--primary); font-weight: 700; font-size: .92rem;
}
.nh-chip { background:#f7f9fc; color:var(--muted); border:1px solid var(--line); }
.nh-subtle { color: var(--muted); line-height: 1.65; }
.nh-title { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.04em; }
.nh-section-title { font-size: 1.4rem; margin: 0 0 8px; }
.nh-grid { display: grid; gap: 20px; }
.nh-grid.jobs { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 18px; }
.nh-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.nh-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.nh-card, .nh-mini-card { padding: 22px; }
.nh-job-card { display: flex; flex-direction: column; min-height: 100%; }
.nh-job-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.nh-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.nh-meta span { background: #f5f8fc; border: 1px solid var(--line); color: var(--muted); border-radius: 999px; padding: 7px 11px; font-size: .88rem; }
.nh-job-card p { color: var(--muted); line-height: 1.65; }
.nh-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 8px; }
.nh-btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 14px;
  border: 1px solid transparent; background: var(--primary); color: #fff; font-weight: 700; cursor: pointer;
}
.nh-btn:hover { background: var(--primary-dark); }
.nh-btn.secondary { background: #fff; color: var(--text); border-color: var(--line); }
.nh-btn.secondary:hover { background: #f7f9fc; }
.nh-btn.danger { background: var(--danger); }
.nh-btn.success { background: var(--success); }
.nh-toolbar { margin: 20px 0 0; display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; }
.nh-form-card, .nh-copy-page { padding: 22px; }
.nh-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.nh-field.full { grid-column: 1 / -1; }
.nh-label { display: block; margin: 0 0 8px; font-weight: 700; }
.nh-input, .nh-select, .nh-textarea {
  width: 100%; border: 1px solid var(--line); background: #fff; color: var(--text); border-radius: 14px; padding: 13px 14px; outline: none;
}
.nh-input:focus, .nh-select:focus, .nh-textarea:focus { border-color: #8fb1ff; box-shadow: 0 0 0 4px rgba(47,111,237,.08); }
.nh-textarea { min-height: 150px; resize: vertical; }
.nh-alert { margin: 0 0 18px; padding: 14px 16px; border-radius: 16px; font-weight: 700; }
.nh-alert.success { background: #eaf8f0; color: var(--success); }
.nh-alert.error { background: #fdecee; color: var(--danger); }
.nh-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 20px; }
.nh-stat { padding: 18px; border-radius: 18px; background: #fbfdff; border: 1px solid var(--line); }
.nh-stat strong { display: block; font-size: 1.55rem; margin-bottom: 6px; }
.nh-stat span { color: var(--muted); }
.nh-detail-layout { display: grid; grid-template-columns: 1.3fr .8fr; gap: 22px; }
.nh-detail-block { margin-bottom: 18px; }
.nh-detail-block:last-child { margin-bottom: 0; }
.nh-embed-frame { width: 100%; min-height: 420px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.nh-video-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.nh-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.nh-empty { padding: 36px 20px; text-align: left; color: var(--muted); }
.nh-footer { margin-top: 26px; padding: 18px 4px 0; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.nh-footer-left { display: flex; flex-wrap: wrap; gap: 12px 16px; justify-content: flex-start; }
.nh-footer-left a { color: var(--muted); font-weight: 600; }
.nh-footer-left a:hover { color: var(--primary); }
.nh-footer-copy { color: var(--muted); font-size: .92rem; }
.nh-note { color: var(--muted); font-size: .92rem; margin-top: 8px; }
.nh-table-card { padding: 18px; overflow-x: auto; }
.nh-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.nh-table th, .nh-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.nh-table th { color: var(--muted); font-size: .9rem; }
.nh-badge { display:inline-flex; padding:6px 10px; border-radius:999px; font-size:.82rem; font-weight:700; }
.nh-badge.verified { background:#eaf8f0; color:var(--success); }
.nh-badge.pending { background:#fff7e7; color:var(--warning); }
.nh-search-row { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.nh-search-row .nh-input, .nh-search-row .nh-select { max-width: 100%; }
.nh-login-box { max-width: 420px; }
.nh-muted-link { color: var(--primary); font-weight: 700; }
.nh-feature-box { background:#f8fbff; border:1px dashed #cbd9f3; border-radius:18px; padding:18px; }
.nh-recent-link { display:flex; flex-direction:column; gap:2px; padding:12px 0; border-bottom:1px solid var(--line); }
.nh-recent-link:last-child { border-bottom:0; }
.nh-side-stack { display:grid; gap:18px; }
.nh-kbd { display:inline-block; padding:3px 8px; border:1px solid var(--line); border-radius:8px; background:#fff; font-size:.85rem; }
.nh-hidden-field { position:absolute!important; left:-9999px!important; opacity:0!important; pointer-events:none!important; }
@media (max-width: 1100px) {
  .nh-grid.jobs, .nh-stats, .nh-grid.three { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .nh-detail-layout, .nh-hero, .nh-toolbar { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --chat-safe: 210px; }
  .nh-shell { padding: 12px 12px calc(var(--chat-safe) + 26px); }
  .nh-header { padding: 16px; border-radius: 20px; top: 0; }
  .nh-nav { width: 100%; justify-content: flex-start; }
  .nh-hero, .nh-card, .nh-form-card, .nh-copy-page, .nh-mini-card { padding: 20px; border-radius: 20px; }
  .nh-form-grid, .nh-grid.two, .nh-grid.jobs, .nh-stats, .nh-grid.three { grid-template-columns: 1fr; }
  .nh-title { font-size: 2rem; }
  .nh-embed-frame { min-height: 360px; }
}

.nh-nav-toggle { display:none; border:1px solid var(--line); background:#fff; color:var(--ink); border-radius:12px; padding:10px 14px; font-weight:700; }
.nh-inline-form { display:inline-flex; margin:0; }
.nh-copy-page ul { margin: 12px 0 0 18px; padding: 0; color: var(--muted); }
.nh-copy-page li { margin: 0 0 10px; }
.nh-faq-item { padding: 10px 0; border-bottom: 1px solid var(--line); }
.nh-faq-item:last-child { border-bottom: 0; padding-bottom: 0; }

@media (max-width: 760px) {
  .nh-nav-toggle { display:inline-flex; align-items:center; justify-content:center; }
  .nh-header { gap: 12px; }
  .nh-nav { display:none; }
  .nh-nav.open { display:flex; }
  .nh-inline-form { width: 100%; }
  .nh-inline-form .nh-btn { width: 100%; }
}


.nh-hero-compact { align-items: stretch; }
.nh-hero-side { display:flex; flex-direction:column; justify-content:center; }
.nh-quick-box { align-self:stretch; }
.nh-chip-link { display:inline-flex; align-items:center; justify-content:center; padding:10px 14px; border-radius:999px; background:#eff6ff; color:#1d4ed8; text-decoration:none; font-weight:700; }
.nh-chip-link:hover { background:#dbeafe; color:#1d4ed8; }
.nh-job-list-wrap { margin-top:20px; }
.nh-card-actions { justify-content:space-between; }
.nh-entry-modal[hidden] { display:none !important; }
.nh-entry-modal { position:fixed; inset:0; background:rgba(15,23,42,.64); display:flex; align-items:center; justify-content:center; padding:18px; z-index:9999; }
.nh-entry-panel { width:min(100%, 460px); background:#fff; border-radius:24px; padding:28px; box-shadow:0 24px 60px rgba(15,23,42,.26); position:relative; }
.nh-entry-panel h2 { margin:0 0 10px; font-size:1.5rem; font-weight:800; }
.nh-entry-panel p { color:var(--muted); margin:0; }
.nh-entry-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:20px; }
.nh-modal-close { position:absolute; top:12px; right:12px; border:0; background:#eff6ff; color:#1d4ed8; width:38px; height:38px; border-radius:999px; font-size:1.4rem; line-height:1; }
@media (max-width:760px) {
  .nh-entry-panel { padding:22px; border-radius:20px; }
  .nh-entry-actions { flex-direction:column; }
  .nh-entry-actions .nh-btn { width:100%; }
}


/* Premium mobile-first NextHire refresh */
.nh-header {
  border-radius: 20px;
  padding: 14px 16px;
}
.nh-brand { font-size: 1.35rem; }
.nh-tagline { font-size: .88rem; }
.nh-nav a { font-size: .95rem; }
.nh-hero.nh-jobs-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(47,111,237,.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}
.nh-jobs-hero::after {
  content: '';
  position: absolute;
  inset: auto -40px -55px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(47,111,237,.16), transparent 66%);
  pointer-events: none;
}
.nh-hero-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 16px;
}
.nh-mini-stat {
  border: 1px solid rgba(47,111,237,.14);
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 14px;
}
.nh-mini-stat strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.nh-mini-stat span {
  color: var(--muted);
  font-size: .9rem;
}
.nh-hero-side.premium {
  background: linear-gradient(180deg, #0f2557 0%, #173472 100%);
  color: #fff;
  border-color: rgba(255,255,255,.08);
}
.nh-hero-side.premium .nh-section-title,
.nh-hero-side.premium .nh-subtle,
.nh-hero-side.premium .nh-note { color: rgba(255,255,255,.9); }
.nh-hero-side.premium .nh-pill {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.nh-toolbar.premium-toolbar {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}
.nh-form-card.compact-search {
  padding: 18px;
}
.nh-search-stack {
  display: grid;
  gap: 12px;
}
.nh-search-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.nh-search-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nh-quick-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nh-quick-action-card {
  display: block;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.nh-quick-action-card strong {
  display: block;
  margin-bottom: 6px;
}
.nh-quick-action-card span {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}
.nh-jobs-headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 20px 0 8px;
}
.nh-job-count {
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}
.nh-grid.jobs.premium-jobs {
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.nh-job-card.premium {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.nh-job-card.premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 32, 64, 0.11);
  border-color: rgba(47,111,237,.22);
}
.nh-job-card-top {
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  margin-bottom: 8px;
}
.nh-company-line {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.nh-card-snippet {
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nh-card-actions {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.nh-card-actions .nh-btn { width: 100%; }
.nh-mobile-sticky-bar {
  position: sticky;
  bottom: 12px;
  z-index: 25;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.nh-mobile-sticky-bar .nh-btn {
  min-height: 50px;
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(16,34,70,.16);
}
@media (max-width: 980px) {
  .nh-hero.nh-jobs-hero,
  .nh-toolbar.premium-toolbar {
    grid-template-columns: 1fr;
  }
  .nh-grid.jobs.premium-jobs {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 720px) {
  .nh-shell { padding: 12px 12px calc(var(--chat-safe) + 24px); }
  .nh-header {
    position: sticky;
    top: 6px;
    padding: 12px 14px;
    border-radius: 18px;
  }
  .nh-main { padding-top: 14px; }
  .nh-hero.nh-jobs-hero { padding: 18px; gap: 16px; border-radius: 20px; }
  .nh-title { font-size: 1.9rem; }
  .nh-hero-quick-grid,
  .nh-quick-actions-grid,
  .nh-search-actions,
  .nh-card-actions,
  .nh-grid.jobs.premium-jobs,
  .nh-grid.two,
  .nh-grid.three {
    grid-template-columns: 1fr;
  }
  .nh-form-card.compact-search,
  .nh-card,
  .nh-mini-card { padding: 16px; border-radius: 18px; }
  .nh-jobs-headline { align-items:flex-start; flex-direction: column; }
  .nh-job-card.premium { padding: 16px; }
  .nh-mobile-sticky-bar { display: grid; }
  .nh-footer { padding-bottom: 72px; }
}


.nh-badge.premium { background: #fff4d6; color: #9b6b00; border: 1px solid #f3ddb0; }
.nh-premium-promo-card { background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); }
.nh-premium-list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.nh-premium-gate-box, .nh-premium-detail-box, .nh-premium-post-box { background: #f8fbff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; }
.nh-check-row { display:flex; gap:10px; align-items:flex-start; color:var(--text); font-weight:600; }
.nh-jobs-only-hero { grid-template-columns: 1.25fr .95fr; }
.premium-card-highlight { border-color: #ead9aa; box-shadow: 0 18px 40px rgba(155, 107, 0, 0.08); }
@media (max-width: 768px) {
  .nh-jobs-only-hero, .nh-premium-hero { grid-template-columns: 1fr; }
}


/* v4 cleanup */
.nh-mobile-sticky-bar { display:none !important; }
.nh-hero-quick-grid { display:none !important; }
.nh-premium-promo-card { display:none !important; }

@media (max-width: 900px) {
  .nh-hero { grid-template-columns: 1fr; }
  .nh-header { position: static; }
  .nh-nav.open { display:flex; }
}


/* v5 professional cleanup */
.nh-header{align-items:flex-start}
.nh-clean-hero{grid-template-columns:1fr !important;padding:28px 28px 24px !important}
.nh-clean-hero .nh-title{max-width:800px;font-size:clamp(1.9rem,4vw,3rem)}
.nh-simple-search,.nh-results-wrap{margin-top:18px}
.nh-search-card{padding:22px}
.nh-section-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px}
.nh-results-head{display:flex;align-items:end;justify-content:space-between;gap:12px;margin:2px 2px 14px}
.nh-job-grid-clean{grid-template-columns:repeat(3,minmax(0,1fr));margin-top:0 !important}
.nh-job-card-clean{padding:20px;border-radius:20px;transition:transform .18s ease, box-shadow .18s ease,border-color .18s ease}
.nh-job-card-clean:hover{transform:translateY(-2px);box-shadow:0 20px 44px rgba(15,32,64,.10);border-color:#cfe0ff}
.nh-company-line{font-size:1rem;font-weight:600;margin:0 0 2px;color:#44536a}
.nh-card-snippet{margin:10px 0 0}
.nh-search-top{display:grid;grid-template-columns:1.8fr 1fr;gap:12px}
.nh-search-actions{display:flex;gap:10px;margin-top:12px}
.nh-note{color:var(--muted)}
.nh-toolbar,.premium-toolbar,.nh-hero-quick-grid,.nh-mobile-sticky-bar,.nh-premium-promo-card{display:none !important}
[data-entry-modal]{display:none !important}
.nh-shell{padding-bottom:110px}
@media (max-width: 1024px){
  .nh-job-grid-clean{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 900px){
  .nh-header{position:static;padding:18px}
  .nh-nav{display:none;width:100%;padding-top:8px}
  .nh-nav.open{display:flex}
  .nh-search-top{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .nh-shell{padding:14px 12px 110px}
  .nh-header{border-radius:20px;padding:16px}
  .nh-brand{font-size:1.35rem}
  .nh-tagline{font-size:.92rem}
  .nh-clean-hero,.nh-search-card,.nh-card,.nh-copy-page,.nh-form-card{border-radius:20px}
  .nh-clean-hero{padding:22px 18px 20px !important}
  .nh-actions{display:grid;grid-template-columns:1fr 1fr;width:100%}
  .nh-actions .nh-btn{width:100%}
  .nh-job-grid-clean{grid-template-columns:1fr}
  .nh-job-card-clean{padding:18px}
  .nh-meta span{font-size:.84rem;padding:7px 10px}
  .nh-results-head{margin-bottom:12px}
}


/* v6 professional cleanup */
.nh-shell{
  max-width:1160px;
  padding:16px 14px 72px;
}
.nh-header{
  padding:16px 18px;
  border-radius:22px;
}
.nh-nav a{
  padding:10px 12px;
  font-size:.98rem;
}
.nh-clean-hero.nh-hero-compact-v6{
  padding:22px 22px 20px !important;
  grid-template-columns:1fr !important;
  min-height:auto !important;
}
.nh-hero-compact-v6 .nh-title{
  margin:0 0 10px;
  font-size:clamp(1.8rem,4vw,2.6rem);
}
.nh-hero-compact-v6 .nh-subtle{
  max-width:640px;
  margin:0 0 14px;
}
.nh-simple-search,
.nh-results-wrap{
  margin-top:14px !important;
}
.nh-search-card,
.nh-card,
.nh-form-card,
.nh-copy-page,
.nh-table-card{
  border-radius:20px;
}
.nh-search-card{
  padding:18px;
}
.nh-results-head{
  margin:0 2px 10px !important;
}
.nh-job-count{
  display:none !important;
}
.nh-grid.jobs.nh-job-grid-clean{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:0 !important;
}
.nh-job-card-clean{
  padding:18px;
}
.nh-card-snippet{
  color:var(--muted);
  line-height:1.55;
}
.nh-actions{
  gap:10px;
}
.nh-btn{
  min-height:46px;
}
@media (max-width: 900px){
  .nh-grid.jobs.nh-job-grid-clean{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 760px){
  .nh-shell{
    padding:12px 12px 60px;
  }
  .nh-header{
    position:static;
    padding:14px 16px;
  }
  .nh-nav{
    width:100%;
    gap:8px;
    padding-top:6px;
  }
  .nh-nav a{
    width:calc(50% - 4px);
    text-align:center;
    background:#f8fbff;
    border:1px solid var(--line);
  }
  .nh-nav.open{
    display:flex;
  }
  .nh-clean-hero.nh-hero-compact-v6{
    padding:18px 16px !important;
    gap:14px;
  }
  .nh-title{
    font-size:1.7rem !important;
  }
  .nh-subtle{
    font-size:.98rem;
  }
  .nh-search-card{
    padding:16px;
  }
  .nh-search-top{
    grid-template-columns:1fr !important;
    gap:10px;
  }
  .nh-search-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .nh-grid.jobs.nh-job-grid-clean{
    grid-template-columns:1fr !important;
    gap:14px;
  }
  .nh-job-card-clean{
    padding:16px;
  }
}


/* v7 premium separation fix */
.nh-premium-info-page .nh-premium-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
@media (max-width: 760px){
  .nh-premium-info-page .nh-premium-feature-grid{
    grid-template-columns:1fr;
  }
}


/* v8 premium full flow */
.nh-hero-compact-v8{
  grid-template-columns:1fr !important;
  padding:22px 22px 18px !important;
}
.premium-search-card{
  border:1px solid rgba(181,144,61,.18);
  background:linear-gradient(180deg,#fffdfa 0%,#ffffff 100%);
}
.premium-results-wrap .nh-results-head{
  margin-bottom:10px;
}
.premium-only-grid .premium-card-highlight{
  border:1px solid rgba(181,144,61,.22);
  box-shadow:0 16px 34px rgba(15,23,42,.05);
  background:linear-gradient(180deg,#fffdf8 0%,#ffffff 100%);
}
.nh-premium-intro-cards .nh-premium-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.premium-detail-card{
  border:1px solid rgba(181,144,61,.20);
  background:linear-gradient(180deg,#fffdfa 0%,#ffffff 100%);
}
.premium-side-card{
  border:1px solid rgba(181,144,61,.18);
}
@media (max-width: 760px){
  .nh-premium-intro-cards .nh-premium-feature-grid{
    grid-template-columns:1fr;
  }
  .nh-hero-compact-v8{
    padding:18px 16px !important;
  }
}
