/*
Theme Name: HireNest
Theme URI: https://hirenest.in
Author: HireNest Team
Author URI: https://hirenest.in
Description: HireNest — India's next-generation job portal WordPress theme. Navy + Orange + Blue color scheme, Sora font, clean card-based UI. Includes full dashboard for seekers, employers, and admins.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hirenest
Tags: job-board, employment, recruitment, responsive
*/

/* =============================================
   CSS Custom Properties — HireNest Design System
   ============================================= */
:root {
  --hn-navy:   #1a3c5e;
  --hn-blue:   #2563ab;
  --hn-orange: #f97316;
  --hn-green:  #059669;
  --hn-red:    #dc2626;
  --hn-bg:     #f8fafc;
  --hn-card:   #ffffff;
  --hn-border: #e2e8f0;
  --hn-text:   #0f172a;
  --hn-muted:  #64748b;
  --shadow-card: 0 4px 20px rgba(37, 99, 171, 0.12);
  --radius-card: 12px;
  --radius-btn:  8px;
}

/* =============================================
   Base Reset & Typography
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  background: var(--hn-bg);
  color: var(--hn-text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hn-sora { font-family: 'Sora', ui-sans-serif, system-ui, sans-serif; }
.hn-mono  { font-family: 'DM Mono', ui-monospace, monospace; }

a { color: var(--hn-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* =============================================
   Layout Utilities
   ============================================= */
.hn-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hn-section   { padding: 3.5rem 0; }
.hn-flex      { display: flex; align-items: center; }
.hn-grid-2    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.hn-grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hn-grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.hn-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--hn-card);
  border-bottom: 1px solid var(--hn-border);
  box-shadow: 0 1px 4px rgba(15,23,42,0.06);
}

.hn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

/* Logo */
.hn-logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: 'Sora', sans-serif;
  text-decoration: none;
}
.hn-logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hn-navy);
  letter-spacing: -0.02em;
}
.hn-logo-accent { color: var(--hn-orange); }
.hn-logo-sub    { font-size: 0.7rem; color: var(--hn-muted); }

/* Nav */
.hn-nav { display: flex; align-items: center; gap: 0.25rem; }

.hn-nav a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hn-muted);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.hn-nav a:hover, .hn-nav a.active {
  color: var(--hn-navy);
  background: #f1f5f9;
}

/* Header Actions */
.hn-header-actions { display: flex; align-items: center; gap: 0.5rem; }

.hn-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s, border-color 0.15s;
  line-height: 1;
}
.hn-btn-primary   { background: var(--hn-navy); color: #fff; }
.hn-btn-primary:hover { opacity: 0.9; color: #fff; text-decoration: none; }
.hn-btn-orange    { background: var(--hn-orange); color: #fff; }
.hn-btn-orange:hover { opacity: 0.95; color: #fff; text-decoration: none; }
.hn-btn-outline   { background: transparent; color: var(--hn-text); border: 1px solid var(--hn-border); }
.hn-btn-outline:hover { border-color: var(--hn-blue); color: var(--hn-blue); text-decoration: none; }
.hn-btn-ghost     { background: transparent; color: var(--hn-blue); }
.hn-btn-ghost:hover { background: #eff6ff; text-decoration: none; }
.hn-btn-orange-pill { background: rgba(249,115,22,0.15); color: var(--hn-orange); }
.hn-btn-orange-pill:hover { background: rgba(249,115,22,0.25); text-decoration: none; }

/* =============================================
   HERO SECTION
   ============================================= */
.hn-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--hn-navy) 0%, #1e4970 50%, var(--hn-blue) 100%);
  color: #fff;
}
.hn-hero::before {
  content: '';
  position: absolute;
  right: -5rem; top: -5rem;
  width: 16rem; height: 16rem;
  border-radius: 50%;
  background: rgba(249,115,22,0.2);
  filter: blur(48px);
  pointer-events: none;
}
.hn-hero-inner { padding: 4rem 0 5rem; }

.hn-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fed7aa;
}

.hn-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  max-width: 56rem;
}
.hn-hero h1 .underline-orange {
  text-decoration: underline;
  text-decoration-color: var(--hn-orange);
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}

.hn-hero-desc {
  margin-top: 1.25rem;
  max-width: 48rem;
  font-size: 1.125rem;
  color: #bfdbfe;
  line-height: 1.7;
}

/* Hero Pill Buttons */
.hn-hero-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.hn-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.hn-pill-red   { background: rgba(239,68,68,0.9);  color: #fff; font-weight: 600; }
.hn-pill-red:hover { background: #ef4444; color: #fff; text-decoration: none; }
.hn-pill-glass { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(8px); }
.hn-pill-glass:hover { background: rgba(255,255,255,0.25); color: #fff; text-decoration: none; }

/* Search Form */
.hn-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1rem;
  margin-top: 2.5rem;
  max-width: 48rem;
}

.hn-search-form input {
  flex: 1; min-width: 0;
  height: 48px;
  padding: 0 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #fff;
  font-size: 0.9375rem;
  color: var(--hn-text);
  outline: none;
  font-family: inherit;
}
.hn-search-form input::placeholder { color: var(--hn-muted); }
.hn-search-form input:focus { border-color: var(--hn-orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.2); }

.hn-search-city { max-width: 180px; }

.hn-search-btn {
  height: 48px;
  padding: 0 2rem;
  background: var(--hn-orange);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: flex; align-items: center;
  transition: opacity 0.15s;
}
.hn-search-btn:hover { opacity: 0.95; color: #fff; text-decoration: none; }

/* Trending */
.hn-trending { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.875rem; }
.hn-trending-label { color: #93c5fd; }
.hn-trending a {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.hn-trending a:hover { background: rgba(255,255,255,0.2); }

/* =============================================
   STATS BAR
   ============================================= */
.hn-stats-bar {
  background: var(--hn-card);
  border-bottom: 1px solid var(--hn-border);
}
.hn-stats-bar .hn-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hn-stat { text-align: center; }
.hn-stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--hn-navy);
}
.hn-stat-label { font-size: 0.875rem; color: var(--hn-muted); margin-top: 0.25rem; }

/* =============================================
   SECTION HEADINGS
   ============================================= */
.hn-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hn-navy);
}
.hn-section-subtitle { font-size: 0.875rem; color: var(--hn-muted); margin-top: 0.5rem; max-width: 48rem; }
.hn-section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.hn-view-all { font-size: 0.875rem; font-weight: 600; color: var(--hn-blue); text-decoration: none; }
.hn-view-all:hover { text-decoration: underline; }

/* =============================================
   JOB CARD
   ============================================= */
.hn-job-card {
  background: var(--hn-card);
  border: 1px solid var(--hn-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(15,23,42,0.06);
  transition: box-shadow 0.2s;
}
.hn-job-card:hover { box-shadow: var(--shadow-card); }

.hn-job-card-inner { display: flex; gap: 1rem; }

.hn-company-logo {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--hn-navy);
  flex-shrink: 0; overflow: hidden;
}
.hn-company-logo img { width: 100%; height: 100%; object-fit: cover; }

.hn-job-content { flex: 1; min-width: 0; }

.hn-job-title-row { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }

.hn-job-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--hn-text);
  text-decoration: none;
}
.hn-job-title:hover { color: var(--hn-blue); }

.hn-job-company { font-size: 0.875rem; color: var(--hn-muted); }
.hn-verified { color: var(--hn-green); margin-left: 0.25rem; }

.hn-job-salary { font-family: 'DM Mono', monospace; font-size: 0.875rem; font-weight: 500; color: var(--hn-green); }
.hn-job-time   { font-size: 0.75rem; color: var(--hn-muted); }

/* Badges */
.hn-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.hn-badge {
  display: inline-block;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}
.hn-badge-default  { background: #f1f5f9; color: var(--hn-text); }
.hn-badge-featured { background: #fff7ed; color: var(--hn-orange); font-weight: 500; }
.hn-badge-urgent   { background: #fef2f2; color: var(--hn-red); font-weight: 500; display: flex; align-items: center; gap: 0.35rem; }
.hn-badge-urgent::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--hn-red); animation: hn-ping 1.2s ease-in-out infinite; }
@keyframes hn-ping { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.4; } }

/* Skills */
.hn-skills { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.75rem; }
.hn-skill-tag {
  padding: 0.125rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--hn-border);
  background: var(--hn-bg);
  font-size: 0.75rem;
  color: var(--hn-muted);
}

/* Job Card Actions */
.hn-job-actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hn-border);
}

/* =============================================
   CITY CARDS (Landing Pages)
   ============================================= */
.hn-city-card {
  display: block;
  background: var(--hn-card);
  border: 1px solid var(--hn-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.hn-city-card:hover { box-shadow: var(--shadow-card); text-decoration: none; }
.hn-city-name { font-family: 'Sora', sans-serif; font-weight: 600; color: var(--hn-navy); font-size: 1rem; }
.hn-city-count { font-size: 1.5rem; font-weight: 700; color: var(--hn-green); margin-top: 0.25rem; }
.hn-city-sub   { font-size: 0.8125rem; color: var(--hn-muted); margin-top: 0.25rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hn-city-link  { display: inline-block; margin-top: 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--hn-blue); }

/* Category Card */
.hn-cat-card {
  display: block;
  background: var(--hn-card);
  border: 1px solid var(--hn-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.hn-cat-card:hover { box-shadow: var(--shadow-card); text-decoration: none; }
.hn-cat-name  { font-weight: 500; color: var(--hn-text); }
.hn-cat-count { font-size: 0.875rem; color: var(--hn-muted); margin-top: 0.25rem; }

/* =============================================
   CTA BANNER
   ============================================= */
.hn-cta-banner {
  border-radius: 16px;
  background: linear-gradient(to right, var(--hn-navy), var(--hn-blue));
  color: #fff;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hn-cta-banner h2 { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; }
.hn-cta-banner p  { color: #bfdbfe; margin-top: 0.5rem; max-width: 36rem; }

/* =============================================
   ARTICLE CARD
   ============================================= */
.hn-article-card {
  display: block;
  background: var(--hn-card);
  border: 1px solid var(--hn-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.hn-article-card:hover { box-shadow: var(--shadow-card); text-decoration: none; }
.hn-article-cat   { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--hn-orange); }
.hn-article-title { font-family: 'Sora', sans-serif; font-size: 1.0625rem; font-weight: 600; color: var(--hn-text); margin-top: 0.5rem; line-height: 1.4; }
.hn-article-desc  { font-size: 0.875rem; color: var(--hn-muted); margin-top: 0.5rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* =============================================
   DASHBOARD
   ============================================= */
.hn-dashboard { padding: 3.5rem 0; }
.hn-dashboard h1 {
  font-family: 'Sora', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--hn-navy);
}
.hn-dashboard-subtitle { color: var(--hn-muted); margin-top: 0.5rem; }

.hn-dashboard-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Sidebar */
.hn-sidebar {
  background: var(--hn-card);
  border: 1px solid var(--hn-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  height: fit-content;
}
.hn-sidebar-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hn-navy), var(--hn-blue));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 1rem;
}
.hn-sidebar-name  { font-weight: 700; color: var(--hn-navy); font-size: 1rem; }
.hn-sidebar-email { font-size: 0.8125rem; color: var(--hn-muted); margin-top: 0.25rem; }
.hn-sidebar-role  {
  display: inline-block; margin-top: 0.5rem;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 600;
  background: rgba(249,115,22,0.12); color: var(--hn-orange);
}

.hn-sidebar-nav { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.hn-sidebar-nav a {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--hn-muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.hn-sidebar-nav a:hover, .hn-sidebar-nav a.active {
  background: #f1f5f9; color: var(--hn-navy);
}
.hn-sidebar-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Dashboard Cards */
.hn-dash-card {
  background: var(--hn-card);
  border: 1px solid var(--hn-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}
.hn-dash-card h2 { font-family: 'Sora', sans-serif; font-weight: 600; color: var(--hn-navy); font-size: 1.0625rem; }
.hn-dash-card p  { font-size: 0.875rem; color: var(--hn-muted); margin-top: 0.5rem; line-height: 1.6; }
.hn-dash-card-admin { border-color: rgba(249,115,22,0.35); background: #fff7ed30; }

.hn-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hn-dash-stat-card {
  background: var(--hn-card);
  border: 1px solid var(--hn-border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.hn-dash-stat-num { font-family: 'Sora', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--hn-navy); }
.hn-dash-stat-lbl { font-size: 0.8125rem; color: var(--hn-muted); margin-top: 0.25rem; }

/* Forms */
.hn-form { display: flex; flex-direction: column; gap: 1rem; }
.hn-form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.hn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hn-label { font-size: 0.875rem; font-weight: 500; color: var(--hn-text); }
.hn-input, .hn-select, .hn-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--hn-border);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--hn-text);
  background: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hn-input:focus, .hn-select:focus, .hn-textarea:focus {
  border-color: var(--hn-orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
}
.hn-textarea { resize: vertical; min-height: 100px; }

/* Admin Table */
.hn-table-wrap { overflow-x: auto; border: 1px solid var(--hn-border); border-radius: 10px; }
.hn-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.hn-table thead { background: var(--hn-bg); }
.hn-table th { padding: 0.75rem 1rem; text-align: left; font-weight: 600; color: var(--hn-muted); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; border-bottom: 1px solid var(--hn-border); }
.hn-table td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--hn-border); color: var(--hn-text); vertical-align: middle; }
.hn-table tr:last-child td { border-bottom: none; }
.hn-table tr:hover td { background: #f8fafc; }

.hn-status-active  { background: #dcfce7; color: #166534; padding: 0.125rem 0.625rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; }
.hn-status-pending { background: #fef9c3; color: #854d0e; padding: 0.125rem 0.625rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; }
.hn-status-closed  { background: #f1f5f9; color: var(--hn-muted);  padding: 0.125rem 0.625rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; }

/* Alert Messages */
.hn-alert { padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.875rem; margin-bottom: 1rem; }
.hn-alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.hn-alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.hn-alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* =============================================
   FOOTER
   ============================================= */
.hn-footer {
  background: var(--hn-navy);
  color: #cbd5e1;
  margin-top: auto;
}
.hn-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}
.hn-footer-brand p { font-family: 'Sora', sans-serif; font-size: 1.125rem; font-weight: 700; color: #fff; }
.hn-footer-brand span { font-size: 0.875rem; color: #94a3b8; display: block; margin-top: 0.5rem; line-height: 1.6; }
.hn-footer-col h4 { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.hn-footer-col ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.hn-footer-col li a { font-size: 0.875rem; color: #94a3b8; text-decoration: none; transition: color 0.15s; }
.hn-footer-col li a:hover { color: #fff; }
.hn-footer-bottom {
  border-top: 1px solid #334155;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
.hn-menu-toggle { display: none; background: none; border: 1px solid var(--hn-border); padding: 0.375rem 0.625rem; border-radius: 8px; cursor: pointer; }

@media (max-width: 900px) {
  .hn-nav { display: none; }
  .hn-nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--hn-card); border-bottom: 1px solid var(--hn-border); padding: 1rem; z-index: 99; }
  .hn-menu-toggle { display: block; }
  .hn-dashboard-grid { grid-template-columns: 1fr; }
  .hn-grid-3, .hn-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hn-grid-2 { grid-template-columns: 1fr; }
  .hn-stats-bar .hn-container { grid-template-columns: repeat(2, 1fr); }
  .hn-footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hn-cta-banner { flex-direction: column; padding: 1.5rem; }
  .hn-form-row { grid-template-columns: 1fr; }
  .hn-dash-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hn-grid-3, .hn-grid-4 { grid-template-columns: 1fr; }
  .hn-hero-inner { padding: 2.5rem 0 3rem; }
  .hn-logo-sub { display: none; }
  .hn-sidebar-nav { flex-direction: row; flex-wrap: wrap; }
  .hn-dash-stats { grid-template-columns: 1fr; }
  .hn-job-card-inner { flex-direction: column; }
}
