@font-face{
    font-family:'Mulish';
    src:url('../fonts/Mulish-Regular.ttf') format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Mulish';
    src:url('../fonts/Mulish-SemiBold.ttf') format('truetype');
    font-weight:600;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Mulish';
    src:url('../fonts/Mulish-Bold.ttf') format('truetype');
    font-weight:700;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Mulish';
    src:url('../fonts/Mulish-ExtraBold.ttf') format('truetype');
    font-weight:800;
    font-style:normal;
    font-display:swap;
}

:root {
  --font:'Mulish', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --bg: #f6f8fb;
  --surface: #fff;
  --text: #111827;
  --muted: #667085;
  --line: #e6eaf0;
  --primary: #2557d6;
  --dark: #123b9c;
  --soft: #eef4ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: auto;
}

.header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-weight: 800;
  font-size: 14px;
  color: #344054;
}

.menu a:first-child {
  color: var(--primary);
}
.header-cta {
  display: none;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  margin: 0;
  background: var(--soft);
  color: var(--primary);
  border: 1px solid #dce7ff;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -1px;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.home-hero {
  padding: 58px 0 30px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.hero-wrap {
  text-align: center;
  max-width: 920px;
  margin: auto;
}

.home-hero .eyebrow {
  margin: auto;
}

.home-hero h1 {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1.9px;
  margin: 20px 0 16px;
}

.home-hero h1 span {
  color: var(--primary);
}

.home-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 30px auto 0;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.05);
}

.stat strong {
  display: block;
  font-size: 25px;
  letter-spacing: -0.8px;
  color: var(--dark);
}

.stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}

.cities-section {
  padding: 34px 0 30px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.city-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.16s;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.035);
}

.city-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 18px 35px rgba(37, 87, 214, 0.1);
}

.city-name {
  font-size: 17px;
  font-weight: 900;
  color: #101828;
}

.city-count {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin-top: 4px;
}

.system-section {
  padding: 28px 0 70px;
}

.system-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 18px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.055);
}

.system-title h2 {
  font-size: 32px;
  line-height: 1.12;
  margin: 0 0 12px;
  letter-spacing: -1.1px;
}

.system-title p {
  margin: 0;
  color: var(--muted);
}

.step {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.step b {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.step strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb {
  padding: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--primary);
}

.listing-hero {
  padding: 20px 0;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  border-bottom: 1px solid var(--line);
}

.listing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 24px;
  align-items: end;
}

.listing-hero h1 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -1.4px;
  margin: 14px 0 10px;
}

.listing-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.listing-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.055);
}

.listing-summary strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -1.2px;
}

.listing-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.listing-toolbar {
  padding: 18px 0;
}

.toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.04);
}

.toolbar-title strong {
  display: block;
  font-size: 15px;
}
.toolbar-title span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
  font-weight: 700;
}

.active-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.active-tags span {
  background: var(--soft);
  border: 1px solid #dce7ff;
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
}

.listing-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  padding: 0 0 64px;
}
.filter-column {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 92px;
}
.filter-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.045);
}
.filter-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}
.filter-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.filter-links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}
.filter-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 900;
  background: #fff;
}
.filter-links a:hover {
  border-color: var(--primary);
  background: #f8fbff;
}
.filter-links span {
  color: var(--muted);
  font-size: 12px;
}

.listing-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.045);
  padding: 24px;
}
.listing-panel .section-head {
  margin-bottom: 16px;
}
.job-list {
  display: grid;
  gap: 12px;
}
.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  transition: 0.15s;
}
.job-card:hover {
  border-color: #cbd8ff;
  box-shadow: 0 16px 34px rgba(37, 87, 214, 0.08);
  transform: translateY(-1px);
}
.job-card.is-sponsored {
  border-color: #fed7aa;
  background: linear-gradient(180deg, #fff, #fffaf5);
}
.job-card.is-sponsored:hover {
  border-color: #fb923c;
  box-shadow: 0 16px 34px rgba(251, 146, 60, 0.12);
}
.job-card h3 {
  font-size: 19px;
  font-weight: 900;
  color: #101828;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.job-meta span {
  background: #f8fafc;
  border: 1px solid var(--line);
  padding: 6px 9px;
  border-radius: 999px;
}
.job-card p {
  margin: 12px 0 0;
  color: #475467;
  font-size: 14px;
  max-width: 720px;
}
.job-action {
  text-align: right;
}
.job-action b {
  display: inline-flex;
  background: #ecfdf3;
  color: #067647;
  border: 1px solid #abefc6;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
}
.job-action b.sponsor-badge {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}
.job-action strong {
  display: block;
  margin-top: 14px;
  background: var(--primary);
  color: #fff;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
}
.job-action small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.empty-box {
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  padding: 22px;
  color: var(--muted);
}

.listing-content-block {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.045);
  padding: 24px;
}
.listing-content-block h2 {
  font-size: 24px;
  margin: 0 0 10px;
  letter-spacing: -0.6px;
}
.listing-content-block p {
  color: #475467;
  margin: 0 0 12px;
}

.pagination-area {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}
.pagination-wrap a,
.pagination-wrap span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid #d9e2f1;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #344054;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.035);
}
.pagination-wrap a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f8fbff;
}
.pagination-wrap .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(37, 87, 214, 0.18);
}
.pagination-wrap .disabled {
  background: #f8fafc;
  color: #98a2b3;
  box-shadow: none;
  pointer-events: none;
}
.pagination-wrap .page-arrow {
  min-width: auto;
  padding: 0 15px;
}
.pagination-info {
  text-align: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-hero {
  padding: 22px 0 0;
  background: linear-gradient(180deg, #fff, #f7faff);
}
.detail-hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px 28px 0 0;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.055);
}
.detail-hero-card h1 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -1.35px;
  margin: 12px 0;
}
.detail-badges,
.detail-badges-small {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.detail-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  background: var(--soft);
  color: var(--primary);
  border: 1px solid #dce7ff;
}
.detail-badge.green {
  background: #ecfdf3;
  color: #067647;
  border-color: #abefc6;
}
.sponsor-detail-badge {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}
.detail-page {
  padding: 24px 0 64px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 24px;
  align-items: start;
}
.detail-content {
  display: grid;
  gap: 18px;
}
.detail-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.045);
  padding: 24px;
}
.detail-panel h2 {
  font-size: 24px;
  margin: 0 0 12px;
  letter-spacing: -0.7px;
}
.detail-panel p {
  margin: 0 0 12px;
  color: #475467;
}
.detail-panel p:last-child {
  margin-bottom: 0;
}
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.detail-info {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.detail-info span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.detail-info strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}
.detail-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 92px;
}
.detail-aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.045);
}
.detail-aside-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}
.detail-aside-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.apply-card {
  border-color: #dce7ff;
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.company-info-list {
  display: grid;
  gap: 12px;
}
.company-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f6;
}
.company-info-item:last-of-type {
  border-bottom: 0;
}
.company-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef4ff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
}
.company-info-icon svg {
  width: 18px;
  height: 18px;
}
.company-info-item strong {
  display: block;
  color: #101828;
  font-size: 14px;
  margin-bottom: 4px;
}
.company-info-item small {
  display: block;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}
.company-link-btn {
  margin-top: 6px;
  min-height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  font-weight: 900;
}
.company-link-btn .company-info-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.detail-published-note {
  margin: 14px 0 0 !important;
  color: #98a2b3;
  font-size: 12px !important;
  line-height: 1.7;
}
.detail-warning {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 22px;
  padding: 22px;
}
.detail-warning h3 {
  font-size: 18px;
  margin: 0 0 10px;
}
.detail-warning p {
  margin: 0 0 12px;
  font-size: 14px;
}

.job-description-text {
  color: #475467;
  line-height: 1.85;
  font-size: 15px;
}
.job-description-rich {
  display: block;
  color: #344054;
  font-size: 15px;
  line-height: 1.85;
}
.job-description-rich h3 {
  margin: 28px 0 12px;
  color: #101828;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.45px;
  font-weight: 900;
}
.job-description-rich h3:first-child {
  margin-top: 0;
}
.job-description-rich p {
  margin: 0 0 18px;
  color: #344054;
  font-size: 15px;
  line-height: 1.85;
}
.job-description-rich ul {
  margin: 0 0 18px;
  padding-left: 22px;
  display: block;
  list-style: disc;
}
.job-description-rich li {
  margin: 0 0 10px;
  color: #344054;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}
.howto-box p {
  margin: 0 0 14px;
}
.explore-panel p {
  margin-bottom: 18px;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.explore-link {
  min-height: 56px;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
  color: #183b7a;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.035);
}
.explore-link svg {
  width: 22px;
  height: 22px;
  color: #667085;
  flex: 0 0 22px;
}
.explore-link:hover {
  border-color: #bcd0f7;
  transform: translateY(-1px);
}

.report-open-btn {
  margin-top: 16px;
  width: 100%;
  min-height: 44px;
  border: 1px solid #fecdca;
  background: #fff;
  color: #b42318;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}
.report-open-btn:hover {
  background: #fff5f4;
}
.report-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.report-modal.is-open {
  display: flex;
}
.report-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.52);
}
.report-modal-card {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.24);
  z-index: 2;
}
.report-modal-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.7px;
}
.report-modal-card p {
  margin: 0 0 18px;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}
.report-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f7;
  color: #344054;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.report-modal-options {
  display: grid;
  gap: 10px;
}
.report-modal-options button {
  min-height: 48px;
  border: 1px solid #dbe4f0;
  background: #fff;
  border-radius: 14px;
  color: #101828;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  padding: 0 14px;
  cursor: pointer;
}
.report-modal-options button:hover {
  border-color: #fecdca;
  background: #fff5f4;
  color: #b42318;
}
.report-modal-result {
  display: none;
  margin-top: 14px;
  border: 1px solid #abefc6;
  background: #ecfdf3;
  color: #067647;
  border-radius: 14px;
  padding: 12px;
  font-size: 13px;
  font-weight: 900;
}
.report-modal-result.is-visible {
  display: block;
}

.mobile-apply {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  z-index: 30;
  box-shadow: 0 -12px 30px rgba(17, 24, 39, 0.09);
}
.mobile-apply a {
  display: block;
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 900;
}

.premium-faq {
  display: grid;
  gap: 12px;
}
.premium-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.035);
  transition: 0.15s;
}
.premium-faq details:hover {
  border-color: #c9d8ff;
  box-shadow: 0 16px 32px rgba(37, 87, 214, 0.08);
}
.premium-faq details[open] {
  border-color: #dce7ff;
  background: #fbfdff;
}
.premium-faq summary {
  cursor: pointer;
  font-weight: 900;
  color: #101828;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.premium-faq summary::-webkit-details-marker {
  display: none;
}
.premium-faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex: 0 0 28px;
}
.premium-faq details[open] summary::after {
  content: "−";
}
.premium-faq p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.simple-content-hero {
  padding: 58px 0 36px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  border-bottom: 1px solid var(--line);
}
.simple-content-hero h1 {
  margin: 14px 0 12px;
  color: #101828;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -1.4px;
}
.simple-content-hero p {
  margin: 0;
  max-width: 780px;
  color: #475467;
  font-size: 17px;
  line-height: 1.8;
}
.simple-content-page {
  padding: 34px 0 54px;
}
.simple-content-layout {
  max-width: 980px;
  display: grid;
  gap: 20px;
}
.simple-content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.04);
}
.simple-content-card h2 {
  margin: 0 0 12px;
  color: #101828;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.6px;
}
.simple-content-card p {
  margin: 0 0 14px;
  color: #475467;
  font-size: 15px;
  line-height: 1.8;
}
.contact-mail-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 15px;
  padding: 0 18px;
  background: #eef4ff;
  color: var(--primary);
  border: 1px solid #dce7ff;
  font-weight: 900;
}
.legal-content h2:not(:first-child) {
  margin-top: 26px;
}

.site-footer {
  background: #101828;
  color: #d0d5dd;
  padding: 0 0 22px;
}
.footer-simple {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0 20px;
}
.footer-logo {
  display: inline-flex;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}
.footer-simple p {
  margin: 0;
  max-width: 560px;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}
.footer-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .system-box {
    grid-template-columns: 1fr;
  }
  .home-hero h1 {
    font-size: 38px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .listing-hero-grid,
  .listing-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .filter-column,
  .detail-aside {
    position: static;
  }
  .job-card {
    grid-template-columns: 1fr;
  }
  .job-action {
    text-align: left;
  }
  .job-action strong {
    display: inline-block;
  }
  .toolbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .listing-hero h1,
  .detail-hero-card h1 {
    font-size: 34px;
  }
  .detail-info-grid,
  .explore-grid {
    grid-template-columns: 1fr;
  }
  .mobile-apply {
    display: block;
  }
  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 720px) {
  .nav {
    height: auto;
    min-height: 68px;
    padding: 14px 0;
  }
  .menu {
    gap: 14px;
    font-size: 13px;
  }
  .footer-simple,
  .footer-bottom {
    flex-direction: column;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .simple-content-hero h1 {
    font-size: 34px;
  }
}

.listing-layout-full {
  grid-template-columns: 1fr;
}

.listing-filter-trigger-wrap {
  margin: 18px auto 18px;
}

.listing-filter-open {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(37, 87, 214, 0.14);
}

.listing-filter-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.listing-filter-modal.is-open {
  display: flex;
}

.listing-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.52);
}

.listing-filter-card {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.24);
}

.listing-filter-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.6px;
}

.listing-filter-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.listing-filter-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f7;
  color: #344054;
  font-size: 22px;
  cursor: pointer;
}

.listing-filter-search-form {
  display: grid;
  gap: 12px;
}

.filter-search-field {
  position: relative;
  display: grid;
  gap: 6px;
}

.filter-search-field label {
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.filter-search-field input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0 12px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
}

.listing-filter-search-form button {
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.filter-suggestion-box {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  z-index: 5;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
}

.filter-suggestion-box.is-visible {
  display: grid;
}

.filter-suggestion-box button {
  height: auto;
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: #101828;
  text-align: left;
  border-radius: 0;
  padding: 10px 12px;
  font-size: 13px;
}

.filter-suggestion-box button:hover {
  background: #f8fbff;
  color: var(--primary);
}

.filter-popular-block {
  margin-top: 18px;
}

.filter-popular-block strong {
  display: block;
  margin-bottom: 9px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.filter-popular-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-popular-links a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 800;
  color: #344054;
  background: #fff;
}

.listing-layout-full {
  grid-template-columns: 1fr;
}

.listing-results-area {
  min-width: 0;
}

@media (max-width: 980px) {
  .listing-layout {
    display: flex;
    flex-direction: column;
  }

  .listing-results-area {
    order: 1;
  }

  .listing-sidebar-links {
    order: 2;
    position: static;
    display: grid;
    gap: 18px;
  }

  .listing-content-block {
    margin-top: 22px;
  }
}

.terms-consent{
    position:fixed;
    left:18px;
    right:18px;
    bottom:18px;
    z-index:90;
    display:none;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    max-width:920px;
    margin:0 auto;
    padding:14px 16px;
    background:#101828;
    color:#fff;
    border-radius:18px;
    box-shadow:0 18px 50px rgba(16,24,40,.22);
}

.terms-consent p{
    margin:0;
    color:rgba(255,255,255,.86);
    font-size:13px;
    line-height:1.55;
}

.terms-consent a{
    color:#fff;
    font-weight:900;
    text-decoration:underline;
}

.terms-consent button{
    flex:0 0 auto;
    height:38px;
    border:0;
    border-radius:12px;
    padding:0 14px;
    background:#fff;
    color:#101828;
    font-family:var(--font);
    font-size:13px;
    font-weight:900;
    cursor:pointer;
}

@media(max-width:720px){
    .terms-consent{
        left:12px;
        right:12px;
        bottom:12px;
        align-items:flex-start;
        flex-direction:column;
    }

    .terms-consent button{
        width:100%;
    }
}

.job-company-line{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    margin:9px 0 8px;
}

.job-company-line span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:30px;
    border:1px solid var(--line);
    border-radius:999px;
    padding:6px 10px;
    background:#fff;
    color:#344054;
    font-size:13px;
    font-weight:900;
}

.job-company-line i{
    font-style:normal;
    font-size:13px;
    line-height:1;
}

.job-company-line .company-name{
    color:#101828;
    background:#f8fbff;
    border-color:#d8e4ff;
}

.job-company-line .job-location{
    color:#2557d6;
    background:#f5f8ff;
    border-color:#d8e4ff;
}

.error-page{
    padding:80px 0 100px;
    background:linear-gradient(180deg,#f8fbff 0%,#fff 100%);
}

.error-page-inner{
    max-width:760px;
    text-align:center;
}

.error-page-inner span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:92px;
    height:48px;
    border-radius:999px;
    background:#eef4ff;
    color:var(--primary);
    font-size:22px;
    font-weight:900;
    margin-bottom:18px;
}

.error-page-inner h1{
    margin:0;
    color:#101828;
    font-size:44px;
    line-height:1.12;
    letter-spacing:-1.2px;
}

.error-page-inner p{
    max-width:620px;
    margin:16px auto 0;
    color:var(--muted);
    font-size:16px;
    line-height:1.75;
}

.error-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:28px;
}

.error-actions a{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    padding:0 18px;
    font-weight:900;
}

.error-actions .primary-btn{
    background:var(--primary);
    color:#fff;
}

.error-actions .ghost-btn{
    border:1px solid var(--line);
    color:#344054;
    background:#fff;
}

@media(max-width:720px){
    .error-page{
        padding:54px 0 74px;
    }

    .error-page-inner h1{
        font-size:32px;
    }

    .error-actions{
        flex-direction:column;
    }

    .error-actions a{
        width:100%;
    }
}
