/* =================================================================
   APEX TALENT GROUP — Design System
   Hand-coded. No frameworks. Mobile-first.
   ================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --navy:        #0B2A57;
  --navy-900:    #081f43;
  --navy-700:    #15396f;
  --green:       #8DC63F;
  --green-600:   #79b22f;
  --teal:        #25AEC4;
  --teal-600:    #1b97ac;
  --teal-tint:   #E2F2F4;

  /* Neutrals */
  --ink:         #16202E;
  --slate:       #4a5666;
  --slate-300:   #8a94a3;
  --line:        #e6eaef;
  --paper:       #ffffff;
  --bg:          #F7F9FB;
  --bg-tint:     #eef4f9;

  /* Gradients */
  --grad-brand:  linear-gradient(120deg, var(--green) 0%, var(--teal) 100%);
  --grad-navy:   linear-gradient(140deg, #0e3268 0%, var(--navy-900) 100%);
  --grad-veil:   linear-gradient(115deg, rgba(8,31,67,.92) 0%, rgba(11,42,87,.78) 45%, rgba(37,174,196,.35) 100%);

  /* Type */
  --f-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Space / shape */
  --radius:      18px;
  --radius-sm:   12px;
  --radius-lg:   28px;
  --shadow-sm:   0 2px 10px rgba(13,38,76,.06);
  --shadow:      0 18px 40px -22px rgba(13,38,76,.28);
  --shadow-lg:   0 40px 80px -34px rgba(13,38,76,.40);
  --container:   1200px;
  --gutter:      clamp(20px, 5vw, 56px);
  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--navy); }
h1 { font-size: clamp(2.3rem, 1.4rem + 3.8vw, 4rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.06rem; font-weight: 700; }
p { color: var(--slate); }
strong { color: var(--ink); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); color: var(--slate); }

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1340px; }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section-sm { padding-block: clamp(40px, 5vw, 64px); }
.center { text-align: center; }
.maxw-720 { max-width: 720px; }
.maxw-640 { max-width: 640px; }
.mx-auto { margin-inline: auto; }
.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- 5. Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--f-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-brand); border-radius: 2px; }
.eyebrow.center-line { justify-content: center; }
.section-head { max-width: 680px; margin-bottom: clamp(34px, 4vw, 52px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 14px; }
.text-grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--f-head); font-weight: 700; font-size: .98rem;
  padding: 15px 26px; border-radius: 100px; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-900); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(11,42,87,.6); }
.btn-green { background: var(--green); color: var(--navy-900); }
.btn-green:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(141,198,63,.7); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-600); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(37,174,196,.6); }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--teal); color: var(--teal-600); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,.35); }
.btn-outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.4); }
.btn-outline-light:hover { box-shadow: inset 0 0 0 2px #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 1.04rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.arrow-link { display: inline-flex; align-items: center; gap: .5em; font-family: var(--f-head); font-weight: 700; color: var(--teal-600); transition: gap .25s var(--ease); }
.arrow-link svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.arrow-link:hover { gap: .85em; color: var(--navy); }

/* ---------- 7. Header ---------- */
.utilitybar { background: var(--navy-900); color: #c9d6ea; font-size: .82rem; }
.utilitybar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 40px; flex-wrap: wrap; }
.utilitybar a { color: #dce6f5; display: inline-flex; align-items: center; gap: .45em; }
.utilitybar a:hover { color: var(--green); }
.utilitybar .u-left { display: flex; gap: 22px; flex-wrap: wrap; }
.utilitybar .u-right { display: inline-flex; align-items: center; gap: .5em; color: var(--green); font-weight: 600; }
.utilitybar svg { width: 14px; height: 14px; }
@media (max-width: 640px){ .utilitybar .u-right { display: none; } }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 74px; }
.nav-links { display: flex; align-items: center; gap: clamp(6px, 1.2vw, 18px); }
.nav-links a { font-family: var(--f-head); font-weight: 600; font-size: .94rem; color: var(--navy); padding: 8px 4px; position: relative; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: 0; height: 2px; background: var(--grad-brand); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--teal-600); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 18px; font-size: .9rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo svg { width: 42px; height: 42px; flex: none; }
.logo .logo-word { font-family: var(--f-head); font-weight: 800; font-size: 1.18rem; line-height: 1; letter-spacing: -.01em; }
.logo .logo-word b { color: var(--green); font-weight: 800; }
.logo .logo-word span { display: block; font-size: .62rem; letter-spacing: .26em; color: var(--teal-600); font-weight: 700; margin-top: 3px; }

@media (max-width: 1080px){
  .nav-links, .nav-cta .btn-find { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 80; visibility: hidden; overflow: hidden; }
.drawer.open { visibility: visible; }
.drawer-overlay { position: absolute; inset: 0; background: rgba(8,31,67,.5); opacity: 0; transition: opacity .3s; }
.drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: #fff; padding: 26px 24px; transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; gap: 6px; overflow-y: auto; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer-close { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-tint); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; }
.drawer a.d-link { font-family: var(--f-head); font-weight: 600; color: var(--navy); padding: 13px 12px; border-radius: 12px; }
.drawer a.d-link:hover { background: var(--bg-tint); color: var(--teal-600); }
.drawer .drawer-cta { margin-top: 16px; display: grid; gap: 10px; }

/* ---------- 8. Hero ---------- */
.hero { position: relative; background: var(--grad-navy); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-veil); }
.hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .42; }
.hero-inner { position: relative; z-index: 2; padding-block: clamp(64px, 11vw, 130px); max-width: 760px; }
.hero h1 { color: #fff; }
.hero h1 .text-grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: #d6e1f1; margin-top: 20px; max-width: 560px; }
.hero .btn-row { margin-top: 34px; }
.hero-chip { display: inline-flex; align-items: center; gap: .6em; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #eaf1fb; padding: 8px 16px; border-radius: 100px; font-size: .84rem; font-weight: 600; margin-bottom: 24px; }
.hero-chip b { color: var(--green); }
/* Forward chevron motif */
.chevron-deco { position: absolute; right: -6%; top: 0; bottom: 0; width: 46%; z-index: 1; opacity: .9; pointer-events: none; }
@media (max-width: 880px){ .chevron-deco { display: none; } }

/* page hero (interior) */
.page-hero { position: relative; background: var(--grad-navy); color: #fff; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: var(--grad-veil); }
.page-hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.34; }
.page-hero-inner { position: relative; z-index: 2; padding-block: clamp(54px, 8vw, 92px); max-width: 760px; }
.page-hero h1 { color:#fff; }
.page-hero p { color:#d6e1f1; margin-top: 16px; max-width: 600px; }
.crumbs { display: flex; gap: .5em; align-items: center; font-size: .85rem; color: #aebfd8; margin-bottom: 18px; font-weight: 600; }
.crumbs a:hover { color: var(--green); }
.crumbs span { color: var(--green); }

/* ---------- 9. Journey split ---------- */
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 820px){ .journey-grid { grid-template-columns: 1fr; } }
.journey-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.journey-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.journey-card::after { content:""; position:absolute; inset:0; z-index:-1; }
.journey-card.jc-employer::after { background: linear-gradient(180deg, rgba(8,31,67,.15) 0%, rgba(8,31,67,.9) 92%); }
.journey-card.jc-seeker::after { background: linear-gradient(180deg, rgba(27,151,172,.1) 0%, rgba(8,31,67,.9) 92%); }
.journey-card:hover img { transform: scale(1.06); }
.journey-body { padding: clamp(26px, 3vw, 38px); }
.journey-body .tag { display:inline-block; font-family: var(--f-head); font-weight:700; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; padding: 6px 13px; border-radius: 100px; margin-bottom: 14px; }
.jc-employer .tag { background: var(--green); color: var(--navy-900); }
.jc-seeker .tag { background: var(--teal); color: #fff; }
.journey-body h3 { color: #fff; font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); }
.journey-body p { color: #dbe5f2; margin: 10px 0 18px; max-width: 42ch; }

/* ---------- 10. Cards ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.6vw, 34px); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card-icon { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: var(--grad-brand); color: #fff; margin-bottom: 20px; }
.card-icon svg { width: 28px; height: 28px; }
.card-icon.soft { background: var(--teal-tint); color: var(--teal-600); }
.card-num { font-family: var(--f-head); font-weight: 800; font-size: 1rem; color: var(--green-600); }

/* arch card (vision motif) */
.arch { background: var(--grad-navy); color: #fff; border-radius: 160px 160px var(--radius) var(--radius); padding: 48px 30px 34px; text-align: center; height: 100%; }
.arch .card-icon { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: var(--green); margin-inline: auto; }
.arch h3 { color: #fff; }
.arch p { color: #cdd9ec; font-size: .96rem; }

/* feature list */
.flist { display: grid; gap: 14px; margin-top: 8px; }
.flist li { display: flex; gap: 13px; align-items: flex-start; color: var(--slate); }
.flist .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-600); display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.flist .tick svg { width: 13px; height: 13px; }
.flist b { color: var(--ink); }

/* split media row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split.rev .split-media { order: 2; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } .split.rev .split-media { order: 0; } }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3.4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .badge { position: absolute; left: 22px; bottom: 22px; background: #fff; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: 78%; }
.split-media .badge .b-num { font-family: var(--f-head); font-weight: 800; font-size: 1.7rem; color: var(--navy); line-height: 1; }
.split-media .badge .b-num span { color: var(--green); }
.split-media .badge .b-txt { font-size: .82rem; color: var(--slate); }

/* ---------- 11. Stats band ---------- */
.stats { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.stats::after { content:""; position:absolute; inset:0; background: radial-gradient(700px 300px at 80% -20%, rgba(37,174,196,.4), transparent 60%); }
.stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 760px){ .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }
.stat .n { font-family: var(--f-head); font-weight: 800; font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { color: #c4d2e8; font-size: .92rem; margin-top: 8px; }

/* ---------- 12. Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px){ .ind-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px){ .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px){ .ind-grid { grid-template-columns: 1fr; } }
.ind { display: flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; transition: .28s var(--ease); }
.ind:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.ind .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--teal-tint); color: var(--teal-600); display: inline-flex; align-items: center; justify-content: center; }
.ind .ic svg { width: 21px; height: 21px; }
.ind:hover .ic { background: var(--grad-brand); color: #fff; }
.ind span { font-family: var(--f-head); font-weight: 600; font-size: .95rem; color: var(--navy); }

/* ---------- 13. Process timeline ---------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
.steps.row { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .steps.row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .steps.row { grid-template-columns: 1fr; } }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; transition: .3s var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step .s-num { width: 50px; height: 50px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-family: var(--f-head); font-weight: 800; font-size: 1.25rem; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h4 { margin-bottom: 6px; }
.step p { font-size: .93rem; }

/* ---------- 14. Bands / CTA ---------- */
.band-tint { background: var(--bg-tint); }
.band-teal { background: var(--teal-tint); }
.band-navy { background: var(--grad-navy); color: #fff; }
.band-navy h2, .band-navy h3 { color: #fff; }
.band-navy p { color: #cfdbed; }

.cta-block { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--grad-navy); color: #fff; padding: clamp(40px, 6vw, 72px); }
.cta-block::after { content:""; position:absolute; right:-60px; top:-60px; width:340px; height:340px; background: var(--grad-brand); filter: blur(10px); opacity:.16; border-radius:50%; }
.cta-block .container, .cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: #fff; }
.cta-block p { color: #d6e1f1; margin-top: 12px; }

.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px){ .split-cta { grid-template-columns: 1fr; } }
.split-cta .sc { border-radius: var(--radius-lg); padding: clamp(28px,3.4vw,42px); color: #fff; position: relative; overflow: hidden; }
.split-cta .sc.green { background: linear-gradient(140deg, #95cf48, #6fa72a); color: var(--navy-900); }
.split-cta .sc.teal { background: linear-gradient(140deg, #2bb6cb, #167e92); }
.split-cta .sc h3 { color: inherit; }
.split-cta .sc p { color: inherit; opacity: .92; margin: 10px 0 20px; }

/* ---------- 15. Testimonials ---------- */
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.quote .mark { font-family: var(--f-head); font-weight: 800; font-size: 3rem; color: var(--green); line-height: .6; height: 28px; }
.quote p { color: var(--ink); font-size: 1.02rem; margin: 16px 0 22px; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-family: var(--f-head); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.quote .who b { display: block; color: var(--navy); font-family: var(--f-head); }
.quote .who span { font-size: .85rem; color: var(--slate-300); }

/* ---------- 16. Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 7px; }
.field .req { color: var(--teal-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; font: inherit; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(37,174,196,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--slate-300); margin-top: 8px; }
.choice { display: flex; gap: 12px; flex-wrap: wrap; }
.choice label { flex: 1; min-width: 130px; cursor: pointer; }
.choice input { position: absolute; opacity: 0; }
.choice .opt { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; transition: .2s; font-family: var(--f-head); font-weight: 600; color: var(--navy); }
.choice input:checked + .opt { border-color: var(--teal); background: var(--teal-tint); color: var(--teal-600); }
.form-success { display: none; padding: 16px 18px; border-radius: 12px; background: rgba(141,198,63,.14); border: 1px solid rgba(141,198,63,.5); color: #4a7716; font-weight: 600; margin-top: 14px; }
.form-success.show { display: block; }

/* upload / file */
.dropzone { border: 1.6px dashed var(--teal); border-radius: 14px; background: var(--teal-tint); padding: 22px; text-align: center; color: var(--teal-600); font-weight: 600; font-family: var(--f-head); }
.dropzone small { display: block; color: var(--slate-300); font-weight: 500; font-family: var(--f-body); margin-top: 4px; }

/* ---------- 17. Accordion ---------- */
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.acc + .acc { margin-top: 14px; }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; text-align: left; font-family: var(--f-head); font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.acc-head .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-600); display: inline-flex; align-items: center; justify-content: center; transition: .3s var(--ease); }
.acc.open .acc-head .ic { background: var(--grad-brand); color: #fff; transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-body-inner { padding: 0 24px 24px; color: var(--slate); }

/* ---------- 18. Job / opportunity cards ---------- */
.job { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; transition: .28s var(--ease); }
.job:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.job .j-logo { flex: none; width: 56px; height: 56px; border-radius: 14px; background: var(--teal-tint); color: var(--teal-600); display: inline-flex; align-items: center; justify-content: center; }
.job .j-main { flex: 1; min-width: 0; }
.job .j-main h4 { color: var(--navy); }
.job .j-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 7px; font-size: .85rem; color: var(--slate); }
.job .j-meta span { display: inline-flex; align-items: center; gap: .4em; }
.job .j-meta svg { width: 14px; height: 14px; color: var(--teal-600); }
.job .j-tag { font-family: var(--f-head); font-weight: 700; font-size: .76rem; padding: 5px 11px; border-radius: 100px; background: var(--green); color: var(--navy-900); }
@media (max-width: 560px){ .job { flex-wrap: wrap; } .job .j-logo { width: 46px; height: 46px; } }

.searchbar { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 12px; background: #fff; padding: 14px; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 820px){ .searchbar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .searchbar { grid-template-columns: 1fr; } }
.searchbar input, .searchbar select { padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg); font: inherit; }
.searchbar input:focus, .searchbar select:focus { outline: none; border-color: var(--teal); }

/* ---------- 19. Insights / blog ---------- */
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .3s var(--ease); height: 100%; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.post .p-img { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.post .p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .p-img img { transform: scale(1.06); }
.post .p-cat { position: absolute; top: 14px; left: 14px; font-family: var(--f-head); font-weight: 700; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; background: rgba(8,31,67,.82); color: #fff; padding: 6px 12px; border-radius: 100px; }
.post .p-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post .p-meta { font-size: .8rem; color: var(--slate-300); margin-bottom: 10px; }
.post .p-body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.post .p-body p { font-size: .93rem; flex: 1; }
.post .p-body .arrow-link { margin-top: 16px; }

/* ---------- 20. Logo strip / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--f-head); font-weight: 600; font-size: .86rem; padding: 9px 16px; border-radius: 100px; background: #fff; border: 1px solid var(--line); color: var(--navy); }
.chip.solid { background: var(--teal-tint); border-color: transparent; color: var(--teal-600); }

/* value cards (about) */
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; transition: .3s var(--ease); height: 100%; }
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value .v-ic { width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 18px; background: var(--grad-brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.value .v-ic svg { width: 30px; height: 30px; }

/* ---------- 21. Footer ---------- */
.site-footer { background: var(--navy-900); color: #b9c6dc; padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .f-logo .logo-word { color: #fff; }
.site-footer .f-logo .logo-word span { color: var(--green); }
.site-footer .f-about { margin: 18px 0; max-width: 34ch; font-size: .92rem; color: #9fb0c9; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer .f-links a { display: block; padding: 6px 0; color: #b9c6dc; font-size: .94rem; transition: .2s; }
.site-footer .f-links a:hover { color: var(--green); padding-left: 5px; }
.f-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; font-size: .92rem; }
.f-contact svg { flex: none; width: 17px; height: 17px; color: var(--teal); margin-top: 3px; }
.f-contact a:hover { color: var(--green); }
.f-mails { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 6px; }
.f-mails a { font-size: .78rem; background: rgba(255,255,255,.06); padding: 5px 10px; border-radius: 8px; color: #c6d3e7; }
.f-mails a:hover { background: rgba(141,198,63,.18); color: var(--green); }
.f-news { display: flex; gap: 8px; margin-top: 14px; }
.f-news input { flex: 1; min-width: 0; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; }
.f-news input::placeholder { color: #8195b2; }
.f-news input:focus { outline: none; border-color: var(--teal); }
.f-news button { flex: none; }
.f-social { display: flex; gap: 10px; margin-top: 22px; }
.f-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: inline-flex; align-items: center; justify-content: center; color: #cdd9ec; transition: .25s; }
.f-social a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); }
.f-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(40px, 5vw, 60px); padding: 24px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #8195b2; }
.footer-bottom a:hover { color: var(--green); }

/* ---------- 22. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- 23. Misc utilities ---------- */
.mt-0{margin-top:0}.mt-1{margin-top:10px}.mt-2{margin-top:20px}.mt-3{margin-top:30px}.mt-4{margin-top:44px}
.mb-2{margin-bottom:20px}.mb-3{margin-bottom:30px}
.pill { display:inline-flex; align-items:center; gap:.5em; background: var(--teal-tint); color: var(--teal-600); font-family: var(--f-head); font-weight:700; font-size:.82rem; padding:7px 15px; border-radius:100px; }
.divider { height:1px; background: var(--line); border:0; margin: 0; }
hr.divider { width: 100%; }
.list-2col { columns: 2; column-gap: 40px; }
@media (max-width: 560px){ .list-2col { columns: 1; } }
