/* ===============================================================
   NL WORKFORCE — Recruitment site
   Brand: navy #0a2440 + gold #f5b400
   =============================================================== */

:root {
  --navy: #0a2440;
  --navy-2: #0e2f56;
  --navy-3: #123a68;
  --gold: #f5b400;
  --gold-dark: #dda100;
  --ink: #12213a;
  --muted: #5c6b82;
  --line: #e4e9f1;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-navy-soft: #f0f4fa;
  --green: #1f9d55;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(10, 36, 64, .06);
  --shadow: 0 12px 40px rgba(10, 36, 64, .12);
  --shadow-lg: 0 24px 70px rgba(10, 36, 64, .18);
  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- language visibility ---------- */
[data-lang="ro"] .lang-en { display: none !important; }
[data-lang="en"] .lang-ro { display: none !important; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px; line-height: 1;
  padding: 15px 26px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: .18s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 26px rgba(245,180,0,.35); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--navy); color: #cdd8e8; font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; gap: 16px; }
.topbar a { color: #cdd8e8; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 20px; }
.topbar .tb-left .tb-item:nth-child(2) { display: none; }
.topbar svg { width: 14px; height: 14px; color: var(--gold); }

/* ---------- language toggle ---------- */
.lang-switch { display: inline-flex; background: rgba(255,255,255,.1); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: 0; background: transparent; color: #cdd8e8; cursor: pointer;
  font-weight: 700; font-size: 12.5px; padding: 4px 12px; border-radius: 999px;
  font-family: var(--font); letter-spacing: .3px; transition: .15s;
}
.lang-switch button.active { background: var(--gold); color: var(--navy); }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
header.site .container { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand .bt { line-height: 1.05; }
.brand .bt b { display: block; font-size: 18px; letter-spacing: .5px; color: var(--navy); font-weight: 800; }
.brand .bt span { font-size: 11px; letter-spacing: 2px; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; }

nav.main { display: flex; align-items: center; gap: 4px; }
nav.main a {
  font-weight: 600; font-size: 15px; color: var(--ink); padding: 9px 14px; border-radius: 8px; transition: .15s;
}
nav.main a:hover { color: var(--navy); background: var(--bg-navy-soft); }
.header-cta { display: flex; align-items: center; gap: 10px; }
nav.main .menu-cta { display: none; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 500px at 88% -10%, rgba(245,180,0,.16), transparent 60%),
    linear-gradient(120deg, #0a2440 0%, #0e2f56 55%, #123a68 100%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; padding: 70px 22px 80px; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(245,180,0,.14);
  color: var(--gold); border: 1px solid rgba(245,180,0,.3); padding: 7px 15px; border-radius: 999px;
  font-weight: 700; font-size: 13px; letter-spacing: .4px; margin-bottom: 22px;
}
.hero .eyebrow svg { width: 16px; height: 16px; flex: 0 0 auto; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.04; font-weight: 800; letter-spacing: -1px; }
.hero h1 .hl { color: var(--gold); display: block; }
.hero .sub { font-size: clamp(16px, 2.1vw, 20px); color: #c6d4e6; margin: 22px 0 14px; max-width: 560px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero .mini-stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero .mini-stats .st b { display: block; font-size: 30px; font-weight: 800; color: #fff; }
.hero .mini-stats .st span { font-size: 13.5px; color: #a9bcd4; }

.hero-visual { position: relative; }
.hero-visual .card-img {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-visual .card-img img { width: 100%; height: 100%; object-fit: cover; }

/* hero application form card */
.hero-form-card {
  background: #fff; border-radius: 20px; padding: 30px 30px 26px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.14);
}
.hff-head { margin-bottom: 20px; }
.hff-badge {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(31,157,85,.12);
  color: var(--green); font-weight: 700; font-size: 12.5px; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
.hff-badge svg { width: 14px; height: 14px; }
.hero-form-card h3 { font-size: 24px; color: var(--navy); font-weight: 800; letter-spacing: -.4px; line-height: 1.15; }
.hff-head p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.hero-form-card .field { margin-bottom: 12px; }
.hero-form-card .btn-block { margin-top: 4px; }
.hff-note {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  color: var(--muted); font-size: 12px; margin-top: 14px; text-align: center;
}
.hff-note svg { width: 14px; height: 14px; color: var(--green); flex: 0 0 auto; }

/* promo card: worker photo + benefit badges */
.promo-card {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12); background: var(--navy-2);
}
.promo-photo { line-height: 0; aspect-ratio: 16 / 11; overflow: hidden; }
.promo-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 62% 22%; }
.promo-adv {
  display: flex; gap: 8px; padding: 20px 16px; background: var(--navy-2);
  border-top: 3px solid var(--gold);
}
.promo-adv .adv { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.promo-adv .adv-ic {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--navy);
  display: grid; place-items: center; flex: 0 0 auto;
}
.promo-adv .adv-ic svg { width: 25px; height: 25px; }
.promo-adv .adv b {
  color: #fff; font-size: 11.5px; font-weight: 700; line-height: 1.25;
  letter-spacing: .3px; text-transform: uppercase;
}
.hero-float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 13px 16px; display: flex; align-items: center; gap: 11px;
}
.hero-float .ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--bg-navy-soft); color: var(--navy); flex: 0 0 auto; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float b { font-size: 15px; display: block; line-height: 1.2; }
.hero-float span { font-size: 12px; color: var(--muted); }
.hero-float.f1 { top: 22px; left: -22px; }
.hero-float.f2 { bottom: 26px; right: -18px; }

/* ---------- trust strip ---------- */
.trust { background: var(--gold); }
.trust .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 20px 22px; }
.trust .t-item { display: flex; align-items: center; gap: 11px; color: var(--navy); font-weight: 700; font-size: 15px; }
.trust .t-item svg { width: 26px; height: 26px; flex: 0 0 auto; }

/* ---------- section basics ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head .kicker {
  color: var(--gold-dark); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.12; font-weight: 800; letter-spacing: -.5px; margin: 12px 0 14px; color: var(--navy); }
.section-head p { color: var(--muted); font-size: 17px; }
.bg-soft { background: var(--bg-soft); }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about .imgwrap { position: relative; }
.about .imgwrap img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about .badge-est {
  position: absolute; bottom: -22px; left: -22px; background: var(--navy); color: #fff;
  border-radius: 14px; padding: 18px 22px; box-shadow: var(--shadow-lg);
}
.about .badge-est b { font-size: 30px; color: var(--gold); display: block; }
.about .badge-est span { font-size: 13px; color: #bcd; }
.about h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: var(--navy); letter-spacing: -.5px; line-height: 1.14; }
.about .kicker { color: var(--gold-dark); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.about p.lead { color: var(--muted); font-size: 16.5px; margin: 16px 0; }
.about ul.checks { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.about ul.checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
.about ul.checks li svg { width: 22px; height: 22px; color: var(--green); flex: 0 0 auto; margin-top: 2px; }

/* ---------- sectors ---------- */
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sector {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px;
  transition: .2s; box-shadow: var(--shadow-sm);
}
.sector:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.sector .ic { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-navy-soft); color: var(--navy); margin-bottom: 18px; }
.sector:hover .ic { background: var(--gold); color: var(--navy); }
.sector .ic svg { width: 30px; height: 30px; }
.sector h3 { font-size: 19px; color: var(--navy); margin-bottom: 8px; }
.sector p { color: var(--muted); font-size: 14.5px; }

/* ---------- jobs ---------- */
.jobs-filter { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.jobs-filter button {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: 999px; cursor: pointer; font-family: var(--font); transition: .15s;
}
.jobs-filter button:hover { border-color: var(--navy); }
.jobs-filter button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.job {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: .2s;
}
.job:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.job .jimg { position: relative; height: 178px; overflow: hidden; }
.job .jimg img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.job:hover .jimg img { transform: scale(1.06); }
.job .jtag {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.94); color: var(--navy);
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}
.job .jwage {
  position: absolute; bottom: 14px; right: 14px; background: var(--gold); color: var(--navy);
  font-size: 14px; font-weight: 800; padding: 6px 13px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.job .jbody { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.job h3 { font-size: 20px; color: var(--navy); margin-bottom: 4px; }
.job .jloc { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.job .jloc svg { width: 16px; height: 16px; color: var(--gold-dark); }
.job .jmeta { list-style: none; display: grid; gap: 9px; margin-bottom: 20px; }
.job .jmeta li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.job .jmeta li svg { width: 17px; height: 17px; color: var(--navy); flex: 0 0 auto; }
.job .jmeta li b { color: var(--navy); }
.job .jfoot { margin-top: auto; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px 26px; box-shadow: var(--shadow-sm); }
.step .num {
  width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-weight: 800; font-size: 20px; margin-bottom: 16px;
}
.step h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step .arrow { position: absolute; top: 46px; right: -16px; color: var(--gold); z-index: 2; }
.step .arrow svg { width: 30px; height: 30px; }
.step:last-child .arrow { display: none; }

/* ---------- provide (dark) ---------- */
.provide { background: var(--navy); color: #fff; }
.provide .section-head h2 { color: #fff; }
.provide .section-head p { color: #b7c6da; }
.provide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.provide .card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 28px 24px; transition: .2s;
}
.provide .card:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); }
.provide .card .ic { width: 54px; height: 54px; border-radius: 13px; background: var(--gold); color: var(--navy); display: grid; place-items: center; margin-bottom: 16px; }
.provide .card .ic svg { width: 28px; height: 28px; }
.provide .card h3 { font-size: 18px; margin-bottom: 8px; }
.provide .card p { color: #b7c6da; font-size: 14.5px; }
.provide .card .price { color: var(--gold); font-weight: 700; font-size: 14px; margin-top: 10px; display: block; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.testi .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; font-size: 17px; }
.testi p { font-size: 15.5px; color: var(--ink); font-style: italic; }
.testi .who { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.testi .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 800; font-size: 17px; }
.testi .who b { display: block; color: var(--navy); font-size: 15px; }
.testi .who span { color: var(--muted); font-size: 13px; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 24px; font-family: var(--font); font-weight: 700; font-size: 16.5px; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-navy-soft); color: var(--navy); display: grid; place-items: center; font-size: 20px; transition: .25s; }
.faq-item.open .faq-q .pm { background: var(--gold); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--muted); font-size: 15.5px; }

/* ---------- apply / contact ---------- */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.4vw, 38px); color: var(--navy); font-weight: 800; letter-spacing: -.5px; line-height: 1.14; }
.contact-info .kicker { color: var(--gold-dark); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.contact-info p.lead { color: var(--muted); font-size: 16.5px; margin: 14px 0 26px; }
.contact-list { display: grid; gap: 18px; margin-bottom: 26px; }
.contact-list .ci { display: flex; gap: 15px; align-items: flex-start; }
.contact-list .ci .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: var(--gold); display: grid; place-items: center; flex: 0 0 auto; }
.contact-list .ci .ic svg { width: 22px; height: 22px; }
.contact-list .ci b { display: block; color: var(--navy); font-size: 15px; }
.contact-list .ci span, .contact-list .ci a { color: var(--muted); font-size: 15px; }
.contact-list .ci a:hover { color: var(--navy); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 220px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.form-card .fsub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font); font-size: 15px; color: var(--ink); background: #fff; transition: .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(14,47,86,.1); }
.field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .ok { width: 66px; height: 66px; border-radius: 50%; background: rgba(31,157,85,.12); color: var(--green); display: grid; place-items: center; margin: 0 auto 16px; }
.form-success .ok svg { width: 36px; height: 36px; }
.form-success h3 { color: var(--green); }

/* ---------- footer ---------- */
footer.site { background: var(--navy); color: #b7c6da; padding: 60px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.foot-brand .brand .bt b { color: #fff; }
.foot-brand p { margin: 18px 0; font-size: 14.5px; max-width: 300px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .18s; }
.foot-social a:hover { background: var(--gold); color: var(--navy); }
.foot-social svg { width: 19px; height: 19px; }
footer.site h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: .3px; }
footer.site ul { list-style: none; display: grid; gap: 11px; }
footer.site ul a { font-size: 14.5px; }
footer.site ul a:hover { color: var(--gold); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; }

/* ---------- floating CTA ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: flex; flex-direction: column; gap: 10px; }
.fab a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); transition: .18s; }
.fab a:hover { transform: scale(1.08); }
.fab .wa { background: #25d366; color: #fff; }
.fab .fb { background: #1877f2; color: #fff; }
.fab a svg { width: 28px; height: 28px; }

/* ---------- reveal animation (only when JS is active) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .sectors-grid, .provide-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .step .arrow { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  nav.main, .header-cta .btn-navy { display: none; }
  .burger { display: block; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .about, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about .imgwrap { order: -1; }
  .topbar .tb-left .tb-item:first-child { display: none; }

  nav.main.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 22px 20px; gap: 4px;
    box-shadow: var(--shadow); align-items: stretch;
  }
  nav.main.open a { padding: 13px 12px; border-radius: 8px; }
  nav.main.open .menu-cta { display: block; background: var(--gold); color: var(--navy); text-align: center; font-weight: 700; margin-top: 8px; }
  nav.main.open .menu-cta:hover { background: var(--gold-dark); }
}
@media (max-width: 620px) {
  section { padding: 62px 0; }
  .header-cta .btn-gold { display: none; }
  .sectors-grid, .provide-grid, .steps, .jobs-grid, .testi-grid, .foot-grid, .form-row { grid-template-columns: 1fr; }
  .hero .mini-stats { gap: 22px; }
  .hero-float { display: none; }
  .trust .container { justify-content: flex-start; }
  .foot-bottom { flex-direction: column; }
  .brand .bt b { font-size: 16px; }
}
