/* ===== OnlineEslJob.com — Design System v1 ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Colors — Navy Blue + Bright Orange */
  --clr-primary: #0D3880;
  --clr-primary-mid: #1A4F9E;
  --clr-primary-light: #E8EEF7;
  --clr-primary-dark: #082255;
  --clr-accent: #F15A24;
  --clr-accent-hover: #D94A1A;
  --clr-accent-pale: #FEF0EA;
  --clr-ok: #0F7B4A;
  --clr-ok-pale: #E6F5EE;
  --clr-warn: #D97706;
  --clr-err: #DC2626;
  --clr-err-pale: #FDE8E8;

  /* Backgrounds */
  --bg-body: #F4F5F7;
  --bg-card: #FFFFFF;
  --bg-muted: #EDEFF2;
  --bg-dark: #0D3880;
  --bg-dark-alt: #082255;

  /* Text */
  --txt-heading: #0F172A;
  --txt-body: #334155;
  --txt-dim: #64748B;
  --txt-faint: #94A3B8;
  --txt-white: #FFFFFF;
  --txt-link: #0D3880;
  --txt-link-hover: #F15A24;

  /* Borders */
  --bdr: #DEE2E6;
  --bdr-light: #E9ECEF;
  --bdr-focus: #0D3880;

  /* Fonts — Inter only, clean & modern */
  --ff-display: 'Inter', system-ui, -apple-system, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --sh-sm: 0 1px 3px rgba(13,56,128,0.06);
  --sh-md: 0 4px 12px rgba(13,56,128,0.08);
  --sh-lg: 0 8px 24px rgba(13,56,128,0.10);

  /* Radius — medium */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-pill: 100px;

  /* Timing */
  --t-fast: 120ms;
  --t-base: 220ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--txt-body);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--ff-body); }
img { max-width: 100%; display: block; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV — dark full-width ===== */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--clr-primary-dark); transition: box-shadow var(--t-fast) var(--ease); }
.site-nav.scrolled { box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 58px; }

/* Logo */
.nav-brand {
  font-family: var(--ff-body);
  font-size: 20px;
  color: var(--txt-white);
  display: inline-flex;
  align-items: center;
  gap: 0;
  letter-spacing: -0.02em;
}
.nav-brand-accent { color: var(--clr-accent); }
.nav-brand-heavy { font-weight: 800; font-size: 22px; }
.nav-brand-light { font-weight: 300; font-size: 16px; }
.nav-brand-tld { font-weight: 400; font-size: 14px; color: rgba(255,255,255,0.5); }
.nav-brand-online { font-weight: 700; font-size: 16px; color: var(--clr-accent); margin-right: 1px; }

.nav-menu { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-menu a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  transition: color var(--t-fast) var(--ease);
  padding: 4px 0;
}
.nav-menu a:hover { color: var(--txt-white); }
.nav-menu .nav-cta {
  color: var(--clr-accent);
  background: rgba(241,90,36,0.12);
  padding: 6px 16px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 12.5px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-menu .nav-cta:hover { background: var(--clr-accent); color: var(--txt-white); }

.nav-burger { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: var(--r-sm); }
.nav-burger:hover { background: rgba(255,255,255,0.08); }
.nav-burger svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.7); }

/* Mobile drawer */
.drawer-mask { display: none; position: fixed; inset: 0; background: rgba(8,34,85,0.55); z-index: 200; opacity: 0; transition: opacity var(--t-base) var(--ease); }
.drawer-mask.open { opacity: 1; }
.drawer-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 270px; background: var(--bg-card); z-index: 201; transform: translateX(100%); transition: transform var(--t-base) var(--ease); padding: 20px; }
.drawer-panel.open { transform: translateX(0); }
.drawer-close { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; margin-left: auto; margin-bottom: 20px; border-radius: var(--r-sm); color: var(--txt-dim); }
.drawer-close:hover { background: var(--bg-muted); }
.drawer-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.drawer-nav a { display: block; padding: 11px 14px; font-size: 15px; font-weight: 600; color: var(--txt-heading); border-radius: var(--r-sm); transition: background var(--t-fast) var(--ease); }
.drawer-nav a:hover { background: var(--bg-muted); }
.drawer-nav .drawer-cta { color: var(--clr-accent); font-weight: 700; margin-top: 8px; border-top: 1px solid var(--bdr); padding-top: 14px; }

/* ===== BANNER — hero replacement ===== */
.banner {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, var(--clr-primary-mid) 100%);
  position: relative; overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(241,90,36,0.10) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.banner-inner { position: relative; z-index: 1; padding: 64px 0 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.banner-text h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 1.0rem + 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--txt-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.banner-text h1 span { color: var(--clr-accent); }
.banner-lead { font-size: clamp(0.85rem, 0.78rem + 0.35vw, 1rem); color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 24px; }
.banner-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clr-accent);
  color: var(--txt-white);
  font-weight: 700; font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--r-md);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.banner-cta:hover { background: var(--clr-accent-hover); transform: translateY(-1px); }
.banner-cta svg { width: 15px; height: 15px; }

.banner-stats { display: flex; gap: 24px; margin-bottom: 24px; }
.banner-stat-val { font-family: var(--ff-display); font-size: 22px; font-weight: 800; color: var(--txt-white); }
.banner-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 1px; text-transform: uppercase; letter-spacing: 0.04em; }

.banner-right { text-align: center; }
.banner-quick-search {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}
.banner-quick-search h3 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.banner-search-row { display: flex; gap: 8px; }
.banner-search-row input {
  flex: 1;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--txt-heading);
  outline: none;
}
.banner-search-row input::placeholder { color: var(--txt-faint); }
.banner-search-row button {
  background: var(--clr-accent);
  color: var(--txt-white);
  font-weight: 700; font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background var(--t-fast) var(--ease);
}
.banner-search-row button:hover { background: var(--clr-accent-hover); }
.banner-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; justify-content: center; }
.banner-tag { font-size: 11px; color: rgba(255,255,255,0.4); padding: 4px 10px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-pill); }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-card); }
.section-header { margin-bottom: 28px; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--clr-accent); margin-bottom: 4px; }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.4rem);
  font-weight: 700;
  color: var(--txt-heading);
  letter-spacing: -0.01em;
}
.section-subtitle { color: var(--txt-dim); margin-top: 4px; font-size: 14px; }
.section-header-row { display: flex; align-items: baseline; justify-content: space-between; }
.section-more { font-size: 13px; font-weight: 600; color: var(--clr-primary); display: flex; align-items: center; gap: 4px; transition: gap var(--t-fast) var(--ease); }
.section-more:hover { gap: 8px; color: var(--clr-accent); }
.section-more svg { width: 13px; height: 13px; }

/* ===== JOB LIST — single-column rows ===== */
.listing { display: flex; flex-direction: column; }
.listing-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--bdr-light);
  border-radius: var(--r-md);
  margin-bottom: 8px;
  position: relative;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  color: inherit;
  text-decoration: none;
  align-items: center;
}
.listing-item:hover {
  border-color: var(--clr-primary-mid);
  box-shadow: var(--sh-sm);
}
.listing-main { display: flex; flex-direction: column; gap: 4px; }
.listing-title { font-size: 15px; font-weight: 700; color: var(--txt-heading); line-height: 1.3; transition: color var(--t-fast) var(--ease); }
.listing-item:hover .listing-title { color: var(--clr-primary); }
.listing-org { font-size: 13px; color: var(--txt-dim); font-weight: 500; }
.listing-meta { display: flex; flex-wrap: wrap; gap: 4px 14px; margin-top: 2px; }
.listing-meta-item { font-size: 12px; color: var(--txt-faint); display: flex; align-items: center; gap: 4px; }
.listing-meta-item svg { width: 12px; height: 12px; stroke: var(--txt-faint); flex-shrink: 0; }
.listing-side { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.listing-salary { font-size: 14px; font-weight: 700; color: var(--clr-ok); white-space: nowrap; }
.listing-badge {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: var(--clr-primary-light);
  color: var(--clr-primary);
}
.listing-badge.new { background: var(--clr-accent-pale); color: var(--clr-accent); }
.listing-badge.partner { background: var(--bg-muted); color: var(--txt-dim); }

/* ===== JOB FILTERS ===== */
.job-filters { background: var(--bg-card); border-bottom: 1px solid var(--bdr); padding: 14px 0; }
.job-filters-inner { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-select {
  font-size: 13px;
  padding: 7px 30px 7px 12px;
  border: 1px solid var(--bdr);
  border-radius: var(--r-sm);
  background: var(--bg-body) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  color: var(--txt-body);
  cursor: pointer;
  min-width: 130px;
}
.filter-select:focus { border-color: var(--bdr-focus); outline: none; }
.filter-count { font-size: 12px; color: var(--txt-faint); margin-left: auto; }

/* ===== PAGE BANNER (subpages) ===== */
.page-banner {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  padding: 44px 0;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 1.0rem + 1.5vw, 1.8rem);
  font-weight: 800;
  color: var(--txt-white);
  letter-spacing: -0.015em;
}
.page-banner p { color: rgba(255,255,255,0.5); margin-top: 6px; font-size: 14px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 12px; color: var(--txt-faint); padding: 14px 0; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--txt-dim); transition: color var(--t-fast) var(--ease); }
.breadcrumb a:hover { color: var(--txt-link-hover); }
.breadcrumb svg { width: 11px; height: 11px; stroke: var(--txt-faint); }

/* ===== JOB DETAIL — two-column layout ===== */
.detail-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 24px 0 48px; align-items: start; }
.detail-main { min-width: 0; }
.detail-h1 { font-family: var(--ff-display); font-size: clamp(1.2rem, 0.9rem + 1.5vw, 1.6rem); font-weight: 800; color: var(--txt-heading); line-height: 1.2; margin-bottom: 4px; letter-spacing: -0.015em; }
.detail-org { font-size: 15px; color: var(--txt-dim); font-weight: 600; margin-bottom: 10px; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.detail-tag { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--txt-dim); }
.detail-tag svg { width: 13px; height: 13px; stroke: var(--txt-faint); }

/* Detail sections */
.detail-section { margin-bottom: 28px; }
.detail-section h2 { font-size: 15px; font-weight: 700; color: var(--txt-heading); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--bdr-light); }
.detail-section p, .detail-section li { font-size: 14px; color: var(--txt-body); line-height: 1.7; margin-bottom: 6px; }
.detail-section ul { padding-left: 18px; }
.detail-section ul li { list-style-type: disc; }

/* Detail sidebar */
.detail-sidebar { position: sticky; top: 74px; }
.apply-box {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-sm);
}
.apply-box-title { font-size: 14px; font-weight: 700; color: var(--txt-heading); margin-bottom: 4px; }
.apply-box-desc { font-size: 12px; color: var(--txt-dim); margin-bottom: 16px; line-height: 1.5; }
.apply-box-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--clr-accent);
  color: var(--txt-white);
  font-weight: 700; font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  transition: background var(--t-fast) var(--ease);
}
.apply-box-btn:hover { background: var(--clr-accent-hover); }
.apply-box-btn svg { width: 14px; height: 14px; }
.apply-box-meta { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--bdr-light); }
.apply-box-meta-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--txt-dim); }
.apply-box-meta-item svg { width: 13px; height: 13px; stroke: var(--txt-faint); flex-shrink: 0; }

/* Partner badge */
.partner-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--bg-muted); border: 1px solid var(--bdr); border-radius: var(--r-sm); padding: 5px 10px; font-size: 11px; color: var(--txt-dim); margin-bottom: 16px; }

/* Detail nav */
.detail-nav { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--bdr); padding-top: 18px; margin-top: 28px; gap: 12px; }
.detail-nav a { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--txt-dim); padding: 6px 12px; border: 1px solid var(--bdr); border-radius: var(--r-sm); transition: all var(--t-fast) var(--ease); max-width: 48%; }
.detail-nav a:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.detail-nav .nav-label { font-size: 10px; color: var(--txt-faint); text-transform: uppercase; letter-spacing: 0.05em; }

/* Mobile sticky apply */
.sticky-apply { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-card); border-top: 1px solid var(--bdr); padding: 10px 16px; z-index: 50; }
.sticky-apply button {
  width: 100%;
  background: var(--clr-accent);
  color: var(--txt-white);
  font-weight: 700; font-size: 14px;
  padding: 12px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.sticky-apply button:hover { background: var(--clr-accent-hover); }

/* ===== ARTICLE CONTENT ===== */
.article-body { max-width: 740px; margin: 0 auto; padding: 40px 24px; }
.article-body h2 { font-size: 20px; font-weight: 700; color: var(--txt-heading); margin-top: 32px; margin-bottom: 10px; letter-spacing: -0.01em; }
.article-body h3 { font-size: 17px; font-weight: 700; color: var(--txt-heading); margin-top: 24px; margin-bottom: 8px; }
.article-body p { color: var(--txt-body); line-height: 1.75; margin-bottom: 16px; font-size: 15px; }
.article-body ul, .article-body ol { color: var(--txt-body); line-height: 1.75; margin-bottom: 16px; padding-left: 24px; font-size: 15px; }
.article-body li { margin-bottom: 6px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.article-body th { background: var(--bg-muted); padding: 10px 14px; text-align: left; font-weight: 700; border-bottom: 2px solid var(--bdr); font-size: 13px; }
.article-body td { padding: 10px 14px; border-bottom: 1px solid var(--bdr-light); color: var(--txt-body); }
.article-body tr:hover td { background: var(--bg-body); }
.article-body blockquote { border-left: 3px solid var(--clr-accent); padding: 12px 20px; margin: 20px 0; background: var(--bg-muted); font-style: italic; color: var(--txt-dim); }

/* ===== RESOURCE & TOOL CARDS ===== */

/* Blog article cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr-light);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.blog-card:hover { border-color: var(--clr-primary-mid); box-shadow: var(--sh-sm); }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--txt-dim); }
.blog-card-meta time { font-weight: 600; }
.blog-card-meta .blog-card-sep { color: var(--bdr); }
.blog-card-meta .blog-card-read { color: var(--txt-dim); }
.blog-card h3 { font-size: 16px; font-weight: 700; color: var(--txt-heading); line-height: 1.3; }
.blog-card h3 a { color: inherit; transition: color var(--t-fast) var(--ease); }
.blog-card h3 a:hover { color: var(--clr-primary); }
.blog-card p { font-size: 13.5px; color: var(--txt-dim); line-height: 1.6; flex: 1; }
.blog-card .blog-card-link { font-size: 12.5px; font-weight: 700; color: var(--clr-primary); display: flex; align-items: center; gap: 4px; margin-top: auto; }
.blog-card .blog-card-link:hover { color: var(--clr-accent); }
.blog-card .blog-card-link svg { width: 12px; height: 12px; }

.resource-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr-light);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.resource-card:hover { border-color: var(--clr-primary-mid); box-shadow: var(--sh-sm); }
.resource-icon { width: 36px; height: 36px; background: var(--clr-primary-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.resource-icon svg { width: 18px; height: 18px; stroke: var(--clr-primary); }
.resource-card h3 { font-size: 15px; font-weight: 700; color: var(--txt-heading); margin-bottom: 4px; }
.resource-card p { font-size: 13px; color: var(--txt-dim); line-height: 1.55; margin-bottom: 12px; }
.resource-card a { font-size: 12px; font-weight: 700; color: var(--clr-primary); display: flex; align-items: center; gap: 4px; }
.resource-card a:hover { color: var(--clr-accent); }
.resource-card a svg { width: 12px; height: 12px; }

/* Tool cards */
.tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr-light);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--t-fast) var(--ease);
}
.tool-card:hover { border-color: var(--clr-primary-mid); }
.tool-card-top { display: flex; align-items: center; gap: 12px; }
.tool-card-icon { width: 32px; height: 32px; background: var(--clr-accent-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tool-card-icon svg { width: 16px; height: 16px; stroke: var(--clr-accent); }
.tool-card h3 { font-size: 14px; font-weight: 700; color: var(--txt-heading); }
.tool-card p { font-size: 12px; color: var(--txt-dim); line-height: 1.5; flex: 1; }
.tool-card .tool-badge { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--r-pill); background: var(--clr-ok-pale); color: var(--clr-ok); align-self: flex-start; }

/* ===== CONTACT FORM ===== */
.form-wrap { max-width: 560px; margin: 0 auto; padding: 32px 0 48px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--txt-heading); margin-bottom: 4px; }
.form-group .required { color: var(--clr-err); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid var(--bdr);
  border-radius: var(--r-sm);
  background: var(--bg-card);
  color: var(--txt-heading);
  transition: border-color var(--t-fast) var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--bdr-focus); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group textarea.textarea-lg { min-height: 180px; }
.form-info { font-size: 11.5px; color: var(--txt-dim); margin-top: 4px; line-height: 1.4; }
.form-info-box {
  display: flex; align-items: flex-start; gap: 8px;
  background: #FFF8E1; border: 1px solid #FFE082; border-radius: var(--r-sm);
  padding: 10px 12px; margin-top: 6px; margin-bottom: 12px;
  font-size: 12px; color: #6D5200; line-height: 1.5;
}
.form-info-box svg { width: 16px; height: 16px; stroke: #F9A825; flex-shrink: 0; margin-top: 1px; }
.form-radio-group { display: flex; gap: 16px; margin-top: 4px; }
.form-radio-group label {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--txt-body);
  padding: 8px 16px; border: 1px solid var(--bdr); border-radius: var(--r-sm);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  flex: 1;
}
.form-radio-group label:hover { border-color: var(--clr-primary-mid); }
.form-radio-group input[type="radio"] { width: auto; accent-color: var(--clr-accent); }
.form-radio-group input[type="radio"]:checked + span { color: var(--clr-primary); font-weight: 700; }
.form-radio-group label:has(input:checked) { border-color: var(--clr-primary); background: rgba(13,56,128,0.04); }
.country-select-wrap { display: none; margin-top: 8px; }
.country-select-wrap.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-section-title { font-size: 13px; font-weight: 700; color: var(--clr-primary); margin: 20px 0 12px; padding-top: 16px; border-top: 1px solid var(--bdr-light); }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(8,34,85,0.55); z-index: 300; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--sh-lg);
}
.modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--r-sm); color: var(--txt-dim); }
.modal-close:hover { background: var(--bg-muted); }
.modal-title { font-size: 17px; font-weight: 700; color: var(--txt-heading); margin-bottom: 4px; }
.modal-desc { font-size: 13px; color: var(--txt-dim); margin-bottom: 20px; line-height: 1.5; }

/* Captcha */
.captcha-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.captcha-question { font-size: 15px; font-weight: 700; color: var(--txt-heading); }
.captcha-input { width: 80px; padding: 8px 10px; font-size: 14px; border: 1px solid var(--bdr); border-radius: var(--r-sm); text-align: center; }
.captcha-input:focus { border-color: var(--bdr-focus); outline: none; }
.captcha-verified { display: none; font-size: 12px; font-weight: 700; color: var(--clr-ok); }
.captcha-verified.show { display: inline; }
.captcha-refresh { font-size: 12px; color: var(--clr-primary); font-weight: 600; padding: 4px 8px; border-radius: var(--r-sm); }
.captcha-refresh:hover { background: var(--bg-muted); }
.btn-submit {
  width: 100%;
  background: var(--clr-accent);
  color: var(--txt-white);
  font-weight: 700; font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  transition: background var(--t-fast) var(--ease);
}
.btn-submit:hover { background: var(--clr-accent-hover); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Success state */
.modal-success { display: none; text-align: center; padding: 20px 0; }
.modal-success.show { display: block; }
.modal-success-icon { width: 48px; height: 48px; background: var(--clr-ok-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.modal-success-icon svg { width: 24px; height: 24px; stroke: var(--clr-ok); }
.modal-success h3 { font-size: 16px; font-weight: 700; color: var(--txt-heading); margin-bottom: 4px; }
.modal-success p { font-size: 13px; color: var(--txt-dim); }

/* ===== CONTACT REVEAL MODAL ===== */
.reveal-form { }
.reveal-box { display: none; text-align: center; padding: 20px 0; }
.reveal-box.show { display: block; }
.reveal-box-icon { width: 44px; height: 44px; background: var(--clr-ok-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.reveal-box-icon svg { width: 22px; height: 22px; stroke: var(--clr-ok); }
.reveal-box h3 { font-size: 15px; font-weight: 700; color: var(--txt-heading); margin-bottom: 10px; }
.reveal-contact { font-size: 14px; color: var(--txt-heading); margin-bottom: 4px; }
.reveal-contact a { color: var(--clr-primary); font-weight: 600; }
.reveal-contact a:hover { color: var(--clr-accent); }

/* ===== FOOTER — dark, 3-column ===== */
.site-footer { background: var(--clr-primary-dark); color: rgba(255,255,255,0.7); padding: 52px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.foot-brand-col { }
.foot-brand { font-family: var(--ff-body); font-size: 18px; color: var(--txt-white); margin-bottom: 8px; display: inline-flex; align-items: center; gap: 0; }
.foot-brand .foot-brand-accent { color: var(--clr-accent); font-weight: 400; }
.foot-brand .foot-brand-heavy { font-weight: 800; }
.foot-brand .foot-brand-light { font-weight: 300; font-size: 14px; }
.foot-brand .foot-brand-online { font-weight: 700; font-size: 14px; color: var(--clr-accent); margin-right: 1px; }
.foot-tagline { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 16px; max-width: 280px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background var(--t-fast) var(--ease); }
.foot-social a:hover { background: rgba(255,255,255,0.12); }
.foot-social a svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.5); }

.foot-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.foot-col ul a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--t-fast) var(--ease); }
.foot-col ul a:hover { color: var(--txt-white); }

.foot-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 11px; color: rgba(255,255,255,0.35); }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--bg-card); border-top: 1px solid var(--bdr-light); border-bottom: 1px solid var(--bdr-light); padding: 28px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item-num { font-family: var(--ff-display); font-size: 20px; font-weight: 800; color: var(--clr-primary); }
.trust-item-lbl { font-size: 11px; color: var(--txt-faint); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary)); padding: 48px 0; text-align: center; }
.cta-band h2 { font-family: var(--ff-display); font-size: clamp(1.1rem, 0.9rem + 1vw, 1.4rem); font-weight: 700; color: var(--txt-white); margin-bottom: 6px; }
.cta-band p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.cta-band-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clr-accent);
  color: var(--txt-white);
  font-weight: 700; font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--r-md);
  transition: background var(--t-fast) var(--ease);
}
.cta-band-btn:hover { background: var(--clr-accent-hover); }

/* ===== RESPONSIVE ===== */
/* Mobile-first breakpoints */
/* sm: 640px+ */
/* md: 768px+ */
/* lg: 1024px+ */

@media (max-width: 639px) {
  .container { padding: 0 16px; }
  .hero-inner { padding: 40px 0 48px; }
  .banner-inner { padding: 36px 0 44px; }
}

@media (max-width: 1023px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .banner-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .banner-stats { justify-content: center; }
  .banner-right { display: none; }
  .detail-wrap { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .tool-grid { grid-template-columns: 1fr 1fr; }
  .sticky-apply { display: block; }
  .detail-wrap { padding-bottom: 80px; }
}
@media (max-width: 767px) {
  .banner-inner { padding: 44px 0 52px; }
  .banner-stats { flex-wrap: wrap; gap: 16px; }
  .section { padding: 44px 0; }
  .trust-strip-inner { gap: 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .job-filters-inner { gap: 6px; overflow-x: auto; flex-wrap: nowrap; }
  .filter-select { min-width: 110px; font-size: 12px; }
  .resource-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr; }
  .detail-nav { flex-direction: column; }
  .detail-nav a { max-width: 100%; }
  .article-body { padding: 28px 16px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.anim-in { animation: fadeUp 0.4s var(--ease) both; }
.anim-d1 { animation-delay: 0.08s; }
.anim-d2 { animation-delay: 0.16s; }
.anim-d3 { animation-delay: 0.24s; }
.anim-d4 { animation-delay: 0.32s; }
