/* ============================================================
   AMSTA — Asia | Corporate Website Stylesheet
   Palette: Crimson #8B1538 · Champagne Gold #C9A45C · White
   Inspired by global HR brands (Manpower / Adecco / Human Power)
   ============================================================ */

:root {
  --navy: #8b1538;
  --navy-dark: #4a0e1c;
  --navy-light: #b01f4a;
  --gold: #c9a45c;
  --gold-light: #e0c07a;
  --gold-soft: #f7f0e2;
  --white: #ffffff;
  --ink: #1a1416;
  --muted: #6b5c60;
  --line: #ebe4e6;
  --bg-soft: #faf6f7;
  --shadow-sm: 0 2px 8px rgba(74, 14, 28, 0.08);
  --shadow-md: 0 10px 30px rgba(74, 14, 28, 0.12);
  --shadow-lg: 0 24px 60px rgba(74, 14, 28, 0.18);
  --radius: 14px;
  --container: 1180px;
  --font: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; fill: var(--gold-light); flex: none; }
.topbar a:hover { color: var(--gold-light); }

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  overflow: hidden;
}
.lang-switch button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 12px;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.lang-switch button.active {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none;
  position: relative;
  box-shadow: 0 2px 0 rgba(201, 164, 92, 0.55);
}
.brand-mark svg {
  width: 28px;
  height: 28px;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  line-height: 1;
}
.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.12em;
  line-height: 1;
}
.brand-name span { color: inherit; }
.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 0 var(--gold);
  color: var(--gold);
}
.footer-brand .brand-tagline { color: rgba(255, 255, 255, 0.55); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 26px 13px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--gold); }
.main-nav > li > a.active { position: relative; }
.main-nav > li > a.active::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
  padding: 8px 0;
}
.main-nav li:hover .dropdown,
.main-nav li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--ink);
  transition: all 0.15s;
}
.dropdown a:hover {
  background: var(--gold-soft);
  color: var(--navy);
  padding-left: 26px;
}

.header-cta { flex: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.93rem;
  border: 2px solid transparent;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b08d3e 100%);
  color: var(--navy-dark);
  box-shadow: 0 6px 18px rgba(201, 164, 92, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 164, 92, 0.5);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.1);
}
.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(201, 164, 92, 0.22), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(74, 14, 28, 0.95), transparent 65%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #a01842 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 100px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 20px;
}
.hero h1 .gold { color: var(--gold-light); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.hero-trust-item svg { width: 18px; height: 18px; fill: var(--gold-light); flex: none; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-card-header .dot {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.hero-card-header strong { display: block; font-size: 0.95rem; }
.hero-card-header small { color: rgba(255, 255, 255, 0.6); font-size: 0.78rem; }
.hero-stat-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px dashed rgba(255,255,255,0.1); font-size: 0.88rem; }
.hero-stat-row:last-child { border-bottom: none; }
.hero-stat-row .val { color: var(--gold-light); font-weight: 800; font-size: 1.05rem; }
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -26px;
  background: var(--white);
  color: var(--navy);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-badge svg { width: 30px; height: 30px; fill: var(--gold); flex: none; }
.hero-badge strong { display: block; font-size: 0.95rem; color: var(--navy); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.section-head.center .kicker::after { content: ""; width: 30px; height: 2px; background: var(--gold); }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.28;
  margin-bottom: 14px;
}
.section-navy .section-title { color: var(--white); }
.section-desc { color: var(--muted); font-size: 1.02rem; }
.section-navy .section-desc { color: rgba(255, 255, 255, 0.78); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #f8e9ed;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; fill: var(--navy); }
.card h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 0.92rem; color: var(--muted); }
.card .card-link {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card .card-link:hover { gap: 10px; }

.card-list { margin-top: 14px; }
.card-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  border-radius: 20px;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(201, 162, 39, 0.14);
}
.stat { text-align: center; position: relative; }
.stat .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
}
.stat .label { font-size: 0.86rem; color: rgba(255, 255, 255, 0.75); margin-top: 6px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  position: relative;
  transition: all 0.3s;
}
.step:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.step .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 16px;
  border: 2px solid var(--gold);
}
.step h4 { font-size: 0.98rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.83rem; color: var(--muted); }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(201, 162, 39, 0.25), transparent 60%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
}
.split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.split-visual-inner {
  position: relative;
  padding: 36px;
  color: var(--white);
  width: 100%;
}
.split-visual-inner .big-icon { width: 64px; height: 64px; fill: var(--gold-light); margin-bottom: 18px; }
.split-visual-inner h3 { font-size: 1.4rem; margin-bottom: 8px; }
.split-visual-inner p { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; }

.feature-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .f-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: #f8e9ed;
  display: grid;
  place-items: center;
}
.feature-list .f-icon svg { width: 22px; height: 22px; fill: var(--navy); }
.feature-list h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.feature-list p { font-size: 0.88rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(201, 162, 39, 0.25), transparent 55%),
    linear-gradient(120deg, var(--navy-dark), var(--navy));
  border-radius: 22px;
  padding: 64px 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.cta-banner p { color: rgba(255, 255, 255, 0.78); max-width: 520px; }
.cta-banner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(201, 162, 39, 0.2), transparent 60%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero .container { position: relative; }
.breadcrumb { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { margin: 0 8px; color: var(--gold); }
.page-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 640px; font-size: 1.04rem; }

/* ---------- Job board ---------- */
.job-filters {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.job-filters input,
.job-filters select {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  min-width: 0;
}
.job-filters input { flex: 2 1 220px; }
.job-filters select { flex: 1 1 160px; }
.job-filters input:focus, .job-filters select:focus { outline: 2px solid var(--gold); border-color: transparent; }

.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.25s;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.job-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.job-logo {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.job-body { flex: 1 1 320px; }
.job-body h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 6px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.83rem; color: var(--muted); margin-bottom: 10px; }
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-meta svg { width: 14px; height: 14px; fill: var(--gold); }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: #f8e9ed;
  color: #8b1538;
  letter-spacing: 0.02em;
}
.job-side { text-align: right; flex: none; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.job-salary { font-weight: 800; color: var(--gold); font-size: 1.02rem; white-space: nowrap; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.86rem; font-weight: 700; color: var(--navy); }
.form-group label .req { color: #c0392b; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--bg-soft);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--muted); }
.form-success {
  display: none;
  background: #eaf7ef;
  border: 1px solid #bfe5cc;
  color: #1e7a3c;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 18px;
}
.form-success.show { display: block; }

/* ---------- Accordion ---------- */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}
.accordion-header .acc-icon {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  background: #f8e9ed;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform 0.3s;
}
.accordion-item.open .acc-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body-inner { padding: 0 24px 22px; color: var(--muted); font-size: 0.92rem; }

/* ---------- News ---------- */
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  display: grid;
  place-items: center;
}
.news-thumb svg { width: 54px; height: 54px; fill: rgba(201, 162, 39, 0.8); }
.news-thumb .news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.news-content { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: 0.78rem; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.news-date svg { width: 13px; height: 13px; fill: var(--gold); }
.news-content h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 10px; line-height: 1.45; }
.news-content p { font-size: 0.88rem; color: var(--muted); flex: 1; }

/* ---------- Contact ---------- */
.contact-info-card {
  background: linear-gradient(150deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: 18px;
  padding: 40px;
  height: 100%;
}
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; margin-bottom: 28px; }
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row .c-icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 11px;
  background: rgba(201, 162, 39, 0.16);
  display: grid;
  place-items: center;
}
.contact-row .c-icon svg { width: 20px; height: 20px; fill: var(--gold-light); }
.contact-row strong { display: block; font-size: 0.85rem; color: var(--gold-light); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-row span, .contact-row a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.88); }
.contact-row a:hover { color: var(--gold-light); }

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 40px;
}

/* ---------- Audience split (Adecco-style dual CTA) ---------- */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: -48px;
  position: relative;
  z-index: 5;
}
.audience-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s, border-color 0.3s;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
}
.audience-card.employer { border-top: 4px solid var(--navy); }
.audience-card.seeker { border-top: 4px solid var(--gold); }
.audience-card .aud-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.audience-card.seeker .aud-label { color: #8a6d28; }
.audience-card h3 {
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.3;
}
.audience-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.audience-card .btn { align-self: flex-start; margin-top: 6px; }

/* ---------- Compliance strip ---------- */
.compliance-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compliance-item {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.compliance-item:last-child { border-right: none; }
.compliance-item svg {
  width: 26px;
  height: 26px;
  fill: var(--navy);
}
.compliance-item span { color: var(--muted); font-weight: 500; font-size: 0.78rem; }

/* ---------- Industries ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 14px;
  text-align: center;
  transition: all 0.25s;
}
.industry-item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.industry-item .ind-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: #f8e9ed;
  display: grid;
  place-items: center;
}
.industry-item .ind-icon svg { width: 24px; height: 24px; fill: var(--navy); }
.industry-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 22px;
  font-size: 4rem;
  line-height: 1;
  color: #f0d4db;
  font-family: Georgia, serif;
}
.testimonial p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimonial .t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex: none;
}
.testimonial .t-author strong { display: block; font-size: 0.9rem; color: var(--ink); }
.testimonial .t-author small { color: var(--muted); font-size: 0.78rem; }

/* ---------- Partner strip ---------- */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 36px;
  align-items: center;
  padding: 28px 0;
}
.partner-badge {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  padding: 10px 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-about { margin-top: 16px; font-size: 0.86rem; line-height: 1.7; color: rgba(255, 255, 255, 0.62); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { transition: all 0.2s; font-size: 0.87rem; }
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; margin-bottom: 14px; }
.footer-contact svg { width: 16px; height: 16px; fill: var(--gold); flex: none; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Floating buttons ---------- */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 950;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s;
  position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 26px; height: 26px; fill: var(--white); }
.float-zalo { background: #0068ff; }
.float-phone { background: var(--gold); animation: pulse-ring 2s infinite; }
.float-phone svg { fill: var(--navy-dark); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(201, 162, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}
.float-btn .tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover .tooltip { opacity: 1; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 51, 0.72);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--white);
  border-radius: 18px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  font-size: 1.2rem;
  color: var(--muted);
  transition: all 0.2s;
}
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 6px; }
.modal .modal-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 24px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Values / mission ---------- */
.value-tile {
  text-align: center;
  padding: 40px 26px;
}
.value-tile .card-icon { margin-left: auto; margin-right: auto; }

.leader-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.leader-photo {
  background:
    radial-gradient(300px 200px at 70% 20%, rgba(201, 162, 39, 0.3), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-light));
  display: grid;
  place-items: center;
  min-height: 340px;
  color: var(--gold-light);
}
.leader-photo svg { width: 110px; height: 110px; fill: currentColor; opacity: 0.9; }
.leader-info { padding: 40px 40px 40px 0; }
.leader-info .role { color: var(--gold); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }
.leader-info h3 { font-size: 1.5rem; color: var(--navy); margin: 6px 0 16px; }
.leader-info p { color: var(--muted); font-size: 0.94rem; margin-bottom: 14px; }

.eco-card {
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 12px;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.eco-card h4 { color: var(--navy); font-size: 1.02rem; margin-bottom: 8px; }
.eco-card p { color: var(--muted); font-size: 0.89rem; }

/* ---------- Table ---------- */
.info-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.info-table th, .info-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.info-table th { color: var(--navy); font-weight: 700; width: 220px; background: var(--bg-soft); }
.info-table td { color: var(--muted); }

/* ---------- Back to top of section anchors offset ---------- */
:target { scroll-margin-top: 110px; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-info { padding: 32px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .audience-split { grid-template-columns: 1fr; margin-top: -32px; }
  .compliance-bar { grid-template-columns: 1fr 1fr; }
  .compliance-item:nth-child(2) { border-right: none; }
  .compliance-item:nth-child(1),
  .compliance-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 90px 0 40px;
    transition: right 0.35s ease;
    z-index: 899;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }
  .main-nav.open { right: 0; }
  .main-nav > li > a { color: var(--white); padding: 15px 28px; }
  .main-nav > li > a.active::after { display: none; }
  .main-nav > li > a.active { color: var(--gold-light); }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border-top: none;
    border-radius: 0;
    min-width: 0;
  }
  .dropdown a { color: rgba(255, 255, 255, 0.75); padding: 10px 28px 10px 44px; font-size: 0.84rem; }
  .dropdown a:hover { background: rgba(201, 162, 39, 0.12); color: var(--gold-light); padding-left: 50px; }
  .nav-toggle { display: block; z-index: 901; }
  .nav-toggle.open span { background: var(--white); }
  .header-cta { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero .container { padding-top: 60px; padding-bottom: 70px; }
  .hero-badge { left: 0; bottom: -18px; }
  .cta-banner { padding: 44px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .topbar-left .topbar-item:nth-child(2) { display: none; }
  .modal { padding: 30px 22px; }
  .job-side { align-items: flex-start; text-align: left; }
  .info-table th { width: 130px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-bar { grid-template-columns: 1fr; }
  .compliance-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .compliance-item:last-child { border-bottom: none; }
}
