/* =========================================================================
   BPAAK LLC — Recycle and Logistic
   Design tokens are declared twice: a px-based mobile/tablet scale, and a
   proportional desktop scale where 1rem === 1 mockup unit (the reference
   layout is 1024 mockup units wide). That keeps the desktop composition
   pixel-proportional to the approved design at any viewport width.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette (sampled from the approved design) */
  --navy:            #00152A;
  --navy-2:          #0A2238;
  --green:           #3C5A17;
  --green-hover:     #4A6E1C;
  --green-dark:      #2F4A14;
  --green-text:      #6E9430;
  --lime:            #9FB25C;
  --sage:            #E9EDDE;
  --sage-2:          #EDEFE7;
  --bg:              #F6F6F6;
  --white:           #FFFFFF;
  --ink:             #0D1420;
  --body:            #55565A;
  --muted:           #6C6D71;
  --line:            #DCDCDC;
  --card-border:     #E8E8E6;
  --line-onnavy:     rgba(255, 255, 255, .16);
  --text-onnavy:     #C6CBD2;

  /* Radii / shadow / motion */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 8px;
  --shadow-card: 0 1px 4px rgba(0, 0, 0, .06), 0 6px 18px rgba(0, 0, 0, .04);
  --shadow-float: 0 10px 26px rgba(0, 0, 0, .22);
  --t-fast: .18s ease;
  --t-base: .25s ease;

  /* Layout */
  --container: 1180px;
  --gutter: 20px;
  --header-h: 68px;

  /* Type scale — mobile / tablet */
  --fs-nav: 15px;
  --fs-btn: 14px;
  --fs-h1: 34px;
  --lh-h1: 1.14;
  --fs-lead: 16px;
  --fs-section: 24px;
  --fs-h2: 26px;
  --fs-card-title: 17px;
  --fs-list: 14.5px;
  --fs-small: 13.5px;
  --fs-xsmall: 13px;
  --fs-mv-title: 20px;
  --fs-mv-text: 15.5px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "Barlow", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--fs-list);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; }

svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--green-text);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--green); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

.container {
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

.green { color: var(--green-text); }

/* Anchor offset so sticky header never covers a target */
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  height: 44px; padding: 0 22px;
  border-radius: var(--r-sm);
  font-size: var(--fs-btn); font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn svg { width: 1.15em; height: 1.15em; stroke-width: 2; }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-hover); }
.btn--outline { color: #fff; border: 1px solid var(--lime); background: transparent; }
.btn--outline:hover { background: rgba(159, 178, 92, .16); }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: var(--header-h);
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 40px; width: auto; }

.nav__list { display: flex; align-items: center; gap: 25px; }
.nav__link {
  position: relative; display: block; padding: 6px 0;
  font-size: var(--fs-nav); font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: #1E2128; transition: color var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--green); transform: scaleX(0); transition: transform var(--t-fast);
}
.nav__link:hover { color: var(--green); }
.nav__link.is-active { color: var(--green); }
.nav__link.is-active::after { transform: scaleX(1); }

.btn--quote { flex: 0 0 auto; }

/* ---------- Language switch ---------- */
.lang {
  display: flex; flex: 0 0 auto; overflow: hidden; height: 38px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--white);
}
.lang__btn {
  display: grid; place-items: center; padding: 0 12px; cursor: pointer;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; line-height: 1;
  color: #6C6D71; transition: background var(--t-fast), color var(--t-fast);
}
.lang__btn + .lang__btn { border-left: 1px solid var(--line); }
.lang__btn:hover { color: var(--green); background: #F2F4EC; }
.lang__btn.is-active { background: var(--green); color: #fff; }
.lang__btn.is-active:hover { background: var(--green-hover); color: #fff; }

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 10px; cursor: pointer;
  flex-direction: column; justify-content: space-between; align-items: stretch;
}
.nav-toggle__bar {
  display: block; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: var(--header-h) 0 0; z-index: 90;
  background: rgba(0, 21, 42, .5);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; background: var(--navy); overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0 0 0 auto; width: 70.7%; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, var(--navy) 10%, rgba(0, 21, 42, .62) 22%, rgba(0, 21, 42, .16) 31%, rgba(0, 21, 42, 0) 40%);
}
.hero__inner { position: relative; padding: 48px 0 40px; }
.hero__title {
  font-size: var(--fs-h1); line-height: var(--lh-h1); font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: -.004em;
}
.hero__text {
  margin-top: 16px; max-width: 34ch;
  font-size: var(--fs-lead); line-height: 1.5; color: #E4E7EB;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* =========================================================================
   BENEFITS STRIP
   ========================================================================= */
.benefits { background: var(--navy); }
.benefits__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}
.benefit { position: relative; display: flex; align-items: flex-start; gap: 14px; padding: 4px 18px; }
.benefit + .benefit::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: var(--line-onnavy);
}
.benefit:first-child { padding-left: 0; }
.benefit__icon {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--lime); color: var(--lime);
}
.benefit__icon svg { width: 21px; height: 21px; stroke-width: 1.5; }
.benefit__title {
  font-size: var(--fs-small); font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: #fff; line-height: 1.2;
}
.benefit__text { margin-top: 6px; font-size: var(--fs-xsmall); line-height: 1.5; color: var(--text-onnavy); }

/* =========================================================================
   MISSION / VISION
   ========================================================================= */
.mv { background: var(--bg); }
.mv__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 34px 0 28px;
}
.mv__item { position: relative; display: flex; align-items: flex-start; gap: 22px; padding-right: 34px; }
.mv__item + .mv__item { padding-left: 40px; padding-right: 0; }
.mv__item + .mv__item::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 1px; background: var(--line);
}
.mv__icon {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 76px; height: 76px; border-radius: 50%; background: var(--sage); color: var(--green-dark);
}
.mv__icon svg { width: 34px; height: 34px; stroke-width: 1.6; }
.mv__title {
  font-size: var(--fs-mv-title); font-weight: 700; letter-spacing: .015em; text-transform: uppercase;
  color: var(--green-dark); line-height: 1.2;
}
.mv__text { margin-top: 10px; font-size: var(--fs-mv-text); line-height: 1.5; color: var(--body); }

/* =========================================================================
   SECTION TITLE
   ========================================================================= */
.section-title {
  text-align: center; color: var(--ink);
  font-size: var(--fs-section); font-weight: 700; letter-spacing: .015em; text-transform: uppercase;
  line-height: 1.2;
}
.section-title::after {
  content: ""; display: block; width: 46px; height: 3px; margin: 8px auto 0;
  background: var(--green-text); border-radius: 2px;
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.services { background: var(--bg); padding: 8px 0 44px; }
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
  margin-top: 22px; align-items: stretch;
}
.card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--card-border); border-radius: var(--r-md);
  box-shadow: var(--shadow-card); overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.card:hover { box-shadow: 0 2px 6px rgba(0,0,0,.08), 0 14px 30px rgba(0,0,0,.08); }
.card__media { position: relative; }
.card__media img { width: 100%; height: 145px; object-fit: cover; }
.card__icon {
  position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%);
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: #fff; border: 2px solid var(--white);
}
.card__icon svg { width: 23px; height: 23px; stroke-width: 1.8; }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 36px 20px 20px; }
.card__title {
  text-align: center; color: var(--ink);
  font-size: var(--fs-card-title); font-weight: 700; line-height: 1.3;
  letter-spacing: .01em; text-transform: uppercase;
}

.check-list { margin-top: 16px; display: grid; gap: 7px; }
.check-list li {
  display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px;
  font-size: var(--fs-list); line-height: 1.4; color: var(--muted);
}
.check-list .check { width: 14px; height: 14px; margin-top: .28em; color: var(--green); stroke-width: 2.6; }
.check-list--light li { color: #EDF1E4; }
.check-list--light .check { color: #fff; }

.learn-more {
  display: inline-flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 18px;
  color: var(--green); font-size: var(--fs-xsmall); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.learn-more svg { width: 16px; height: 16px; stroke-width: 2; transition: transform var(--t-fast); }
.learn-more:hover { color: var(--green-hover); }
.learn-more:hover svg { transform: translateX(4px); }

/* =========================================================================
   STAFFING SOLUTIONS
   ========================================================================= */
.staffing { position: relative; background: var(--navy); overflow: hidden; isolation: isolate; }
.staffing__media { position: absolute; inset: 0 0 0 auto; width: 59%; z-index: -1; }
.staffing__media img { width: 100%; height: 100%; object-fit: cover; object-position: 45% center; }
.staffing__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, var(--navy) 9%, rgba(0, 21, 42, .6) 20%, rgba(0, 21, 42, .15) 29%, rgba(0, 21, 42, 0) 38%);
}
.staffing__inner { position: relative; padding: 34px 0 32px; }
.staffing__content { max-width: 44%; }
.staffing__title {
  color: #fff; font-size: var(--fs-h2); font-weight: 700; line-height: 1.24;
  letter-spacing: .005em; text-transform: uppercase;
}
.staffing__text { margin-top: 15px; font-size: var(--fs-mv-text); line-height: 1.55; color: #D7DCE2; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 28px; }
.feature { position: relative; text-align: center; padding: 0 12px; }
.feature + .feature::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: var(--line-onnavy);
}
.feature__icon { width: 30px; height: 30px; margin: 0 auto; color: var(--lime); stroke-width: 1.5; }
.feature__title {
  margin-top: 12px; color: #fff; font-size: var(--fs-xsmall); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1.2;
}
.feature__text { margin-top: 6px; font-size: 12.5px; line-height: 1.45; color: var(--text-onnavy); }

.why-card {
  position: relative; overflow: hidden;
  background: rgba(61, 92, 24, .94); border-radius: var(--r-md);
  padding: 16px 20px 18px; box-shadow: var(--shadow-float);
}
.why-card__watermark {
  position: absolute; right: 10px; bottom: 4px; width: 92px; height: 92px;
  color: rgba(0, 0, 0, .13); stroke: none;
}
.why-card__title {
  color: #fff; font-size: var(--fs-small); font-weight: 700; letter-spacing: .035em;
  text-transform: uppercase; line-height: 1.2;
}
.why-card .check-list { margin-top: 12px; gap: 6px; position: relative; }
.why-card .check-list li { font-size: var(--fs-xsmall); }

/* =========================================================================
   INDUSTRIES
   ========================================================================= */
.industries { background: var(--bg); padding: 34px 0 12px; }
.industries__grid { display: grid; grid-template-columns: repeat(9, 1fr); margin-top: 24px; }
.industry { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 4px 8px; text-align: center; }
.industry + .industry::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 62px; background: var(--line);
}
.industry svg { width: 32px; height: 32px; color: var(--green-dark); stroke-width: 1.5; }
.industry span {
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
  color: #2C3A26; line-height: 1.25;
}

/* =========================================================================
   PROCESS
   ========================================================================= */
.process { background: var(--bg); padding: 26px 0 42px; }
.process__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 26px;
  counter-reset: step;
}
.step { position: relative; text-align: center; padding: 0 10px; }
.step::before {                       /* dashed connector */
  content: ""; position: absolute; top: 28px; left: -50%; width: 100%;
  border-top: 1px dashed #C9CBC4; z-index: 0;
}
.step:first-child::before { display: none; }
.step__icon {
  position: relative; z-index: 1; display: grid; place-items: center;
  width: 56px; height: 56px; margin: 0 auto; border-radius: 50%;
  background: var(--sage-2); color: var(--green);
}
.step__icon svg { width: 26px; height: 26px; stroke-width: 1.6; }
.step__num { display: block; margin-top: 12px; font-size: var(--fs-xsmall); color: var(--muted); }
.step__title {
  margin-top: 4px; color: var(--ink); font-size: var(--fs-xsmall); font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; line-height: 1.25;
}
.step__text { margin-top: 5px; font-size: 12.5px; line-height: 1.45; color: var(--muted); }

/* =========================================================================
   CTA
   ========================================================================= */
.cta { position: relative; background: var(--navy); overflow: hidden; isolation: isolate; }
.cta__media { position: absolute; inset: 0 0 0 auto; width: 85.4%; z-index: -1; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, var(--navy) 11%, rgba(0, 21, 42, .6) 21%, rgba(0, 21, 42, .16) 30%, rgba(0, 21, 42, 0) 40%);
}
.cta__inner { position: relative; padding: 30px 0 30px; }
.cta__title {
  color: #fff; font-size: var(--fs-h2); font-weight: 700; line-height: 1.28;
  letter-spacing: .01em; text-transform: uppercase;
}
.btn--cta { margin-top: 18px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--navy); color: var(--text-onnavy); }
.footer__grid { display: grid; grid-template-columns: 23.3% 14.9% 19.7% 21.7% 20.4%; padding: 34px 0 22px; }
.footer__col--brand { padding-right: 34px; }
.footer__logo { height: 34px; width: auto; }
.footer__about { margin-top: 14px; font-size: var(--fs-xsmall); line-height: 1.5; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .45); color: #fff; transition: background var(--t-fast), border-color var(--t-fast);
}
.socials svg { width: 15px; height: 15px; }
.socials a:hover { background: var(--green); border-color: var(--green); }

.footer__title {
  color: #fff; font-size: var(--fs-small); font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; line-height: 1.2;
}
.footer__list { margin-top: 14px; display: grid; gap: 7px; }
.footer__list a { font-size: var(--fs-xsmall); transition: color var(--t-fast); }
.footer__list a:hover { color: var(--lime); }

.footer__contact { margin-top: 14px; display: grid; gap: 12px; }
.footer__contact li { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 12px; font-size: var(--fs-xsmall); }
.footer__contact svg { width: 17px; height: 17px; color: #fff; margin-top: .1em; }
.footer__contact a:hover { color: var(--lime); }

.certs { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.certs img { height: 54px; width: auto; }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 12px 0; }
.footer__bottom p { text-align: center; font-size: var(--fs-xsmall); }

/* =========================================================================
   DESKTOP — proportional scale (1rem === 1 mockup unit)
   ========================================================================= */
@media (min-width: 1200px) {
  :root {
    /* 1024 mockup units mapped onto the viewport, frozen at a 1920px canvas.
       Sizes that would drop below comfortable reading size on a narrow desktop
       are floored with max(), so only the very small labels ever deviate.     */
    font-size: clamp(1.4px, 0.09765625vw, 1.875px);

    --container: 944rem;
    --gutter: 18px;
    --header-h: 68rem;

    --r-sm: 3rem;
    --r-md: 5rem;
    --r-lg: 7rem;

    --fs-nav: max(11.5px, 8rem);
    --fs-btn: max(12px, 9.4rem);
    --fs-h1: 35rem;
    --lh-h1: 1.03;
    --fs-lead: 12.5rem;
    --fs-section: 17.6rem;
    --fs-h2: 21.6rem;
    --fs-card-title: 11.8rem;
    --fs-list: max(12px, 8.3rem);
    --fs-small: max(12px, 9.6rem);
    --fs-xsmall: max(11.5px, 8.2rem);
    --fs-mv-title: 13.6rem;
    --fs-mv-text: max(12px, 9.2rem);
  }

  body { font-size: var(--fs-list); }

  /* Header */
  .site-header__inner { gap: 0; }
  .brand img { height: 46rem; }
  .nav { margin-left: auto; }
  .nav__list { gap: 20rem; }
  .nav__link { padding: 5rem 0; }
  .nav__link::after { bottom: -1rem; height: 2rem; }
  .btn { height: 30rem; padding: 0 22rem; gap: .5em; }
  .btn--quote { height: 29rem; padding: 0 13rem; margin-left: 14rem; }
  .lang { height: 29rem; margin-left: 26rem; }
  .lang__btn { padding: 0 9rem; font-size: max(10px, 8rem); }

  /* Hero */
  .hero__inner { padding: 42rem 0 25rem; min-height: 249rem; }
  .hero__content { padding-left: 13rem; }
  .hero__text { margin-top: 9rem; max-width: 282rem; line-height: 1.5; }
  .hero__actions { margin-top: 16rem; gap: 16rem; }

  /* Benefits */
  .benefits__grid { padding: 17rem 0; padding-left: 18rem; }
  .benefit { gap: 17rem; padding: 0 14rem; }
  .benefit + .benefit::before { height: 46rem; }
  .benefit:first-child { padding-left: 0; }
  .benefit__icon { width: 38rem; height: 38rem; border-width: 1rem; }
  .benefit__icon svg { width: 19rem; height: 19rem; }
  .benefit__title { font-size: 9.6rem; line-height: 1.2; }
  .benefit__text { margin-top: 4rem; font-size: max(12px, 9.2rem); line-height: 1.55; }

  /* Mission / vision */
  .mv__grid { grid-template-columns: 44.9% 55.1%; padding: 23rem 0 12rem; }
  .mv__item { gap: 21rem; padding-left: 18rem; padding-right: 26rem; }
  .mv__item + .mv__item { gap: 27rem; padding-left: 40rem; padding-right: 0; }
  .mv__icon { width: 71rem; height: 71rem; }
  .mv__icon svg { width: 32rem; height: 32rem; }
  .mv__title { line-height: 1.2; }
  .mv__body { max-width: 268rem; }
  .mv__text { margin-top: 3rem; line-height: 1.57; }

  /* Section title */
  .section-title::after { width: 23rem; height: 2rem; margin-top: 1rem; }

  /* Services */
  .services { padding: 6rem 0 17rem; }
  .services__grid { gap: 11rem; margin-top: 6rem; }
  .card { border-width: 1px; }
  .card__media img { height: 103rem; }
  .card__icon { width: 37rem; height: 37rem; border-width: 2rem; }
  .card__icon svg { width: 18rem; height: 18rem; }
  .card__body { padding: 23rem 22rem 8rem; }
  .card__title { line-height: 1.1; }
  .check-list { margin-top: 7rem; gap: 3rem; }
  .check-list li { gap: 8rem; line-height: 1.4; }
  .check-list .check { width: 9rem; height: 9rem; }
  .learn-more { padding-top: 14rem; gap: 7rem; font-size: max(12px, 10.2rem); line-height: 1.2; }
  .learn-more svg { width: 11rem; height: 11rem; }

  /* Staffing */
  .staffing__inner { padding: 14rem 0 30rem; min-height: 248rem; }
  .staffing__content { max-width: 430rem; padding-left: 11rem; }
  .staffing__title { line-height: 1.07; }
  .staffing__text { margin-top: 7rem; max-width: 380rem; font-size: max(13px, 11.4rem); line-height: 1.37; }
  .features { margin-top: 23rem; max-width: 410rem; }
  .feature { padding: 0 4rem; }
  .feature:first-child { padding-left: 0; }
  .feature__icon { width: 30rem; height: 30rem; }
  .feature__title { margin-top: 13rem; font-size: 9rem; line-height: 1.2; }
  .feature__text { margin-top: 3.5rem; font-size: max(11px, 8.4rem); line-height: 1.4; }

  .why-card {
    position: absolute; right: 5rem; bottom: 10rem; width: 301rem;
    padding: 12rem 16rem 13rem 14rem;
  }
  .why-card__title { font-size: 11.5rem; }
  .why-card__watermark { width: 62rem; height: 62rem; right: 6rem; bottom: 2rem; }
  .why-card .check-list { margin-top: 8rem; gap: 4rem; }
  .why-card .check-list li { gap: 9rem; font-size: max(11.5px, 8.35rem); }

  /* Industries */
  .industries { padding: 11rem 0 0; }
  .industries__grid {
    grid-template-columns: repeat(9, auto); justify-content: space-between;
    margin-top: 14rem; padding-left: 8rem;
  }
  .industry { gap: 9rem; padding: 2rem 9rem; }
  .industry:first-child { padding-left: 0; }
  .industry + .industry::before { height: 48rem; }
  .industry svg { width: 32rem; height: 32rem; }
  .industry span { font-size: max(10.5px, 8.1rem); white-space: nowrap; }

  /* Process */
  .process { padding: 0 0 7rem; }
  .process__grid { margin-top: 6rem; }
  .step { padding: 0 8rem; }
  .step::before { top: 26rem; }
  .step__icon { width: 52rem; height: 52rem; }
  .step__icon svg { width: 24rem; height: 24rem; }
  .step__num { margin-top: 1rem; font-size: max(11px, 8.6rem); line-height: 1.4; }
  .step__title { margin-top: 3rem; font-size: max(11px, 8.6rem); line-height: 1.25; }
  .step__text { margin-top: 1.5rem; max-width: 108rem; margin-inline: auto; font-size: max(11px, 7.6rem); line-height: 1.7; }

  /* CTA */
  .cta__inner { padding: 12rem 0 5rem; min-height: 101rem; }
  .cta__title { font-size: 17.6rem; line-height: 1.05; padding-left: 31rem; }
  .btn--cta { margin-top: 7rem; height: 23rem; margin-left: 31rem; padding: 0 17rem; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 23.76% 15.23% 20.09% 22.14% 18.79%;
    padding: 8rem 0 18rem; padding-left: 18rem;
  }
  .footer__col--brand { padding-right: 30rem; }
  .footer__logo { height: 32rem; margin-left: -5rem; }
  .footer__about { margin-top: 10rem; line-height: 1.45; }
  .socials { gap: 8rem; margin-top: 12rem; }
  .socials a { width: 20rem; height: 20rem; border-width: 1rem; }
  .socials svg { width: 10rem; height: 10rem; }
  .footer__title { font-size: max(12px, 9.1rem); }
  .footer__list { margin-top: 10rem; gap: 1rem; }
  .footer__list a { line-height: 1.35; }
  .footer__contact { margin-top: 10rem; gap: 6rem; }
  .footer__contact li { gap: 9rem; }
  .footer__contact svg { width: 12rem; height: 12rem; }
  .certs { gap: 3rem; margin-top: 12rem; margin-left: -7rem; }
  .certs img { height: 63rem; }
  .footer__bottom { padding: 9rem 0; }
}

/* =========================================================================
   TABLET  (768 – 1023)
   ========================================================================= */
@media (max-width: 1199px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 95;
    background: var(--white); border-bottom: 1px solid rgba(0, 0, 0, .08);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 6px 0 14px; }
  .nav__list li { border-bottom: 1px solid rgba(0, 0, 0, .06); }
  .nav__list li:last-child { border-bottom: 0; }
  .nav__link { padding: 14px var(--gutter); font-size: 15px; }
  .nav__link::after { display: none; }
  .nav__link.is-active { box-shadow: inset 3px 0 0 var(--green); }
  .lang { margin-left: auto; }
  .btn--quote { margin-left: 12px; }

  .hero__media { width: 100%; }
  .hero__media::after {
    background: linear-gradient(to right, var(--navy) 0%, rgba(0, 21, 42, .92) 30%, rgba(0, 21, 42, .55) 70%, rgba(0, 21, 42, .35) 100%);
  }
  .hero__inner { padding: 56px 0 52px; }
  .hero__text { max-width: 46ch; }

  .benefits__grid { grid-template-columns: 1fr 1fr; gap: 26px 0; padding: 32px 0; }
  .benefit:nth-child(odd) { padding-left: 0; }
  .benefit:nth-child(odd)::before { display: none; }

  .mv__grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 0 34px; }
  .mv__item { padding-right: 0; }
  .mv__item + .mv__item { padding-left: 0; padding-top: 30px; }
  .mv__item + .mv__item::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 1px; }

  .services { padding: 10px 0 48px; }
  .services__grid { grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
  .card__media img { height: 190px; }

  .staffing__media { width: 100%; }
  .staffing__media::after {
    background: linear-gradient(to bottom, rgba(0, 21, 42, .95) 0%, rgba(0, 21, 42, .88) 55%, rgba(0, 21, 42, .8) 100%);
  }
  .staffing__inner { padding: 44px 0 44px; }
  .staffing__content { max-width: none; }
  .features { grid-template-columns: 1fr 1fr; gap: 26px 0; margin-top: 34px; }
  .feature:nth-child(odd)::before { display: none; }
  .why-card { margin-top: 32px; }

  .industries { padding: 44px 0 8px; }
  .industries__grid { grid-template-columns: repeat(3, 1fr); gap: 26px 0; margin-top: 30px; }
  .industry:nth-child(3n+1)::before { display: none; }

  .process { padding: 34px 0 48px; }
  .process__grid { grid-template-columns: repeat(3, 1fr); gap: 32px 0; margin-top: 30px; }
  .step:nth-child(3n+1)::before { display: none; }

  .cta__media { width: 100%; }
  .cta__media::after {
    background: linear-gradient(to right, var(--navy) 0%, rgba(0, 21, 42, .92) 40%, rgba(0, 21, 42, .6) 100%);
  }
  .cta__inner { padding: 44px 0; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding: 44px 0 28px; }
  .footer__col--brand { grid-column: 1 / -1; padding-right: 0; }
}

/* =========================================================================
   MOBILE  (< 768)
   ========================================================================= */
@media (max-width: 767px) {
  :root {
    --gutter: 18px;
    --header-h: 62px;
    --fs-h1: 28px;
    --fs-lead: 15.5px;
    --fs-section: 21px;
    --fs-h2: 21px;
    --fs-card-title: 16px;
    --fs-list: 14px;
    --fs-mv-title: 18px;
    --fs-mv-text: 15px;
  }

  .brand img { height: 34px; }
  .btn--quote { display: none; }

  .hero__inner { padding: 42px 0 40px; }
  .hero__media::after {
    background: linear-gradient(to right, rgba(0, 21, 42, .94) 0%, rgba(0, 21, 42, .86) 60%, rgba(0, 21, 42, .7) 100%);
  }
  .hero__text { max-width: none; }
  .hero__actions .btn { flex: 1 1 auto; min-width: 170px; }

  .benefits__grid { grid-template-columns: 1fr; gap: 24px; padding: 30px 0; }
  .benefit { padding: 0; }
  .benefit::before { display: none !important; }

  .services__grid { grid-template-columns: 1fr; gap: 26px; }
  .card__media img { height: 200px; }

  .features { grid-template-columns: 1fr; gap: 24px; }
  .feature { text-align: left; padding: 0; }
  .feature__icon { margin: 0; }
  .feature::before { display: none !important; }

  .industries__grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .industry::before { display: none !important; }

  .process__grid { grid-template-columns: 1fr; gap: 0; }
  .step { display: grid; grid-template-columns: 56px 1fr; gap: 0 16px; text-align: left; padding: 0 0 26px; }
  .step__icon { grid-row: 1 / 4; }
  .step::before {
    content: ""; position: absolute; left: 27px; top: 56px; bottom: 0;
    width: 0; height: auto; border-top: 0; border-left: 1px dashed #C9CBC4;
  }
  .step:last-child::before { display: none; }
  .step:first-child::before { display: block; }
  .step__num { margin-top: 2px; }

  .cta__inner { padding: 38px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .certs img { height: 60px; }
}

@media (max-width: 479px) {
  :root { --fs-h1: 25px; --fs-section: 19.5px; --fs-h2: 19.5px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { width: 100%; }
  .industries__grid { grid-template-columns: 1fr; gap: 20px; }
  .industry { flex-direction: row; align-items: center; gap: 14px; text-align: left; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
