/* ================================================================
   GlobalRusea — Main Stylesheet
   Green professional theme
   ================================================================ */

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

:root {
  /* Greens */
  --g900: #1B5E20;
  --g800: #2E7D32;
  --g700: #388E3C;
  --g500: #4CAF50;
  --g400: #66BB6A;
  --g100: #E8F5E9;
  --g50:  #F1F8F1;

  /* Neutrals */
  --dark:  #0F1A0F;
  --ink:   #1C2B1C;
  --sub:   #4A5A4A;
  --mid:   #7A8C7A;
  --line:  #D8E8D8;
  --fog:   #F4F8F4;
  --white: #FFFFFF;

  /* Accent */
  --gold:  #F9A825;

  /* Typography */
  --font-d: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Misc */
  --r: 10px;
  --shadow-sm: 0 1px 3px rgba(15,26,15,0.06), 0 1px 2px rgba(15,26,15,0.04);
  --shadow:    0 4px 16px rgba(15,26,15,0.08), 0 2px 4px rgba(15,26,15,0.04);
  --shadow-lg: 0 16px 40px rgba(15,26,15,0.12), 0 4px 10px rgba(15,26,15,0.05);
  --shadow-glow: 0 8px 30px rgba(46,125,50,0.18);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
  background: var(--g900);
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.topbar a:hover { color: var(--g400); }
.topbar-right { display: flex; gap: 18px; }

/* ── Nav ─────────────────────────────────────────────────── */
#mainNav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 999;
  transition: box-shadow var(--transition);
}
#mainNav.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 76px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--g800), var(--g500));
  color: white; font-family: var(--font-d); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.logo span { font-family: var(--font-d); font-size: 18px; font-weight: 600; color: var(--ink); }
.logo span strong { font-weight: 800; color: var(--g800); }
.logo-light span { color: rgba(255,255,255,0.85); }
.logo-light span strong { color: var(--g400); }
.logo-img { height: 52px; width: auto; max-width: 220px; object-fit: contain; }
.logo-img-light { opacity: 0.95; }

.nav-links { display: flex; gap: 4px; align-items: center; flex: 1; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 14px; font-weight: 500; color: var(--sub);
  padding: 8px 13px; border-radius: 8px;
  display: flex; align-items: center; gap: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--g800); background: var(--g50); }
.nav-employer { color: var(--g800) !important; font-weight: 600 !important; }
.nav-employer:hover { background: var(--g100) !important; }

/* Dropdown — controlled by JS via .open class (reliable, no hover gap issues) */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 10px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  min-width: 230px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1000;
}
/* invisible bridge so cursor can travel from link to menu without leaving */
.has-dropdown::after {
  content: ''; position: absolute; left: 0; right: 0;
  top: 100%; height: 14px;
}
.has-dropdown.open .dropdown,
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.has-dropdown.open .chevron,
.has-dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown li a {
  display: block; padding: 10px 14px; font-size: 13.5px;
  color: var(--sub); border-radius: 8px;
  transition: all 0.15s ease;
}
.dropdown li a:hover { background: var(--g50); color: var(--g800); padding-left: 18px; }

.nav-ctas { display: flex; gap: 8px; align-items: center; margin-left: auto; flex-shrink: 0; }
.btn-nav-ghost {
  padding: 8px 16px; border: 1.5px solid var(--line); border-radius: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--sub);
  transition: all var(--transition);
}
.btn-nav-ghost:hover { border-color: var(--g700); color: var(--g800); }
.btn-nav-primary {
  padding: 9px 18px; background: var(--g800); border-radius: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--white);
  transition: all var(--transition);
}
.btn-nav-primary:hover { background: var(--g700); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: 9px; font-size: 14.5px; font-weight: 600; cursor: pointer; transition: all var(--transition); text-decoration: none; border: none; font-family: var(--font-b); }
.btn-primary { background: var(--g800); color: var(--white); box-shadow: 0 1px 2px rgba(15,26,15,0.08); }
.btn-primary:hover { background: var(--g700); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { border: 1.5px solid var(--g800); color: var(--g800); background: transparent; }
.btn-outline:hover { background: var(--g800); color: var(--white); border-color: var(--g800); }
.btn-white { background: var(--white); color: var(--g800); box-shadow: 0 1px 2px rgba(15,26,15,0.06); }
.btn-white:hover { background: var(--g50); transform: translateY(-1px); }
.btn-ghost-white { border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #14431A 0%, var(--g900) 50%, var(--g800) 100%);
  padding: 68px 24px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(102,187,106,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-d); font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--white); letter-spacing: -0.8px; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--g400); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ── Section Helpers ──────────────────────────────────────── */
.sec { padding: 80px 24px; }
.sec-alt { background: var(--fog); }
.sec-dark { background: var(--g900); }
.sec-header { margin-bottom: 48px; }
.sec-tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g700); margin-bottom: 10px; }
.sec-tag-light { color: var(--g400); }
.sec-title { font-family: var(--font-d); font-size: clamp(26px,3vw,38px); font-weight: 800; color: var(--dark); letter-spacing: -0.6px; line-height: 1.15; margin-bottom: 14px; }
.sec-title-light { color: var(--white); }
.sec-sub { font-size: 16px; line-height: 1.7; color: var(--sub); max-width: 560px; }
.sec-sub-light { color: rgba(255,255,255,0.65); }
.sec-header-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); border-color: rgba(46,125,50,0.15); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, var(--g100), #DCEFDD);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  transition: transform var(--transition);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-2deg); }
.card h3 { font-family: var(--font-d); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.card p { font-size: 14px; line-height: 1.7; color: var(--sub); }

/* ── Job Cards ────────────────────────────────────────────── */
.job-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.job-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(76,175,80,0.4); transform: translateY(-2px); }
.job-card-left { flex: 1; }
.job-card-icon {
  width: 50px; height: 50px; border-radius: 11px;
  background: var(--g100); display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; margin-bottom: 14px;
}
.job-title { font-family: var(--font-d); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--mid); }
.job-meta span { display: flex; align-items: center; gap: 5px; }
.job-tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.tag { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.tag-green { background: var(--g100); color: var(--g800); }
.tag-gold { background: #FFF8E1; color: #E65100; }
.tag-gray { background: var(--fog); color: var(--sub); }
.job-card-right { flex-shrink: 0; text-align: right; }
.job-salary { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--g800); margin-bottom: 10px; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--line); border-radius: 8px;
  font-size: 14.5px; color: var(--ink); font-family: var(--font-b);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { border-color: var(--g700); box-shadow: 0 0 0 3px rgba(46,125,50,0.12); }
.form-control::placeholder { color: #AAB8AA; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-hint { font-size: 12px; color: var(--mid); margin-top: 5px; }

/* Alert boxes */
.alert { padding: 13px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; }
.alert-success { background: var(--g100); color: var(--g800); border: 1px solid #C8E6C9; }
.alert-error { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar { background: var(--g50); border-bottom: 1px solid var(--line); padding: 36px 24px; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-d); font-size: 38px; font-weight: 800; color: var(--g800); letter-spacing: -1px; line-height: 1; }
.stat-num sup { font-size: 22px; color: var(--g500); }
.stat-label { font-size: 13px; color: var(--sub); margin-top: 5px; font-weight: 500; }

/* ── Industry Chips ───────────────────────────────────────── */
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.industry-chip {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  transition: all var(--transition); cursor: pointer;
}
.industry-chip .ic { font-size: 22px; }
.industry-chip:hover { border-color: rgba(46,125,50,0.3); color: var(--g800); background: var(--g50); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; transition: all var(--transition); }
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 14.5px; line-height: 1.75; color: var(--sub); flex: 1; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--g100); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--g800); flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--mid); margin-top: 2px; }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-img { height: 190px; background: linear-gradient(135deg, var(--g900), var(--g700)); display: flex; align-items: center; justify-content: center; font-size: 44px; flex-shrink: 0; }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g700); margin-bottom: 10px; }
.blog-title { font-family: var(--font-d); font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 10px; flex: 1; }
.blog-meta { font-size: 12.5px; color: var(--mid); margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner { background: linear-gradient(155deg, var(--g900) 0%, var(--g700) 100%); padding: 76px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 85% at 75% 50%, rgba(102,187,106,0.22) 0%, transparent 60%); pointer-events: none; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-d); font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 14px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 32px; line-height: 1.65; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Two Paths ────────────────────────────────────────────── */
.paths-section { background: var(--dark); padding: 80px 24px; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path-card { border-radius: 20px; padding: 44px 38px; transition: transform var(--transition); }
.path-card:hover { transform: translateY(-3px); }
.path-card.employer { background: linear-gradient(155deg, var(--g700), var(--g900)); box-shadow: var(--shadow-glow); }
.path-card.candidate { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
.path-card h2 { font-family: var(--font-d); font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -0.4px; margin-bottom: 12px; }
.path-card > p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.path-perks { margin-bottom: 32px; }
.path-perks li { font-size: 14px; color: rgba(255,255,255,0.75); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 10px; }
.path-perks li::before { content: '✓'; color: var(--g400); font-weight: 700; flex-shrink: 0; }
.path-card.candidate .btn { background: var(--g800); color: var(--white); }
.path-card.candidate .btn:hover { background: var(--g700); }
.path-card.employer .btn { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); }
.path-card.employer .btn:hover { background: rgba(255,255,255,0.25); }

/* ── Footer ───────────────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.6); }
.footer-top { padding: 64px 24px 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; margin-top: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-social a:hover { background: var(--g800); border-color: var(--g800); color: white; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 18px; letter-spacing: 0.04em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-info { margin-top: 22px; font-size: 14px; }
.footer-contact-info p { margin-bottom: 8px; }
.footer-contact-info a { color: rgba(255,255,255,0.5); }
.footer-contact-info a:hover { color: white; }
.footer-contact-info .hours { font-size: 12.5px; color: rgba(255,255,255,0.35); margin-top: 8px; }
.footer-bottom { padding: 20px 24px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ── Pagination ───────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 14px; border: 1.5px solid var(--line); border-radius: 7px; font-size: 14px; color: var(--sub); transition: all var(--transition); }
.pagination a:hover { border-color: var(--g700); color: var(--g800); }
.pagination .active { background: var(--g800); border-color: var(--g800); color: white; }

/* ── Grid Helpers ─────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.jobs-list { display: flex; flex-direction: column; gap: 16px; }

/* ── Sidebar Layout ───────────────────────────────────────── */
.layout-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sidebar-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }

/* ── Divider ──────────────────────────────────────────────── */
hr.divider { border: none; border-top: 1px solid var(--line); margin: 28px 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 2px; }
  .nav-links > li > a { padding: 7px 9px; font-size: 13.5px; }
  .industry-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .topbar { font-size: 11.5px; padding: 7px 0; }
  .topbar-inner { flex-wrap: wrap; justify-content: center; gap: 6px 14px; text-align: center; }
  .topbar-right { gap: 14px; }
  .nav-inner { justify-content: space-between; gap: 12px; }
  .logo-img { height: 40px; }
  .nav-links, .nav-ctas { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 16px; box-shadow: var(--shadow); z-index: 998;
    gap: 4px; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.open .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; padding-left: 16px; margin-top: 4px; display: none; }
  .nav-links.open .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; flex-shrink: 0; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
  .layout-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .job-card-right { text-align: left; }
  .sec-header-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .topbar-inner { font-size: 11px; }
  .topbar-right { gap: 10px; }
  .industry-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p { font-size: 14.5px; }
  .btn-lg { padding: 12px 22px; font-size: 15px; }
  .nav-inner { height: 64px; }
  .logo-img { height: 36px; }
  .logo-icon { width: 32px; height: 32px; font-size: 15px; }
  .logo span { font-size: 15px; }
  .nav-links.open { top: 64px; max-height: calc(100vh - 64px); }
}
