/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

/* ── Shared container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */

/* ── Top utility bar ── */
.top-bar {
  background: #3d1a2d;
  color: #df9fc1;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.top-bar .container {
  padding: 6px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #df9fc1;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-bar a:hover {
  opacity: 0.8;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-links svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.top-bar-sep {
  width: 1px;
  height: 13px;
  background: rgba(223, 159, 193, 0.45);
}

.region-link::after {
  content: '›';
  margin-left: 4px;
  font-size: 0.85rem;
}

/* ── Main nav row ── */
.main-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.main-nav .container {
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 60px;
}

/* Logo (shared between header & footer) */
.logo {
  font-size: 1.35rem;
  font-weight: 600;
  color: #3d1a2d;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo .separator {
  color: #480529;
  font-weight: 400;
  margin-right: 3px;
}

.logo span {
  font-weight: 400;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #374151;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #3d1a2d;
}

/* Angle-down icon */
.nav-links .chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #6b7280;
  transition: transform 0.25s ease, color 0.2s;
}

.nav-links a:hover .chevron {
  transform: rotate(180deg);
  color: #3d1a2d;
}

/* Search button */
.search-btn {
  margin-left: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.search-btn:hover {
  color: #3d1a2d;
}

.search-btn svg {
  width: 20px;
  height: 20px;
}

/* ── Alert banner ── */
.alert-banner {
  background: #321525;
  color: #ffffff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.alert-banner .container {
  padding: 8px 32px;
}

.alert-banner a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}

.alert-banner a:hover {
  text-decoration-color: #ffffff;
}


/* ══════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════ */

.hero-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #200e18;
}

/* Slides – crossfade */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(32, 14, 24, 0.88) 0%,
      rgba(32, 14, 24, 0.55) 45%,
      rgba(32, 14, 24, 0.15) 100%);
}

/* Text content */
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 64px 64px;
  z-index: 2;
  max-width: 680px;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  display: inline-block;
  background: #480529;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.slide-content h1 {
  color: #ffffff;
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}

.slide-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

.slide-cta {
  display: inline-block;
  background: #480529;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.slide-cta:hover {
  background: #5f0b39;
  transform: translateY(-1px);
}

/* Arrow controls — bottom right, side by side */
.slider-arrow {
  position: absolute;
  bottom: 24px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.slider-arrow svg {
  width: 14px;
  height: 14px;
}

.slider-prev {
  right: 64px;
}

.slider-next {
  right: 24px;
}

/* Dot indicators — right side, vertical */
.slider-dots {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.dot:hover {
  border-color: #ffffff;
  transform: scale(1.2);
}

.dot.active {
  background: #df9fc1;
  border-color: #df9fc1;
}


/* ══════════════════════════════════════
   TRUSTED BY
   ══════════════════════════════════════ */

.trusted-by {
  background: #ffffff;
  padding: 80px 0 56px;
  overflow: hidden;
}

.trusted-heading {
  text-align: center;
  color: #480529;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Marquee scroll */
.logo-marquee {
  width: 100%;
}

.logo-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}

.client-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 1;
}


/* ══════════════════════════════════════
   ABOUT US
   ══════════════════════════════════════ */

.about-us {
  background: #f7f5f6;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative vertical dashed lines pattern */
.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: repeating-linear-gradient(to right,
      transparent,
      transparent 39px,
      #ece0e7 39px,
      #ece0e7 40px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
}

.about-us .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
}

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

/* Left text column */
.about-text {
  border-left: 2px solid #480529;
  padding-left: 28px;
}

.about-label {
  display: inline-block;
  color: #480529;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-heading {
  color: #1a1a1a;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-cta {
  display: inline-block;
  background: #480529;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.about-cta:hover {
  background: #3a0421;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(72, 5, 41, 0.3);
}

/* Right visual column */
.about-visual {
  position: relative;
  min-height: 460px;
}

.about-image-wrap {
  width: 75%;
  margin-left: auto;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* Shared stat card styles */
.stat-card {
  position: absolute;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f5eaf0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  color: #480529;
}

.stat-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.stat-plus {
  color: #480529;
}

.stat-card .stat-label {
  display: block;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
}

/* Card positions */
.stat-countries {
  top: 0;
  left: 20%;
}

.stat-vacancies {
  top: 40%;
  right: -10px;
}

.stat-years {
  bottom: 0;
  right: 10%;
}


/* ══════════════════════════════════════
   HR SERVICES
   ══════════════════════════════════════ */

.hr-services {
  background: #ffffff;
  padding: 80px 0;
}

.hr-services .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
}

/* Header row */
.services-header {
  margin-bottom: 60px;
}

.services-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.services-header-text {
  max-width: 600px;
}

.services-label {
  display: inline-block;
  color: #480529;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services-divider {
  border: none;
  border-top: 1px solid #d1d5db;
  margin-bottom: 24px;
}

.services-heading {
  color: #1a1a1a;
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}

.services-desc {
  color: #353434;
  font-size: 0.76rem;
  line-height: 1.7;
}

.services-header-cta {

  flex-shrink: 0;
}

.services-cta {
  display: inline-block;
  background: #480529;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.services-cta:hover {
  background: #3a0421;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(72, 5, 41, 0.3);
}

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: #480529;
}

.service-body {
  border-left: 2px solid #480529;
  padding-left: 20px;
}

.service-title {
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card .service-desc {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #480529;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid #480529;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.service-link:hover {
  color: #3a0421;
  border-color: #3a0421;
}

.service-link .arrow {
  transition: transform 0.2s;
}

.service-link:hover .arrow {
  transform: translateX(3px);
}


/* ══════════════════════════════════════
   AREAS OF EXPERTISE
   ══════════════════════════════════════ */

.expertise {
  background: #f7f5f6;
  padding: 80px 0;
}

.expertise .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
}

.expertise-label {
  display: inline-block;
  color: #480529;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.expertise-divider {
  border: none;
  border-top: 1px solid #d1d5db;
  margin-bottom: 32px;
}

/* Content row */
.expertise-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.expertise-heading {
  color: #1a1a1a;
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.expertise-desc {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.expertise-cta {
  display: inline-block;
  background: #480529;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.expertise-cta:hover {
  background: #3a0421;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(72, 5, 41, 0.3);
}

.expertise-image-wrap {
  border-radius: 8px;
  overflow: hidden;
}

.expertise-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Expertise grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  transition: background 0.2s;
}

.expertise-item:hover {
  background: #f5f5f5;
}

.expertise-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f0dfe9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expertise-icon svg {
  width: 24px;
  height: 24px;
  color: #3d1a2d;
}

.expertise-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}


/* ══════════════════════════════════════
   SUBMIT A VACANCY
   ══════════════════════════════════════ */

.vacancy-section {
  background: #3d1a2d;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative vertical lines */
.vacancy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(to right,
      transparent,
      transparent 59px,
      rgba(255, 255, 255, 0.06) 59px,
      rgba(255, 255, 255, 0.06) 60px);
  pointer-events: none;
  z-index: 0;
}

.vacancy-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 1;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left text */
.vacancy-label {
  display: inline-block;
  color: #df9fc1;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vacancy-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 28px;
}

.vacancy-heading {
  color: #ffffff;
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.vacancy-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.7;
}

.vacancy-services {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1.5rem;
}

.vacancy-services li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.5;
}

.vacancy-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: .5rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

/* Permit tiles (expertise-grid style, dark background) */
.permit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .permit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.permit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.permit-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.permit-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f0dfe9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.permit-icon svg {
  width: 24px;
  height: 24px;
  color: #3d1a2d;
}

.permit-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

/* Right form card */
.vacancy-form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.vacancy-form-title {
  color: #1a1a1a;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.vacancy-form-subtitle {
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #1a1a1a;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #480529;
  box-shadow: 0 0 0 3px rgba(72, 5, 41, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  appearance: auto;
  cursor: pointer;
}

.vacancy-submit {
  display: block;
  width: 100%;
  background: #480529;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.vacancy-submit:hover {
  background: #3a0421;
  transform: translateY(-1px);
}


/* ══════════════════════════════════════
   BENCHMARK HR SALARIES
   ══════════════════════════════════════ */

.benchmark {
  background: #f7f5f6;
  padding: 80px 0;
}

.benchmark .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

/* Mint panel — begins at the horizontal middle of the back cover */
.benchmark-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  right: -64px;
  bottom: 40px;
  left: 150px;
  background: #f5e8ef;
  border-radius: 14px;
  z-index: 0;
}

/* ---- Covers ---- */
.benchmark-covers {
  position: relative;
  height: 440px;
  z-index: 1;
}

.cover {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  background: linear-gradient(160deg, #4a2c3c 0%, #301624 100%);
}

.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(23, 10, 17, 0.15) 0%,
      rgba(23, 10, 17, 0.10) 45%,
      rgba(23, 10, 17, 0.82) 100%);
}

.cover-brand {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.cover-brand .bar {
  color: #df9fc1;
  margin-right: 3px;
}

.cover-brand .jones {
  color: #df9fc1;
  font-weight: 500;
}

.cover-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #ffffff;
}

.cover-caption .title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}

.cover-caption .sub {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

.cover-caption .year {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 8px;
}

.cover-back {
  width: 230px;
  height: 330px;
  top: 0;
  left: 20px;
  z-index: 1;
}

.cover-front {
  width: 225px;
  height: 315px;
  top: 95px;
  left: 215px;
  z-index: 2;
}

/* ---- Text panel ---- */
.benchmark-panel {
  position: relative;
  z-index: 1;
  padding: 40px 44px;
}

.benchmark-text {
  border-left: 2px solid #480529;
  padding-left: 26px;
}

.benchmark-heading {
  color: #301624;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.benchmark-desc {
  color: #5a4a53;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.benchmark-cta {
  display: inline-block;
  background: #480529;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.benchmark-cta:hover {
  background: #3a0421;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(72, 5, 41, 0.3);
}



/* ══════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════ */

.faq-section {
  background: #ffffff;
  padding: 80px 0;
}

.faq-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
}

.faq-label {
  display: inline-block;
  color: #480529;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-divider {
  border: none;
  border-top: 1px solid #d1d5db;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: flex-start;
}

.faq-intro p {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-left: 3px solid #480529;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #888;
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

.faq-answer p {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.7;
}


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */

.site-footer {
  background: #2d2d2d;
  color: #d1d5db;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Footer top — logo + socials */
.footer-top {
  padding: 40px 32px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-size: 1.65rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-logo .separator {
  color: #df9fc1;
  font-weight: 400;
  margin-right: 4px;
}

.footer-logo span {
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
}

/* Footer columns */
.footer-columns {
  padding: 36px 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: #df9fc1;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Footer bottom — SR Group + copyright */
.footer-bottom {
  padding: 24px 32px;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-sr-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sr-logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.sr-logo .separator {
  color: #df9fc1;
  font-weight: 400;
  margin-right: 3px;
}

.sr-logo span {
  font-weight: 400;
}

.sr-label {
  color: #df9fc1;
  font-size: 0.78rem;
  font-weight: 500;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer-copyright a {
  color: #9ca3af;
  text-decoration: underline;
  text-decoration-color: rgba(156, 163, 175, 0.4);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.footer-copyright a:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
}


/* ══════════════════════════════════════
   ABOUT PAGE — TOKENS & SHARED
   ══════════════════════════════════════ */

:root {
  --ink: #201018;
  --ink-soft: #6F5563;
  --paper: #FFFFFF;
  --surface: #efefef;
  --line: #E2D3DB;
  --accent: #480529;

  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body-serif: "Source Serif 4", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1140px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --block: clamp(3.5rem, 9vw, 7rem);
}

/* Wrapper used by about-page sections (distinct from .container) */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Small uppercase label used above headings */
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}


/* ══════════════════════════════════════
   ABOUT PAGE — PAGE TITLE HEADER
   ══════════════════════════════════════ */

.page-title {
  background: #efefef;
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem 2rem;
}

.page-title h1 {
  font-weight: 600;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 20ch;
}

.page-title__lede {
  margin: 1.25rem 0 0;
  font-size: 13px;
  font-family: 'open sans', 'Inter', sans-serif;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* Breadcrumbs */
.crumbs {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
}

.crumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.crumbs a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.crumbs span {
  padding-inline: .5rem;
  opacity: .5;
}


/* ══════════════════════════════════════
   ABOUT PAGE — SPLIT (IMAGE BESIDE TEXT)
   ══════════════════════════════════════ */

.split {
  padding-block: var(--block);
}

.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split--flip .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split--flip .split__media::after {
  left: -1.5rem;
  right: 0;
}

.split__caption {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--ink-soft);
  margin: 1.5rem 0 0;
}

.split__body h2 {
  font-weight: 600;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
}

.split__body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 13px;
  font-family: 'open sans', 'Inter', sans-serif;
}

.split__body p:last-of-type {
  margin-bottom: 1.75rem;
}

/* Read-more expandable */
.split__more {
  display: none;
}

.split__more.open {
  display: inline;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--accent, #480529);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  border-bottom: 1.5px solid var(--accent, #480529);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.read-more-btn:hover {
  color: #3a0421;
  border-color: #3a0421;
}

.link-cta {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--accent);
  transition: color .18s ease, gap .18s ease;
}

.link-cta:hover {
  color: var(--accent);
}

.link-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}


/* ══════════════════════════════════════
   ABOUT PAGE — RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 820px) {
  .split__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .split__media,
  .split--flip .split__media {
    order: 0;
  }

  .split__media::after {
    right: 0;
  }

  .split--flip .split__media::after {
    left: 0;
  }
}


/* ══════════════════════════════════════
   ABOUT PAGE — PILLARS / TABS
   ══════════════════════════════════════ */

.pillars {
  padding-block: var(--block);
  background-color: #efefef;
}

.pillars__head h2 {
  font-weight: 600;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 2.5rem;
  max-width: 20ch;
}

/* --- Tab strip --- */
.tabs {
  display: flex;
  gap: .25rem;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: 0 0 auto;
  appearance: none;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: .9rem 1.15rem;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s ease, border-color .18s ease;
}

.tab:hover {
  color: var(--ink);
}

.tab[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* --- Panels --- */
.panel {
  display: none;
  padding-top: 2.75rem;
}

.panel.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  animation: panelFade .28s ease both;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.panel__label {
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
}

.panel__body p {
  margin: 0 0 1rem;
  color: #000;
  max-width: 60ch;
  font-size: 13px;
  line-height: 1.5;
}

.panel__body p:last-child {
  margin-bottom: 0;
}

.panel__body .lead {
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  color: var(--ink);
  line-height: 1.4;
}

/* Value / objective items */
.items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.items h3 {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 .25rem;
}

.items p {
  margin: 0;
}

.items--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 2.5rem;
}

.items li {
  padding-top: 0.25rem;
  line-height: 1.3;
  font-size: 13px;
}

@media (max-width: 820px) {
  .panel.is-active {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .items--split {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════
   SERVICES PAGE — sticky index + list
   ══════════════════════════════════════ */

.services {
  padding-block: var(--block);
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

/* --- left: sticky index --- */
.index {
  position: sticky;
  top: 2rem;
}

.index__title {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.index ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: svc;
}

.index a {
  counter-increment: svc;
  display: flex;
  align-items: baseline;
  gap: .85rem;
  padding: .5rem 0;
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.3;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s ease;
}

.index a::before {
  content: counter(svc, decimal-leading-zero);
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--accent);
  opacity: .55;
  transition: opacity .15s ease;
}

.index a:hover {
  color: var(--ink);
}

.index a:hover::before {
  opacity: 1;
}

.index a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.index__cta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.index__cta p {
  margin: 0 0 .9rem;
  font-size: .92rem;
  color: var(--ink-soft);
}

/* --- right: service list --- */
.list {
  min-width: 0;
}

.list__intro {
  margin: 0 0 clamp(2rem, 5vw, 3.25rem);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.45;
  max-width: 56ch;
}

.service {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2.5rem clamp(3.75rem, 8vw, 6rem);
  scroll-margin-top: 2rem;
}

/* big editorial numeral */
.service__no {
  position: absolute;
  left: 0;
  top: 2.15rem;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--accent-ghost, #F1E3EB);
  transition: color .2s ease;
}

.service:hover .service__no {
  color: var(--accent);
}

.service__tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .6rem;
}

.service h2 {
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 .9rem;
  max-width: 24ch;
}

.service p {
  margin: 0 0 1rem;
  color: #000;
  max-width: 62ch;
  font-size: 13px;
}

.service p:last-child {
  margin-bottom: 0;
}

/* reasons list inside Job Evaluations */
.reasons {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}

.reasons li {
  position: relative;
  padding-left: 1.5rem;
  color: #000;
  max-width: 62ch;
  font-size: 13px;
}

.reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: .6rem;
  height: 2px;
  background: var(--accent);
}

/* ══════════════════════════════════════
   CLOSING NOTE (dark CTA)
   ══════════════════════════════════════ */

.note {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--block);
}

.note__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.note .eyebrow {
  color: #D48FB8;
}

.note h2 {
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 16ch;
}

.note p {
  margin: 0 0 1.75rem;
  color: #D0B9C6;
  max-width: 46ch;
}

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  padding: .9rem 1.75rem;
  transition: background .18s ease, color .18s ease;
}

.btn:hover {
  background: #D48FB8;
}

.btn:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

/* --- Services responsive --- */
@media (max-width: 900px) {
  .services__layout {
    grid-template-columns: 1fr;
  }

  .index {
    position: static;
  }

  .index ol {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0 1.5rem;
  }

  .index__cta {
    display: none;
  }

  .note__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .service {
    padding-left: 0;
    padding-top: 2rem;
  }

  .service__no {
    position: static;
    display: block;
    margin-bottom: .75rem;
    font-size: 1.6rem;
  }
}


/* ══════════════════════════════════════
   CONTACT PAGE — details + form
   ══════════════════════════════════════ */

.contact {
  padding-block: var(--block);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

/* --- left: details --- */
.contact__head h2 {
  font-weight: 800;
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.contact__head p {
  margin: 0 0 2.25rem;
  color: var(--ink-soft);
  max-width: 38ch;
  font-size: 13px;
}

.details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.details li {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.details .label {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .3rem;
}

.details a,
.details span.value {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
}

.details a:hover {
  color: var(--accent);
}

.details a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.details .sub {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: .15rem;
}

/* --- right: form card --- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
}

.form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: clamp(4rem, 30%, 9rem);
  height: 3px;
  background: var(--accent);
}

.field {
  margin-bottom: 1.4rem;
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-size: 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: .8rem .9rem;
  transition: border-color .15s ease;
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--ink-soft);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.field ::placeholder {
  color: #000000;
  opacity: 1;
  font-size: 12px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: .25rem;
}

.form-foot small {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--ink-soft);
  max-width: 22ch;
  line-height: 1.5;
}

/* Submit button (accent bg) */
.form-foot .btn {
  appearance: none;
  border: none;
  cursor: pointer;
  color: var(--paper);
  background: var(--accent);
}

.form-foot .btn:hover {
  background: #3a0421;
}

.form-foot .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --- Contact responsive --- */
@media (max-width: 820px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    gap: 1rem;
  }

  .form-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════
   HAMBURGER (hidden by default, shown on mobile)
   ══════════════════════════════════════ */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ══════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
   ══════════════════════════════════════ */

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {

  .about-us .container,
  .hr-services .container,
  .expertise .container,
  .vacancy-section .container,
  .benchmark .container,
  .faq-section .container {
    padding: 0 32px;
  }

  .about-grid,
  .expertise-row,
  .vacancy-grid,
  .faq-grid,
  .benchmark-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .permit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .benchmark-grid::before {
    left: -20px;
    right: -20px;
    top: 20px;
    bottom: 20px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-visual {
    min-height: auto;
  }

  .about-image-wrap {
    width: 100%;
  }

  .about-image {
    height: 320px;
  }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {

  .container {
    padding: 0 16px;
  }

  /* Top bar: center links */
  .top-bar .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    padding: 8px 16px;
  }

  .region-link {
    display: none;
  }

  /* Hamburger + mobile nav */
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: relative;
    z-index: 100;
  }

  .main-nav .container {
    height: 56px;
    padding: 0 16px;
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 8px 16px 12px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid #f3f4f6;
  }

  .search-btn {
    margin-left: 12px;
  }

  /* Alert banner */
  .alert-banner .container {
    padding: 8px 16px;
    font-size: 0.72rem;
  }

  /* Hero slider */
  .hero-slider {
    height: 420px;
  }

  .slide-content {
    padding: 24px 16px 60px;
    max-width: 100%;
  }

  .slide-content h1 {
    font-size: 1.35rem;
  }

  .slide-content p {
    font-size: 0.82rem;
    margin-bottom: 16px;
  }

  .slide-cta {
    font-size: 0.78rem;
    padding: 10px 22px;
  }

  .slider-prev {
    right: 56px;
  }

  .slider-next {
    right: 16px;
  }

  .slider-dots {
    right: 16px;
  }

  /* Trusted By */
  .trusted-by {
    padding: 48px 0 36px;
  }

  .logo-track {
    gap: 20px;
  }

  .client-logo {
    height: 38px;
  }

  /* About Us */
  .about-us {
    padding: 48px 0;
  }

  .about-us .container {
    padding: 0 16px;
  }

  .about-visual {
    min-height: auto;
  }

  .about-image-wrap {
    width: 100%;
  }

  .about-image {
    height: 260px;
  }

  .about-text {
    padding-left: 16px;
  }

  /* Section headings scale down */
  .about-heading,
  .services-heading,
  .expertise-heading,
  .vacancy-heading,
  .benchmark-heading {
    font-size: 1.45rem;
  }

  /* HR Services */
  .hr-services {
    padding: 48px 0;
  }

  .hr-services .container {
    padding: 0 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Expertise */
  .expertise {
    padding: 48px 0;
  }

  .expertise .container {
    padding: 0 16px;
  }

  .expertise-image {
    height: 240px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  /* Vacancy / Immigration */
  .vacancy-section {
    padding: 48px 0;
  }

  .vacancy-section .container {
    padding: 0 16px;
  }

  .vacancy-form-card {
    padding: 24px 20px;
  }

  .permit-grid {
    grid-template-columns: 1fr;
  }

  /* Benchmark */
  .benchmark {
    padding: 48px 0;
  }

  .benchmark .container {
    padding: 0 16px;
  }

  .benchmark-grid::before {
    display: none;
  }

  .benchmark-covers {
    height: 300px;
  }

  .cover-back {
    width: 160px;
    height: 230px;
    left: 0;
  }

  .cover-front {
    width: 155px;
    height: 215px;
    top: 65px;
    left: 130px;
  }

  .benchmark-panel {
    padding: 20px 0 0;
  }

  /* FAQ */
  .faq-section {
    padding: 48px 0;
  }

  .faq-section .container {
    padding: 0 16px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.84rem;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 32px 16px 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    padding: 28px 16px 32px;
    gap: 28px;
  }

  .footer-bottom {
    padding: 20px 16px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
  }
}

/* ── Small phones (≤400px) ── */
@media (max-width: 400px) {
  .hero-slider {
    height: 380px;
  }

  .slide-content h1 {
    font-size: 1.15rem;
  }

  .slide-tag {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .benchmark-covers {
    height: 240px;
  }

  .cover-back {
    width: 130px;
    height: 190px;
  }

  .cover-front {
    width: 125px;
    height: 175px;
    top: 50px;
    left: 100px;
  }

  .about-heading,
  .services-heading,
  .expertise-heading,
  .vacancy-heading,
  .benchmark-heading {
    font-size: 1.25rem;
  }
}

