/* ============================================================
   Orange True Solution — Design System
   Palette: navy + orange, white & warm soft-gray
   Type: Newsreader (serif display) + Plus Jakarta Sans (UI/body)
   ============================================================ */

:root {
  --navy:      #15233f;
  --navy-2:    #0e1a31;
  --navy-soft: #2a3a59;
  --orange:    #e97a26;
  --orange-d:  #d2681a;
  --orange-l:  #fbeede;
  --ink:       #15233f;
  --body:      #51607a;
  --body-soft: #76829a;
  --soft:      #f7f4ef;
  --soft-2:    #fbfaf7;
  --line:      #e7e2d8;
  --line-cool: #e6eaf1;
  --white:     #ffffff;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(21,35,63,.06), 0 2px 8px rgba(21,35,63,.05);
  --shadow-md: 0 10px 30px rgba(21,35,63,.10);
  --shadow-lg: 0 24px 60px rgba(21,35,63,.16);
  --shadow-orange: 0 12px 34px rgba(233,122,38,.30);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --maxw: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

img, video { display: block; max-width: 100%; }

h1, h2, h3, h4 { color: var(--ink); margin: 0; }

a { color: inherit; text-decoration: none; }

.serif { font-family: var(--serif); font-weight: 500; }

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

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy); color: #c6cfdf; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: balance;
}
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lead { font-size: 1.12rem; margin: 18px 0 0; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { transform: translateY(-2px); background: var(--navy-2); }
.btn--sm { padding: 11px 20px; font-size: .92rem; }
.btn--block { width: 100%; }

/* ============================================================
   Welcome / Language overlay
   ============================================================ */
.welcome {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--navy-2);
  opacity: 1;
  transition: opacity .6s var(--ease);
}
.welcome.is-hidden { opacity: 0; pointer-events: none; }
.welcome__video, .welcome__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.welcome__video { object-fit: cover; filter: saturate(1.02); }
.welcome__veil {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(21,35,63,.55), rgba(14,26,49,.86) 70%),
    linear-gradient(180deg, rgba(14,26,49,.72), rgba(14,26,49,.92));
}
.welcome__inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px;
  max-width: 640px;
}
.welcome__logo {
  height: 92px; width: auto; margin: 0 auto 30px;
  background: #fff; padding: 16px 22px; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.welcome__greet {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.04;
  color: #fff; letter-spacing: -.02em; margin: 0 0 6px;
}
.welcome__tagline { color: var(--orange); font-weight: 600; letter-spacing: .04em; margin: 0 0 22px; }
.welcome__lead { color: #c6cfdf; font-size: 1.08rem; line-height: 1.6; margin: 0 auto 38px; max-width: 30em; }
.welcome__choose { color: #8593ac; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 16px; }
.welcome__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.welcome__btns .btn { min-width: 220px; padding: 18px 28px; }
.flag { font-size: 1.15em; line-height: 1; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 13px; }
.nav__mark { flex: none; width: 46px; height: 46px; border-radius: 12px; background: #fff; display: grid; place-items: center; padding: 6px; box-shadow: 0 2px 10px rgba(21,35,63,.18); border: 1px solid rgba(21,35,63,.06); transition: box-shadow .35s var(--ease); }
.nav__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav__wordmark {
  font-family: var(--serif); font-weight: 600; line-height: 1;
  font-size: clamp(1.06rem, 1.5vw, 1.34rem); letter-spacing: .005em;
  color: #fff; white-space: nowrap; transition: color .4s var(--ease);
}
.nav.scrolled .nav__wordmark { color: var(--navy); }
.nav.scrolled .nav__mark { box-shadow: var(--shadow-sm); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: .95rem; font-weight: 500; color: #f2f5fa; opacity: .9;
  position: relative; padding: 6px 0; transition: opacity .2s, color .2s; white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 14px; }

/* language toggle */
.langtog { display: inline-flex; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); border-radius: var(--r-pill); padding: 3px; backdrop-filter: blur(8px); }
.langtog button {
  font-family: var(--sans); font-weight: 700; font-size: .78rem; letter-spacing: .04em;
  border: 0; background: transparent; color: #fff; opacity: .7; cursor: pointer;
  padding: 6px 12px; border-radius: var(--r-pill); transition: all .25s var(--ease);
}
.langtog button.active { background: #fff; color: var(--navy); opacity: 1; }

/* scrolled state -> solid white nav */
.nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav.scrolled .nav__link { color: var(--ink); }
.nav.scrolled .langtog { background: var(--soft); border-color: var(--line); }
.nav.scrolled .langtog button { color: var(--ink); }
.nav.scrolled .langtog button.active { background: var(--navy); color: #fff; }

.nav__burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; color: #fff; }
.nav.scrolled .nav__burger { color: var(--ink); }
.nav__burger svg { width: 28px; height: 28px; }

/* Mobile sheet */
.sheet-backdrop {
  position: fixed; inset: 0; z-index: 300; background: rgba(14,26,49,.4);
  backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.sheet-backdrop.open { opacity: 1; pointer-events: auto; }
.sheet {
  position: fixed; top: 0; right: 0; z-index: 301; height: 100dvh;
  width: min(88vw, 380px); background: var(--white);
  box-shadow: -12px 0 48px rgba(21,35,63,.18);
  transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; padding: 22px;
}
.sheet.open { transform: translateX(0); }
.sheet__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.sheet__head img { height: 40px; }
.sheet__close { background: var(--soft); border: 0; border-radius: 50%; width: 42px; height: 42px; display: grid; place-items: center; cursor: pointer; color: var(--ink); }
.sheet__links { display: flex; flex-direction: column; gap: 4px; margin-top: 22px; flex: 1; }
.sheet__links a { font-size: 1.15rem; font-weight: 600; color: var(--ink); padding: 13px 8px; border-radius: 10px; transition: background .2s, color .2s; }
.sheet__links a:hover { background: var(--soft); color: var(--orange); }
.sheet__cta { display: flex; flex-direction: column; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.sheet__lang { display: flex; gap: 10px; margin-bottom: 4px; }
.sheet__lang button { flex: 1; padding: 10px; border-radius: var(--r-pill); border: 1.5px solid var(--line); background: #fff; font-family: var(--sans); font-weight: 700; cursor: pointer; color: var(--body); }
.sheet__lang button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-2); }
.hero__bg, .hero__video, .hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__bg { object-fit: cover; z-index: 0; }
.hero__video { object-fit: cover; z-index: 1; }
.hero__veil { z-index: 2; }
.hero__veil {
  background:
    linear-gradient(90deg, rgba(14,26,49,.86) 0%, rgba(14,26,49,.62) 42%, rgba(14,26,49,.18) 100%),
    linear-gradient(0deg, rgba(14,26,49,.85) 0%, rgba(14,26,49,0) 48%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(56px, 8vh, 110px); padding-top: 140px; }
.hero__content { max-width: 720px; }
.hero h1 {
  font-family: var(--serif); font-weight: 500; color: #fff;
  font-size: clamp(2.5rem, 6.2vw, 5rem); line-height: 1.02; letter-spacing: -.02em;
  margin: 0 0 22px; text-wrap: balance;
}
.hero p.sub { color: #d6deeb; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.6; max-width: 40em; margin: 0 0 34px; }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 44px; margin-top: clamp(40px, 6vh, 64px); flex-wrap: wrap; }
.hero__stat .n { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: #fff; }
.hero__stat .l { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #9fb0c9; margin-top: 8px; }
.hero__stat { position: relative; padding-left: 22px; }
.hero__stat::before { content:""; position:absolute; left:0; top:4px; bottom:4px; width:3px; background: var(--orange); border-radius: 3px; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; z-index: 3; transform: translateX(-50%); color: #fff; opacity: .6; }
.scroll-cue svg { width: 26px; height: 26px; animation: bob 1.8s ease-in-out infinite; }

/* ============================================================
   About — interactive tabs
   ============================================================ */
/* full-bleed video background variant */
.about-bg { position: relative; overflow: hidden; background: var(--navy-2); color: #d6deeb; }
.about-bg__img, .about-bg__video, .about-bg__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-bg__img { object-fit: cover; z-index: 0; }
.about-bg__video { object-fit: cover; z-index: 1; }
.about-bg__veil {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(11,20,38,.60) 0%, rgba(11,20,38,.28) 42%, rgba(11,20,38,.05) 72%, rgba(11,20,38,0) 100%),
    linear-gradient(0deg, rgba(11,20,38,.26) 0%, rgba(11,20,38,0) 40%);
}
.about-bg__content { position: relative; z-index: 3; max-width: 640px; text-shadow: 0 1px 24px rgba(8,15,30,.5); }
.about-bg__content .tab, .about-bg__content .tab-panel p { text-shadow: none; }
.about-bg .section-title { color: #fff; }
.about-bg .tab-panel h3 { color: #fff; }
.about-bg .tab-panel p { color: #d6deeb; }
.about-bg .tabs { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(8px); flex-wrap: nowrap; }
.about-bg .tab { color: #e7edf5; }
.about-bg .tab.active { background: #fff; color: var(--navy); }
.about-bg .tab-panel {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px); border-radius: var(--r-md); padding: 24px 28px; margin-top: 8px;
}

/* ============================================================
   Reusable full-bleed VIDEO-BACKGROUND section
   ============================================================ */
.section--video { position: relative; overflow: hidden; background: var(--navy-2); color: #c6cfdf; }
.secbg__img, .secbg__video, .secbg__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.secbg__img { object-fit: cover; z-index: 0; }
.secbg__video { object-fit: cover; z-index: 1; }
/* default veil = light (for sections whose content sits in white cards) */
.secbg__veil { z-index: 2; background: linear-gradient(180deg, rgba(11,20,38,.40) 0%, rgba(11,20,38,.24) 38%, rgba(11,20,38,.46) 100%); }
/* directional veil = darker behind a left text column, video clear on the right */
.secbg__veil.text {
  background:
    linear-gradient(90deg, rgba(11,20,38,.62) 0%, rgba(11,20,38,.30) 44%, rgba(11,20,38,.06) 74%, rgba(11,20,38,0) 100%),
    linear-gradient(0deg, rgba(11,20,38,.24) 0%, rgba(11,20,38,0) 42%);
}
.section--video > .wrap { position: relative; z-index: 3; }
.secbg__content { max-width: 640px; text-shadow: 0 1px 24px rgba(8,15,30,.5); }
.secbg__content .btn, .secbg__content .step p, .secbg__content .feature-list li { text-shadow: none; }

.section--video .section-title { color: #fff; text-shadow: 0 2px 28px rgba(8,15,30,.55); }
.section--video .lead { color: #e8eef6; text-shadow: 0 1px 20px rgba(8,15,30,.5); }
.section--video .eyebrow { text-shadow: none; }
.section--video .industries__title { color: #fff; }
.section--video .split__intro { color: #d6deeb; }
.section--video .feature-list li { color: #d6deeb; }
.section--video .step h4 { color: #fff; }
.section--video .step p { color: #c6cfdf; }
.section--video .ind-box { background: rgba(13,23,44,.42); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); }
.section--video .contact-item .v { color: #fff; }
.section--video .contact-item .v:hover { color: var(--orange); }
.section--video .contact-item .k { color: #9fb0c9; }

/* zoom-settle transition as each video section scrolls into view */
.section--video .secbg__img, .section--video .secbg__video,
.about-bg .about-bg__img, .about-bg .about-bg__video { transform: scale(1.09); transition: transform 1.6s var(--ease); }
.section--video.bg-in .secbg__img, .section--video.bg-in .secbg__video,
.about-bg.bg-in .about-bg__img, .about-bg.bg-in .about-bg__video { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .section--video .secbg__img, .section--video .secbg__video,
  .about-bg .about-bg__img, .about-bg .about-bg__video { transform: none; }
}

.about__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about__media video { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 16px;
}
.about__badge .mark { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-l); color: var(--orange); display: grid; place-items: center; flex: none; }
.about__badge .mark svg { width: 24px; height: 24px; }
.about__badge b { color: var(--ink); display: block; font-size: 1.02rem; }
.about__badge span { font-size: .9rem; }

.tabs { display: inline-flex; gap: 6px; background: var(--soft); padding: 6px; border-radius: var(--r-pill); margin-bottom: 30px; flex-wrap: wrap; }
.tab {
  font-family: var(--sans); font-weight: 600; font-size: .98rem; border: 0; cursor: pointer;
  background: transparent; color: var(--body); padding: 12px 24px; border-radius: var(--r-pill);
  transition: all .3s var(--ease);
}
.tab.active { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
@media (prefers-reduced-motion: no-preference) { .tab-panel.active { animation: panelIn .5s var(--ease); } }
@keyframes panelIn { from { transform: translateY(12px); } to { transform: none; } }
.tab-panel h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 16px; letter-spacing: -.01em; }
.tab-panel p { font-size: 1.1rem; line-height: 1.7; margin: 0; }

/* ============================================================
   Services
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc-card {
  display: flex; flex-direction: row; align-items: flex-start; gap: 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 24px; color: var(--body); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--orange-l); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; margin-bottom: 0; }
.svc-card .ic svg { width: 27px; height: 27px; }
.svc-text { flex: 1; }
.svc-card h3 { font-size: 1.2rem; margin: 0 0 8px; }
.svc-card p { font-size: .98rem; margin: 0; line-height: 1.6; }

.industries { margin-top: clamp(48px, 6vw, 72px); }
.industries__title { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; color: var(--ink); margin: 0 0 26px; }
.ind-box {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: var(--navy); border-radius: var(--r-md); padding: 28px 30px;
}
.ind-item { display: flex; flex-direction: row; align-items: center; gap: 14px; color: #fff; }
.ind-item .ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(233,122,38,.18); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.ind-item .ic svg { width: 23px; height: 23px; }
.ind-item b { font-size: 1.05rem; font-weight: 600; }

/* ============================================================
   Employers / Seekers split sections
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; position: relative; }
.split__media video { width: 100%; height: 100%; object-fit: cover; }
.split__media.square { aspect-ratio: 1/1; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 34px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.05rem; color: var(--body); }
.feature-list .check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.feature-list .check svg { width: 15px; height: 15px; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 34px; }
.spec-tag { background: var(--soft); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 9px 18px; font-weight: 600; font-size: .92rem; color: var(--ink); }
.section--navy .spec-tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }
.section--navy .split__intro { color: #c6cfdf; font-size: 1.1rem; }

/* steps */
.steps { display: grid; gap: 22px; margin: 30px 0 34px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step .num { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--orange); color: #fff; font-family: var(--serif); font-size: 1.4rem; display: grid; place-items: center; }
.section--navy .step .num { box-shadow: var(--shadow-orange); }
.step h4 { font-size: 1.15rem; margin: 4px 0 5px; }
.step p { margin: 0; font-size: 1rem; }

/* roles list (job seekers) */
.roles { display: grid; gap: 12px; }
.role-item { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 18px 22px; }
.role-item .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(233,122,38,.18); color: var(--orange); display: grid; place-items: center; flex: none; }
.role-item .ic svg { width: 22px; height: 22px; }
.role-item b { color: #fff; display: block; font-size: 1rem; }
.role-item span { font-size: .92rem; color: #9fb0c9; }

/* ============================================================
   Reviews
   ============================================================ */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 32px 30px; color: var(--body); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.section--video .rev-card { background: var(--white); color: var(--body); border-color: var(--line); }
#reviews.is-dissolve-in .rev-card { opacity: 1; transform: none; }
.rev-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rev-stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 18px; }
.rev-stars svg { width: 18px; height: 18px; }
.rev-card .quote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.55; color: var(--ink); margin: 0 0 26px; flex: 1; letter-spacing: -.005em; }
.rev-card .who { display: flex; align-items: center; gap: 14px; }
.rev-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1rem; flex: none; }
.rev-card .who b { color: var(--ink); display: block; font-size: 1rem; }
.rev-card .who span { font-size: .86rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.contact__info { display: grid; gap: 22px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--orange-l); color: var(--orange); display: grid; place-items: center; }
.contact-item .ic svg { width: 24px; height: 24px; }
.contact-item .k { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--body-soft); font-weight: 700; margin-bottom: 4px; }
.contact-item .v { color: var(--ink); font-size: 1.08rem; font-weight: 600; line-height: 1.5; }
.contact-item a.v:hover { color: var(--orange); }

.form-card { background: var(--white); color: var(--body); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-md); }
.iam-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px; }
.iam-opt { position: relative; cursor: pointer; }
.iam-opt input { position: absolute; opacity: 0; pointer-events: none; }
.iam-opt .box {
  position: relative;
  border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 18px; height: 100%;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  transition: all .25s var(--ease); background: var(--soft-2);
}
.iam-opt .box .ic {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: var(--soft); color: var(--body-soft);
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.iam-opt .box .ic svg { width: 22px; height: 22px; }
.iam-opt .box .txt { font-weight: 600; color: var(--ink); font-size: .95rem; line-height: 1.4; }
.iam-opt .box .tick {
  position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: #fff; display: grid; place-items: center;
  transform: scale(0) rotate(-90deg); transition: transform .3s var(--ease);
}
.iam-opt .box .tick svg { width: 13px; height: 13px; }
.iam-opt:hover .box { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.iam-opt:active .box { transform: translateY(0) scale(.98); }
.iam-opt input:checked + .box { border-color: var(--orange); background: var(--orange-l); box-shadow: 0 6px 22px rgba(233,122,38,.16); }
.iam-opt input:checked + .box .ic { background: var(--orange); color: #fff; }
.iam-opt input:checked + .box .tick { transform: scale(1) rotate(0deg); }
.iam-opt input:focus-visible + .box { outline: 2px solid var(--navy); outline-offset: 2px; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line-cool); border-radius: var(--r-sm);
  background: #fff; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(233,122,38,.14); }
.field [data-role-only], .field-grid [data-role-only] { }
.form-success {
  display: none; align-items: center; gap: 12px; background: var(--orange-l); color: var(--orange-d);
  border: 1px solid rgba(233,122,38,.3); border-radius: var(--r-md); padding: 16px 18px; font-weight: 600; margin-bottom: 18px;
}
.form-success.show { display: flex; }
@media (prefers-reduced-motion: no-preference) { .form-success.show { animation: panelIn .4s var(--ease); } }
.form-success svg { width: 22px; height: 22px; flex: none; }

/* hide fields irrelevant to current role */
[data-when]{ transition: opacity .3s var(--ease); }
.role-company [data-when="worker"] { display: none; }
.role-worker [data-when="company"] { display: none; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-2); color: #9fb0c9; padding: clamp(56px, 7vw, 84px) 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.4fr; gap: 48px; }
.footer__logo { background: #fff; padding: 12px 16px; border-radius: var(--r-md); display: inline-block; margin-bottom: 22px; }
.footer__logo img { height: 50px; }
.footer__tag { max-width: 30em; line-height: 1.6; }
.footer h4 { color: #fff; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 20px; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer__links a:hover { color: var(--orange); }
.footer__contact { display: grid; gap: 14px; }
.footer__contact a:hover { color: var(--orange); }
.footer__contact .row { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact .row svg { width: 19px; height: 19px; color: var(--orange); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .9rem; }

/* ============================================================
   Section dissolve — dark overlay fades out as section enters viewport
   ============================================================ */
.sec-dissolve {
  position: absolute; inset: 0; z-index: 5;
  background: var(--navy-2);
  transition: opacity 1s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.is-dissolve-in .sec-dissolve { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .sec-dissolve { display: none; }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); 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; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* hero entrance — opacity ALWAYS 1 (never invisible in any context); only a transform slide under motion-OK */
.hero .anim { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero .anim { animation: heroIn .8s var(--ease) both; }
  .hero .anim.a1 { animation-delay: .12s; }
  .hero .anim.a2 { animation-delay: .26s; }
  .hero .anim.a3 { animation-delay: .40s; }
  .hero .anim.a4 { animation-delay: .54s; }
}
@keyframes heroIn { from { transform: translateY(26px); } to { transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .anim { opacity: 1; transform: none; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero .anim { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .rev-grid { grid-template-columns: 1fr; }
}
/* collapse nav into hamburger early so the wordmark has room; switch to sticky so it never overlaps content */
@media (max-width: 1080px) {
  .nav { position: sticky; top: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); box-shadow: 0 1px 8px rgba(21,35,63,.08); border-bottom-color: var(--line); }
  .nav__wordmark { color: var(--orange); }
  .nav__burger { color: var(--orange); }
  .nav__links { display: none; }
  .nav__right .langtog, .nav__right .btn { display: none; }
  .nav__burger { display: inline-flex; }
}
@media (max-width: 900px) {
  .about__grid, .split, .contact__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16/10; max-height: 420px; }
  .split--rev .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav__inner { padding: 13px 20px; }
  .section { padding-top: 96px; }
  .hero__inner { padding-top: 32px; }
  .svc-grid, .rev-grid, .field-grid, .iam-toggle, .footer__grid { grid-template-columns: 1fr; }
  .ind-box { grid-template-columns: repeat(2, 1fr); padding: 22px 20px; }
  .svc-card { background: rgba(14,26,49,.38); border-color: rgba(255,255,255,.15); color: #c6cfdf; backdrop-filter: blur(8px); }
  .svc-card:hover { border-color: rgba(255,255,255,.3); }
  .svc-card h3 { color: #fff; }
  .svc-card .ic { background: rgba(233,122,38,.22); }
  .hero__stats { gap: 28px; }
  .hero__stat .n { font-size: 2.1rem; }
  .hero__btns { width: 100%; }
  .hero__btns .btn { flex: 1; }
  .welcome__btns .btn { width: 100%; }
  .welcome__inner { padding: 28px 22px; }
  .welcome__logo { height: 72px; }
  .tabs { width: 100%; }
  .tab { flex: 1; padding: 12px 10px; }
  .iam-opt .box { flex-direction: row; align-items: center; gap: 14px; padding: 14px 46px 14px 16px; }
  .iam-opt .box .ic { width: 40px; height: 40px; }
  .iam-opt .box .tick { top: 50%; margin-top: -12px; }
  .form-card { padding: 24px 18px; }
  .contact-item .ic { width: 44px; height: 44px; }
  .contact-item .ic svg { width: 21px; height: 21px; }
  .field { margin-bottom: 8px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__logo img { height: 42px; }
  .section-title { max-width: none; }
  .btn { padding: 15px 22px; }
}
@media (max-width: 360px) {
  .ind-box { grid-template-columns: 1fr; }
}