/* ============================================
   CareerNest — World-Class Remote Job Board CSS
   ============================================ */

/* CSS Variables */
:root {
  --blue-900: #0a2f52;
  --blue-800: #0f4c81;
  --blue-700: #1565c0;
  --blue-600: #1976d2;
  --blue-500: #2196f3;
  --blue-100: #e3f2fd;
  --blue-50:  #f0f8ff;
  --accent:   #ff6b35;
  --accent-h: #e55a28;
  --green:    #2e7d32;
  --green-l:  #e8f5e9;
  --gold:     #f59e0b;
  --gold-l:   #fffbeb;
  --red:      #c62828;
  --red-l:    #ffebee;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50:  #f8fafc;
  --white:    #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.03);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.15);
  --radius-sm: 6px;
  --radius:    10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.2s ease;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Sora', 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; padding-top: 110px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-800); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Skip Link */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--blue-800); color: #fff; padding: .5rem 1rem; border-radius: var(--radius-sm); z-index: 9999; }
.skip-link:focus { top: 1rem; }

/* Container */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; width: 100%; }
.section { padding: 5rem 0; }
.bg-light { background: var(--gray-50); }
.text-center { text-align: center; }

/* ===================== HEADER ===================== */
.header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
/* .site-header is the new header class - see bottom of file */

/* Top bar */
.header-top { background: var(--blue-900); color: rgba(255,255,255,.9); font-size: .75rem; padding: .35rem 0; }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.header-top i { color: #ffd700; margin-right: .3rem; }
.header-top-links { display: flex; gap: 1.25rem; }
.header-top-links a { color: rgba(255,255,255,.75); font-size: .75rem; transition: color var(--transition); }
.header-top-links a:hover { color: #fff; }

/* Navbar */
.navbar { padding: .7rem 0; }
.nav-inner { display: flex; align-items: center; gap: .75rem; min-height: 48px; width: 100%; }

/* Logo */
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--blue-800); white-space: nowrap; }
.logo-tagline { font-size: .6rem; color: var(--gray-500); font-weight: 500; letter-spacing: .02em; white-space: nowrap; }

/* Nav Search */
.nav-search { flex: 1; min-width: 0; max-width: 260px; }
.nav-search form { display: flex; }
.search-input-wrap { flex: 1; position: relative; }
.search-input-wrap i { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); pointer-events: none; font-size: .85rem; }
.search-input-wrap input { width: 100%; padding: .55rem .75rem .55rem 2.2rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-family: inherit; font-size: .85rem; background: var(--gray-50); transition: all var(--transition); }
.search-input-wrap input:focus { outline: none; border-color: var(--blue-600); background: #fff; box-shadow: 0 0 0 3px rgba(33,150,243,.1); }
.btn-search { display: none; } /* Hidden - search on enter */

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: .1rem; flex-shrink: 0; }
.nav-link { padding: .45rem .6rem; font-size: .83rem; font-weight: 500; color: var(--gray-700); border-radius: var(--radius-sm); transition: all var(--transition); cursor: pointer; white-space: nowrap; border: none; background: none; font-family: inherit; }
.nav-link:hover, .nav-link.active { background: var(--blue-50); color: var(--blue-700); }
.featured-link { color: var(--gold) !important; }
.featured-link:hover { background: var(--gold-l) !important; }
.btn-post-job { padding: .45rem .85rem; background: var(--accent); color: #fff !important; border-radius: var(--radius); font-size: .82rem; font-weight: 700; transition: background var(--transition); white-space: nowrap; margin-left: .25rem; }
.btn-post-job:hover { background: var(--accent-h); }

/* Dropdown */
.nav-dropdown { position: relative; }
/* Categories dropdown - hover based with delay */
.nav-dropdown:hover .dropdown-menu:not(#account-menu) { display: block !important; }
/* Account menu - click only, never hover */
#account-menu { display: none; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); box-shadow: 0 8px 30px rgba(0,0,0,.12); min-width: 240px; max-height: 420px; overflow-y: auto; padding: .4rem; z-index: 9999; }
.dropdown-menu.open, .dropdown-menu[style*="display: block"], .dropdown-menu[style*="display:block"] { display: block !important; }
.dropdown-menu a { display: flex; align-items: center; gap: .65rem; padding: .6rem .85rem; font-size: .85rem; color: var(--gray-700); border-radius: var(--radius-sm); transition: background .15s; text-decoration: none; }
.dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-700); }
.dropdown-menu a i { width: 16px; text-align: center; color: var(--blue-600); font-size: .85rem; }
.dropdown-divider { height: 1px; background: var(--gray-100); margin: .3rem 0; }
.dropdown-menu-right { right: 0; left: auto; }
.nav-dropdown .dropdown-menu::-webkit-scrollbar { width: 4px; }
.nav-dropdown .dropdown-menu::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }

/* Mobile actions */
.mobile-actions { display: none; align-items: center; gap: .3rem; margin-left: auto; }
.mobile-search-btn, .mobile-menu-btn { background: none; border: none; padding: .5rem; cursor: pointer; color: var(--gray-700); font-size: 1rem; border-radius: var(--radius-sm); }
.mobile-search-btn:hover, .mobile-menu-btn:hover { background: var(--gray-100); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all .25s; }

/* Mobile search bar */
.mobile-search-bar { padding: .5rem 0 .25rem; border-top: 1px solid var(--gray-100); }
.mobile-search-inner { display: flex; align-items: center; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.mobile-search-inner i { padding: 0 .75rem; color: var(--gray-400); font-size: .9rem; }
.mobile-search-inner input { flex: 1; padding: .65rem .5rem; border: none; background: transparent; font-family: inherit; font-size: .9rem; outline: none; }
.mobile-search-inner button { padding: .65rem 1rem; background: var(--blue-700); color: #fff; border: none; font-weight: 600; font-size: .85rem; cursor: pointer; }

/* Mobile Menu */
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--gray-100); padding: .75rem 1.25rem 1.25rem; max-height: 85vh; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: flex; align-items: center; gap: .6rem; padding: .65rem .25rem; font-size: .9rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); text-decoration: none; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue-700); }
.mobile-divider { height: 1px; background: var(--gray-200); margin: .4rem 0; }
.mobile-auth-btns { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .5rem 0 .75rem; }
.mobile-auth-btn { padding: .55rem .5rem !important; font-size: .82rem !important; justify-content: center; }
.mobile-user-info { display: flex; align-items: center; gap: .75rem; padding: .6rem 0 .85rem; border-bottom: 1px solid var(--gray-200); margin-bottom: .25rem; }
.btn-mobile-post { background: var(--accent) !important; color: #fff !important; justify-content: center; border-radius: var(--radius); font-weight: 700; margin-top: .5rem; padding: .75rem !important; }

/* Search Suggestions */
.search-suggestions { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 300; display: none; max-height: 300px; overflow-y: auto; }
.suggestion-item { display: flex; align-items: center; gap: .75rem; padding: .65rem .9rem; cursor: pointer; font-size: .88rem; }
.suggestion-item:hover { background: var(--gray-50); }
.suggestion-item i { color: var(--blue-500); }

/* ===================== HERO ===================== */
.hero { position: relative; background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, #1a237e 100%); color: #fff; padding: 5rem 0 3.5rem; overflow: hidden; width: 100%; max-width: 100vw; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; width: 100%; }
.hero-shape { position: absolute; border-radius: 50%; opacity: .06; }
.hero-shape-1 { width: 500px; height: 500px; background: #fff; top: -150px; right: -100px; }
.hero-shape-2 { width: 350px; height: 350px; background: var(--accent); bottom: -120px; left: -80px; }
.hero-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 32px 32px; }

.hero-content { position: relative; max-width: 820px; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: .4rem 1rem; border-radius: 100px; font-size: .82rem; font-weight: 500; margin-bottom: 1.5rem; backdrop-filter: blur(10px); }
.hero-badge i { color: #ffd700; }
.hero-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.text-gradient { background: linear-gradient(90deg, #ffd700, #ff9800); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; opacity: .9; margin-bottom: 2.25rem; max-width: 600px; }

/* Hero Search */
.hero-search-form { background: rgba(255,255,255,.97); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); padding: .5rem; }
.hero-search-inner { display: flex; align-items: center; gap: 0; }
.search-field { display: flex; align-items: center; gap: .6rem; flex: 1; padding: .75rem 1rem; }
.search-field i { color: var(--gray-400); font-size: .95rem; flex-shrink: 0; }
.search-field input, .search-field select { border: none; outline: none; font-family: inherit; font-size: .92rem; color: var(--gray-800); width: 100%; background: transparent; }
.search-field select { cursor: pointer; }
.search-divider { width: 1px; height: 36px; background: var(--gray-200); flex-shrink: 0; }
.hero-search-btn { padding: .85rem 1.75rem; background: var(--blue-700); color: #fff; border-radius: var(--radius-md); font-size: .95rem; font-weight: 700; white-space: nowrap; margin: .3rem; transition: background var(--transition); }
.hero-search-btn:hover { background: var(--blue-900); }
.hero-search-btn i { margin-right: .4rem; }

.popular-searches { margin-top: 1.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .85rem; }
.popular-searches span { opacity: .7; font-weight: 500; }
.popular-searches a { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.95); padding: .28rem .85rem; border-radius: 100px; font-size: .82rem; transition: all var(--transition); }
.popular-searches a:hover { background: rgba(255,255,255,.25); }

/* Hero Stats */
.hero-stats { position: relative; display: flex; align-items: center; gap: 0; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 1.5rem 2rem; margin-top: 3rem; max-width: 600px; backdrop-filter: blur(10px); }
.stat-item { flex: 1; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: .78rem; opacity: .75; margin-top: .3rem; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.4rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; font-family: inherit; }
.btn-primary { background: var(--blue-700); color: #fff; }
.btn-primary:hover { background: var(--blue-900); color: #fff; }
.btn-outline { background: transparent; border-color: var(--blue-700); color: var(--blue-700); }
.btn-outline:hover { background: var(--blue-50); }
.btn-white { background: #fff; color: var(--blue-800); }
.btn-white:hover { background: var(--gray-100); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #20b857; color: #fff; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-sm { padding: .4rem .85rem; font-size: .82rem; }
.w-full { width: 100%; justify-content: center; }

/* ===================== SECTION HEADERS ===================== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; color: var(--gray-900); margin-bottom: .6rem; }
.section-subtitle { font-size: 1rem; color: var(--gray-500); max-width: 500px; margin: 0 auto; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.tabs-wrap { display: flex; gap: .5rem; }
.tab-btn { padding: .5rem 1.1rem; border-radius: var(--radius); font-size: .85rem; font-weight: 600; cursor: pointer; background: var(--gray-100); color: var(--gray-600); border: 2px solid transparent; transition: all var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.tab-btn.active, .tab-btn:hover { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.tab-link { background: transparent !important; border-color: var(--blue-200) !important; color: var(--blue-700) !important; }
.tab-link:hover { background: var(--blue-50) !important; }

/* ===================== CATEGORIES ===================== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .85rem; }
.category-card { display: flex; align-items: center; gap: .75rem; padding: .95rem 1rem; background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); transition: all .2s; text-decoration: none; color: var(--gray-800); min-width: 0; width: 100%; box-sizing: border-box; }
.category-card:hover { border-color: var(--blue-500); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--gray-800); }
.cat-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.cat-info { flex: 1; min-width: 0; }
.cat-name { font-size: .88rem; font-weight: 600; color: var(--gray-800); white-space: normal; word-break: break-word; line-height: 1.35; }
.cat-count { font-size: .76rem; color: var(--gray-500); margin-top: .1rem; }
.cat-arrow { color: var(--gray-300); font-size: .8rem; transition: transform var(--transition); flex-shrink: 0; }
.category-card:hover .cat-arrow { transform: translateX(3px); color: var(--blue-500); }

/* ===================== JOB CARDS ===================== */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1rem; }
.jobs-list { display: flex; flex-direction: column; gap: .75rem; }
.jobs-list-wrap { display: flex; flex-direction: column; gap: .75rem; }

.job-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); position: relative; transition: all .2s; }
.job-card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.job-card.featured { border-color: var(--gold); background: linear-gradient(135deg, #fffef5 0%, #fff 100%); }
.job-card.featured:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(245,158,11,.15); }

.featured-badge { position: absolute; top: -1px; right: 16px; background: var(--gold); color: var(--gray-900); padding: .2rem .7rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-size: .72rem; font-weight: 700; display: flex; align-items: center; gap: .3rem; }
.featured-badge i { font-size: .65rem; }
.new-badge { position: absolute; top: -1px; left: 16px; background: var(--green); color: #fff; padding: .2rem .7rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-size: .72rem; font-weight: 700; }

.job-card-inner { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 1.3rem; }
.company-logo-wrap { flex-shrink: 0; }
.company-logo-img { width: 52px; height: 52px; border-radius: var(--radius); object-fit: contain; border: 1px solid var(--gray-100); }
.logo-placeholder { width: 52px; height: 52px; border-radius: var(--radius); background: linear-gradient(135deg, var(--blue-100), var(--blue-50)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; color: var(--blue-700); border: 1px solid var(--blue-100); }

.job-card-body { flex: 1; min-width: 0; }
.job-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; margin-bottom: .35rem; }
.job-title-wrap { min-width: 0; }
.job-title { font-size: .98rem; font-weight: 700; line-height: 1.3; margin-bottom: .2rem; }
.job-title a { color: var(--gray-900); }
.job-title a:hover { color: var(--blue-700); }
.company-name { font-size: .83rem; color: var(--gray-600); font-weight: 500; }
.salary-tag { background: var(--green-l); color: var(--green); padding: .25rem .65rem; border-radius: var(--radius-sm); font-size: .78rem; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.job-desc { font-size: .83rem; color: var(--gray-600); line-height: 1.5; margin-bottom: .65rem; }
.job-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.job-tag { display: inline-flex; align-items: center; gap: .3rem; padding: .25rem .65rem; border-radius: 100px; font-size: .75rem; font-weight: 500; }
.tag-location { background: var(--blue-50); color: var(--blue-700); }
.tag-type { background: var(--gray-100); color: var(--gray-600); }
.tag-cat { background: var(--gray-100); color: var(--gray-700); text-decoration: none; }
.tag-cat:hover { background: var(--blue-100); color: var(--blue-700); }
.tag-time { background: transparent; color: var(--gray-400); padding-left: 0; }
.tag-expires { background: var(--red-l); color: var(--red); }

.job-card-cta { flex-shrink: 0; }
.btn-view-job { display: inline-flex; align-items: center; gap: .4rem; padding: .55rem 1.1rem; background: var(--blue-700); color: #fff; border-radius: var(--radius); font-size: .83rem; font-weight: 600; white-space: nowrap; transition: background var(--transition); }
.btn-view-job:hover { background: var(--blue-900); color: #fff; }

/* ===================== WHY SECTION ===================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.why-card { padding: 2rem; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); transition: all .2s; }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon { width: 52px; height: 52px; background: var(--blue-50); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--blue-700); margin-bottom: 1.1rem; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: .5rem; }
.why-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

/* ===================== COMPANIES ===================== */
.companies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .85rem; }
.company-card { display: flex; align-items: center; gap: .75rem; padding: .85rem 1rem; background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); transition: all .2s; text-decoration: none; color: var(--gray-700); }
.company-card:hover { border-color: var(--blue-400); background: var(--blue-50); }
.company-avatar { width: 38px; height: 38px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.company-name { font-size: .88rem; font-weight: 600; display: block; }
.company-jobs { font-size: .75rem; color: var(--gray-500); }

/* ===================== CTA SECTION ===================== */
.cta-section { background: linear-gradient(135deg, var(--blue-800), var(--blue-900)); color: #fff; padding: 4.5rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-content h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; margin-bottom: .75rem; }
.cta-content p { opacity: .9; font-size: 1rem; margin-bottom: 1.5rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-stats { display: flex; gap: 2rem; flex-shrink: 0; }
.cta-stat { text-align: center; }
.cta-stat span { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #ffd700; }
.cta-stat { font-size: .82rem; opacity: .8; }

/* ===================== QUICK FILTERS ===================== */
.quick-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.filter-pill { display: inline-flex; align-items: center; padding: .4rem .9rem; border-radius: 100px; font-size: .83rem; font-weight: 500; background: var(--gray-100); color: var(--gray-600); border: 1.5px solid transparent; transition: all var(--transition); text-decoration: none; }
.filter-pill:hover, .filter-pill.active { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }

/* ===================== JOBS PAGE ===================== */
.page-hero { background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); color: #fff; padding: 3rem 0 2.5rem; }
.page-hero-sm { padding: 2.5rem 0 2rem; }
.page-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: .5rem; }
.page-subtitle { color: rgba(255,255,255,.85); font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: .75rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: .65rem; }

.jobs-page-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; padding-top: 2.5rem; padding-bottom: 3rem; }

/* Sidebar Filters */
.filter-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 1.5rem; }
.filter-heading { font-size: .95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.filter-group { margin-bottom: 1.4rem; }
.filter-label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-700); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .04em; }
.filter-select { width: 100%; padding: .6rem .85rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-family: inherit; font-size: .88rem; color: var(--gray-800); background: var(--gray-50); cursor: pointer; }
.filter-select:focus { outline: none; border-color: var(--blue-500); }
.filter-checkboxes { display: flex; flex-direction: column; gap: .45rem; }
.filter-check { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-size: .88rem; color: var(--gray-700); }
.filter-check input { accent-color: var(--blue-600); }
.btn-clear-filters { display: inline-flex; align-items: center; gap: .4rem; color: var(--red); font-size: .83rem; font-weight: 600; padding: .35rem 0; }

.sidebar-cats { display: flex; flex-direction: column; gap: .15rem; }
.sidebar-cats li a { display: flex; justify-content: space-between; align-items: center; padding: .5rem .6rem; border-radius: var(--radius-sm); font-size: .85rem; color: var(--gray-700); transition: all var(--transition); }
.sidebar-cats li a:hover, .sidebar-cats li a.active { background: var(--blue-50); color: var(--blue-700); }
.cat-count-pill { background: var(--gray-100); color: var(--gray-500); padding: .1rem .5rem; border-radius: 100px; font-size: .72rem; font-weight: 600; }

.sidebar-cta { background: linear-gradient(135deg, var(--blue-50), #fff); border: 1.5px solid var(--blue-100); border-radius: var(--radius-md); padding: 1.4rem; text-align: center; margin-top: 1.25rem; }
.sidebar-cta i { font-size: 1.8rem; color: var(--blue-600); margin-bottom: .75rem; display: block; }
.sidebar-cta h3 { font-size: .98rem; font-weight: 700; color: var(--gray-900); margin-bottom: .4rem; }
.sidebar-cta p { font-size: .83rem; color: var(--gray-600); margin-bottom: .85rem; }
.sidebar-cta .price-note { font-size: .82rem; color: var(--gray-700); margin-bottom: .85rem; }
.sidebar-cta-blue { background: linear-gradient(135deg, var(--blue-800), var(--blue-700)); border-color: transparent; }
.sidebar-cta-blue h3 { color: #fff; }
.sidebar-cta-blue p, .sidebar-cta-blue .price-note { color: rgba(255,255,255,.85); }
.sidebar-cta-blue i { color: #ffd700; }

/* Results Bar */
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; padding-bottom: .85rem; border-bottom: 1px solid var(--gray-200); }
.results-count { font-size: .9rem; color: var(--gray-600); }
.results-count strong { color: var(--gray-900); }
.results-sort { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--gray-500); }
.sort-link { color: var(--gray-600); padding: .2rem .5rem; border-radius: var(--radius-sm); font-weight: 500; }
.sort-link.active, .sort-link:hover { background: var(--blue-50); color: var(--blue-700); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: .4rem; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; gap: .3rem; padding: .5rem .85rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: .88rem; color: var(--gray-600); transition: all var(--transition); background: #fff; font-weight: 500; min-width: 40px; }
.page-btn:hover { border-color: var(--blue-400); color: var(--blue-700); background: var(--blue-50); }
.page-btn.active { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.page-dots { color: var(--gray-400); padding: 0 .25rem; }

/* Empty State */
.empty-state { text-align: center; padding: 4rem 2rem; background: var(--gray-50); border-radius: var(--radius-lg); border: 2px dashed var(--gray-200); }
.empty-icon { font-size: 3rem; color: var(--gray-300); margin-bottom: 1rem; }
.empty-state h2 { font-size: 1.3rem; font-weight: 700; color: var(--gray-700); margin-bottom: .5rem; }
.empty-state p { color: var(--gray-500); margin-bottom: 1.5rem; }
.empty-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* SEO Content Block */
.seo-content-block { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 2rem; margin-top: 3rem; }
.seo-content-block h2 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .75rem; }
.seo-content-block p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: .5rem; }

/* ===================== JOB DETAIL ===================== */
.breadcrumb-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: .75rem 0; }
.expired-banner { background: var(--red-l); border-bottom: 2px solid var(--red); padding: .75rem 0; text-align: center; color: var(--red); font-size: .9rem; }
.expired-banner strong { font-weight: 700; }
.expired-banner a { color: var(--red); text-decoration: underline; margin-left: .5rem; }

.job-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; padding: 2.5rem 0 4rem; }
.job-detail-main { min-width: 0; background: #fff; border: 1px solid #e8edf2; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(15,76,129,.06); max-width: 100%; }

/* job-detail-header — see new CSS below */
.job-detail-logo { flex-shrink: 0; }
.logo-placeholder-lg { width: 72px; height: 72px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--blue-100), var(--blue-50)); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: var(--blue-700); }
.job-detail-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--gray-900); margin-bottom: .35rem; line-height: 1.3; }
.job-detail-company { font-size: 1rem; font-weight: 600; color: var(--blue-700); margin-bottom: .5rem; }
.job-detail-meta-row { display: flex; flex-wrap: wrap; gap: .75rem; font-size: .83rem; color: var(--gray-600); }
.job-detail-meta-row span { display: flex; align-items: center; gap: .3rem; }
.job-detail-meta-row i { color: var(--blue-500); font-size: .8rem; }

.job-apply-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 1.1rem 1.4rem; margin-bottom: 2rem; flex-wrap: wrap; }
.job-salary { display: flex; align-items: center; gap: .5rem; font-size: 1.05rem; font-weight: 700; color: var(--green); }
.apply-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-apply-primary { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.6rem; background: var(--accent); color: #fff; border-radius: var(--radius); font-size: .95rem; font-weight: 700; transition: background var(--transition); }
.btn-apply-primary:hover { background: var(--accent-h); color: #fff; }
.btn-apply-primary.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-save-job, .btn-share-job { display: inline-flex; align-items: center; gap: .4rem; padding: .65rem 1.1rem; border: 1.5px solid var(--gray-300); border-radius: var(--radius); font-size: .85rem; font-weight: 600; color: var(--gray-700); transition: all var(--transition); }
.btn-save-job:hover, .btn-share-job:hover { background: var(--gray-100); }

.job-description { color: var(--gray-700); line-height: 1.8; margin-bottom: 2rem; }
.job-description h2, .job-description h3 { font-family: var(--font-display); color: var(--gray-900); margin: 1.5rem 0 .75rem; }
.job-description h2 { font-size: 1.2rem; }
.job-description h3 { font-size: 1rem; }
.job-description ul, .job-description ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.job-description li { margin-bottom: .4rem; }
.job-description p { margin-bottom: .85rem; }
.job-description strong { color: var(--gray-900); }
.job-description a { color: var(--blue-700); text-decoration: underline; }

.job-apply-bottom { background: var(--blue-50); border: 1.5px solid var(--blue-200); border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-bottom: 2rem; }
.job-apply-bottom h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.job-apply-bottom p { color: var(--gray-600); margin-bottom: 1.25rem; }
.apply-disclaimer { color: var(--gray-500) !important; margin-top: .75rem !important; }

.job-source-info { background: var(--gray-50); border-radius: var(--radius); padding: .85rem 1rem; margin-bottom: 1.5rem; font-size: .85rem; color: var(--gray-600); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.job-source-info i { color: var(--blue-500); }

.social-share { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }
.social-share span { font-size: .85rem; color: var(--gray-600); font-weight: 600; }
.social-share a { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .9rem; border-radius: var(--radius-sm); font-size: .83rem; font-weight: 600; border: 1.5px solid var(--gray-200); color: var(--gray-700); transition: all var(--transition); }
.social-share a:hover { background: var(--gray-100); }

/* Sidebar Card */
.sidebar-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1.25rem; }
.sidebar-card-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1.1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--gray-100); }
.job-overview-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.job-overview-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .87rem; }
.job-overview-list li i { color: var(--blue-500); margin-top: .2rem; flex-shrink: 0; width: 16px; text-align: center; }
.job-overview-list li > div { display: flex; flex-direction: column; }
.job-overview-list span { color: var(--gray-500); font-size: .78rem; }
.job-overview-list strong { color: var(--gray-900); font-size: .88rem; }

.related-jobs { padding: 3rem 0; }

/* ===================== PRICING PAGE ===================== */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 800px; margin: 3rem auto; }
.pricing-card { background: #fff; border: 2px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2.5rem; position: relative; transition: all .2s; }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-popular { border-color: var(--blue-600); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue-700); color: #fff; padding: .3rem 1.25rem; border-radius: 100px; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.pricing-card-header { text-align: center; margin-bottom: 2rem; }
.pricing-icon { font-size: 2rem; margin-bottom: .75rem; }
.featured-icon { color: var(--gold); }
.pricing-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: .75rem; }
.pricing-price { margin-bottom: .4rem; }
.price-currency { font-size: 1.5rem; font-weight: 700; color: var(--blue-700); vertical-align: super; }
.price-amount { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--blue-700); line-height: 1; }
.price-period { font-size: .9rem; color: var(--gray-500); }
.pricing-tagline { font-size: .88rem; color: var(--gray-600); }
.pricing-features { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: var(--gray-700); }
.pricing-features li i.fa-check { color: var(--green); }
.pricing-features li.feature-no { color: var(--gray-400); }
.pricing-features li.feature-no i.fa-times { color: var(--gray-300); }
.pricing-cta { text-align: center; }

.how-to-post { margin: 4rem 0; text-align: center; }
.how-to-post h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 2.5rem; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.step-item { position: relative; }
.step-num { width: 48px; height: 48px; background: var(--blue-700); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 1rem; }
.step-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.step-item p { font-size: .88rem; color: var(--gray-600); }

.admin-code-section { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem 2rem; margin: 2rem 0; }
.admin-code-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.admin-code-inner > i { font-size: 2rem; color: var(--blue-600); flex-shrink: 0; }
.admin-code-inner > div { flex: 1; }
.admin-code-inner h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.admin-code-inner p { font-size: .88rem; color: var(--gray-600); }

.pricing-faq { margin: 3rem 0 4rem; }
.pricing-faq h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: .6rem; }
.faq-item { border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; font-size: .95rem; font-weight: 600; color: var(--gray-800); background: #fff; cursor: pointer; }
.faq-q i { transition: transform .2s; color: var(--blue-600); }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { display: none; padding: 1rem 1.25rem; font-size: .9rem; color: var(--gray-600); background: var(--gray-50); border-top: 1px solid var(--gray-200); line-height: 1.7; }

/* ===================== POST A JOB PAGE ===================== */
.post-job-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 3rem 0; }
.post-option-card { background: #fff; border: 2px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2.5rem; }
.post-option-main { border-color: var(--blue-400); }
.post-option-header { margin-bottom: 2rem; text-align: center; }
.post-option-icon { font-size: 2.5rem; color: var(--blue-600); margin-bottom: 1rem; }
.admin-icon { color: var(--gray-600); }
.post-option-header h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; }
.post-option-desc { color: var(--gray-600); font-size: .9rem; }
.post-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.post-step { display: flex; align-items: flex-start; gap: 1rem; }
.step-badge { width: 30px; height: 30px; background: var(--blue-700); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; flex-shrink: 0; }
.post-step strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.post-step p { font-size: .88rem; color: var(--gray-600); }
.email-link { display: inline-flex; align-items: center; gap: .4rem; background: var(--blue-50); color: var(--blue-700); padding: .4rem .85rem; border-radius: var(--radius-sm); font-weight: 600; margin-top: .35rem; font-size: .88rem; }
.post-cta-wrap { display: flex; gap: 1rem; flex-wrap: wrap; }
.admin-code-info p { color: var(--gray-600); font-size: .9rem; margin-bottom: 1rem; }
.admin-login-link { margin-top: 1rem; font-size: .85rem; color: var(--gray-600); }
.pricing-summary-bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem 2rem; margin: 1rem 0 3rem; flex-wrap: wrap; }
.pricing-summary-item { display: flex; flex-direction: column; gap: .2rem; }
.summary-plan { font-weight: 700; font-size: 1rem; color: var(--gray-900); }
.summary-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--blue-700); }
.featured-summary .summary-price { color: var(--gold); }
.summary-desc { font-size: .82rem; color: var(--gray-500); }
.pricing-summary-divider { width: 1px; height: 60px; background: var(--gray-200); }
.employer-benefits { margin-bottom: 4rem; }
.employer-benefits h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; text-align: center; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--gray-50); border-radius: var(--radius-md); }
.benefit-item i { font-size: 1.4rem; color: var(--blue-600); margin-top: .2rem; flex-shrink: 0; }
.benefit-item strong { display: block; font-size: .95rem; margin-bottom: .3rem; }
.benefit-item p { font-size: .85rem; color: var(--gray-600); }

/* ===================== LEGAL PAGES ===================== */
.legal-page-wrap { max-width: 800px; margin: 3rem auto 5rem; }
.legal-body h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin: 2rem 0 .75rem; }
.legal-body h3 { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin: 1.25rem 0 .5rem; }
.legal-body p { color: var(--gray-700); margin-bottom: 1rem; line-height: 1.8; }
.legal-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body li { color: var(--gray-700); margin-bottom: .4rem; line-height: 1.7; }
.legal-body a { color: var(--blue-700); text-decoration: underline; }
.policy-highlight { background: var(--blue-50); border: 1.5px solid var(--blue-200); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 2rem; display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; }
.policy-highlight i { color: var(--blue-600); margin-top: .1rem; flex-shrink: 0; }

/* ===================== CONTENT PAGES ===================== */
.content-page-wrap { max-width: 800px; margin: 3rem auto 5rem; }
.content-page-body h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin: 2rem 0 .75rem; }
.content-page-body p { color: var(--gray-700); margin-bottom: 1rem; line-height: 1.8; }
.content-page-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.content-page-body li { color: var(--gray-700); margin-bottom: .4rem; }
.about-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.about-social a { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: .88rem; font-weight: 600; color: var(--gray-700); transition: all var(--transition); }
.about-social a:hover { background: var(--blue-50); color: var(--blue-700); border-color: var(--blue-300); }

/* ===================== CONTACT PAGE ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; padding: 3rem 0 5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item i { font-size: 1.3rem; color: var(--blue-600); margin-top: .15rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .85rem; color: var(--gray-600); margin-bottom: .2rem; }
.contact-item a { font-size: .95rem; font-weight: 600; color: var(--gray-800); }
.contact-hours { display: flex; align-items: center; gap: .6rem; background: var(--blue-50); border-radius: var(--radius); padding: .85rem 1rem; font-size: .88rem; color: var(--gray-700); }
.contact-hours i { color: var(--blue-600); }
.contact-info-col h2, .contact-form-col h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.use-cases { display: flex; flex-direction: column; gap: 1.25rem; }
.use-case { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem; background: var(--gray-50); border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.use-case i { font-size: 1.2rem; color: var(--blue-600); flex-shrink: 0; margin-top: .2rem; }
.use-case strong { display: block; font-size: .95rem; margin-bottom: .3rem; }
.use-case p { font-size: .88rem; color: var(--gray-600); }

/* ===================== BLOG ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-grid-sm { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin-top: 1rem; }
.blog-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 1.25rem 1.4rem; }
.blog-cat { display: inline-block; background: var(--blue-100); color: var(--blue-700); padding: .2rem .65rem; border-radius: 100px; font-size: .72rem; font-weight: 700; margin-bottom: .6rem; }
.blog-title { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: .5rem; line-height: 1.4; }
.blog-title a { color: var(--gray-900); }
.blog-title a:hover { color: var(--blue-700); }
.blog-excerpt { font-size: .88rem; color: var(--gray-600); margin-bottom: .75rem; line-height: 1.6; }
.blog-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--gray-500); margin-bottom: .75rem; }
.blog-meta i { margin-right: .3rem; }
.blog-read-more { font-size: .85rem; font-weight: 600; color: var(--blue-700); display: flex; align-items: center; gap: .35rem; }
.blog-read-more:hover { color: var(--blue-900); }
.blog-post-hero { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 2.5rem 0; }
.blog-post-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--gray-900); margin: .75rem 0 .75rem; line-height: 1.3; }
.blog-post-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: .85rem; color: var(--gray-500); }
.blog-post-meta i { margin-right: .3rem; }
.blog-post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; padding: 3rem 0; }
.blog-post-body { min-width: 0; }
.blog-post-body h2, .blog-post-body h3 { font-family: var(--font-display); color: var(--gray-900); margin: 1.5rem 0 .75rem; }
.blog-post-body p { color: var(--gray-700); margin-bottom: 1rem; line-height: 1.85; }
.blog-post-share { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }
.blog-post-share span { font-size: .85rem; color: var(--gray-600); font-weight: 600; }
.blog-post-share a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--gray-100); color: var(--gray-700); transition: all var(--transition); font-size: .9rem; }
.blog-post-share a:hover { background: var(--blue-100); color: var(--blue-700); }
.blog-sidebar .sidebar-card { background: var(--gray-50); }
.related-posts h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem; }

/* ===================== SITEMAP ===================== */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; padding: 3rem 0 5rem; }
.sitemap-col h2 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.sitemap-col h2 i { color: var(--blue-600); }
.sitemap-col ul { display: flex; flex-direction: column; gap: .35rem; }
.sitemap-col a { font-size: .9rem; color: var(--gray-700); padding: .2rem 0; transition: color var(--transition); }
.sitemap-col a:hover { color: var(--blue-700); }

/* ===================== ERROR PAGES ===================== */
.error-page { padding: 6rem 0 4rem; }
.error-code { font-family: var(--font-display); font-size: 8rem; font-weight: 900; color: var(--gray-200); line-height: 1; margin-bottom: 1rem; }
.error-icon { font-size: 5rem; color: var(--gray-300); margin-bottom: 1.5rem; }
.error-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gray-800); margin-bottom: 1rem; }
.error-desc { color: var(--gray-600); font-size: 1rem; max-width: 480px; margin: 0 auto 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.error-search-wrap { display: flex; gap: .75rem; max-width: 480px; margin: 0 auto; }
.error-search-wrap input { flex: 1; padding: .7rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-family: inherit; font-size: .95rem; }
.error-cats { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }

/* ===================== FOOTER ===================== */
.footer { background: var(--gray-900); color: rgba(255,255,255,.8); }
.footer-top { padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; margin-bottom: 1rem; }
.footer-logo span { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; }
.footer-brand p { font-size: .87rem; line-height: 1.7; opacity: .7; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: .6rem; margin-bottom: 1.25rem; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); font-size: .95rem; transition: all var(--transition); }
.social-links a:hover { background: var(--blue-600); color: #fff; }
.footer-contact-info { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-info a { display: flex; align-items: center; gap: .5rem; font-size: .83rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact-info a:hover { color: #fff; }
.footer-col h3 { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col a { font-size: .87rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1.25rem 0; }
.f-badge { display: inline-flex; align-items: center; gap: .3rem; background: rgba(255,255,255,.08); padding: .3rem .65rem; border-radius: 100px; font-size: .72rem; color: rgba(255,255,255,.7); }
.footer-pricing-note { background: rgba(255,255,255,.06); border-radius: var(--radius); padding: .85rem 1rem; font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.footer-bottom { background: rgba(0,0,0,.3); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: .4rem; text-align: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom strong { color: rgba(255,255,255,.7); }
.footer-disclaimer { font-size: .75rem !important; max-width: 700px; }

/* ===================== COOKIE BANNER ===================== */
.cookie-banner { position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); width: calc(100% - 2rem); max-width: 680px; background: var(--gray-900); color: rgba(255,255,255,.9); border-radius: var(--radius-lg); padding: 1.1rem 1.5rem; box-shadow: var(--shadow-xl); z-index: 9998; }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-content p { font-size: .85rem; }
.cookie-content a { color: var(--blue-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.btn-cookie-accept { padding: .45rem 1.1rem; background: var(--blue-600); color: #fff; border-radius: var(--radius-sm); font-size: .83rem; font-weight: 600; cursor: pointer; }
.btn-cookie-decline { padding: .45rem 1.1rem; background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border-radius: var(--radius-sm); font-size: .83rem; cursor: pointer; }

/* ===================== RESPONSIVE ===================== */
/* ===================== RESPONSIVE ===================== */

/* 1200px — Large tablets */
@media (max-width: 1200px) {
  .logo-name { font-size: 1.05rem; }
  .nav-search { max-width: 240px; }
}

/* 1024px — Tablets landscape */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .jobs-page-layout { grid-template-columns: 210px 1fr; gap: 1.5rem; }
  .nav-links .nav-link:not(.featured-link):not(.btn-post-job) { font-size: .8rem; padding: .4rem .45rem; }
}

/* 900px — Switch to mobile header */
@media (max-width: 900px) {
  /* ── HEADER MOBILE ── */
  body { padding-top: 60px; }
  .header-top-links { display: none; }
  .nav-search { display: none; }
  .nav-links { display: none; }
  .mobile-actions { display: flex !important; }
  .mobile-menu-btn { display: flex !important; }
  /* Ensure nav-inner is clean */
  .nav-inner { justify-content: space-between; }

  /* ── HERO ── */
  .hero { padding: 3rem 0 2.5rem; }
  .hero-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .hero-search-form { border-radius: var(--radius-md); }
  .hero-search-inner { flex-direction: column; gap: 0; border-radius: var(--radius-md); }
  .search-field { padding: .65rem .9rem; border-bottom: 1px solid var(--gray-200); width: 100%; }
  .search-field:last-of-type { border-bottom: none; }
  .search-divider { display: none; }
  .hero-search-btn { width: 100%; margin: 0; border-radius: 0 0 var(--radius-md) var(--radius-md); padding: .9rem; }
  .hero-stats { display: none; }
  .popular-searches { justify-content: center; }

  /* ── LAYOUTS ── */
  .section { padding: 3rem 0; }
  .jobs-page-layout { grid-template-columns: 1fr; }
  .filters-sidebar { order: -1; }
  .job-detail-layout { grid-template-columns: 1fr; }
  .job-detail-sidebar { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 2rem auto; }
  .pricing-popular { transform: none; }
  .post-job-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* 768px — Mobile */
@media (max-width: 768px) {
  /* ── GRIDS ── */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; gap: .6rem; }
  .why-grid { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── JOB CARDS ── */
  .job-card-inner { flex-wrap: wrap; gap: .6rem; }
  .job-card-cta { width: 100%; }
  .btn-view-job { width: 100%; justify-content: center; }
  .job-tags { flex-wrap: wrap; }

  /* ── SECTIONS ── */
  .section { padding: 2.5rem 0; }
  .section-title { font-size: 1.5rem; }
  .section-header { margin-bottom: 2rem; }
  .section-header-row { flex-direction: column; gap: .75rem; align-items: flex-start; }

  /* ── MISC ── */
  .pricing-summary-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .pricing-summary-divider { width: 100%; height: 1px; }
  .cta-stats { display: none; }
  .job-apply-bar { flex-direction: column; align-items: flex-start; }
  .apply-actions { width: 100%; flex-wrap: wrap; }

  /* ── COUNTRIES SECTION ── */
  .countries-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .country-card { padding: .65rem .5rem !important; }
  .country-flag { font-size: 1.4rem !important; }
  .country-name { font-size: .72rem !important; }
}

/* 480px — Small mobile */
@media (max-width: 480px) {
  /* ── LOGO ── */
  .logo-tagline { display: none; }
  .logo-name { font-size: 1rem; }

  /* ── TYPOGRAPHY ── */
  .hero-title { font-size: 1.65rem; line-height: 1.2; }
  .page-title { font-size: 1.3rem; }
  .page-subtitle { font-size: .88rem; }

  /* ── HERO ── */
  .hero { padding: 2rem 0 2rem; }
  .hero-badge { font-size: .75rem; padding: .35rem .85rem; }
  .hero-subtitle { font-size: .9rem; }
  .popular-searches { gap: .35rem; }
  .popular-searches a { padding: .22rem .65rem; font-size: .75rem; }

  /* ── GRIDS ── */
  .categories-grid { grid-template-columns: 1fr; gap: .5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }

  /* ── JOB APPLY ── */
  .btn-apply-primary, .btn-save-job, .btn-share-job { width: 100%; justify-content: center; }

  /* ── ERRORS ── */
  .error-code { font-size: 5rem; }

  /* ── MISC ── */
  .steps-grid { grid-template-columns: 1fr; }
  .auth-form-wrap { padding: 1.25rem 1.25rem .75rem; }
  .auth-benefits { flex-wrap: wrap; gap: .5rem; padding: .65rem 1rem 1rem; }
  .country-jobs-section .section-header-row { flex-direction: column; }

  /* ── COUNTRIES ── */
  .countries-grid { grid-template-columns: repeat(3, 1fr) !important; gap: .4rem !important; }
  .country-card { padding: .55rem .3rem !important; }
  .country-jobs-count { display: none; }

  /* ── AD STRIP ── */
  .ads-strip { padding: .4rem 0; }
  .ad-company, .ad-cta { display: none; }

  /* ── POST JOB PAGE ── */
  .post-option-card { padding: 1.5rem 1.25rem; }
  .post-option-icon { font-size: 2rem; }
  .post-cta-wrap { flex-direction: column; }
  .post-cta-wrap .btn { width: 100%; justify-content: center; text-align: center; }
  .email-link { word-break: break-all; white-space: normal; }
  .pricing-summary-bar { padding: 1.25rem; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* 360px — Very small */
@media (max-width: 360px) {
  .logo-icon svg { width: 28px; height: 28px; }
  .logo-name { font-size: .9rem; }
  .categories-grid { grid-template-columns: 1fr; gap: .5rem; }
  .countries-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .container { padding: 0 .75rem; }
}

/* ===================== USER AUTH ===================== */
.btn-nav-login { background:transparent; border:1.5px solid var(--gray-300); border-radius:var(--radius); padding:.45rem .9rem; font-size:.85rem; font-weight:600; color:var(--gray-700); cursor:pointer; font-family:inherit; transition:all var(--transition); display:inline-flex; align-items:center; gap:.35rem; }
.btn-nav-login:hover { border-color:var(--blue-500); color:var(--blue-700); background:var(--blue-50); }
.btn-nav-register { padding:.45rem 1rem; background:var(--blue-700); color:#fff; border-radius:var(--radius); font-size:.85rem; font-weight:700; cursor:pointer; font-family:inherit; border:none; transition:all var(--transition); display:inline-flex; align-items:center; gap:.35rem; }
.btn-nav-register:hover { background:var(--blue-900); transform:translateY(-1px); }
.user-nav-btn { display:inline-flex; align-items:center; gap:.5rem; cursor:pointer; }
.user-avatar-sm { width:28px; height:28px; border-radius:50%; background:linear-gradient(135deg,var(--blue-700),var(--blue-500)); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:.78rem; font-weight:700; flex-shrink:0; }
.user-avatar-md { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--blue-700),var(--blue-500)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1rem; font-weight:700; flex-shrink:0; }
.user-menu-header { display:flex; align-items:center; gap:.75rem; padding:.75rem .85rem 0; }
.user-menu-header strong { display:block; font-size:.88rem; color:var(--gray-900); }
.user-menu-header small { font-size:.75rem; color:var(--gray-500); display:block; }
.dropdown-menu-right { right:0; left:auto; }
.mobile-user-info { display:flex; align-items:center; gap:.6rem; padding:.75rem 0; border-bottom:1px solid var(--gray-100); font-weight:600; color:var(--gray-800); }

/* Logo globe icon */
.logo-icon svg { display:block; }

/* Saved Jobs Page */
.saved-page { padding:3rem 0 5rem; }
.profile-page { padding:3rem 0 5rem; }
.profile-card { background:#fff; border:1.5px solid var(--gray-200); border-radius:var(--radius-lg); padding:2rem; max-width:600px; margin:0 auto; }
.profile-header { display:flex; align-items:center; gap:1.25rem; margin-bottom:2rem; padding-bottom:1.5rem; border-bottom:1px solid var(--gray-100); }
.profile-avatar { width:64px; height:64px; border-radius:50%; background:linear-gradient(135deg,var(--blue-700),var(--blue-500)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.6rem; font-weight:700; flex-shrink:0; }

/* ===================== JOB DESCRIPTION FIX ===================== */
.job-description { color: var(--gray-700); line-height: 1.8; margin-bottom: 2rem; }
.job-description h2 { font-family: var(--font-display); color: var(--gray-900); margin: 0 0 1.25rem; font-size: 1.2rem; }
.job-description .desc-content > *:first-child { margin-top: 0; }
.job-description .desc-content > *:last-child { margin-bottom: 0; }
.job-description p { margin-bottom: .85rem; line-height: 1.8; }
.job-description p:empty { display: none; }
.job-description p:last-child:empty { display: none; }
.job-description ul, .job-description ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.job-description ul { list-style: disc; }
.job-description ol { list-style: decimal; }
.job-description li { margin-bottom: .4rem; line-height: 1.7; }
.job-description h2, .job-description h3, .job-description h4 { color: var(--gray-900); margin: 1.5rem 0 .65rem; font-family: var(--font-display); }
.job-description h2 ~ h2, .job-description h3 { font-size: 1rem; }
.job-description strong, .job-description b { color: var(--gray-900); }
.job-description br + br { display: none; }
/* Remove excessive blank space from imported HTML */
.desc-content br:first-child { display: none; }

/* ===================== COUNTRIES SECTION ===================== */
.country-jobs-section { background: var(--white); }
.countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .75rem; }
.country-card { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: .9rem .5rem; background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); text-decoration: none; color: var(--gray-700); transition: all .2s; text-align: center; }
.country-card:hover { border-color: var(--blue-400); background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--blue-800); }
.country-flag { font-size: 1.8rem; line-height: 1; }
.country-name { font-size: .78rem; font-weight: 600; line-height: 1.2; }
.country-jobs-count { font-size: .7rem; color: var(--gray-400); background: var(--gray-100); padding: .1rem .45rem; border-radius: 100px; }
.country-card.country-new { border-color: var(--blue-300); background: var(--blue-50); }
.country-card.country-new .country-name { color: var(--blue-700); }
.country-new-badge { font-size: .62rem; font-weight: 700; background: var(--blue-700); color: #fff; padding: .1rem .4rem; border-radius: 100px; }

/* ===================== MOBILE CRITICAL FIXES ===================== */
/* PREVENT ALL HORIZONTAL OVERFLOW - CRITICAL */
html { overflow-x: hidden; }
body { max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }

/* Fix hero overflow - critical */
.hero { overflow: hidden; width: 100%; }
.hero-bg { overflow: hidden; }
.hero-shape-1, .hero-shape-2 { overflow: hidden; }

/* Fix all sections */
section, footer { max-width: 100vw; overflow-x: hidden; }
.navbar, .header { max-width: 100vw; }
.container { max-width: 100vw; } /* NO overflow-x:hidden - kills dropdowns */

/* Fix grid overflows */
.hero-search-form, .hero-search-inner, .hero-search-wrap { max-width: 100%; }
.popular-searches { max-width: 100%; overflow-x: hidden; flex-wrap: wrap; }

/* Job cards mobile */
@media (max-width: 640px) {
  .job-card-inner { padding: .9rem 1rem; flex-direction: column; gap: .6rem; }
  .job-card-body { width: 100%; }
  .job-card-cta { width: 100%; }
  .btn-view-job { width: 100%; justify-content: center; padding: .65rem 1rem; }
  .job-tags { gap: .25rem; }
  .job-tag { font-size: .72rem; padding: .2rem .5rem; }
  .salary-tag { font-size: .75rem; }
  .job-title { font-size: .9rem; }

  /* Hero search */
  .hero-search-form { margin: 0; }
  .search-field select { appearance: none; }

  /* Page heroes */
  .page-hero { padding: 1.75rem 0 1.5rem; }
  .page-title { font-size: 1.25rem; }
  .breadcrumb { font-size: .75rem; }

  /* Filters on mobile */
  .jobs-page-layout { padding-top: 1.5rem; }
  .filter-card { padding: 1rem; }
  .filter-heading { font-size: .88rem; }

  /* Section headers on mobile */
  .section-header-row { flex-direction: column; gap: .65rem; }
  .section-title { font-size: 1.3rem; }

  /* Admin forms */
  .form-row-2 { grid-template-columns: 1fr; }
  .admin-form-card { margin: .75rem 1rem; padding: 1.25rem; }
  .admin-main { padding-bottom: 2rem; }
  .admin-topbar { padding: 1rem; flex-direction: column; align-items: flex-start; gap: .75rem; }
  .admin-topbar-actions { flex-wrap: wrap; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); padding: 1rem; gap: .75rem; }

  /* Auth modal */
  .auth-modal-box { margin: .5rem; border-radius: 16px; }
  .auth-form-wrap { padding: 1.25rem 1rem .75rem; }
  .auth-tabs .auth-tab { font-size: .82rem; padding: .9rem .5rem; }
  .auth-benefits { gap: .35rem; }
  .auth-benefit { font-size: .68rem; }

  /* Cookie banner */
  .cookie-banner { bottom: 0; left: 0; right: 0; transform: none; border-radius: 16px 16px 0 0; width: 100%; }
  .cookie-content { flex-direction: column; gap: .75rem; }
  .cookie-actions { width: 100%; display: flex; gap: .5rem; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; padding: .55rem; }

  /* Ads strip mobile */
  .ads-strip-inner { gap: .5rem; }
  .ad-cta, .ad-company { display: none; }
}

/* Navbar specific fixes */
@media (max-width: 900px) {
  .header { position: sticky; top: 0; z-index: 1000; }
  .navbar { padding: .6rem 0; }
  .nav-inner { gap: .5rem; }
  .logo-icon svg { width: 32px; height: 32px; }
  .logo-name { font-size: 1rem; }
  .mobile-actions { gap: .2rem; margin-left: auto; }
  .mobile-search-btn { font-size: .9rem; }
  .mobile-menu-btn span { width: 20px; }
}

/* Fix mobile menu links */
@media (max-width: 900px) {
  .mobile-menu { padding: .5rem 1rem 1.5rem; }
  .mobile-menu a { padding: .6rem .25rem; font-size: .87rem; }
  .mobile-auth-btns { gap: .4rem; }
}

/* ============================================================
   HEADER — Complete Fresh CSS (overrides everything above)
   ============================================================ */

/* Top Bar */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.08); overflow: visible; width: 100%; }
.topbar { background: #0a2f52; color: rgba(255,255,255,.85); font-size: .75rem; padding: .38rem 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar-links { display: flex; gap: 1.5rem; }
.topbar-links a { color: rgba(255,255,255,.75); font-size: .75rem; text-decoration: none; transition: color .2s; }
.topbar-links a:hover { color: #fff; }

/* Main Nav */
.main-nav { padding: .7rem 0; overflow: visible; }
.nav-row { display: flex; align-items: center; gap: 1rem; overflow: visible; }

/* Logo */
.site-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.site-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700; color: #0f4c81; white-space: nowrap; }
.logo-tag { font-size: .6rem; color: #64748b; white-space: nowrap; }

/* Search Box */
.nav-searchbox { display: none; }
.nav-searchbox form { display: flex; align-items: center; position: relative; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 8px; overflow: visible; }
.nav-searchbox form i { padding: 0 .65rem; color: #94a3b8; font-size: .85rem; flex-shrink: 0; }
.nav-searchbox input { flex: 1; padding: .55rem .5rem .55rem 0; border: none; background: transparent; font-family: inherit; font-size: .85rem; color: #0f172a; outline: none; width: 100%; min-width: 0; }
.nav-searchbox input:focus { outline: none; }
.nav-searchbox form:focus-within { border-color: #0f4c81; box-shadow: 0 0 0 3px rgba(15,76,129,.1); }

/* Desktop Nav */
.desktop-nav { display: flex; align-items: center; gap: .35rem; flex-shrink: 0; margin-left: auto; }
.dnav-link { display: inline-flex; align-items: center; gap: .25rem; padding: .48rem .85rem; font-size: .88rem; font-weight: 500; color: #374151; border-radius: 7px; text-decoration: none; transition: all .15s; cursor: pointer; white-space: nowrap; border: none; background: none; font-family: inherit; }
.dnav-link:hover, .dnav-link.active { background: #eff6ff; color: #0f4c81; }
.dnav-trigger { cursor: pointer; }
.uavatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg,#0f4c81,#2196f3); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.btn-postjob { display: inline-flex; align-items: center; gap: .3rem; padding: .5rem 1rem; background: #ff6b35; color: #fff; border-radius: 8px; font-size: .85rem; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .15s; margin-left: .25rem; }
.btn-postjob:hover { background: #e55a28; color: #fff; }

/* Dropdown Menus */
.dnav-dropdown { position: relative; }
.dnav-menu { display: none; position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,.15); min-width: 230px; max-height: 480px; overflow-y: auto; overflow-x: hidden; padding: .5rem; z-index: 9999; }
.dnav-menu::-webkit-scrollbar { width: 4px; }
.dnav-menu::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.dnav-menu::-webkit-scrollbar-track { background: transparent; }
.dnav-menu-right { left: auto; right: 0; transform: none; }
.dnav-menu.open { display: block !important; }
/* Prevent going off screen on left side */
#cat-menu { left: 0; transform: none; }
/* Account menu always right-aligned */
#acct-menu, #user-menu { left: auto; right: 0; transform: none; }
.dnav-menu a { display: flex; align-items: center; gap: .6rem; padding: .55rem .75rem; font-size: .85rem; color: #374151; border-radius: 7px; text-decoration: none; transition: background .12s; }
.dnav-menu a:hover { background: #eff6ff; color: #0f4c81; }
.dnav-menu a i { width: 15px; text-align: center; color: #0f4c81; font-size: .82rem; flex-shrink: 0; }

/* Mobile Toggle */
.mob-menu-btn { display: none; flex-direction: column; gap: 5px; padding: .5rem; background: none; border: none; cursor: pointer; margin-left: auto; }
.mob-menu-btn span { display: block; width: 22px; height: 2px; background: #374151; border-radius: 2px; transition: all .25s; }
.mob-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mob-menu-btn.open span:nth-child(2) { opacity: 0; }
.mob-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Search Bar */
.mob-search { padding: .5rem 0 .25rem; border-top: 1px solid #f1f5f9; }
.mob-search form { display: flex; align-items: center; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 8px; overflow: hidden; }
.mob-search form i { padding: 0 .65rem; color: #94a3b8; font-size: .88rem; }
.mob-search input { flex: 1; padding: .65rem .25rem; border: none; background: transparent; font-family: inherit; font-size: .9rem; outline: none; }
.mob-search button { padding: .65rem 1rem; background: #0f4c81; color: #fff; border: none; font-weight: 600; font-size: .82rem; cursor: pointer; }

/* Mobile Menu */
.mob-menu { display: none; border-top: 1px solid #f1f5f9; padding: .75rem 1.25rem 1.5rem; overflow-y: auto; max-height: 80vh; }
.mob-menu.open { display: block; }
.mob-menu a { display: flex; align-items: center; gap: .6rem; padding: .65rem .25rem; font-size: .9rem; color: #374151; border-bottom: 1px solid #f8fafc; text-decoration: none; }
.mob-menu a:hover { color: #0f4c81; }
.mob-sep { height: 1px; background: #e2e8f0; margin: .4rem 0; }
.mob-auth { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .5rem 0 .75rem; }
.mob-auth .btn { justify-content: center; font-size: .83rem; padding: .55rem; }
.mob-user { display: flex; align-items: center; gap: .75rem; padding: .6rem 0 .85rem; border-bottom: 1px solid #e2e8f0; margin-bottom: .25rem; }
.mob-user strong { display: block; font-size: .9rem; }
.mob-user small { font-size: .75rem; color: #94a3b8; }
.mob-post-btn { background: #ff6b35 !important; color: #fff !important; justify-content: center; border-radius: 8px; font-weight: 700; margin-top: .6rem; padding: .75rem !important; }

/* Responsive */
@media (max-width: 960px) {
  .nav-searchbox { display: none; }
  .desktop-nav { display: none; }
  .mob-menu-btn { display: flex; }
  .topbar-links { display: none; }
}
@media (max-width: 480px) {
  .logo-tag { display: none; }
  .logo-name { font-size: 1rem; }
}

/* ============================================================
   JOB DESCRIPTION — Professional Formatting
   ============================================================ */
.job-description {
  color: #374151;
  font-size: .97rem;
  line-height: 1.85;
}
.desc-main-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid #f1f5f9;
}
.desc-content {
  max-width: 100%;
}
/* Paragraphs */
.desc-content p {
  margin-bottom: 1rem;
  line-height: 1.85;
  color: #374151;
}
.desc-content p:empty,
.desc-content p:blank { display: none; }

/* Headings inside description */
.desc-content h2,
.desc-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 2rem 0 .75rem;
  padding: .5rem .85rem;
  background: #f8faff;
  border-left: 3px solid #0f4c81;
  border-radius: 0 6px 6px 0;
}
.desc-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: #1e293b;
  margin: 1.5rem 0 .65rem;
  text-transform: capitalize;
}

/* Lists */
.desc-content ul,
.desc-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
}
.desc-content ul { list-style: none; padding-left: 0; }
.desc-content ul li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: .45rem;
  line-height: 1.7;
  color: #374151;
}
.desc-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0f4c81;
  font-weight: 700;
  font-size: .85rem;
  top: .08em;
}
.desc-content ol {
  list-style: decimal;
}
.desc-content ol li {
  margin-bottom: .45rem;
  line-height: 1.7;
}

/* Bold text */
.desc-content strong,
.desc-content b {
  color: #0f172a;
  font-weight: 600;
}

/* Info rows (Country: France, Organization: etc) */
.job-info-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid #f8fafc;
  font-size: .9rem;
}
.job-info-row:last-of-type { border-bottom: none; }
.job-info-label {
  flex-shrink: 0;
  width: 130px;
  font-weight: 600;
  color: #64748b;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding-top: .05em;
}
.job-info-value {
  flex: 1;
  color: #1e293b;
  font-weight: 500;
}

/* Group info rows visually */
.desc-content .job-info-row + .job-info-row {
  margin-top: 0;
}
.desc-content .job-info-row:first-child {
  border-top: 1px solid #f1f5f9;
  margin-top: .5rem;
}

/* Links */
.desc-content a {
  color: #0f4c81;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.desc-content a:hover { color: #0a2f52; }

/* Blockquote */
.desc-content blockquote {
  border-left: 3px solid #e2e8f0;
  padding: .75rem 1.25rem;
  margin: 1rem 0;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
  color: #475569;
  font-style: italic;
}

/* Remove extra top margin from first element */
.desc-content > *:first-child { margin-top: 0 !important; }

/* Mobile */
@media (max-width: 640px) {
  .job-info-label { width: 100px; font-size: .78rem; }
  .desc-content h2, .desc-section-title { font-size: .97rem; }
}

/* ============================================================
   JOB DETAIL PAGE — Professional Layout Override
   ============================================================ */

/* Main content card */
/* Job Header */
.job-detail-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}
.job-detail-logo {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.job-detail-logo img,
.logo-placeholder-lg {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  object-fit: contain;
}
.logo-placeholder-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f4c81, #1976d2);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}
.job-detail-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: .35rem;
}
.job-detail-company strong {
  font-size: 1rem;
  color: #0f4c81;
  font-weight: 600;
}
.job-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}
.job-detail-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  color: #475569;
  background: #f1f5f9;
  padding: .22rem .65rem;
  border-radius: 100px;
  white-space: nowrap;
}
.job-detail-meta-row span i { color: #0f4c81; font-size: .72rem; }

/* Apply Bar */
.job-apply-bar {
  padding: 1.25rem 2.25rem;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.apply-actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.btn-apply-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #ff6b35;
  color: #fff;
  padding: .65rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  font-family: inherit;
}
.btn-apply-primary:hover { background: #e55a28; transform: translateY(-1px); color: #fff; }
.btn-save-job, .btn-share-job {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .63rem 1.1rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #374151;
  transition: all .15s;
  font-family: inherit;
}
.btn-save-job:hover, .btn-share-job:hover {
  border-color: #0f4c81;
  color: #0f4c81;
  background: #eff6ff;
}

/* Description area */
.job-description {
  padding: 2rem 2.25rem;
  border-bottom: 1px solid #f1f5f9;
}
.desc-main-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.desc-main-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: #0f4c81;
  border-radius: 2px;
}

/* Description content typography */
.desc-content {
  color: #374151;
  font-size: .95rem;
  line-height: 1.9;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.desc-content p { margin-bottom: 1rem; }
.desc-content p:empty { display: none; }

/* Section headings inside description */
.desc-content h2,
.desc-content h3,
.desc-section-title {
  font-family: 'Sora', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1.75rem 0 .65rem;
  padding: .5rem .9rem;
  background: #f8faff;
  border-left: 3px solid #0f4c81;
  border-radius: 0 8px 8px 0;
  text-transform: capitalize;
  letter-spacing: .01em;
}
.desc-content > h2:first-child,
.desc-content > h3:first-child,
.desc-content > .desc-section-title:first-child {
  margin-top: 0;
}

/* Lists */
.desc-content ul { list-style: none; padding: 0; margin: 0 0 1.1rem; }
.desc-content ul li {
  position: relative;
  padding: .3rem 0 .3rem 1.5rem;
  color: #374151;
  line-height: 1.75;
  border-bottom: 1px solid #f8fafc;
}
.desc-content ul li:last-child { border-bottom: none; }
.desc-content ul li::before {
  content: '▸';
  position: absolute;
  left: .2rem;
  color: #0f4c81;
  font-size: .85rem;
}
.desc-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1.1rem;
}
.desc-content ol li { margin-bottom: .4rem; line-height: 1.75; }

/* Key-value info rows */
.job-info-row {
  display: flex;
  gap: 1rem;
  padding: .55rem .75rem;
  background: #f8faff;
  border-radius: 8px;
  margin-bottom: .4rem;
  font-size: .88rem;
  align-items: flex-start;
}
.job-info-label {
  flex-shrink: 0;
  width: 120px;
  font-weight: 700;
  color: #64748b;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding-top: .05em;
}
.job-info-value { color: #0f172a; font-weight: 500; flex: 1; }

/* Bold/links */
.desc-content strong, .desc-content b { color: #0f172a; font-weight: 600; }
.desc-content a { color: #0f4c81; text-decoration: underline; text-underline-offset: 2px; }

/* Apply bottom CTA */
.job-apply-bottom {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #f0f7ff, #e8f4ff);
  border-top: 1px solid #dbeafe;
  text-align: center;
}
.job-apply-bottom h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: #0f172a;
}
.job-apply-bottom p { color: #475569; font-size: .88rem; margin-bottom: 1rem; }
.apply-disclaimer { color: #94a3b8 !important; font-size: .75rem !important; margin-top: .65rem !important; }

/* Source + Social share */
.job-source-info {
  padding: 1rem 2rem;
  font-size: .82rem;
  color: #64748b;
  background: #fafafa;
  border-top: 1px solid #f1f5f9;
}
.job-source-info a { color: #0f4c81; }
.social-share {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  font-size: .82rem;
  color: #64748b;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
}
.social-share a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .85rem;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
  color: #374151;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}
.social-share a:hover { background: #0f4c81; color: #fff; border-color: #0f4c81; }

/* Mobile */
@media (max-width: 640px) {
  .job-detail-header { padding: 1.25rem; flex-direction: column; gap: 1rem; }
  .job-apply-bar { padding: 1rem 1.25rem; }
  .job-description { padding: 1.25rem; }
  .job-apply-bottom { padding: 1.25rem; }
  .job-source-info, .social-share { padding: .75rem 1.25rem; }
  .job-detail-title { font-size: 1.2rem; }
  .apply-actions { width: 100%; }
  .btn-apply-primary { width: 100%; justify-content: center; }
}

/* ============================================================
   JD INFO ROWS + SECTION HEADINGS (new formatter classes)
   ============================================================ */
.jd-info-row {
  display: flex;
  gap: .85rem;
  padding: .5rem .8rem;
  background: #f8faff;
  border-radius: 8px;
  margin-bottom: .35rem;
  font-size: .88rem;
  align-items: baseline;
}
.jd-label {
  flex-shrink: 0;
  width: 130px;
  font-weight: 700;
  color: #64748b;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.jd-value {
  flex: 1;
  color: #0f172a;
  font-weight: 500;
}
.jd-section {
  font-family: 'Sora', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1.75rem 0 .7rem;
  padding: .45rem .9rem;
  background: #f0f7ff;
  border-left: 3px solid #0f4c81;
  border-radius: 0 8px 8px 0;
  text-transform: capitalize;
}
.desc-content > .jd-section:first-child { margin-top: 0; }

/* Remove large gap between info rows and first paragraph */
.jd-info-row + p, .jd-info-row + .jd-section {
  margin-top: 1.25rem;
}

/* ── Support Us (footer) ──────────────────────────────────────────────────── */
.footer-support-us {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-support-us h3 {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-support-us p {
  font-size: .78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: .75rem;
  line-height: 1.5;
}
.btn-support-wise {
  display: inline-flex;
  align-items: center;
  background: #9FE870;
  color: #163300 !important;
  font-weight: 700;
  font-size: .82rem;
  padding: .5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-support-wise:hover {
  background: #8edb5e;
  transform: translateY(-1px);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   SUPPORT US POPUP
══════════════════════════════════════════════════════════ */
.sup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: supFadeIn .3s ease;
}
@keyframes supFadeIn { from{opacity:0} to{opacity:1} }

.sup-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  animation: supSlideUp .35s cubic-bezier(.22,1,.36,1);
  position: relative;
}
@keyframes supSlideUp { from{transform:translateY(40px);opacity:0} to{transform:translateY(0);opacity:1} }

.sup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.sup-close:hover { background: rgba(255,255,255,0.32); }

/* Header */
.sup-header {
  background: linear-gradient(135deg, #0f4c81 0%, #1a73c8 60%, #0d9488 100%);
  padding: 2.2rem 2rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sup-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.sup-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 200px; height: 200px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: supPulse 3s ease infinite;
  pointer-events: none;
}
@keyframes supPulse {
  0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.6}
  50%{transform:translate(-50%,-50%) scale(1.15);opacity:.15}
}
.sup-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  font-size: 1.6rem;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
}
.sup-header h2 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 .45rem;
  line-height: 1.25;
}
.sup-header p {
  color: rgba(255,255,255,0.82);
  font-size: .88rem;
  margin: 0;
}

/* Body */
.sup-body { padding: 1.6rem 1.8rem; }

/* Stats row */
.sup-stats {
  display: flex;
  gap: .8rem;
  margin-bottom: 1.2rem;
}
.sup-stat {
  flex: 1;
  background: #f0f7ff;
  border-radius: 10px;
  padding: .7rem .4rem;
  text-align: center;
  border: 1px solid #dbeafe;
}
.sup-stat-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f4c81;
  line-height: 1;
}
.sup-stat-label {
  display: block;
  font-size: .68rem;
  color: #64748b;
  margin-top: .25rem;
  font-weight: 500;
}

/* Description */
.sup-desc {
  font-size: .87rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 1.2rem;
}
.sup-desc strong { color: #0f4c81; }

/* Amount buttons */
.sup-amounts {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.3rem;
  flex-wrap: wrap;
}
.sup-amt {
  flex: 1;
  min-width: 52px;
  padding: .55rem .3rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  text-align: center;
}
.sup-amt:hover { border-color: #0f4c81; color: #0f4c81; background: #f0f7ff; }
.sup-amt.active { border-color: #0f4c81; background: #0f4c81; color: #fff; }

/* Main CTA */
.sup-cta-wise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: #163300;
  color: #9FE870 !important;
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
  padding: .9rem 1.2rem;
  border-radius: 12px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(22,51,0,0.22);
  letter-spacing: .01em;
}
.sup-cta-wise:hover {
  background: #1f4a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,51,0,0.32);
  text-decoration: none;
  color: #b5ff85 !important;
}

.sup-wise-note {
  text-align: center;
  font-size: .74rem;
  color: #94a3b8;
  margin: .7rem 0 1.1rem;
}
.sup-wise-note strong { color: #475569; }

/* Who supports */
.sup-who {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  padding: .9rem 0 0;
  border-top: 1px solid #f1f5f9;
}
.sup-who span {
  font-size: .78rem;
  color: #64748b;
  font-weight: 600;
}
.sup-who span i { margin-right: .3rem; color: #0f4c81; }

/* Footer strip */
.sup-footer-strip {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  padding: .7rem 1rem;
  font-size: .72rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
  .sup-modal { border-radius: 16px 16px 0 0; margin-top: auto; max-width: 100%; }
  .sup-overlay { align-items: flex-end; padding: 0; }
  .sup-body { padding: 1.3rem 1.2rem; }
  .sup-header { padding: 1.8rem 1.2rem 1.4rem; }
  .sup-stat-num { font-size: .95rem; }
}
