/* ================================================================
   ТОВ «Хьюмен Стафф» — Professional Corporate Stylesheet v2
   Palette: Deep Charcoal · Warm White · Gold Accent
   ================================================================ */

/* ── Google Font ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Variables ───────────────────────────────────────────── */
:root {
  /* Core palette */
  --coal:       #0D0E12;
  --coal-2:     #13141A;
  --coal-3:     #1C1E27;
  --coal-4:     #252836;
  --coal-5:     #2E3143;

  --gold:       #C9A96E;
  --gold-light: #E0C590;
  --gold-dark:  #A8844F;
  --gold-glow:  rgba(201,169,110,.15);

  --white:      #FFFFFF;
  --off-white:  #F5F4F0;
  --warm-gray:  #EAE8E2;
  --mid:        #9A9BAD;
  --mid-2:      #6E6F82;

  --blue:       #3B6FD8;
  --success:    #4CAF7D;

  /* Typography */
  --font:       'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing & Shape */
  --r-xs: 4px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;

  /* Shadows */
  --s-sm:   0 2px 8px rgba(0,0,0,.25);
  --s:      0 4px 24px rgba(0,0,0,.35);
  --s-lg:   0 12px 48px rgba(0,0,0,.45);
  --s-gold: 0 8px 32px rgba(201,169,110,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--coal);
  color: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 112px 0; }

/* ── Typography helpers ──────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.section-title span { color: var(--gold); }

.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 540px;
}

.section-header { margin-bottom: 72px; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Divider line ────────────────────────────────────────────── */
.gold-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 0 auto 48px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--r);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--coal);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 60%);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--s-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(201,169,110,.5);
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--off-white);
  border: 1.5px solid rgba(255,255,255,.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.btn-lg { padding: 16px 36px; font-size: .95rem; border-radius: var(--r-lg); }
.btn-sm { padding: 9px 20px; font-size: .83rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,14,18,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,.12);
  padding: 12px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
  filter: drop-shadow(0 2px 12px rgba(201,169,110,.35));
  /* clip the dark square background — show only the circle */
  overflow: hidden;
  display: block;
  background: transparent;
}
.nav-logo:hover .logo-img {
  filter: drop-shadow(0 4px 20px rgba(201,169,110,.6));
  transform: scale(1.07);
}
/* hide duplicate text in navbar — logo already contains «HumanStaff» */
.logo-text-nav {
  display: none;
}
.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.2;
  display: none;
}
.logo-name span { display: block; font-size: .65rem; font-weight: 500; color: var(--mid); letter-spacing: .06em; text-transform: uppercase; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 14px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--mid);
  border-radius: var(--r-sm);
  transition: var(--transition);
  letter-spacing: .01em;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }

/* Nav CTA */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta-ghost {
  padding: 9px 18px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  transition: var(--transition);
}
.nav-cta-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.nav-cta-gold {
  padding: 9px 20px;
  font-size: .85rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--coal);
  border-radius: var(--r);
  transition: var(--transition);
}
.nav-cta-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--s-gold); }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .03em;
  white-space: nowrap;
}
.lang-switcher:hover {
  color: var(--gold);
  border-color: rgba(201,169,110,.4);
  background: rgba(201,169,110,.07);
}
.lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.lang-label { font-size: .8rem; font-weight: 800; }
.lang-arrow { font-size: .6rem; opacity: .6; transition: transform .3s; }
.lang-switcher:hover .lang-arrow { transform: rotate(180deg); opacity: 1; }


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--coal);
}

/* Grid texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 80%);
}

/* Glow orbs */
.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,216,.07) 0%, transparent 70%);
  bottom: 60px;
  left: -80px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.25);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-badge i { font-size: .7rem; }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 28px;
  max-width: 780px;
}
.hero-title .gold { color: var(--gold); }
.hero-title .hero-white { color: var(--white); }
.hero-title .line-2 .gold { color: var(--gold); font-style: italic; }
.hero-title .line-2 {
  color: rgba(255,255,255,.35);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 700;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.07);
  width: fit-content;
}
.stat-block {
  padding: 0 40px 0 0;
  margin: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-block:first-child { padding-left: 0; }
.stat-block:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-val {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1;
}
.stat-val span { color: var(--gold); }
.stat-desc {
  font-size: .78rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: .02em;
  margin-top: 4px;
}

/* Hero scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid-2);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--mid-2), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: .3; transform: scaleY(.6); }
}

/* ── Clients / Trust strip ───────────────────────────────────── */
.trust-strip {
  background: var(--coal-2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-logo-item {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.trust-logo-item:hover { color: rgba(255,255,255,.45); }

/* ── About ───────────────────────────────────────────────────── */
.about-section { background: var(--coal); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Visual column */
.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--coal-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--coal-3) 0%, var(--coal-4) 100%);
}
.about-img-placeholder::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,.06), transparent 70%);
  border-radius: 50%;
}

.about-img-icon {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  background: var(--gold-glow);
  border: 1.5px solid rgba(201,169,110,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--gold);
}
/* Logo in about visual */
.about-logo-img {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  filter: drop-shadow(0 6px 28px rgba(201,169,110,.45));
  overflow: hidden;
}
.about-img-placeholder p {
  position: relative;
  z-index: 1;
  font-size: .85rem;
  color: var(--mid-2);
}

/* Floating metric cards */
.about-metric {
  position: absolute;
  background: rgba(19,20,26,.92);
  border: 1px solid rgba(201,169,110,.18);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
  text-align: center;
  min-width: 100px;
}
.about-metric-icon {
  font-size: .9rem;
  color: var(--gold);
  margin-bottom: 4px;
  opacity: .85;
}
.about-metric-1 { bottom: 28px; left: -38px; }
.about-metric-2 { top: 36px;    right: -38px; }
.about-metric-3 { bottom: 28px; right: -38px; }
.about-metric-4 { top: 36px;    left: -38px; }
.about-metric-5 {
  top: 50%;
  right: -38px;
  transform: translateY(-50%);
}
.about-metric-6 {
  top: 50%;
  left: -38px;
  transform: translateY(-50%);
}
.about-metric strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.about-metric span {
  font-size: .68rem;
  color: var(--mid);
  margin-top: 2px;
  display: block;
  white-space: nowrap;
}

/* Text column */
.about-text .section-title { text-align: left; }
.about-body {
  font-size: .97rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-body strong { color: var(--off-white); font-weight: 700; }

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 40px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.check-item::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--gold-glow);
  border: 1.5px solid var(--gold);
  border-radius: var(--r-xs);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Services / Sectors ──────────────────────────────────────── */
.services-section { background: var(--coal-2); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

.sector-card {
  background: var(--coal-2);
  padding: 40px 36px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.sector-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.sector-card:hover { background: var(--coal-3); }
.sector-card:hover::after { transform: scaleX(1); }

.sector-num {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--mid-2);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sector-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.sector-card:hover .sector-icon {
  background: var(--gold);
  color: var(--coal);
  border-color: var(--gold);
}

.sector-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.sector-card p {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 22px;
}

.sector-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.sector-card:hover .sector-link { opacity: 1; transform: translateX(0); }

/* ── Benefits ────────────────────────────────────────────────── */
.benefits-section { background: var(--coal); }

.benefits-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.benefits-intro .section-title { text-align: left; }
.benefits-intro .section-sub { margin: 0; }
.benefits-intro .btn { margin-top: 40px; }

.benefits-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-card {
  background: var(--coal-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.benefit-card:hover {
  border-color: rgba(201,169,110,.25);
  background: var(--coal-4);
  transform: translateY(-4px);
  box-shadow: var(--s);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: var(--gold);
  color: var(--coal);
  border-color: var(--gold);
}

.benefit-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.benefit-card p {
  font-size: .83rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ── Reviews Ticker ──────────────────────────────────────────── */
.reviews-section {
  background: var(--coal-2);
  overflow: hidden;
  padding: 96px 0;
}

.ticker-outer {
  overflow: hidden;
  position: relative;
  margin: 0 -32px;
  padding: 8px 0;
}
.ticker-outer::before,
.ticker-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.ticker-outer::before { left: 0; background: linear-gradient(to right, var(--coal-2), transparent); }
.ticker-outer::after  { right: 0; background: linear-gradient(to left, var(--coal-2), transparent); }

.ticker-track {
  display: flex;
  gap: 20px;
  animation: tickerRun 42s linear infinite;
  width: max-content;
  padding: 8px 32px;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes tickerRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-tile {
  background: var(--coal-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  width: 380px;
  flex-shrink: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-tile:hover {
  border-color: rgba(201,169,110,.25);
  transform: translateY(-4px);
  box-shadow: var(--s-lg);
}
.review-tile-story { width: 420px; }

/* Tag + stars row */
.review-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review-story-tag {
  display: inline-block;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.2);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Journey path */
.review-journey {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-sm);
}
.journey-before {
  font-size: .78rem;
  color: var(--mid-2);
  display: flex;
  align-items: center;
  gap: 5px;
}
.journey-before i { color: var(--mid-2); font-size: .65rem; }
.journey-arrow { font-size: .85rem; color: var(--gold); font-weight: 700; }
.journey-after {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
}
.journey-salary {
  margin-left: auto;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(201,169,110,.1);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.review-stars i { font-size: .78rem; color: var(--gold); }

.review-quote { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 20px; font-style: italic; }

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.review-ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1.5px solid rgba(201,169,110,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name { font-size: .87rem; font-weight: 700; color: var(--white); }
.review-role { font-size: .75rem; color: var(--mid); }

/* ── Contact / Forms ─────────────────────────────────────────── */
.forms-section { background: var(--coal); }

.forms-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--coal-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 6px;
  width: fit-content;
  margin: 0 auto 64px;
}
.tab-btn {
  padding: 12px 28px;
  border: none;
  background: transparent;
  color: var(--mid);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tab-btn.active {
  background: var(--gold);
  color: var(--coal);
}
.tab-btn:not(.active):hover { color: var(--white); }

.form-panel { display: none; }
.form-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

/* Form info side */
.form-info-side .eyebrow { display: flex; }
.form-info-side .section-title { text-align: left; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.form-info-side > p { font-size: .95rem; color: var(--mid); line-height: 1.8; margin-bottom: 36px; }

.form-steps { display: flex; flex-direction: column; gap: 18px; }
.form-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1.5px solid rgba(201,169,110,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.form-step p { font-size: .88rem; color: var(--mid); line-height: 1.6; }
.form-step strong { color: var(--off-white); font-weight: 700; }

/* Biz perks */
.biz-perks { display: flex; flex-direction: column; gap: 16px; }
.biz-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.biz-perk-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .95rem;
  flex-shrink: 0;
}
.biz-perk h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.biz-perk p  { font-size: .82rem; color: var(--mid); }

/* Form card */
.form-card {
  background: var(--coal-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 44px;
}
.form-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  letter-spacing: -.02em;
}

/* Field groups */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--mid); }

.field input,
.field select,
.field textarea {
  background: var(--coal-4);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: .92rem;
  color: var(--off-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--mid-2); }
.field select option { background: var(--coal-3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--coal-5);
  box-shadow: 0 0 0 3px rgba(201,169,110,.1);
}
.field textarea { resize: vertical; min-height: 110px; }

/* File drop */
.file-drop {
  position: relative;
  border: 1.5px dashed rgba(201,169,110,.25);
  border-radius: var(--r);
  background: var(--coal-4);
  cursor: pointer;
  transition: var(--transition);
}
.file-drop:hover { border-color: var(--gold); background: rgba(201,169,110,.04); }
.file-drop input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  padding: 0;
}
.file-drop-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  gap: 6px;
  pointer-events: none;
}
.file-drop-ui i { font-size: 1.6rem; color: var(--gold); opacity: .6; }
.file-drop-ui span { font-size: .88rem; color: var(--mid); }
.file-drop-ui span u { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,.5); }
.file-drop-ui small { font-size: .74rem; color: var(--mid-2); }
.file-chosen { font-size: .8rem; color: var(--success); font-weight: 600; margin-top: 5px; display: none; }
.file-chosen.show { display: block; }

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .77rem;
  color: var(--mid-2);
  margin-top: 14px;
}

/* ── Vacancies page ──────────────────────────────────────────── */
.vac-section { background: var(--coal); padding: 80px 0 112px; }

.vac-filters {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-input {
  flex: 1;
  min-width: 200px;
  background: var(--coal-3);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 11px 16px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--off-white);
  outline: none;
  transition: var(--transition);
}
.filter-input::placeholder { color: var(--mid-2); }
.filter-input:focus { border-color: var(--gold); }

.filter-select {
  background: var(--coal-3);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 11px 16px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--off-white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}
.filter-select:focus { border-color: var(--gold); }
.filter-select option { background: var(--coal-3); }

.vac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vac-card {
  background: var(--coal-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.vac-card:hover {
  border-color: rgba(201,169,110,.25);
  transform: translateY(-4px);
  box-shadow: var(--s);
}

.vac-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.15);
  color: var(--gold);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.vac-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.vac-badge-hot { background: rgba(239,68,68,.12); color: #f87171; border: 1px solid rgba(239,68,68,.2); }
.vac-badge-new { background: rgba(76,175,125,.12); color: #6ee7b7; border: 1px solid rgba(76,175,125,.2); }

.vac-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.vac-company {
  font-size: .8rem;
  color: var(--mid-2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vac-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.vac-meta span {
  font-size: .77rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 5px;
}
.vac-meta i { color: var(--mid-2); font-size: .7rem; }

.vac-desc { font-size: .83rem; color: var(--mid); line-height: 1.65; margin-bottom: 24px; flex: 1; }
.vac-card .btn { margin-top: auto; width: fit-content; }

.vac-cta {
  margin-top: 64px;
  background: var(--coal-3);
  border: 1px solid rgba(201,169,110,.12);
  border-radius: var(--r-xl);
  padding: 60px;
  text-align: center;
}
.vac-cta h3 { font-size: 1.7rem; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -.03em; }
.vac-cta p  { color: var(--mid); margin-bottom: 28px; }

/* ── FAQ page ────────────────────────────────────────────────── */
.faq-section { background: var(--coal); padding: 80px 0 112px; }

.faq-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.faq-nav h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-2);
  margin-bottom: 12px;
}
.faq-cat-list { display: flex; flex-direction: column; gap: 2px; }
.faq-cat {
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: .87rem;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  text-align: left;
  font-family: var(--font);
}
.faq-cat:hover { color: var(--white); background: rgba(255,255,255,.05); }
.faq-cat.active { color: var(--gold); background: var(--gold-glow); }

.faq-items { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--coal-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,169,110,.2); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .93rem;
  font-weight: 700;
  color: var(--off-white);
  text-align: left;
  transition: var(--transition);
}
.faq-q:hover { color: var(--white); }
.faq-item.open .faq-q { color: var(--gold); }

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--mid);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-chevron { background: var(--gold-glow); color: var(--gold); transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { font-size: .88rem; color: var(--mid); line-height: 1.8; }
.faq-a strong { color: var(--off-white); }

.faq-contact-cta {
  margin-top: 56px;
  background: var(--coal-3);
  border: 1px solid rgba(201,169,110,.1);
  border-radius: var(--r-xl);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.faq-contact-cta h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.faq-contact-cta p  { color: var(--mid); font-size: .9rem; }
.faq-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--coal-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.page-hero p { font-size: 1.05rem; color: var(--mid); max-width: 480px; }

/* ── Success modal ───────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.modal.open { display: flex; }
.modal-box {
  background: var(--coal-3);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--s-lg);
  animation: popIn .3s ease;
}
@keyframes popIn {
  from { transform: scale(.85) translateY(20px); opacity: 0; }
  to   { transform: scale(1)   translateY(0);    opacity: 1; }
}
.modal-icon { font-size: 3.2rem; color: var(--gold); margin-bottom: 20px; }
.modal-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.modal-box p  { color: var(--mid); line-height: 1.7; margin-bottom: 28px; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--coal-2);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-about .footer-logo .logo-img {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(201,169,110,.35));
}
.footer-about p {
  font-size: .85rem;
  color: var(--mid-2);
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-row { display: flex; gap: 8px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: .85rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--coal); border-color: var(--gold); }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: .85rem;
  color: var(--mid-2);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--mid-2);
}
.footer-contact-list i { color: var(--gold); width: 14px; font-size: .8rem; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.2); }
.footer-bottom a { font-size: .78rem; color: rgba(255,255,255,.2); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Reveal animation ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-layout { grid-template-columns: 1fr; gap: 48px; }
  .benefits-cards { grid-template-columns: repeat(2, 1fr); }
  .benefits-intro { max-width: 600px; }
  .form-panel.active { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-layout { gap: 60px; }
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { padding: 60px 48px; }
  .about-metric-1 { left: 0;  bottom: 16px; }
  .about-metric-2 { right: 0; top: 16px; }
  .about-metric-3 { right: 0; bottom: 16px; }
  .about-metric-4 { left: 0;  top: 16px; }
  .about-metric-5 { right: 0; top: 50%; transform: translateY(-50%); }
  .about-metric-6 { left: 0;  top: 50%; transform: translateY(-50%); }
  .vac-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-nav { display: none; }
  .faq-contact-cta { flex-direction: column; text-align: center; }
  .faq-cta-btns { justify-content: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  /* Navbar mobile */
  .nav-links, .nav-actions {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: var(--coal-2);
    border-left: 1px solid rgba(255,255,255,.06);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 24px 32px;
    gap: 4px;
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links { padding-bottom: 0; }
  .nav-links.open, .nav-actions.open { right: 0; }
  .nav-links .nav-link { width: 100%; padding: 12px 16px; font-size: .95rem; }

  .nav-wrap { position: relative; z-index: 1001; }
  .nav-actions { display: none !important; }
  .nav-mobile-actions {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: var(--coal-2);
    border-left: 1px solid rgba(255,255,255,.06);
    flex-direction: column;
    align-items: stretch;
    padding: 320px 24px 32px;
    gap: 10px;
    transition: var(--transition);
    z-index: 998;
  }
  .nav-mobile-actions.open { right: 0; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 24px; padding-top: 36px; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 20px; margin-bottom: 0; padding-right: 0; margin-right: 0; }
  .stat-block:last-child { border-bottom: none; padding-bottom: 0; }

  .sectors-grid { grid-template-columns: 1fr; }
  .benefits-cards { grid-template-columns: 1fr; }
  .vac-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .vac-cta { padding: 40px 24px; }
  .faq-contact-cta { padding: 36px 24px; }
  .trust-inner { justify-content: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .forms-tabs { width: 100%; }
  .tab-btn { flex: 1; justify-content: center; padding: 10px 14px; font-size: .82rem; }
}
