/* ═══════════════════════════════════════════════════
   BLUECARDWORK.DE — Light Theme
   Inspired by: StepStone, Indeed, XING Jobs
════════════════════════════════════════════════════ */

:root {
  --navy:       #0A2463;
  --navy-dark:  #071840;
  --blue:       #1A56DB;
  --blue-light: #EBF5FF;
  --blue-mid:   #DBEAFE;
  --gold:       #F59E0B;
  --gold-light: #FEF3C7;
  --green:      #059669;
  --green-light:#D1FAE5;
  --red:        #DC2626;
  --red-light:  #FEE2E2;
  --purple:     #7C3AED;
  --purple-light:#EDE9FE;
  --white:      #FFFFFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-300:   #D1D5DB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-600:   #4B5563;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --text:       #1F2937;
  --border:     #E5E7EB;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --radius:     12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── SCROLL LINE ─────────────────────────────────── */
.scroll-line {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--gold));
  width: 0%;
}

/* ═══════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════ */
header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

/* Topbar */
.topbar {
  background: var(--navy);
  height: 34px;
  font-size: 11px;
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-badge {
  display: flex; align-items: center; gap: 5px;
  font-weight: 600; color: rgba(255,255,255,.6);
}
.topbar-badge svg { opacity: .7; flex-shrink: 0; }
.topbar-badge--gold { color: #FCD34D; }
.topbar-badge--gold svg { opacity: 1; }
.topbar-sep { width: 1px; height: 12px; background: rgba(255,255,255,.15); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-contact {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color .2s;
}
.topbar-contact:hover { color: #FCD34D; }
.topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,.15); }
.topbar-lang { display: flex; gap: 2px; }
.topbar-lang-btn {
  padding: 2px 7px; border-radius: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .4px;
  color: rgba(255,255,255,.45); text-decoration: none; transition: all .15s;
}
.topbar-lang-btn:hover { color: white; background: rgba(255,255,255,.1); }
.topbar-lang-btn.active { color: #FCD34D; background: rgba(252,211,77,.12); }
.topbar-ticker { display: none; }

/* Nav */
nav { background: var(--white); overflow: visible; }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; height: 64px; gap: 0;
  overflow: visible;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; margin-right: 40px; flex-shrink: 0;
}
.logo img { height: 40px; width: auto; display: block; }
.logo-badge {
  background: var(--navy); color: white;
  font-size: 8.5px; font-weight: 900; letter-spacing: 2px;
  padding: 3px 6px; border-radius: 5px;
  align-self: flex-end; margin-bottom: 1px;
}

.nav-menu { display: flex; align-items: center; flex: 1; gap: 0; overflow: visible; }
.nav-item {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--gray-600);
  text-decoration: none; cursor: pointer; border: none; background: none;
  transition: all .15s; white-space: nowrap; font-family: 'Montserrat', sans-serif;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-100); }
.nav-link .chevron { transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .nav-link .chevron { transform: rotate(180deg); }
.nav-link svg:last-child { color: var(--gray-400); }

/* Drop menu */
.drop-menu {
  position: absolute; top: calc(100% - 8px); left: 0;
  background: white; border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.05);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  transition-delay: .12s;
  z-index: 1100; min-width: 240px;
}
.drop-menu::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
}
.nav-item:hover .drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition-delay: 0s;
}
.drop-menu--wide { min-width: 460px; }
.drop-inner { padding: 10px; display: flex; flex-direction: column; gap: 1px; }
.drop-inner--2col { flex-direction: row; gap: 0; }
.drop-col { flex: 1; padding: 6px; }
.drop-col + .drop-col { border-left: 1px solid var(--gray-100); }
.drop-col-head {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400); padding: 6px 10px 10px; border-bottom: 1px solid var(--gray-100); margin-bottom: 6px;
}
.drop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 9px;
  text-decoration: none; transition: background .12s;
}
.drop-item:hover { background: var(--gray-50); }
.drop-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.drop-title { font-size: 13px; font-weight: 700; color: var(--gray-700); margin-bottom: 1px; }
.drop-sub { font-size: 11px; color: var(--gray-400); font-weight: 500; }
.drop-item--all {
  justify-content: space-between; margin-top: 4px; padding-top: 10px;
  border-top: 1px solid var(--gray-100);
  font-size: 12.5px; font-weight: 700; color: var(--blue);
}
.drop-item--all:hover { background: var(--blue-light); }
.drop-item--empty { cursor: default; pointer-events: none; }
.drop-item--empty:hover { background: transparent; }
.drop-company {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 9px; text-decoration: none; transition: background .12s;
}
.drop-company:hover { background: var(--gray-50); }
.drop-company--empty { cursor: default; pointer-events: none; }
.drop-company--empty:hover { background: transparent; }
.company-logo-sm {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-100);
}

/* Nav CTA */
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; overflow: visible; }
.nav-dropdown-wrap {
  position: relative;
  z-index: 1100;
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.btn-nav-login {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--gray-200); color: var(--gray-700);
  background: white; cursor: pointer;
  text-decoration: none; transition: all .15s; white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
}
.btn-nav-login .chevron { transition: transform .2s; }
.nav-dropdown-wrap:hover .btn-nav-login .chevron { transform: rotate(180deg); }
.btn-nav-login:hover, .nav-dropdown-wrap:hover .btn-nav-login {
  border-color: var(--navy); color: var(--navy); background: var(--gray-50);
}
.nav-dropdown {
  position: absolute; top: calc(100% - 8px); right: 0;
  width: 200px; background: white; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.05);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  transition-delay: .12s;
  z-index: 1101;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition-delay: 0s;
}
.nav-dropdown-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 11px; border-radius: 8px;
  font-size: 13px; font-weight: 700; color: var(--gray-600);
  text-decoration: none; transition: background .12s, color .12s;
}
.nav-dropdown-link:hover { background: var(--gray-50); color: var(--navy); }
.nav-dropdown-link--accent { background: var(--blue-light); color: var(--blue); }
.nav-dropdown-link--accent:hover { background: var(--blue-mid); }

.btn-primary--employer {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 800;
  background: var(--navy); color: white;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; white-space: nowrap; font-family: 'Montserrat', sans-serif;
}
.btn-primary--employer:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(10,36,99,.25); }

/* ═══════════════════════════════════════════════════
   HERO — Light / Open
════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, #EEF4FF 0%, #F0F7FF 40%, #FAFBFF 100%);
  padding: 64px 0 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -60px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: none; }
.orb { display: none; }
.hero-marquee { display: none; }

.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); border: 1px solid rgba(26,86,219,.15);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
  font-size: 11px; font-weight: 700; color: var(--blue);
  letter-spacing: .5px; text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.6); } }

.hero-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900; line-height: 1.1;
  color: var(--gray-900); margin-bottom: 16px; letter-spacing: -1.5px;
}
.hero-title em { font-style: normal; color: var(--navy); }
.underline-accent { position: relative; display: inline-block; }
.underline-accent::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 2px; opacity: .7;
}

.hero-sub {
  font-size: 15px; line-height: 1.7; color: var(--gray-500);
  margin-bottom: 28px; max-width: 480px; font-weight: 400;
}

/* Search card */
.hero-search-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.05);
  padding: 8px 8px 6px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}
.hero-search {
  display: flex; align-items: stretch; border-radius: 12px;
  overflow: visible;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.search-group {
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px; flex: 1; min-width: 0;
  background: white;
}
.search-group--keyword { flex: 1.35; border-radius: 12px 0 0 12px; }
.search-group--type { border-radius: 0; }
.search-group svg { color: var(--gray-400); flex-shrink: 0; }
.search-group input, .search-select-wrap select {
  flex: 1; border: none; outline: none; font-family: 'Montserrat', sans-serif;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  background: transparent; min-width: 0; padding: 15px 0;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  width: 100%;
}
.search-group input { cursor: text; }
.search-group input::placeholder { color: var(--gray-400); }
.search-select-wrap {
  position: relative; flex: 1; min-width: 0; display: flex; align-items: center;
}
.search-select-wrap select {
  padding-right: 22px;
  color: var(--gray-500);
}
.search-select-wrap select:valid,
.search-select-wrap select option:not([value=""]) {
  color: var(--text);
}
.search-select-chevron {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--gray-400); pointer-events: none;
}
.search-group--location { flex: 0.85; }
.search-group--type { flex: 0.85; }
.search-divider { width: 1px; align-self: stretch; background: var(--gray-200); flex-shrink: 0; }
.hero-search-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--navy); color: white; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 13.5px; font-weight: 800;
  padding: 0 24px; margin: 0; border-radius: 0 12px 12px 0;
  transition: all .2s; white-space: nowrap; flex-shrink: 0;
}
.hero-search-btn:hover { background: var(--blue); }

.hero-search-tags {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  padding: 12px 12px 8px; font-size: 12px;
  border-top: 1px solid var(--gray-200);
  margin-top: 8px;
}
.search-tag-label { color: var(--gray-400); font-weight: 600; font-size: 11px; flex-shrink: 0; }
.search-tag {
  padding: 4px 12px; border-radius: 20px;
  background: var(--gray-100); color: var(--gray-600);
  text-decoration: none; font-weight: 600; font-size: 11.5px;
  transition: all .15s; border: 1px solid var(--gray-200);
}
.search-tag:hover { background: var(--blue-light); color: var(--blue); border-color: rgba(26,86,219,.2); }
.search-tag--blue { background: rgba(10,36,99,.07); color: var(--navy); border-color: rgba(10,36,99,.15); }
.search-tag--blue:hover { background: var(--navy); color: white; }
.search-tag--muted {
  background: transparent; border-color: transparent; color: var(--gray-400);
  cursor: default; pointer-events: none;
}

.hero-stats {
  display: flex; gap: 32px; padding-top: 20px; border-top: 1px solid var(--gray-200); margin-top: 4px;
}
.stat-number { font-size: 24px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 3px; letter-spacing: -.5px; }
.stat-number span { color: var(--blue); }
.stat-label { font-size: 10.5px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .8px; font-weight: 700; }

/* Hero Visual — light floating cards */
.hero-visual { position: relative; height: 480px; }
.job-cards-visual { position: relative; width: 100%; height: 100%; }

.jcard {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px; padding: 18px; color: var(--text);
  box-shadow: var(--shadow-lg);
  animation: floatCard 5s ease-in-out infinite;
}
.jcard--1 { top: 0; left: 0; width: 260px; animation-delay: 0s; }
.jcard--2 { top: 60px; right: 0; width: 268px; animation-delay: 1.5s; }
.jcard--3 { bottom: 60px; left: 20px; width: 252px; animation-delay: 3s; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.jcard-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.jcard-logo { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray-100); }
.jcard-badge { font-size: 9.5px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; }
.jcard-badge--new { background: var(--green-light); color: var(--green); }
.jcard-badge--hot { background: #FEF3C7; color: #D97706; }
.jcard-badge--blue { background: var(--blue-light); color: var(--blue); }

.jcard-title { font-size: 13px; font-weight: 800; margin-bottom: 3px; line-height: 1.35; color: var(--gray-900); }
.jcard-company { font-size: 11px; color: var(--gray-400); font-weight: 500; margin-bottom: 10px; }
.jcard-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.jctag { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 5px; background: var(--gray-100); color: var(--gray-600); }
.jctag--gold { background: #FEF3C7; color: #92400E; }

.jcard-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--gray-100); }
.jcard-applicants { display: flex; align-items: center; gap: 7px; font-size: 10.5px; color: var(--gray-400); font-weight: 600; }
.applicant-avatars { display: flex; }
.av { width: 20px; height: 20px; border-radius: 50%; background: var(--gray-200); border: 1.5px solid white; margin-left: -5px; }
.av:first-child { margin-left: 0; }
.jcard-time { font-size: 10px; color: var(--gray-400); font-weight: 600; }

/* Notification */
.hero-notif {
  position: absolute; top: 210px; left: 50%; transform: translateX(-50%);
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite alternate;
  animation-delay: .8s; white-space: nowrap;
}
.notif-icon { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: var(--green-light); display: flex; align-items: center; justify-content: center; }
.notif-title { font-size: 12px; font-weight: 800; color: var(--gray-800); }
.notif-sub { font-size: 10.5px; color: var(--gray-400); font-weight: 500; }
.notif-badge { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; background: var(--green-light); color: var(--green); font-size: 12px; font-weight: 900; display: flex; align-items: center; justify-content: center; }

/* Match chip */
.hero-match-chip {
  position: absolute; bottom: 30px; right: 0;
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4.5s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.match-circle { position: relative; flex-shrink: 0; }
.match-circle svg { transform: rotate(-90deg); }
.match-pct { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: var(--navy); }
.match-title { font-size: 12px; font-weight: 800; color: var(--gray-900); margin-bottom: 2px; }
.match-sub { font-size: 10.5px; color: var(--gray-400); }


/* ═══════════════════════════════════════════════════
   MARQUEE STRIP
════════════════════════════════════════════════════ */
.marquee-strip { background: var(--navy); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.4); font-size: 11px; font-weight: 700;
  white-space: nowrap; padding: 0 28px; letter-spacing: .8px; text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.1);
}
.marquee-item:last-child { border-right: none; }
.marquee-item svg { opacity: .4; }


/* ═══════════════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════════════════ */
section { padding: 80px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-tag::before { content: ''; width: 20px; height: 2.5px; background: var(--gold); border-radius: 2px; display: block; }

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900; color: var(--gray-900);
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 14px;
}
.section-title em { font-style: normal; color: var(--navy); }
.section-sub { font-size: 15px; color: var(--gray-500); line-height: 1.75; max-width: 520px; }

.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--gray-200); color: var(--navy);
  text-decoration: none; transition: all .15s; white-space: nowrap;
}
.btn-outline-navy:hover { border-color: var(--navy); background: var(--gray-50); }


/* ═══════════════════════════════════════════════════
   TRUST BAR (şirket logoları)
════════════════════════════════════════════════════ */
.trust-section {
  background: var(--gray-50);
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.trust-label {
  text-align: center; font-size: 11.5px; font-weight: 700; color: var(--gray-400);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 800; color: var(--gray-400);
  opacity: .5; transition: opacity .2s;
}
.trust-logo:hover { opacity: .85; }
.trust-logo--link { text-decoration: none; color: inherit; }
.trust-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-200);
}


/* ═══════════════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════════════════ */
.categories-section { background: white; }
.categories-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 36px;
}
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.cat-card {
  background: var(--gray-50); border-radius: 14px; padding: 24px 20px;
  border: 1.5px solid var(--gray-100);
  text-decoration: none; color: var(--text);
  transition: all .2s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.cat-card:hover {
  background: white; border-color: rgba(10,36,99,.2);
  box-shadow: var(--shadow); transform: translateY(-3px);
}
.cat-card--featured { grid-column: span 2; }
.cat-card--all { background: var(--navy); border-color: var(--navy); }
.cat-card--all:hover { background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 24px rgba(10,36,99,.2); }
.cat-card--all .cat-name { color: white; }
.cat-card--all .cat-count { color: rgba(255,255,255,.5); }
.cat-card--all .cat-arrow { color: #FCD34D; }
.cat-card--empty { cursor: default; pointer-events: none; grid-column: span 2; }
.cat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; transition: transform .2s;
}
.cat-card:hover .cat-icon { transform: scale(1.06); }
.cat-name { font-size: 14px; font-weight: 800; color: var(--gray-800); margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--gray-400); font-weight: 600; margin-bottom: auto; }
.cat-arrow { font-size: 16px; margin-top: 14px; opacity: 0; transform: translateX(-4px); transition: all .2s; }
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }
.cat-tags-row { display: flex; gap: 5px; margin-top: 12px; flex-wrap: wrap; }
.cat-tags-row span { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 5px; background: var(--blue-light); color: var(--blue); }


/* ═══════════════════════════════════════════════════
   JOB LISTINGS
════════════════════════════════════════════════════ */
.jobs-section { background: var(--gray-50); }
.jobs-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; margin-bottom: 28px;
}
.jobs-header-sub { font-size: 14px; color: var(--gray-400); margin-top: 5px; }
.jobs-header-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; padding-top: 4px; }

.jobs-filter-tabs {
  display: flex; gap: 4px; background: white;
  border-radius: 10px; padding: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  border: 1px solid var(--gray-200);
}
.filter-tab {
  padding: 7px 16px; border-radius: 7px; border: none; cursor: pointer;
  font-size: 12.5px; font-weight: 700; color: var(--gray-400);
  background: transparent; font-family: 'Montserrat', sans-serif; transition: all .15s;
}
.filter-tab.active { background: var(--navy); color: white; }
.filter-tab:not(.active):hover { color: var(--navy); background: var(--gray-100); }

.jobs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }

/* Filter sidebar */
.jobs-sidebar {
  background: white; border-radius: 14px; padding: 22px;
  border: 1px solid var(--gray-200); height: fit-content;
  position: sticky; top: 88px;
}
.sidebar-title { font-size: 13px; font-weight: 800; color: var(--gray-900); margin-bottom: 18px; }
.filter-group { margin-bottom: 22px; }
.filter-group-title {
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 10px;
}
.filter-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; cursor: pointer;
}
.filter-option-left { display: flex; align-items: center; gap: 9px; }
.filter-checkbox {
  width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid var(--gray-300);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.filter-checkbox.checked { background: var(--navy); border-color: var(--navy); }
.filter-checkbox.checked::after { content: '✓'; color: white; font-size: 9px; font-weight: 900; }
.filter-label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.filter-count { font-size: 11px; font-weight: 700; color: var(--gray-400); background: var(--gray-100); padding: 1px 7px; border-radius: 20px; }
.filter-divider { height: 1px; background: var(--gray-100); margin: 4px 0 18px; }
.filter-apply {
  width: 100%; padding: 11px; border-radius: 9px; border: none; cursor: pointer;
  background: var(--navy); color: white; font-size: 13px; font-weight: 800;
  font-family: 'Montserrat', sans-serif; transition: background .15s;
}
.filter-apply:hover { background: var(--blue); }

/* Job grid */
.jobs-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.job-card {
  background: white; border-radius: 14px; padding: 20px 22px;
  border: 1.5px solid var(--gray-200);
  transition: all .2s; position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: start;
}
.job-card:hover { border-color: rgba(10,36,99,.25); box-shadow: var(--shadow); transform: translateX(2px); }
.job-card--featured { border-color: var(--gold); background: linear-gradient(to right, #FFFBF0, white); }
.job-card--featured:hover { border-color: #D97706; box-shadow: 0 4px 20px rgba(245,158,11,.12); }

.job-featured-badge {
  position: absolute; top: -1px; left: 20px;
  background: var(--gold); color: #92400E;
  font-size: 9.5px; font-weight: 800; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 0 0 8px 8px;
}

.job-logo {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-100); margin-top: 2px;
}

.job-card-body { min-width: 0; }
.job-card-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.job-title { font-size: 15px; font-weight: 800; color: var(--gray-900); line-height: 1.3; letter-spacing: -.2px; }
.job-title a { text-decoration: none; color: inherit; }
.job-title a:hover { color: var(--blue); }

.job-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.job-company { font-size: 13px; font-weight: 700; color: var(--blue); }
.job-location { display: flex; align-items: center; gap: 4px; font-size: 12.5px; color: var(--gray-500); font-weight: 500; }
.job-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.jtag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.jtag { background: var(--gray-100); color: var(--gray-600); }
.jtag--blue { background: var(--blue-light); color: var(--navy); }
.jtag--gold { background: #FEF3C7; color: #92400E; }
.jtag--red { background: var(--red-light); color: var(--red); }
.jtag--purple { background: var(--purple-light); color: var(--purple); }
.jtag--green { background: var(--green-light); color: var(--green); }

.job-card-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.job-save {
  width: 32px; height: 32px; border-radius: 8px; border: 1.5px solid var(--gray-200);
  background: transparent; cursor: pointer; color: var(--gray-400);
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.job-save:hover { border-color: var(--gold); color: var(--gold); background: #FEF3C7; }
.job-save.saved { border-color: var(--gold); background: #FEF3C7; color: var(--gold); }
.job-save.saved svg { fill: var(--gold); stroke: var(--gold); }

.job-detail-row { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.job-detail-item { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--gray-500); font-weight: 600; }
.job-detail-item svg { color: var(--gray-400); }

.job-apply-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 8px; font-size: 12.5px; font-weight: 800;
  background: var(--navy); color: white; text-decoration: none;
  transition: all .2s; white-space: nowrap; margin-top: auto;
}
.job-apply-btn:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(10,36,99,.2); }
.job-card--featured .job-apply-btn { background: var(--gold); color: #92400E; }
.job-card--featured .job-apply-btn:hover { background: #F59E0B; box-shadow: 0 4px 14px rgba(245,158,11,.3); }

.job-time { font-size: 11px; color: var(--gray-400); font-weight: 600; text-align: right; }

.jobs-cta-row { display: flex; align-items: center; justify-content: center; gap: 20px; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 10px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--gray-200); color: var(--navy);
  background: white; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all .15s;
}
.btn-load-more:hover { border-color: var(--navy); background: var(--gray-50); }
.jobs-count { font-size: 12.5px; color: var(--gray-400); font-weight: 600; }
.job-card.hidden { display: none; }
.job-card.page-hidden { display: none; }
.jobs-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}


/* ═══════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════ */
.how-section { background: white; }
.how-bg, .how-orb-1, .how-orb-2 { display: none; }
.how-inner {}
.how-header { max-width: 560px; margin-bottom: 60px; }

.how-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: flex-start;
}
.how-step { text-align: center; padding: 0 16px; }
.how-step-num {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; transition: all .3s;
}
.how-step:hover .how-step-num { background: var(--navy); }
.how-step:hover .how-step-num svg { stroke: white; }
.how-step-num svg { stroke: var(--navy); transition: stroke .3s; }
.how-badge {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: white;
  font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.how-step:hover .how-badge { background: var(--gold); color: var(--navy); }
.how-step h3 { font-size: 14px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.how-step p { font-size: 12.5px; color: var(--gray-500); line-height: 1.65; }

.how-connector { display: flex; align-items: center; justify-content: center; padding-top: 20px; }
.how-connector-line { width: 48px; height: 1.5px; background: linear-gradient(90deg, var(--gray-200), var(--gray-300)); }
.how-connector-dot { display: none; }


/* ═══════════════════════════════════════════════════
   MAGAZINE
════════════════════════════════════════════════════ */
.magazine-section { background: var(--gray-50); }
.magazine-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 36px;
}
.magazine-grid { display: grid; grid-template-columns: 360px 1fr; gap: 24px; }

.mag-cover {
  background: var(--navy); border-radius: 18px; overflow: hidden;
  min-height: 440px; position: relative; padding: 40px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mag-cover-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 80% 20%, rgba(26,86,219,.5) 0%, transparent 60%);
}
.mag-cover-content { position: relative; z-index: 1; }
.mag-issue { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #FCD34D; margin-bottom: 14px; }
.mag-cover-title { font-size: 28px; font-weight: 900; color: white; line-height: 1.15; letter-spacing: -.8px; margin-bottom: 14px; }
.mag-cover-sub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 24px; }
.mag-read-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: white; color: var(--navy);
  padding: 11px 20px; border-radius: 10px; font-size: 13px; font-weight: 800;
  text-decoration: none; transition: all .2s; width: fit-content;
}
.mag-read-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.mag-pages { position: relative; z-index: 1; display: flex; gap: 5px; align-items: flex-end; justify-content: flex-end; margin-top: 16px; }
.mag-page { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 3px; }
.mag-page-1 { width: 40px; height: 54px; }
.mag-page-2 { width: 32px; height: 44px; }
.mag-page-3 { width: 24px; height: 34px; }

.mag-articles { display: flex; flex-direction: column; gap: 12px; }
.mag-article {
  display: flex; align-items: center; gap: 16px;
  background: white; border-radius: 14px; padding: 18px;
  border: 1px solid var(--gray-200); text-decoration: none; transition: all .2s;
}
.mag-article:hover { border-color: rgba(10,36,99,.2); box-shadow: var(--shadow); transform: translateX(4px); }
.mag-article-img {
  width: 68px; height: 68px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mag-article-tag { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; }
.mag-article-tag--gold { color: #D97706; }
.mag-article-tag--green { color: var(--green); }
.mag-article-tag--purple { color: var(--purple); }
.mag-article-title { font-size: 13.5px; font-weight: 700; color: var(--gray-900); margin-bottom: 5px; line-height: 1.4; }
.mag-article-meta { font-size: 11px; color: var(--gray-400); font-weight: 500; }


/* ═══════════════════════════════════════════════════
   EMPLOYER SECTION
════════════════════════════════════════════════════ */
.employer-section {
  background: linear-gradient(160deg, #EEF4FF 0%, #F0F7FF 50%, #EFF6FF 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.employer-bg {
  position: absolute; top: -80px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,.06) 0%, transparent 70%);
  pointer-events: none;
}
.employer-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; position: relative; z-index: 1;
}
.employer-section .section-tag::before { background: var(--gold); }
.employer-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.employer-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); font-weight: 500; }
.ef-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-light); border: 1px solid rgba(5,150,105,.15);
  display: flex; align-items: center; justify-content: center;
}
.employer-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.btn-cta-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px; font-size: 13.5px; font-weight: 800;
  background: var(--navy); color: white; text-decoration: none; transition: all .2s;
}
.btn-cta-gold:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,36,99,.2); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-size: 13px; font-weight: 700;
  background: white; color: var(--navy);
  text-decoration: none; border: 1.5px solid var(--gray-200); transition: all .2s;
}
.btn-cta-outline:hover { border-color: var(--navy); background: var(--gray-50); }
.employer-note { font-size: 12px; color: var(--gray-400); font-weight: 600; }

/* Employer visual */
.employer-visual { position: relative; }
.ev-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 22px; box-shadow: var(--shadow-lg);
}
.ev-card--main { margin-bottom: 14px; }
.ev-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ev-card-icon { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; background: var(--blue-light); display: flex; align-items: center; justify-content: center; }
.ev-card-title { font-size: 13.5px; font-weight: 800; color: var(--gray-900); margin-bottom: 1px; }
.ev-card-sub { font-size: 11px; color: var(--gray-400); }
.ev-status { margin-left: auto; padding: 3px 10px; border-radius: 20px; background: var(--green-light); color: var(--green); font-size: 10.5px; font-weight: 800; }
.ev-stats-row { display: flex; gap: 0; margin-bottom: 18px; }
.ev-stat { flex: 1; text-align: center; padding: 10px 0; border-right: 1px solid var(--gray-100); }
.ev-stat:last-child { border-right: none; }
.ev-stat-val { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 2px; }
.ev-stat-label { font-size: 10px; color: var(--gray-400); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.ev-progress-bar { height: 4px; background: var(--gray-100); border-radius: 2px; margin-bottom: 5px; }
.ev-progress-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--blue)); border-radius: 2px; transition: width .8s ease; }
.ev-progress-label { font-size: 11px; color: var(--gray-400); font-weight: 600; }

.ev-card--candidate { display: flex; align-items: center; gap: 12px; }
.ev-cand-avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.ev-cand-name { font-size: 13px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.ev-cand-detail { font-size: 11px; color: var(--gray-400); }
.ev-match-score { margin-left: auto; text-align: right; }
.ev-match-pct { font-size: 20px; font-weight: 900; color: var(--navy); line-height: 1; }
.ev-match-label { font-size: 10px; color: var(--gray-400); font-weight: 700; }

.ev-floating-badge {
  position: absolute; display: flex; align-items: center; gap: 7px;
  background: white; border: 1px solid var(--border); border-radius: 30px;
  padding: 7px 12px; font-size: 11.5px; font-weight: 700; color: var(--gray-700);
  white-space: nowrap; animation: evFloat 3.5s ease-in-out infinite;
  box-shadow: var(--shadow);
}
.ev-floating-badge--1 { bottom: -14px; left: -20px; animation-delay: 0s; }
.ev-floating-badge--2 { top: -14px; right: -10px; animation-delay: -1.5s; }
@keyframes evFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }


/* ═══════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer { background: var(--gray-900); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-top .footer-inner {
  display: grid; grid-template-columns: 260px repeat(3, 1fr);
  gap: 48px; padding-top: 52px; padding-bottom: 52px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-bottom: 16px; }
.footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand-desc { font-size: 12.5px; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: all .15s; border: 1px solid rgba(255,255,255,.08);
}
.footer-social:hover { background: rgba(255,255,255,.14); color: white; }
.footer-col-title { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-link { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.45); text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.footer-link:hover { color: white; }
.footer-bottom { padding: 18px 32px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.25); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.6); }


/* ─── Jobs result bar ────────────────────────────── */
.jobs-result-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200);
}
.jobs-result-count { font-size: 13.5px; color: var(--gray-600); font-weight: 600; }
.jobs-result-count strong { color: var(--gray-900); font-weight: 800; }
.jobs-sort { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--gray-500); }
.jobs-sort select { border: 1px solid var(--gray-200); border-radius: 7px; padding: 5px 10px; font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 600; color: var(--gray-700); background: white; outline: none; cursor: pointer; }
.jobs-right {}
.tab-count { background: var(--gray-200); color: var(--gray-600); font-size: 10px; padding: 1px 6px; border-radius: 10px; margin-left: 3px; }
.filter-tab.active .tab-count { background: rgba(255,255,255,.25); color: white; }
.stat-sep { width: 1px; height: 32px; background: var(--gray-200); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .jobs-layout { grid-template-columns: 1fr; }
  .jobs-sidebar { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card--featured { grid-column: span 1; }
  .magazine-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-connector { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 48px 0 56px; }
  .employer-inner { grid-template-columns: 1fr; }
  .employer-visual { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top .footer-inner { grid-template-columns: 1fr 1fr; }
  .topbar-left { display: none; }
}

@media (max-width: 680px) {
  .hero-search { flex-direction: column; border-radius: 12px; overflow: hidden; }
  .search-divider { display: none; }
  .search-group { width: 100%; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .search-group--keyword { border-radius: 0; }
  .search-group:last-of-type { border-bottom: none; }
  .hero-search-btn { width: calc(100% - 12px); justify-content: center; margin: 6px; border-radius: 10px; }
  .jobs-grid .job-card { grid-template-columns: 1fr; }
  .job-logo { display: none; }
  .job-card-actions { flex-direction: row; justify-content: space-between; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 0; }
  .section-inner { padding: 0 20px; }
  nav .nav-inner { padding: 0 20px; }
  .topbar-inner { padding: 0 20px; }
}
