/* ============================================================
   JobNest – India's Modern Job Portal | Main Stylesheet
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --primary:       #0a65cc;
  --primary-dark:  #0850a8;
  --primary-light: #e8f1fb;
  --secondary:     #00b074;
  --accent:        #ff6b35;
  --dark:          #0d1117;
  --dark2:         #161b22;
  --surface:       #ffffff;
  --surface2:      #f6f8fa;
  --border:        #d0d7de;
  --text:          #1a1f2e;
  --text-muted:    #636e7b;
  --text-light:    #8b949e;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.14);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --font:          'Inter', sans-serif;
  --font-heading:  'Syne', sans-serif;
  --transition:    all 0.25s cubic-bezier(.4,0,.2,1);
  --container:     1240px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--surface); line-height: 1.6; font-size: 15px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Utilities ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── Section Label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2; color: var(--dark);
}
.section-sub {
  font-size: 16px; color: var(--text-muted); margin-top: 12px; max-width: 520px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,101,204,.3); }
.btn-secondary {
  background: var(--secondary); color: #fff; border-color: var(--secondary);
}
.btn-secondary:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff; color: var(--primary); border-color: #fff;
}
.btn-white:hover { background: var(--primary-light); }
.btn-ghost {
  background: transparent; color: var(--text-muted); border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface2); color: var(--text); }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { opacity: .9; transform: translateY(-1px); }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600;
}
.badge-blue { background: var(--primary-light); color: var(--primary); }
.badge-green { background: #dcfce7; color: #16a34a; }
.badge-orange { background: #fff7ed; color: #ea580c; }
.badge-purple { background: #f3e8ff; color: #9333ea; }
.badge-red { background: #fef2f2; color: #dc2626; }
.badge-gray { background: var(--surface2); color: var(--text-muted); }

/* ── Card ── */
.card {
  background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border);
  transition: var(--transition); overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--primary); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER / NAVBAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-icon {
  width: 36px; height: 36px; background: var(--primary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
}
.nav-logo .logo-text { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--dark); }
.nav-logo .logo-text span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* Mobile menu */
.mobile-menu {
  display: none; position: absolute; top: 68px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 24px; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 500; color: var(--text); }
.mobile-menu a:hover { background: var(--surface2); color: var(--primary); }
.mobile-menu .divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  background: linear-gradient(135deg, #0a1628 0%, #0a65cc 60%, #0d2a5e 100%);
  padding: 80px 0 100px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.15) 0%, transparent 70%);
  top: -200px; right: -100px; animation: blob-float 8s ease-in-out infinite;
}
@keyframes blob-float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff;
  padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2); margin-bottom: 24px; backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: #fbbf24; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 40px; }

/* Search Box */
.search-box {
  background: #fff; border-radius: var(--radius-md); padding: 8px;
  display: flex; gap: 4px; max-width: 800px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.search-field {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-right: 1px solid var(--border);
}
.search-field:last-of-type { border-right: none; }
.search-field svg { color: var(--text-muted); flex-shrink: 0; }
.search-field input, .search-field select {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 14px; color: var(--text);
}
.search-btn {
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  padding: 14px 28px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700;
  transition: var(--transition); white-space: nowrap;
}
.search-btn:hover { background: var(--primary-dark); }
.popular-searches {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-top: 20px;
}
.popular-searches span { color: rgba(255,255,255,.6); font-size: 13px; }
.popular-tag {
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  padding: 5px 14px; border-radius: 100px; font-size: 12px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.2); transition: var(--transition);
}
.popular-tag:hover { background: rgba(255,255,255,.25); }

/* Stats Row */
.stats-row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1;
}
.stat-item .stat-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   JOB CATEGORIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px;
}
.cat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px 16px; text-align: center; cursor: pointer; transition: var(--transition);
}
.cat-card:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm); margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.cat-card h3 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cat-card p { font-size: 12px; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   JOB CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.job-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 24px; transition: var(--transition); position: relative; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: transparent; transition: var(--transition);
}
.job-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-card:hover::before { background: var(--primary); }
.job-card.featured { border-color: #fbbf24; background: linear-gradient(135deg, #fffbf0, #fff); }
.job-card.featured::before { background: #fbbf24; }
.job-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.company-logo {
  width: 48px; height: 48px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--surface2); flex-shrink: 0; font-weight: 800; color: var(--primary);
}
.bookmark-btn {
  width: 32px; height: 32px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: transparent; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--text-muted);
}
.bookmark-btn:hover, .bookmark-btn.active { color: var(--primary); border-color: var(--primary); background: var(--primary-light); }
.job-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.job-title a:hover { color: var(--primary); }
.company-name { font-size: 13px; color: var(--text-muted); }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.job-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); }
.job-meta-item svg { flex-shrink: 0; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.job-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.posted-time { font-size: 12px; color: var(--text-light); }
.salary-tag { font-size: 13px; font-weight: 700; color: var(--secondary); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPANY LOGOS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.companies-scroll {
  overflow: hidden; position: relative;
}
.companies-track {
  display: flex; gap: 24px; animation: scroll-x 30s linear infinite;
}
.companies-track:hover { animation-play-state: paused; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.company-logo-card {
  flex-shrink: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 32px; display: flex; align-items: center; gap: 12px;
  transition: var(--transition); cursor: pointer; min-width: 180px;
}
.company-logo-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.company-logo-card .co-icon { font-size: 28px; }
.company-logo-card .co-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.company-logo-card .co-jobs { font-size: 11px; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOW IT WORKS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step-card { text-align: center; position: relative; }
.step-card::after {
  content: '→'; position: absolute; right: -20px; top: 28px;
  font-size: 24px; color: var(--border); font-weight: 300;
}
.step-card:last-child::after { display: none; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--primary);
  color: #fff; font-family: var(--font-heading); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(10,101,204,.3);
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials-section { background: linear-gradient(135deg, #0a1628, #0d2a5e); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 28px; backdrop-filter: blur(8px);
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,.11); transform: translateY(-2px); }
.stars { display: flex; gap: 3px; color: #fbbf24; margin-bottom: 14px; font-size: 15px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-ava {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.testi-name { font-weight: 700; color: #fff; font-size: 14px; }
.testi-role { font-size: 12px; color: rgba(255,255,255,.5); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-strip {
  background: linear-gradient(90deg, var(--primary) 0%, #0850a8 100%);
  padding: 60px 0; text-align: center;
}
.cta-strip h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; font-weight: 800; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   APP DOWNLOAD
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.app-section { background: var(--dark); padding: 80px 0; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.app-content h2 { font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 3rem); color: #fff; font-weight: 800; margin-bottom: 16px; }
.app-content p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.app-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.app-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm); padding: 12px 20px; cursor: pointer; transition: var(--transition);
}
.app-badge:hover { background: rgba(255,255,255,.15); }
.app-badge .badge-icon { font-size: 28px; }
.app-badge .badge-text .small { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.app-badge .badge-text .big { font-size: 16px; color: #fff; font-weight: 700; }
.app-mockup {
  background: linear-gradient(135deg, rgba(10,101,204,.2), rgba(0,176,116,.2));
  border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,.1);
  padding: 40px 24px; text-align: center; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.phone-frame {
  width: 220px; height: 380px; background: var(--dark2); border-radius: 32px;
  border: 3px solid rgba(255,255,255,.15); padding: 16px; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.phone-screen { background: #fff; height: 100%; border-radius: 22px; overflow: hidden; }
.phone-app-ui { padding: 16px; }
.phone-header { background: var(--primary); padding: 12px 16px; border-radius: 8px; margin: -16px -16px 16px; }
.phone-header h4 { color: #fff; font-size: 13px; font-weight: 700; }
.phone-job-card { background: var(--surface2); border-radius: 8px; padding: 10px; margin-bottom: 8px; }
.phone-job-card .pj-title { font-size: 11px; font-weight: 700; color: var(--dark); }
.phone-job-card .pj-co { font-size: 10px; color: var(--text-muted); }
.phone-job-card .pj-sal { font-size: 10px; color: var(--secondary); font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-img { height: 200px; background: var(--surface2); overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 20px; }
.blog-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 8px; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-light); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 48px; }
.footer-brand .logo-text { font-family: var(--font-heading); font-size: 22px; color: #fff; font-weight: 800; }
.footer-brand .logo-text span { color: var(--primary); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 16px; transition: var(--transition); cursor: pointer;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-links a:hover { color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   JOBS LISTING PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero { background: linear-gradient(135deg, #0a1628, #0a65cc); padding: 56px 0; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 15px; margin-top: 8px; }
.jobs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding: 40px 0; }
.filter-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; height: fit-content; position: sticky; top: 90px; }
.filter-sidebar h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }
.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 12px; }
.filter-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.filter-item label { font-size: 13px; color: var(--text); cursor: pointer; flex: 1; }
.filter-item input[type="checkbox"] { accent-color: var(--primary); width: 15px; height: 15px; cursor: pointer; }
.filter-item .count { font-size: 11px; color: var(--text-light); background: var(--surface2); padding: 2px 7px; border-radius: 100px; }
.jobs-count { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.jobs-count strong { color: var(--dark); }
.sort-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.sort-select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 13px; color: var(--text); background: #fff; cursor: pointer; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   JOB DETAIL PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.job-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; padding: 40px 0; }
.job-detail-main { }
.job-detail-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; margin-bottom: 20px; }
.job-detail-card h2 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--dark); font-weight: 800; margin-bottom: 8px; }
.job-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; margin: 20px 0; }
.meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.meta-item strong { color: var(--dark); font-weight: 600; }
section.content-section h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
section.content-section ul { padding-left: 0; }
section.content-section ul li { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; padding-left: 20px; position: relative; line-height: 1.6; }
section.content-section ul li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }
.apply-sidebar { position: sticky; top: 90px; }
.apply-card { background: #fff; border: 1.5px solid var(--primary); border-radius: var(--radius-md); padding: 28px; }
.apply-card .salary-big { font-family: var(--font-heading); font-size: 2rem; color: var(--secondary); font-weight: 800; margin-bottom: 4px; }
.apply-card .salary-label { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.co-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-top: 16px; }
.co-info-card .co-logo-big { width: 64px; height: 64px; border-radius: var(--radius-sm); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 28px; background: var(--surface2); margin-bottom: 12px; }
.co-info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.co-info-card .co-detail { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DASHBOARD
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 68px); }
.dash-sidebar {
  background: var(--dark); padding: 0; position: sticky; top: 68px; height: calc(100vh - 68px);
  overflow-y: auto; flex-shrink: 0;
}
.dash-user { padding: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dash-user-ava {
  width: 56px; height: 56px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 10px;
}
.dash-user-name { font-weight: 700; color: #fff; font-size: 15px; }
.dash-user-role { font-size: 12px; color: rgba(255,255,255,.5); }
.dash-nav { padding: 16px 12px; }
.dash-nav-section { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); padding: 8px 12px 4px; }
.dash-nav-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition);
  margin-bottom: 2px; text-decoration: none;
}
.dash-nav-item:hover, .dash-nav-item.active { background: rgba(255,255,255,.08); color: #fff; }
.dash-nav-item.active { background: var(--primary); color: #fff; }
.dash-nav-item .badge-num {
  margin-left: auto; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  padding: 1px 7px; border-radius: 100px;
}
.dash-main { background: var(--surface2); padding: 32px; overflow-y: auto; }
.dash-header { margin-bottom: 28px; }
.dash-header h1 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.dash-header p { color: var(--text-muted); font-size: 14px; margin-top: 4px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.stat-card .stat-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px; }
.stat-card .stat-value { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.stat-card .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.stat-card .stat-change { font-size: 12px; margin-top: 6px; }
.stat-change.up { color: var(--secondary); }
.stat-change.down { color: #ef4444; }
.dash-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; }
.dash-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-section-header h3 { font-size: 16px; font-weight: 700; color: var(--dark); }
.application-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.application-item:last-child { border-bottom: none; }
.app-co-logo { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.app-info { flex: 1; }
.app-job-title { font-size: 15px; font-weight: 600; color: var(--dark); }
.app-company { font-size: 13px; color: var(--text-muted); }
.app-status { margin-left: auto; }

/* Profile completion bar */
.profile-completion { background: var(--primary-light); border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; }
.completion-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.completion-header span { font-size: 14px; font-weight: 600; color: var(--primary); }
.completion-bar { height: 8px; background: rgba(10,101,204,.2); border-radius: 100px; overflow: hidden; }
.completion-fill { height: 100%; background: var(--primary); border-radius: 100px; transition: width 1s ease; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pricing-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); position: relative;
}
.pricing-card.popular {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(10,101,204,.12);
  background: linear-gradient(135deg, #f0f7ff, #fff);
}
.popular-tag-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 6px 18px; border-radius: 100px;
  white-space: nowrap;
}
.pricing-plan { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 12px; }
.pricing-price { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--dark); }
.pricing-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 8px; }
.pricing-period { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; margin: 24px 0; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--secondary); font-size: 16px; flex-shrink: 0; }
.pricing-features li .cross { color: #ccc; font-size: 16px; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--text-light); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHATBOT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.chatbot-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%; background: var(--primary);
  color: #fff; border: none; cursor: pointer; box-shadow: 0 8px 32px rgba(10,101,204,.4);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  transition: var(--transition); animation: bounce-in .5s ease;
}
.chatbot-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(10,101,204,.5); }
@keyframes bounce-in { 0% { transform: scale(0); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }
.chatbot-window {
  position: fixed; bottom: 100px; right: 28px; z-index: 9998; width: 360px;
  background: #fff; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.2);
  border: 1px solid var(--border); overflow: hidden; display: none; flex-direction: column;
  max-height: 520px;
}
.chatbot-window.open { display: flex; animation: slide-up .3s ease; }
@keyframes slide-up { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.chat-header { background: var(--primary); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.chat-header .chat-ava { width: 36px; height: 36px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.chat-header .chat-name { color: #fff; font-weight: 700; font-size: 14px; }
.chat-header .chat-status { color: rgba(255,255,255,.7); font-size: 11px; }
.chat-close { margin-left: auto; color: rgba(255,255,255,.8); cursor: pointer; font-size: 18px; border: none; background: none; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 80%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble { padding: 10px 14px; border-radius: 16px; font-size: 13px; line-height: 1.5; }
.chat-msg.bot .chat-bubble { background: var(--surface2); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: var(--primary); color: #fff; border-bottom-right-radius: 4px; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.quick-reply { background: #fff; border: 1px solid var(--primary); color: var(--primary); padding: 5px 12px; border-radius: 100px; font-size: 11px; cursor: pointer; transition: var(--transition); }
.quick-reply:hover { background: var(--primary); color: #fff; }
.chat-input-row { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border); }
.chat-input { flex: 1; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; outline: none; }
.chat-input:focus { border-color: var(--primary); }
.chat-send { background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm); padding: 10px 14px; cursor: pointer; font-size: 16px; transition: var(--transition); }
.chat-send:hover { background: var(--primary-dark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT & ABOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 6px; }
.form-control {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 14px; color: var(--text); background: #fff; outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,101,204,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { padding: 24px 0; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img-block { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius-xl); padding: 48px; color: #fff; text-align: center; }
.big-number { font-family: var(--font-heading); font-size: 5rem; font-weight: 800; line-height: 1; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 20px; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-ava { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.team-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.team-role { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RECRUITER DASHBOARD EXTRAS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.candidate-table { width: 100%; border-collapse: collapse; }
.candidate-table th { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); padding: 10px 12px; text-align: left; border-bottom: 2px solid var(--border); }
.candidate-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.candidate-table tr:last-child td { border-bottom: none; }
.candidate-table tr:hover td { background: var(--surface2); }
.cand-name { display: flex; align-items: center; gap: 10px; }
.cand-ava { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.resume-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--surface2); border: 1px solid var(--border); padding: 4px 10px; border-radius: 100px; font-size: 11px; color: var(--text-muted); cursor: pointer; transition: var(--transition); }
.resume-badge:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOAST / NOTIFICATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 99999; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--dark); color: #fff; padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 14px; display: flex; align-items: center; gap: 10px; min-width: 280px;
  animation: toast-in .3s ease; box-shadow: var(--shadow-lg); border-left: 4px solid var(--secondary);
}
.toast.error { border-left-color: #ef4444; }
@keyframes toast-in { from { opacity:0; transform: translateX(30px); } to { opacity:1; transform: translateX(0); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MODAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: #fff; border-radius: var(--radius-lg); max-width: 480px; width: 100%; overflow: hidden; transform: scale(.95); transition: transform .25s; }
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { padding: 24px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 18px; font-weight: 700; }
.modal-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-muted); }
.modal-body { padding: 28px; }
.modal-tabs { display: flex; gap: 4px; background: var(--surface2); padding: 4px; border-radius: var(--radius-sm); margin-bottom: 24px; }
.modal-tab { flex: 1; padding: 10px; text-align: center; font-size: 14px; font-weight: 600; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); color: var(--text-muted); }
.modal-tab.active { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }
.social-login { display: flex; gap: 10px; margin-top: 16px; }
.social-login-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); background: #fff; }
.social-login-btn:hover { background: var(--surface2); }
.divider-or { text-align: center; position: relative; margin: 16px 0; }
.divider-or::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.divider-or span { position: relative; background: #fff; padding: 0 12px; font-size: 12px; color: var(--text-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .jobs-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .job-detail-layout { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
  .app-grid { grid-template-columns: 1fr; }
  .about-mission { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .section-pad { padding: 56px 0; }
  .stats-row { gap: 24px; }
  .stat-item .stat-num { font-size: 1.8rem; }
  .search-box { 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; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dash-sidebar { height: auto; position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .chatbot-window { width: calc(100vw - 48px); right: 24px; bottom: 96px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .modal { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { flex-direction: column; gap: 20px; }
}
