:root {
  --charcoal: #171c22;
  --charcoal-deep: #0f1318;
  --charcoal-soft: #1e252d;
  --navy: #2a3544;
  --navy-deep: #141920;
  --navy-soft: #3d4a5c;
  --cream: #f4efe6;
  --cream-muted: #ebe4d6;
  --surface: #faf7f2;
  --surface-warm: #fdfaf6;
  --orange: #bfa47a;
  --orange-deep: #927e58;
  --bronze: #bfa47a;
  --bronze-bright: #d4bc92;
  --white: #f7f3ec;
  --ink: #1e2228;
  --ink-muted: #3d4550;
  --heading: #111111;
  --text-body: #424853;
  --slate: #5f6775;
  --text-on-dark: #ebe6dc;
  --text-on-dark-soft: #dfd6c9;
  --text-on-dark-muted: #aeb7c2;
  --text-heading-dark: #f2ebe2;
  --field-bg: #fdfaf6;
  --field-text: #1a1d22;
  --field-placeholder: rgba(61, 69, 80, 0.55);
  --focus-ring: #bfa47a;
  --line: rgba(174, 183, 194, 0.22);
  --line-strong: rgba(42, 53, 68, 0.14);
  --shadow: 0 20px 48px rgba(8, 10, 14, 0.11), 0 6px 18px rgba(8, 10, 14, 0.05);
  --shadow-card:
    0 6px 20px rgba(15, 19, 24, 0.05),
    0 1px 4px rgba(15, 19, 24, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  --shadow-card-hover:
    0 12px 32px rgba(15, 19, 24, 0.075),
    0 4px 12px rgba(15, 19, 24, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --shadow-card-elevated:
    0 10px 28px rgba(15, 19, 24, 0.065),
    0 3px 10px rgba(15, 19, 24, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  --shadow-card-dark:
    0 8px 26px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  --shadow-card-dark-hover:
    0 14px 38px rgba(0, 0, 0, 0.17),
    0 4px 14px rgba(0, 0, 0, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  --shadow-section-dark: 0 12px 40px rgba(0, 0, 0, 0.11), 0 4px 14px rgba(0, 0, 0, 0.05);
  --radius-card: 22px;
  --radius-card-lg: 26px;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --gold-1: #e8dcc4;
  --gold-2: #c8ae7a;
  --gold-3: #a68d5c;
  --gold-shadow: 0 6px 20px rgba(20, 15, 8, 0.12), 0 2px 6px rgba(166, 141, 92, 0.18);
  --gold-shadow-hover: 0 12px 32px rgba(20, 15, 8, 0.16), 0 4px 12px rgba(166, 141, 92, 0.24);
  --section-y: 92px;
  --section-y-sm: 60px;
  --space-heading-sub: 18px;
  --space-blocks: 32px;
  --space-blocks-tight: 26px;
  --type-display: clamp(2.15rem, 5.2vw, 3.55rem);
  --type-section: clamp(1.65rem, 2.65vw, 2.25rem);
  --type-body: 1.0625rem;
  --measure-prose: 38rem;
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --surface-command: #080c12;
  --hairline-bronze: rgba(191, 164, 122, 0.14);
  --hairline-dark: rgba(255, 255, 255, 0.06);
  --hero-y-top: 44px;
  --hero-y-bottom: 52px;
  --scroll-anchor-offset: max(72px, env(safe-area-inset-top, 0px));
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-veil-edge: rgba(8, 10, 14, 0.34);
  --hero-veil-mid: rgba(10, 14, 20, 0.24);
  --hero-veil-soft: rgba(12, 16, 22, 0.16);
  --hero-veil-radial: rgba(1, 3, 8, 0.1);
  --light-shell-top: #ebe6dd;
  --light-shell-mid: #f6f3ed;
  --light-shell-bottom: #e8e3da;
  --light-shell-warm-top: #e6dfd3;
  --light-shell-warm-mid: #f3efe6;
  --light-shell-warm-bottom: #ebe4d8;
  --light-card-surface: #fdfaf6;
  --light-card-base: #f4efe6;
  --light-card-elevated: #f8f4ec;
  --light-border: rgba(42, 53, 68, 0.11);
  --light-edge-inset: rgba(255, 255, 255, 0.72);
  --light-edge-shadow: rgba(15, 19, 24, 0.05);
}
.main-shell > section {
  position: relative;
  z-index: 0;
}
.main-shell > section:not(.hero)::before {
  content: none;
}
.main-shell > section.section-dark:not(.hero)::before,
.main-shell > section.visual-strip.section-dark::before {
  content: none;
}
.main-shell > section.hero + section::before {
  content: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-anchor-offset);
  overflow-x: hidden;
}
section[id],
[id="home"] {
  scroll-margin-top: var(--scroll-anchor-offset);
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.65;
  background:
    radial-gradient(circle at 0% 0%, rgba(191, 164, 122, 0.08), transparent 40%),
    linear-gradient(180deg, var(--surface) 0%, var(--cream) 42%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: min(1680px, 100%);
  width: calc(100% - 36px);
  margin: 0 auto;
  box-sizing: border-box;
}
.section .container,
.visual-strip .container,
.public-manpower-section .public-manpower-shell {
  position: relative;
  z-index: 1;
}
.main-shell,
.announcement-bar,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}
.main-shell {
  overflow-x: hidden;
  max-width: 100%;
}
.announcement-bar {
  background: var(--charcoal-deep);
  color: var(--text-on-dark-soft);
  font-size: 0.94rem;
}
.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.announcement-content a {
  color: var(--orange);
  font-weight: 800;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  padding: 16px max(16px, min(40px, 5vw));
  background: #0b1a2a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
@media (min-width: 880px) {
  .site-header {
    padding: 16px 40px;
  }
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 0;
  max-width: min(1680px, 100%);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.15;
}
.brand img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 11.5rem;
}
.site-header .brand span {
  display: block;
  color: rgba(232, 238, 246, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.site-header .brand small {
  color: rgba(180, 194, 214, 0.88);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
}
.nav a {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
}
.site-header .nav > a,
.site-header .nav-item > a {
  color: #d0d7e2;
  font-size: 14px;
  text-decoration: none;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
}
.nav-item {
  position: relative;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 24px;
  min-width: 470px;
  padding: 24px;
  border: 1px solid rgba(17, 47, 99, 0.1);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.mega-menu p {
  margin: 0 0 12px;
  color: var(--orange-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mega-menu a {
  display: block;
  padding: 8px 0;
  color: var(--ink);
  font-weight: 500;
}
.nav a:hover,
.footer-links a:hover {
  color: var(--orange-deep);
}
.site-header .nav > a:hover,
.site-header .nav-item > a:hover {
  color: #e8edf5;
}
@media (min-width: 769px) {
  .site-header .nav {
    gap: 0;
  }
  .site-header .nav > a,
  .site-header .nav-item > a {
    margin: 0 12px;
    background: transparent;
    box-shadow: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .site-header .nav > a:hover,
  .site-header .nav > a:focus-visible,
  .site-header .nav-item > a:hover,
  .site-header .nav-item > a:focus-visible {
    color: #e8edf5;
    border-bottom-color: rgba(200, 169, 106, 0.75);
  }
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(212, 188, 146, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #f3eadb;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(212, 188, 146, 0.7);
  background: rgba(212, 188, 146, 0.12);
  outline: none;
}
.site-header .menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav-close {
  display: none;
}
.nav:not(.is-open):not(.active) .nav-close {
  display: none !important;
}
.nav-backdrop {
  display: none;
}
.topbar-actions,
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-login,
.login-dropdown {
  position: relative;
  z-index: 50;
}
.header-login__trigger,
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 14px;
  margin: 0;
  border-radius: 8px;
  border: 1px solid #2c3f55;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.header-login__trigger:hover,
.login-btn:hover {
  background: #1a2d42;
  border-color: #3d536b;
}
.header-login__caret {
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.25s ease;
}
.header-login.is-open .header-login__caret {
  transform: rotate(180deg);
}
.header-login__menu,
.login-dropdown .dropdown {
  position: absolute;
  top: 45px;
  right: 0;
  z-index: 60;
  width: min(260px, calc(100vw - 28px));
  padding: 10px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0f2236;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.34s var(--ease-out-expo),
    visibility 0s linear 0.38s;
}
.header-login.is-open .header-login__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition:
    opacity 0.26s ease,
    transform 0.38s var(--ease-out-expo),
    visibility 0s linear 0s;
}
@media (prefers-reduced-motion: reduce) {
  .header-login__menu {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .header-login.is-open .header-login__menu {
    transition-duration: 0.01ms !important;
  }
  .header-login__card {
    transition-duration: 0.01ms !important;
  }
}
.header-login__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-login__card,
.login-dropdown .item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 10px 12px;
  margin: 0;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.22s var(--ease-out-expo),
    border-color 0.22s ease,
    background 0.22s ease;
}
.header-login__card:hover,
.login-dropdown .item:hover {
  transform: translateY(-1px);
  background: #1c3248;
}
.header-login__card:focus-visible {
  outline: 2px solid #c8a96a;
  outline-offset: 2px;
}
.header-login__card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 1px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  color: #c8a96a;
  transition:
    transform 0.22s var(--ease-out-expo),
    background 0.22s ease,
    color 0.22s ease;
}
.header-login__card:hover .header-login__card-icon {
  transform: scale(1.03);
  background: rgba(200, 169, 106, 0.14);
  color: #e4cf9b;
}
.header-login__card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.header-login__card-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}
.header-login__card-desc {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #a9b4c2;
  margin: 2px 0 0;
}
.login-dropdown .item p {
  font-size: 12px;
  color: #a9b4c2;
  margin: 2px 0 0;
}
.header-login__card:hover .header-login__card-title {
  color: #fff;
}
.header-login__card:hover .header-login__card-desc {
  color: #c5ced9;
}
.header-login__trigger:focus-visible,
.login-btn:focus-visible {
  outline: 2px solid #c8a96a;
  outline-offset: 3px;
}
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    filter 0.3s ease,
    opacity 0.25s ease;
}
.nav-cta {
  align-self: center;
  min-height: 44px;
  padding: 0 20px;
  background: transparent;
  color: var(--heading);
  border: 1px solid rgba(42, 53, 68, 0.22);
  box-shadow: none;
}
.site-header .nav-cta.cta {
  min-height: auto;
  padding: 8px 16px;
  border-radius: 10px;
  background: #c8a96a;
  color: #0a0f14;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
}
.button {
  padding: 14px 24px;
}
.button.primary {
  background: linear-gradient(145deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
  color: #141a22;
  box-shadow: var(--gold-shadow);
  border: 1px solid transparent;
}
.button.secondary {
  background: transparent;
  border: 1px solid rgba(42, 53, 68, 0.28);
  color: var(--heading);
  box-shadow: none;
}
.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}
.nav-cta:hover {
  background: rgba(42, 53, 68, 0.05);
  border-color: rgba(42, 53, 68, 0.35);
}
.site-header .nav-cta.cta:hover {
  transform: translateY(-1px);
  background: #d4b87a;
  border-color: rgba(0, 0, 0, 0.12);
  color: #05080c;
}
.button.primary:hover {
  box-shadow: var(--gold-shadow-hover);
  filter: brightness(1.06) saturate(1.05);
}
.button.secondary:hover {
  background: rgba(42, 53, 68, 0.06);
  border-color: rgba(191, 164, 122, 0.55);
  box-shadow: none;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(191, 164, 122, 0.1), transparent 20%),
    linear-gradient(180deg, #f5f1ea 0%, #ebe4d6 100%);
  padding: var(--hero-y-top) 0 var(--hero-y-bottom);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.split-layout,
.trust-layout,
.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.92fr);
  gap: var(--space-blocks);
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-deep);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: var(--navy);
}
.section-copy h2,
.section-heading h2,
.coverage-panel h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.hero .hero-copy h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.lead,
.section-copy p,
.service-step p,
.industry-card li,
.project-card p,
.coverage-panel p {
  color: var(--text-body);
  line-height: 1.72;
  max-width: 42rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: var(--space-heading-sub) 0 0;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-blocks-tight);
}
.hero-stats article,
.hero-panel,
.feature-card,
.coverage-grid article,
.contact-form,
.logo-cloud span {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.hero-stats article {
  padding: 22px;
  border-radius: var(--radius-card);
  background: var(--white);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.hero-stats article:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}
.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.9rem;
}
.hero-stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 2px;
  border-radius: 14px;
  border: 1px solid rgba(42, 53, 68, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.75));
  color: var(--navy-soft);
  box-shadow: 0 4px 14px rgba(15, 19, 24, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.hero-stats__icon svg {
  display: block;
}
.hero-stats article:hover .hero-stats__icon {
  transform: translateY(-2px);
  border-color: rgba(191, 164, 122, 0.45);
  box-shadow: 0 8px 22px rgba(15, 19, 24, 0.1);
}
.hero-stats-section {
  padding: var(--section-y) 0;
}
.hero-stats--below {
  margin: 0 auto;
}
.hero-stats-section .hero-stats article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 26px 24px 28px;
  background:
    radial-gradient(ellipse 110% 90% at 12% -8%, rgba(191, 164, 122, 0.22), transparent 58%),
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.13) 0%,
      rgba(255, 255, 255, 0.06) 48%,
      rgba(255, 255, 255, 0.045) 100%
    );
  border-color: rgba(255, 255, 255, 0.18);
}
.hero-stats-section .hero-stats article:hover {
  transform: translateY(-6px) scale(1.022);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.hero-stats-section .hero-stats__icon {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  color: rgba(232, 214, 182, 0.98);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.hero-stats-section .hero-stats article:hover .hero-stats__icon {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(212, 188, 146, 0.55);
}
.hero-stats-section .hero-stats strong {
  color: var(--text-heading-dark);
  margin-bottom: 0;
}
.hero-stats-section .hero-stats article > span:last-of-type {
  color: var(--text-on-dark-soft);
  font-weight: 500;
}
@media (max-width: 900px) {
  .hero-stats.hero-stats--below {
    grid-template-columns: 1fr;
    gap: var(--space-blocks-tight);
  }
}
.regional-capabilities-section.section-light {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background:
    radial-gradient(ellipse 70% 45% at 0% 100%, rgba(42, 53, 68, 0.05), transparent 58%),
    radial-gradient(ellipse 70% 45% at 100% 100%, rgba(42, 53, 68, 0.05), transparent 58%),
    radial-gradient(ellipse 88% 55% at 50% 0%, rgba(191, 164, 122, 0.1), transparent 52%),
    linear-gradient(180deg, #e4dfd6 0%, #ebe6dd 42%, #e0dbd2 100%);
  box-shadow:
    inset 0 1px 0 var(--light-edge-inset),
    inset 0 -1px 0 var(--light-edge-shadow);
}
.regional-capabilities {
  --regional-gap: clamp(14px, 2.4vw, 22px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--regional-gap);
  align-items: start;
  max-width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3.2vw, 34px);
  border-radius: 26px;
  border: 1px solid rgba(42, 53, 68, 0.14);
  background:
    radial-gradient(ellipse 120% 90% at 50% -20%, rgba(255, 255, 255, 0.75), transparent 52%),
    linear-gradient(185deg, rgba(253, 250, 246, 0.98) 0%, rgba(247, 243, 236, 0.96) 45%, rgba(240, 235, 226, 0.98) 100%);
  box-shadow:
    0 12px 40px rgba(15, 19, 24, 0.08),
    0 2px 8px rgba(15, 19, 24, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.regional-capabilities__header {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 2px;
  max-width: 38rem;
}
.regional-capabilities__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3.2vw, 2.05rem);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.regional-capabilities__subtitle {
  margin: 12px auto 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 500;
  max-width: 38rem;
}
.regional-capabilities__visual {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 0 4px;
  max-width: none;
  border-radius: 18px;
  line-height: 0;
  background: radial-gradient(ellipse 72% 88% at 50% 48%, rgba(191, 164, 122, 0.11), transparent 64%);
}
.regional-capabilities__map {
  display: block;
  width: 100%;
  max-width: min(920px, 100%);
  margin: 0 auto;
  height: auto;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(42, 53, 68, 0.09),
    0 0 32px rgba(191, 164, 122, 0.14),
    0 16px 36px rgba(15, 19, 24, 0.09);
}
.regional-capabilities__matrix {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--regional-gap);
  row-gap: var(--regional-gap);
  margin: 0;
  max-width: none;
  padding-top: 12px;
  margin-top: 2px;
  border-top: 1px solid rgba(42, 53, 68, 0.11);
}
.regional-capabilities__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 16px 16px 18px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(42, 53, 68, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 243, 236, 0.9) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 8px 22px rgba(15, 19, 24, 0.05);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.regional-capabilities__stat::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(ellipse 85% 90% at 50% 0%, rgba(191, 164, 122, 0.22), transparent 62%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}
.regional-capabilities__stat:hover {
  transform: translateY(-3px);
  border-color: rgba(191, 164, 122, 0.38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 0 28px rgba(191, 164, 122, 0.18),
    0 14px 36px rgba(15, 19, 24, 0.1);
}
.regional-capabilities__stat > * {
  position: relative;
  z-index: 1;
}
.regional-capabilities__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.regional-capabilities__value {
  font-size: clamp(1.05rem, 2.1vw, 1.1875rem);
  font-weight: 650;
  color: var(--heading);
  line-height: 1.35;
}
.regional-capabilities__capabilities {
  grid-column: 1 / -1;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(42, 53, 68, 0.1);
}
.regional-capabilities__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 14px;
  justify-items: center;
}
.regional-capabilities__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 320px;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--heading);
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid rgba(42, 53, 68, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 236, 0.9));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 4px 14px rgba(15, 19, 24, 0.05);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.regional-capabilities__item:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 164, 122, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 0 22px rgba(191, 164, 122, 0.14),
    0 8px 22px rgba(15, 19, 24, 0.08);
}
.regional-capabilities__item-icon {
  display: inline-flex;
  color: var(--orange-deep);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(191, 164, 122, 0.35));
}
@media (min-width: 900px) {
  .regional-capabilities__matrix {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .regional-capabilities__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-items: stretch;
  }
  .regional-capabilities__item {
    max-width: none;
    justify-content: flex-start;
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 640px) {
  .regional-capabilities__matrix {
    grid-template-columns: 1fr;
  }
  .regional-capabilities__list {
    grid-template-columns: 1fr;
  }
  .regional-capabilities {
    padding: 16px 14px 20px;
  }
}
.hero-panel {
  border-radius: var(--radius-card);
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 248, 252, 0.9) 100%);
  position: relative;
  overflow: hidden;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.08);
}
.hero-badge {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(17, 47, 99, 0.08);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-logo-card {
  margin: 8px 0 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(17, 47, 99, 0.08);
  transform: none;
  box-shadow:
    0 8px 24px rgba(42, 53, 68, 0.08),
    0 2px 8px rgba(42, 53, 68, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}
.visual-strip {
  position: relative;
  overflow: visible;
  padding: var(--section-y) 0;
}
.visual-strip-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: var(--space-blocks-tight);
}
.visual-card {
  position: relative;
  min-height: 300px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.14),
    0 4px 14px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.visual-card::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 40%, rgba(0,0,0,0.16));
  pointer-events: none;
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.visual-card:hover img {
  transform: scale(1.05);
}
.tall-card {
  min-height: 320px;
}
.visual-card-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;
  background: linear-gradient(180deg, transparent, rgba(9, 23, 45, 0.9));
}
.visual-card-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffd18f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.visual-card-copy h2,
.visual-card-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .visual-card-copy {
    padding: 14px 14px 12px;
    background: linear-gradient(180deg, transparent 44%, rgba(9, 23, 45, 0.84) 100%);
  }
  .visual-card-copy span {
    margin-bottom: 6px;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
  .visual-card-copy h2,
  .visual-card-copy h3 {
    font-size: 1.02rem;
    line-height: 1.28;
    max-width: 28ch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.hero-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-blocks-tight);
}
.hero-highlight-grid article {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(17, 47, 99, 0.04);
}
.hero-highlight-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-highlight-grid strong {
  color: var(--navy);
}
.section {
  padding: var(--section-y) 0;
}
@media (max-width: 768px) {
  .section {
    padding: var(--section-y-sm) 0;
  }
}
.section-light {
  background:
    radial-gradient(ellipse 100% 42% at 50% 0%, rgba(191, 164, 122, 0.07), transparent 58%),
    radial-gradient(ellipse 80% 38% at 50% 100%, rgba(42, 53, 68, 0.04), transparent 52%),
    linear-gradient(180deg, var(--light-shell-top) 0%, var(--light-shell-mid) 48%, var(--light-shell-bottom) 100%);
  box-shadow:
    inset 0 1px 0 var(--light-edge-inset),
    inset 0 -1px 0 var(--light-edge-shadow);
}
.section.section-light.section-warm {
  background:
    radial-gradient(ellipse 95% 40% at 18% 0%, rgba(191, 164, 122, 0.09), transparent 55%),
    linear-gradient(180deg, var(--light-shell-warm-top) 0%, var(--light-shell-warm-mid) 50%, var(--light-shell-warm-bottom) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 var(--light-edge-shadow);
}
.section-dark {
  background: linear-gradient(180deg, #0b1119 0%, #121a25 52%, #0d141e 100%);
  color: var(--text-on-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32),
    var(--shadow-section-dark);
}
.section-dark .section-heading h2,
.section-dark .coverage-panel h2,
.section-dark .service-step h3,
.section-dark .project-card h3,
.section-dark .coverage-grid strong {
  color: var(--text-heading-dark);
}
.section-dark .eyebrow,
.section-dark .project-tag-row span {
  color: var(--orange);
}
.section-heading {
  max-width: min(40rem, 100%);
  margin-bottom: calc(var(--space-blocks) - 6px);
}
.section-copy p {
  margin: 0;
}
.section-copy {
  max-width: 42rem;
}
.section-copy h2 {
  margin-bottom: 12px;
}
.section-copy p + p {
  margin-top: 1rem;
}
.dark-card {
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 85% 70% at 12% 0%, rgba(191, 164, 122, 0.14), transparent 52%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: var(--shadow-card-dark);
  color: var(--white);
}
.dark-card h3,
.dark-card p,
.dark-card li {
  color: var(--text-on-dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-blocks);
  align-items: stretch;
}
.service-step {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, transparent 46%),
    rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow-card-dark);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.22em;
}
.service-step h3 {
  margin: 0 0 12px;
}
.scope-grid,
.manpower-grid {
  display: grid;
  gap: var(--space-blocks);
  align-items: stretch;
}
.scope-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.scope-card,
.manpower-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scope-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.7) 0%, transparent 44%),
    linear-gradient(180deg, var(--light-card-elevated) 0%, var(--light-card-surface) 100%);
}
.scope-card h3,
.manpower-card h3 {
  margin: 0 0 16px;
}
.scope-card h3 {
  color: var(--heading);
}
.scope-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 42rem;
}
.manpower-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.manpower-card {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12) 0%, transparent 48%),
    rgba(255, 255, 255, 0.05);
}
.manpower-card h3 {
  color: var(--white);
}
.manpower-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}
.industries-grid,
.project-grid,
.coverage-grid {
  display: grid;
  gap: var(--space-blocks);
  align-items: stretch;
}
.industries-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 26px 30px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease;
}
.industry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  border: 1px solid rgba(42, 53, 68, 0.11);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.45));
  color: var(--navy-soft);
  box-shadow: 0 6px 18px rgba(15, 19, 24, 0.07);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    background 0.38s ease;
}
.industry-card__icon svg {
  display: block;
}
.industry-card:hover .industry-card__icon {
  transform: translateY(-3px);
  border-color: rgba(191, 164, 122, 0.42);
  box-shadow: 0 10px 26px rgba(15, 19, 24, 0.11);
}
.industry-card h3 {
  margin: 0 0 14px;
  color: var(--heading);
}
.industry-card ul {
  margin: 0;
  padding-left: 18px;
}
.accent-a {
  background:
    radial-gradient(ellipse 95% 85% at 8% -12%, rgba(191, 164, 122, 0.14), transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, var(--light-card-surface) 42%, #fdfaf6 100%);
}
.accent-a .industry-card__icon {
  border-color: rgba(191, 164, 122, 0.24);
  background: linear-gradient(145deg, rgba(253, 246, 235, 1), rgba(255, 255, 255, 0.65));
  color: var(--orange-deep);
}
.accent-b {
  background:
    radial-gradient(ellipse 90% 80% at 92% -10%, rgba(191, 164, 122, 0.18), transparent 55%),
    linear-gradient(165deg, rgba(255, 252, 246, 0.95) 0%, #fff9f2 45%, var(--light-card-surface) 100%);
}
.accent-b .industry-card__icon {
  border-color: rgba(191, 164, 122, 0.28);
  background: linear-gradient(145deg, rgba(253, 246, 235, 1), rgba(255, 255, 255, 0.72));
  color: var(--orange-deep);
}
.accent-c {
  background:
    radial-gradient(ellipse 85% 75% at 15% 105%, rgba(42, 53, 68, 0.06), transparent 52%),
    linear-gradient(165deg, #f2ebe3 0%, #faf6ef 48%, var(--light-card-surface) 100%);
}
.accent-c .industry-card__icon {
  border-color: rgba(42, 53, 68, 0.14);
  background: linear-gradient(145deg, rgba(247, 243, 236, 1), rgba(255, 255, 255, 0.68));
  color: var(--navy-soft);
}
.accent-d {
  background:
    radial-gradient(ellipse 95% 70% at 88% 102%, rgba(139, 107, 74, 0.08), transparent 52%),
    linear-gradient(165deg, #fffaf6 0%, #fdf8f3 46%, var(--light-card-surface) 100%);
}
.accent-d .industry-card__icon {
  border-color: rgba(139, 107, 74, 0.15);
  background: linear-gradient(145deg, rgba(250, 244, 236, 1), rgba(255, 255, 255, 0.72));
  color: #6b5340;
}
.project-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: stretch;
}
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-card-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.11) 0%, transparent 48%),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-card {
  overflow: hidden;
}
.image-card img {
  width: calc(100% + 48px);
  max-width: none;
  height: 220px;
  margin: -24px -24px 22px;
  object-fit: cover;
}
.project-card.featured {
  background:
    linear-gradient(135deg, rgba(248, 157, 53, 0.18), transparent 50%),
    rgba(255, 255, 255, 0.06);
}
.project-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-blocks-tight);
}
.project-tag-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-blocks-tight);
}
.logo-cloud span {
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}
.verified-cloud span {
  background: linear-gradient(180deg, var(--light-card-elevated) 0%, var(--light-card-surface) 100%);
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-blocks-tight);
  align-items: stretch;
}
.client-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-card) - 4px);
  background: linear-gradient(180deg, var(--light-card-elevated) 0%, var(--light-card-surface) 100%);
  box-shadow: var(--shadow-card);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.client-mark {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 8px 6px;
  margin-bottom: 8px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 103, 0.35);
  background: rgba(10, 20, 40, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: none;
}
.client-mark img {
  display: none;
}
.client-mark.is-text-fallback {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: none;
}
.client-slot strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
}
.client-slot p {
  margin: 0;
  color: var(--slate);
  font-size: 0.74rem;
  line-height: 1.4;
  font-weight: 520;
}
.advantage-grid,
.data-grid {
  display: grid;
  gap: var(--space-blocks);
  align-items: stretch;
}
.advantage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.advantage-card,
.data-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.72) 0%, transparent 46%),
    linear-gradient(180deg, var(--light-card-elevated) 0%, var(--light-card-surface) 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-card strong {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange-deep);
  font-size: 1.4rem;
}
.advantage-card h3 {
  margin: 0 0 12px;
  color: var(--heading);
}
.advantage-card p {
  margin: 0;
  color: var(--text-body);
  max-width: 42rem;
}
.data-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.data-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--slate);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.data-grid strong {
  color: var(--heading);
}
.faq-list {
  display: grid;
  gap: var(--space-blocks-tight);
}
.faq-list details {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.32s var(--ease-out-expo),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}
.faq-list details:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
}
.faq-list p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}
.coverage-panel {
  max-width: 580px;
}
.coverage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.coverage-grid article {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, transparent 48%),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-dark .coverage-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-dark-hover);
}
.coverage-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.section-heading .section-lead {
  margin: 12px 0 0;
  max-width: min(38rem, 100%);
  color: var(--text-body);
  font-weight: 520;
  line-height: 1.58;
}
.section-dark .section-heading .section-lead {
  color: rgba(255, 255, 255, 0.88);
}
.section-contact-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  margin-top: var(--space-blocks);
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--light-card-elevated) 0%, var(--light-card-surface) 100%);
  box-shadow: var(--shadow-card);
}
.section-contact-cta--hero {
  margin-top: var(--space-blocks-tight);
}
.section-contact-cta--dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card-dark);
}
.section-contact-cta__copy {
  margin: 0;
  flex: 1 1 220px;
  max-width: min(38rem, 100%);
  color: var(--text-body);
  font-weight: 600;
  line-height: 1.5;
}
.section-dark .section-contact-cta--dark .section-contact-cta__copy {
  color: rgba(255, 255, 255, 0.9);
}
.section-contact-cta--dark .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #edf2f8;
}
.section-contact-cta--dark .button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}
.coverage-section .coverage-panel .button.secondary {
  color: var(--text-heading-dark);
  border-color: rgba(230, 224, 214, 0.38);
  background: rgba(255, 255, 255, 0.06);
}
.coverage-section .coverage-panel .button.secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(212, 188, 146, 0.48);
}
.button:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 3px;
}
.button.primary:focus-visible {
  outline-color: #141a22;
}
.submit-btn:focus-visible {
  outline: 2px solid #141a22;
  outline-offset: 3px;
}
.compliance-grid {
  display: grid;
  gap: var(--space-blocks-tight);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.compliance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.85) 0%, transparent 48%),
    linear-gradient(180deg, var(--light-card-elevated) 0%, var(--light-card-surface) 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.compliance-card strong {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.compliance-card h3 {
  margin: 0 0 10px;
  color: var(--heading);
}
.compliance-card p {
  margin: 0;
  color: var(--text-body);
  font-weight: 520;
  line-height: 1.55;
  max-width: 42rem;
}
@media (max-width: 900px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .section-contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact-panel {
  align-items: start;
}
.contact-form {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-card);
  background: var(--light-card-surface);
  display: grid;
  gap: var(--space-blocks-tight);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.glass-panel::before,
.service-step::before,
.scope-card::before,
.industry-card::before,
.project-card::before,
.advantage-card::before,
.manpower-card::before,
.compliance-card::before,
.client-slot::before,
.data-grid article::before,
.contact-form::before,
.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 32%, transparent 56%);
  transform: translateX(-130%);
  transition: transform 0.35s ease;
  pointer-events: none;
}
.glass-panel:hover::before,
.service-step:hover::before,
.scope-card:hover::before,
.industry-card:hover::before,
.project-card:hover::before,
.advantage-card:hover::before,
.manpower-card:hover::before,
.compliance-card:hover::before,
.client-slot:hover::before,
.data-grid article:hover::before,
.contact-form:hover::before,
.visual-card:hover::before {
  transform: translateX(130%);
}
.service-step:hover,
.scope-card:hover,
.industry-card:hover,
.project-card:hover,
.advantage-card:hover,
.manpower-card:hover,
.compliance-card:hover,
.client-slot:hover,
.data-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.section-dark .service-step:hover,
.section-dark .project-card:hover,
.section-dark .manpower-card:hover {
  box-shadow: var(--shadow-card-dark-hover);
}
.industry-card:hover {
  transform: translateY(-6px) scale(1.026);
  box-shadow: var(--shadow-card-hover);
}
[data-reveal],
[data-section-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
[data-section-reveal] {
  transform: translateY(10px);
}
[data-reveal="left"] {
  transform: translateX(14px);
}
[data-section-reveal="left"] {
  transform: translateX(12px);
}
[data-reveal].is-visible,
[data-section-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
[data-depth] {
  will-change: transform;
}
.hero-copy,
.hero-panel,
.visual-card,
.project-card,
.feature-panel,
.coverage-panel,
.contact-form {
  will-change: transform;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-panel {
  animation: none;
}
@keyframes floatGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 18px, 0) scale(1.06);
  }
}
@keyframes eliteFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(17, 47, 99, 0.1);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.site-footer {
  background: var(--navy-deep);
  color: var(--text-on-dark);
  padding: 30px 0 36px;
}
.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-heading-dark);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-platform-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(230, 224, 214, 0.14);
}
.footer-platform-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.92;
}
.footer-platform-nav a:hover {
  opacity: 1;
}
.site-footer p,
.site-footer span,
.site-footer a {
  color: var(--text-on-dark-soft);
}
@media (max-width: 1100px) {
  .split-layout,
  .trust-layout,
  .contact-panel,
  .project-grid,
  .industries-grid,
  .services-grid,
  .scope-grid,
  .visual-strip-layout {
    grid-template-columns: 1fr;
  }
  .coverage-grid,
  .logo-cloud,
  .hero-stats:not(.hero-stats--below),
  .data-grid,
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav {
    gap: 18px;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .manpower-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #0b1a2a;
    overflow: visible;
  }
  .announcement-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .announcement-content {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .topbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    min-width: 0;
    padding-right: max(12px, calc(env(safe-area-inset-right, 0px) + 58px));
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
    gap: 5px;
  }
  .brand-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .site-header .brand span,
  .site-header .brand small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: max(15px, env(safe-area-inset-top, 0px));
    right: max(15px, env(safe-area-inset-right, 0px));
    z-index: 9999;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(13, 26, 44, 0.92);
    border: 1px solid rgba(212, 188, 146, 0.55);
    color: #f3eadb;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  }
  body.nav-open .menu-toggle {
    display: none;
  }
  .topbar-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: none;
    min-width: 0;
  }
  .header-login__trigger {
    padding: 0 10px;
    font-size: 0.78rem;
    min-height: 40px;
  }
  .header-login__menu {
    right: 0;
    left: auto;
    width: min(260px, calc(100vw - 40px));
    top: 45px;
  }
  .nav-cta {
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding: 0 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(84vw, 360px);
    max-width: 100%;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding:
      max(76px, calc(env(safe-area-inset-top, 0px) + 56px))
      max(20px, env(safe-area-inset-right, 0px))
      max(28px, env(safe-area-inset-bottom, 0px))
      max(20px, env(safe-area-inset-left, 0px));
    text-align: left;
    background: #0c1626;
    z-index: 10010;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 220ms ease,
      visibility 0s linear 220ms;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 9, 16, 0.55);
    z-index: 10005;
    opacity: 0;
    transition: opacity 220ms ease;
  }
  body.nav-open .nav-backdrop {
    display: block;
    opacity: 1;
  }
  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: max(15px, env(safe-area-inset-top, 0px));
    right: max(15px, env(safe-area-inset-right, 0px));
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(212, 188, 146, 0.55);
    background: rgba(13, 26, 44, 0.92);
    color: #f3eadb;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    z-index: 10011;
  }
  .nav-close:hover,
  .nav-close:focus-visible {
    border-color: rgba(212, 188, 146, 0.7);
    background: rgba(212, 188, 146, 0.12);
    outline: none;
  }
  .nav.is-open,
  .nav.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 240ms ease,
      visibility 0s linear 0s;
  }
  .nav > a,
  .nav > .nav-item {
    width: 100%;
    max-width: min(420px, 100%);
    margin-inline: auto;
  }
  .nav > a,
  .nav > .nav-item > a {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading-dark);
    text-align: left;
    padding: 12px 0;
    margin: 0;
  }
  .mega-menu {
    position: static;
    min-width: 0;
    width: 100%;
    max-width: min(420px, 100%);
    margin: 4px auto 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    grid-template-columns: 1fr;
    display: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(12, 24, 42, 0.82);
    text-align: left;
    padding: 14px 16px;
  }
  .mega-menu a {
    text-align: left;
    padding: 8px 0;
    color: var(--text-on-dark-soft);
    font-weight: 500;
  }
  .mega-menu p {
    color: var(--bronze-bright);
  }
  .has-mega.is-open .mega-menu {
    display: grid;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-stats,
  .hero-highlight-grid,
  .coverage-grid,
  .logo-cloud,
  .data-grid,
  .client-grid,
  .manpower-grid {
    grid-template-columns: 1fr;
  }
  .brand img {
    height: 40px;
    width: auto;
    max-width: min(140px, 38vw);
    flex-shrink: 0;
    object-fit: contain;
  }
  .visual-card,
  .tall-card {
    min-height: 240px;
  }
  .section-contact-cta {
    padding: 16px 18px;
    margin-top: var(--space-blocks-tight);
  }
  .section-contact-cta__copy {
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
  .contact-form {
    padding: 20px 18px;
  }
  .hero-copy,
  .hero-panel {
    animation: none;
  }
  .section-copy h2,
  .section-heading h2 {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .section-copy p,
  .section-heading .section-lead,
  .service-step p,
  .advantage-card p,
  .manpower-card p,
  .project-card p,
  .industry-card li {
    font-size: 1rem;
    line-height: 1.62;
  }
  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.62;
  }
  .hero-copy h1 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    line-height: 1.18;
  }
  .hero-panel,
  .glass-panel {
    max-width: 100%;
    min-width: 0;
  }
  .live-ops-board {
    max-width: 100%;
    min-width: 0;
  }
  .project-card:hover img {
    transform: none;
  }
  .faq-list summary {
    font-size: 0.95rem;
    line-height: 1.35;
  }
  .dark-card {
    padding: 22px 18px;
  }
  .service-step,
  .scope-card,
  .advantage-card,
  .manpower-card,
  .compliance-card {
    padding: 20px 18px;
  }
  .industry-card {
    padding: 24px 20px 26px;
  }
}
@media (max-width: 768px) {
  body.nav-open {
    position: fixed;
    inset-inline: 0;
    width: 100%;
    overflow: hidden;
  }
}
body {
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(191, 164, 122, 0.1), transparent 42%),
    radial-gradient(circle at 100% 12%, rgba(42, 53, 68, 0.06), transparent 40%),
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 255, 255, 0.45), transparent 52%),
    linear-gradient(180deg, #faf7f2 0%, #f0ebe3 45%, #ebe4d6 100%);
}
.site-header {
  background: #0b1a2a;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.site-footer {
  background: linear-gradient(180deg, #12161d 0%, #0f1318 100%);
  color: var(--text-on-dark);
}
.site-footer strong {
  color: var(--text-heading-dark);
}
.site-footer p,
.site-footer span,
.site-footer a {
  color: var(--text-on-dark-soft);
}
.hero {
  background:
    radial-gradient(circle at 14% 24%, rgba(191, 164, 122, 0.12), transparent 45%),
    radial-gradient(circle at 82% 18%, rgba(36, 48, 64, 0.18), transparent 50%),
    linear-gradient(145deg, #161c24 0%, #243042 42%, #1a222c 100%);
}
.hero-panel {
  background: linear-gradient(180deg, rgba(245, 241, 234, 0.96) 0%, rgba(232, 226, 214, 0.94) 100%);
}
.hero .hero-copy h1 {
  color: var(--text-heading-dark);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
.hero .hero-copy .lead {
  color: rgba(248, 244, 237, 0.94);
}
.hero .hero-copy .eyebrow {
  color: var(--bronze-bright);
}
.hero-logo-card,
.logo-cloud span {
  background: rgba(253, 250, 245, 0.97);
  border-color: rgba(42, 53, 68, 0.12);
}
.contact-form input,
.contact-form textarea {
  background: var(--field-bg);
  color: var(--field-text);
  border-color: rgba(42, 53, 68, 0.14);
}
.section-light {
  background:
    radial-gradient(ellipse 100% 42% at 50% 0%, rgba(191, 164, 122, 0.07), transparent 58%),
    radial-gradient(ellipse 80% 38% at 50% 100%, rgba(42, 53, 68, 0.04), transparent 52%),
    linear-gradient(180deg, var(--light-shell-top) 0%, var(--light-shell-mid) 48%, var(--light-shell-bottom) 100%);
  box-shadow:
    inset 0 1px 0 var(--light-edge-inset),
    inset 0 -1px 0 var(--light-edge-shadow);
}
.section.section-light.section-warm {
  background:
    radial-gradient(ellipse 95% 40% at 18% 0%, rgba(191, 164, 122, 0.09), transparent 55%),
    linear-gradient(180deg, var(--light-shell-warm-top) 0%, var(--light-shell-warm-mid) 50%, var(--light-shell-warm-bottom) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 var(--light-edge-shadow);
}
.section-dark {
  background: linear-gradient(180deg, #0b1119 0%, #121a25 52%, #0d141e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32),
    var(--shadow-section-dark);
}
.scope-card,
.client-slot,
.advantage-card,
.data-grid article,
.verified-cloud span,
.contact-form {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.62) 0%, transparent 46%),
    linear-gradient(180deg, var(--light-card-elevated) 0%, var(--light-card-surface) 100%);
}
.accent-a {
  background:
    radial-gradient(ellipse 95% 85% at 8% -12%, rgba(191, 164, 122, 0.14), transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, var(--light-card-surface) 42%, #fdfaf6 100%);
}
.accent-a .industry-card__icon {
  border-color: rgba(191, 164, 122, 0.24);
  background: linear-gradient(145deg, rgba(253, 246, 235, 1), rgba(255, 255, 255, 0.65));
  color: var(--orange-deep);
}
.accent-b {
  background:
    radial-gradient(ellipse 90% 80% at 92% -10%, rgba(191, 164, 122, 0.18), transparent 55%),
    linear-gradient(165deg, rgba(255, 252, 246, 0.95) 0%, #fff9f2 45%, var(--light-card-surface) 100%);
}
.accent-b .industry-card__icon {
  border-color: rgba(191, 164, 122, 0.28);
  background: linear-gradient(145deg, rgba(253, 246, 235, 1), rgba(255, 255, 255, 0.72));
  color: var(--orange-deep);
}
.accent-c {
  background:
    radial-gradient(ellipse 85% 75% at 15% 105%, rgba(42, 53, 68, 0.06), transparent 52%),
    linear-gradient(165deg, #f2ebe3 0%, #faf6ef 48%, var(--light-card-surface) 100%);
}
.accent-c .industry-card__icon {
  border-color: rgba(42, 53, 68, 0.14);
  background: linear-gradient(145deg, rgba(247, 243, 236, 1), rgba(255, 255, 255, 0.68));
  color: var(--navy-soft);
}
.accent-d {
  background:
    radial-gradient(ellipse 95% 70% at 88% 102%, rgba(139, 107, 74, 0.08), transparent 52%),
    linear-gradient(165deg, #fffaf6 0%, #fdf8f3 46%, var(--light-card-surface) 100%);
}
.accent-d .industry-card__icon {
  border-color: rgba(139, 107, 74, 0.15);
  background: linear-gradient(145deg, rgba(250, 244, 236, 1), rgba(255, 255, 255, 0.72));
  color: #6b5340;
}
.live-ops-board {
  margin-top: 8px;
  padding: 10px 12px 12px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 90% 80% at 20% 0%, rgba(191, 164, 122, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(28, 34, 44, 0.98), rgba(15, 19, 24, 0.99));
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(230, 224, 214, 0.08);
  overflow: hidden;
}
.live-ops-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--bronze-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5df08a;
  box-shadow: 0 0 0 rgba(93, 240, 138, 0.45);
  animation: pulseLive 1.8s infinite;
}
.ops-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  align-items: end;
  height: 46px;
  margin-bottom: 6px;
}
.ops-bars span {
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #d4bc92, #927e58);
  animation: barMove 1.4s ease-in-out infinite;
  transform-origin: bottom;
}
.ops-bars span:nth-child(1) { height: 48%; animation-delay: 0s; }
.ops-bars span:nth-child(2) { height: 82%; animation-delay: 0.16s; }
.ops-bars span:nth-child(3) { height: 62%; animation-delay: 0.32s; }
.ops-bars span:nth-child(4) { height: 94%; animation-delay: 0.48s; }
.ops-bars span:nth-child(5) { height: 54%; animation-delay: 0.64s; }
.ops-track {
  overflow: hidden;
  border-top: 1px solid rgba(230, 224, 214, 0.1);
  padding-top: 8px;
}
.ops-line {
  display: inline-flex;
  gap: 20px;
  min-width: max-content;
  color: rgba(214, 199, 176, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: tickerMove 18s linear infinite;
}
.ops-line span::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 18px;
  border-radius: 50%;
  background: rgba(191, 164, 122, 0.9);
}
@keyframes pulseLive {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(93, 240, 138, 0.45);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(93, 240, 138, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(93, 240, 138, 0);
  }
}
@keyframes barMove {
  0%, 100% {
    transform: scaleY(0.72);
    opacity: 0.75;
  }
  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}
@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero-highlight-grid article,
.project-tag-row span {
  background: rgba(255, 255, 255, 0.06);
}
.section-light .logo-cloud span,
.section-light .verified-cloud span,
.section-light .industry-card,
.section-light .scope-card,
.section-light .client-slot,
.section-light .advantage-card,
.section-light .data-grid article,
.section-light .contact-form,
.section-light.section-warm .logo-cloud span,
.section-light.section-warm .verified-cloud span,
.section-light.section-warm .industry-card,
.section-light.section-warm .scope-card,
.section-light.section-warm .client-slot,
.section-light.section-warm .advantage-card,
.section-light.section-warm .data-grid article,
.section-light.section-warm .contact-form {
  box-shadow: var(--shadow-card-elevated);
}
.hero-logo-card img {
  width: auto;
  max-width: 100%;
  max-height: 96px;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  background: #08111d;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(165deg, rgba(2, 4, 10, 0.1) 0%, transparent 44%),
    linear-gradient(
      105deg,
      rgba(2, 5, 12, 0.42) 0%,
      rgba(2, 5, 12, 0.3) 34%,
      rgba(2, 5, 12, 0.18) 62%,
      rgba(2, 5, 12, 0.08) 100%
    );
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 72% 68% at 50% 48%,
    transparent 32%,
    var(--hero-veil-radial) 100%
  );
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: clamp(420px, 58vh, 620px);
  padding-block: clamp(1rem, 3vh, 2rem);
}
.button.primary {
  background: linear-gradient(145deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
  color: #141a22;
  padding: 12px 22px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 650;
  box-shadow: var(--gold-shadow);
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s ease,
    filter 0.3s ease,
    background 0.3s ease;
}
.nav-cta {
  padding: 0 20px;
  font-weight: 650;
}
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-shadow-hover);
  filter: brightness(1.06) saturate(1.05);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.48s var(--ease-smooth), transform 0.52s var(--ease-smooth);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.button.secondary {
  border: 1px solid rgba(42, 53, 68, 0.26);
  color: var(--heading);
  background: transparent;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 650;
  transition:
    transform 0.3s var(--ease-out-expo),
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.button.secondary:hover {
  background: rgba(42, 53, 68, 0.05);
  border-color: rgba(191, 164, 122, 0.5);
  transform: translateY(-1px);
  box-shadow: none;
}
.hero .button.secondary {
  color: var(--text-heading-dark);
  border: 1px solid rgba(212, 188, 146, 0.45);
  background: rgba(15, 19, 24, 0.38);
}
.hero .button.secondary:hover {
  background: rgba(15, 19, 24, 0.52);
  border-color: rgba(212, 188, 146, 0.65);
}
.hero-copy .eyebrow {
  opacity: 0;
  transform: translateY(18px);
  animation: heroLineIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}
.hero-copy h1 {
  opacity: 0;
  transform: translateY(28px);
  animation: heroLineIn 1.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.22s;
}
.hero-copy .lead {
  opacity: 0;
  transform: translateY(22px);
  animation: heroLineIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.46s;
}
.hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: heroLineIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.72s;
}
@keyframes heroLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.button.primary {
  position: relative;
  overflow: hidden;
}
.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}
.button.primary:hover::after {
  opacity: 1;
}
.site-header.scrolled {
  background: #081420;
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.site-header.scrolled .topbar {
  min-height: 48px;
}
.button:active {
  transform: scale(0.96);
}
.project-card img {
  transition: transform 0.6s ease;
}
.project-card:hover img {
  transform: scale(1.1) rotate(1deg);
}
.hero-actions {
  margin-top: 26px;
}
.button {
  padding: 10px 18px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 32px;
    min-height: auto;
    overflow-x: hidden;
  }
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .visual-strip {
    padding: var(--section-y-sm) 0;
    overflow-x: hidden;
  }
  .contact-section {
    padding: var(--section-y-sm) 0;
  }
}
@media (max-width: 768px) {
  .button {
    padding: 10px;
    font-size: 14px;
    border-radius: 30px;
  }
}
@media (max-width: 768px) {
  .hero-copy {
    margin-top: 10px;
  }
  .hero-actions {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-copy {
    text-align: left;
  }
}
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-dark .project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-dark-hover);
}
@media (min-width: 1024px) {
  .site-header .container {
    max-width: min(1680px, calc(100% - 36px));
    margin: 0 auto;
    width: 100%;
  }
  .nav a {
    margin: 0;
    font-size: 15px;
  }
  .site-header .nav > a,
  .site-header .nav-item > a {
    font-size: 14px;
    color: #d0d7e2;
  }
}
.button.primary {
  background: linear-gradient(145deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
  color: #141a22;
  box-shadow: var(--gold-shadow);
}
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-shadow-hover);
}
.hero {
  min-height: clamp(420px, 60vh, 640px);
  padding: var(--hero-y-top) 0 calc(var(--hero-y-bottom) + 12px);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(44rem, 100%);
  margin: 0;
  padding-top: 0.25rem;
  text-align: left;
}
.hero .hero-copy .eyebrow {
  margin-bottom: 1.15rem;
  color: rgba(232, 214, 182, 0.96);
  letter-spacing: 0.26em;
  font-size: 0.72rem;
}
.hero-copy h1 {
  font-size: clamp(2rem, 5.8vw, 3.35rem);
  line-height: 1.08;
  color: var(--text-heading-dark);
  text-shadow:
    0 2px 40px rgba(0, 0, 0, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.35);
  margin: 0 0 1.25rem;
}
.hero-copy .lead {
  font-size: clamp(1rem, 2.35vw, 1.125rem);
  color: rgba(248, 244, 237, 0.96);
  font-weight: 500;
  line-height: 1.72;
  margin-top: 0;
  margin-bottom: 0;
  max-width: min(40rem, 100%);
}
@media (max-width: 768px) {
  .hero {
    min-height: clamp(360px, 54vh, 520px);
    padding: 26px 0 40px;
  }
  .hero-copy h1 {
    font-size: clamp(1.65rem, 6.8vw, 2.45rem);
    line-height: 1.12;
    margin-bottom: 1rem;
  }
  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.66;
  }
  .hero-actions {
    margin-top: 1.15rem;
  }
}
.contact-section {
  padding: var(--section-y) 20px;
  text-align: center;
}
.section-title {
  display: block;
  margin: 0 0 var(--space-blocks);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.22;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--heading);
}
.contact-form {
  max-width: 500px;
  margin: auto;
}
.form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(42, 53, 68, 0.14);
  background: var(--field-bg);
  color: var(--field-text);
  outline: none;
  font-size: 15px;
  font-weight: 500;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--field-placeholder);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--focus-ring);
  background-color: #fff;
  box-shadow:
    0 0 0 3px rgba(191, 164, 122, 0.28),
    0 6px 18px rgba(15, 19, 24, 0.06);
}
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(145deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
  color: #141a22;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--gold-shadow);
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s ease,
    filter 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-shadow-hover);
  filter: brightness(1.06) saturate(1.05);
}
.section-dark .lead,
.section-dark .section-copy p,
.section-dark .service-step p,
.section-dark .industry-card li,
.section-dark .project-card p,
.section-dark .coverage-panel p,
.section-dark .contact-form span,
.section-dark .scope-card ul,
.section-dark .client-slot p,
.section-dark .advantage-card p,
.section-dark .data-grid span,
.section-dark .manpower-card p {
  color: var(--text-on-dark-soft);
  font-weight: 500;
}
.section-dark .section-copy p,
.section-dark .service-step p,
.section-dark .project-card p,
.section-dark .coverage-panel p,
.section-dark .manpower-card p,
.section-dark .faq-list p {
  color: var(--text-on-dark);
  font-weight: 500;
}
.section-dark .service-step,
.section-dark .project-card,
.section-dark .manpower-card,
.section-dark .coverage-grid article,
.section-dark .faq-list details {
  background: rgba(26, 34, 44, 0.72);
  border-color: rgba(174, 183, 194, 0.18);
}
.site-footer p,
.site-footer span,
.site-footer a {
  color: var(--text-on-dark-soft);
  font-weight: 500;
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 20px);
  }
  .site-header .container {
    max-width: none;
  }
  .section-dark .service-step,
  .section-dark .project-card,
  .section-dark .manpower-card,
  .section-dark .coverage-grid article,
  .section-dark .faq-list details {
    background: rgba(26, 34, 44, 0.78);
    border-color: rgba(174, 183, 194, 0.2);
  }
  .section-dark .section-copy p,
  .section-dark .project-card p,
  .section-dark .service-step p,
  .section-dark .manpower-card p,
  .section-dark .faq-list p,
  .section-dark .data-grid span,
  .section-dark .client-slot p {
    color: var(--text-on-dark-soft);
    font-weight: 500;
  }
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark strong,
.section-dark summary,
.section-dark .hero-badge,
.section-dark .project-tag-row span,
.section-dark .service-step span,
.section-dark .live-ops-top,
.section-dark .coverage-grid strong {
  color: var(--text-heading-dark);
  font-weight: 650;
}
.section-dark p,
.section-dark li,
.section-dark span,
.section-dark .faq-list p,
.section-dark .project-card p,
.section-dark .service-step p,
.section-dark .manpower-card p,
.section-dark .coverage-grid span,
.section-dark .ops-line {
  color: var(--text-on-dark-soft);
  font-weight: 500;
}
.section-dark .hero-highlight-grid span,
.section-dark .contact-form span,
.section-dark .data-grid span {
  color: var(--text-on-dark);
  font-weight: 600;
}
@media (min-width: 880px) {
  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .client-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.section-light .logo-cloud span,
.section-light .verified-cloud span {
  color: var(--ink-muted);
  font-weight: 600;
}
.client-ready-section .client-slot p {
  color: var(--ink-muted);
  font-weight: 500;
}
@media (max-width: 1100px) {
  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.public-manpower-section {
  padding: var(--section-y) 0;
}
.public-manpower-shell {
  max-width: min(1040px, 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0 max(20px, env(safe-area-inset-left, 0px)) 0 max(20px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
.public-manpower-intro {
  text-align: center;
  margin: 0 0 1.25rem;
}
.public-manpower-intro__title {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.6vw, 2.35rem);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.public-manpower-intro__subtitle {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-body);
  max-width: 32rem;
  margin-inline: auto;
}
.public-manpower-form-card {
  border-radius: 20px;
  border: 1px solid rgba(42, 53, 68, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 246, 241, 0.9) 55%, rgba(245, 240, 232, 0.92) 100%);
  box-shadow: var(--shadow-card-elevated);
}
.public-manpower-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 1.35rem 1.35rem 1.5rem;
  text-align: left;
  box-sizing: border-box;
}
.public-manpower-form__note {
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(42, 53, 68, 0.08);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--slate);
  font-weight: 500;
}
.public-manpower-form__note a {
  color: var(--orange-deep);
  font-weight: 700;
  text-decoration: none;
}
.public-manpower-form__note a:hover {
  text-decoration: underline;
}
.public-manpower-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
}
.public-manpower-layout__column {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.public-manpower-panel {
  padding: 1rem 1rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(42, 53, 68, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.public-manpower-panel--stretch {
  height: 100%;
}
.public-manpower-group__title {
  margin: 0 0 0.65rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(42, 53, 68, 0.07);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heading);
}
.public-manpower-field {
  margin: 0 0 0.75rem;
}
.public-manpower-field:last-child {
  margin-bottom: 0;
}
.public-manpower-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
}
.public-manpower-field-row .public-manpower-field {
  margin-bottom: 0;
}
.public-manpower-field-row + .public-manpower-field {
  margin-top: 0.75rem;
}
.public-manpower-submit-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42, 53, 68, 0.08);
}
.public-manpower-label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  color: var(--heading);
  line-height: 1.25;
}
.public-manpower-label__hint {
  font-weight: 500;
  letter-spacing: 0;
  color: var(--slate);
  text-transform: none;
}
.public-manpower-form input[type="text"],
.public-manpower-form input[type="email"],
.public-manpower-form input[type="number"],
.public-manpower-form textarea,
.public-manpower-form select {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(42, 53, 68, 0.14);
  background: #fdfcfa;
  color: var(--field-text);
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}
.public-manpower-form textarea {
  min-height: 0;
}
.public-manpower-form input::placeholder,
.public-manpower-form textarea::placeholder {
  color: rgba(61, 69, 80, 0.52);
}
.public-manpower-form input:focus,
.public-manpower-form textarea:focus,
.public-manpower-form select:focus {
  border-color: var(--focus-ring);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(191, 164, 122, 0.26),
    0 8px 22px rgba(15, 19, 24, 0.07);
}
.public-manpower-form select {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-color: #fdfcfa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232a3544' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.public-manpower-form textarea {
  resize: vertical;
  line-height: 1.5;
}
.public-manpower-form textarea#mp-skills {
  min-height: 88px;
}
.public-manpower-form textarea#mp-desc {
  min-height: 112px;
}
.public-manpower-submit.submit-btn {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 15px 22px;
  min-height: 52px;
  border-radius: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .public-manpower-layout {
    grid-template-columns: 1fr;
  }
  .public-manpower-panel--stretch {
    height: auto;
  }
}
@media (max-width: 520px) {
  .public-manpower-field-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .public-manpower-form {
    padding: 1.1rem 1rem 1.25rem;
  }
}
#raim-manpower-public-form .contact-form-alerts:empty {
  display: none;
}
#raim-manpower-public-form .contact-form-alerts {
  margin-bottom: 16px;
}
#raim-manpower-public-form .contact-form-alert {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}
#raim-manpower-public-form .contact-form-alert--success {
  color: #0d3d24;
  background: rgba(93, 240, 138, 0.22);
  border: 1px solid rgba(34, 120, 62, 0.35);
}
#raim-manpower-public-form .contact-form-alert--error {
  color: #4a0c0c;
  background: rgba(255, 107, 107, 0.16);
  border: 1px solid rgba(180, 35, 24, 0.35);
}
.contact-field-label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
#raim-manpower-public-form .field-error:empty {
  display: none;
}
#raim-manpower-public-form .field-error {
  margin: 8px 0 0;
  font-size: 0.8rem;
  font-weight: 650;
  color: #a61b1b;
  line-height: 1.35;
}
#raim-manpower-public-form .form-field.has-error input,
#raim-manpower-public-form .form-field.has-error textarea,
#raim-manpower-public-form .form-field.has-error select {
  border-color: #b42318 !important;
  box-shadow: 0 0 0 1px rgba(180, 35, 24, 0.12);
}
#raim-manpower-public-form .submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#raim-manpower-public-form .submit-btn:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.88;
}
#raim-manpower-public-form .submit-btn.is-loading .submit-btn-text {
  opacity: 0;
}
#raim-manpower-public-form .submit-btn .submit-btn-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
#raim-manpower-public-form .submit-btn:not(.is-loading) .submit-btn-spinner {
  display: none;
}
.hero-copy,
.hero-panel {
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal],
  [data-section-reveal],
  [data-reveal].is-visible,
  [data-section-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .reveal,
  .reveal.active {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-copy,
  .hero-panel {
    animation: none !important;
  }
  .hero-stats article:hover,
  .hero-stats-section .hero-stats article:hover,
  .industry-card:hover {
    transform: none !important;
  }
  .hero-stats article:hover .hero-stats__icon,
  .hero-stats-section .hero-stats article:hover .hero-stats__icon,
  .industry-card:hover .industry-card__icon {
    transform: none !important;
  }
  .regional-capabilities__stat:hover,
  .regional-capabilities__item:hover {
    transform: none !important;
  }
  .faq-list details:hover {
    transform: none !important;
  }
}
.hero-copy,
.hero-panel,
.visual-card,
.project-card,
.feature-panel,
.coverage-panel,
.contact-form {
  will-change: auto;
}
.section-dark .service-step,
.section-dark .project-card,
.section-dark .manpower-card,
.section-dark .coverage-grid article,
.section-dark .faq-list details {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.012) 100%),
    rgba(20, 27, 38, 0.88);
  border-color: rgba(212, 188, 146, 0.14);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.section-light .industry-card,
.section-light .advantage-card,
.section-light .data-grid article,
.section-light .scope-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.65) 0%, transparent 42%),
    linear-gradient(180deg, var(--light-card-surface) 0%, var(--light-card-base) 100%);
  border-color: var(--light-border);
  box-shadow: var(--shadow-card);
}
.section-light .industry-card.accent-a,
.section-light .industry-card.accent-c {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.9) 0%, #f6f1e8 52%, var(--light-card-surface) 100%);
}
.section-light .industry-card.accent-b,
.section-light .industry-card.accent-d {
  background: linear-gradient(180deg, #fffaf2 0%, #f5efe0 100%);
}
.hero-overlay::after {
  display: none;
}
.main-shell > section::before,
.main-shell > section::after,
.section::before,
.section::after,
.hero::before,
.hero::after,
.site-footer::before,
.site-footer::after {
  pointer-events: none !important;
}
.site-header {
  background: linear-gradient(180deg, #0d1a2c 0%, #0a1422 100%);
  border-bottom: 1px solid rgba(212, 188, 146, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 10px 24px rgba(0, 0, 0, 0.22);
}
.site-header.scrolled {
  background: linear-gradient(180deg, #0a1422 0%, #07101c 100%);
  border-bottom-color: rgba(212, 188, 146, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}
.auth-body .site-header {
  background: linear-gradient(180deg, #0d1a2c 0%, #0a1422 100%);
  border-bottom: 1px solid rgba(212, 188, 146, 0.16);
}
@media (max-width: 768px) {
  .nav {
    background: #0c1626;
  }
}
@media (min-width: 769px) {
  .site-header .nav > a:hover,
  .site-header .nav > a:focus-visible,
  .site-header .nav-item > a:hover,
  .site-header .nav-item > a:focus-visible {
    border-bottom-color: rgba(212, 188, 146, 0.85);
  }
}
body::before {
  background:
    radial-gradient(circle at 18% 10%, rgba(191, 164, 122, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 38%);
}
.hero-stats article,
.hero-stats-section .hero-stats article,
.industry-card,
.advantage-card,
.scope-card,
.project-card,
.faq-list details {
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.hero-stats article:hover,
.hero-stats-section .hero-stats article:hover,
.industry-card:hover,
.advantage-card:hover,
.scope-card:hover,
.project-card:hover,
.faq-list details:hover {
  transform: none;
}
.hero-stats article:hover .hero-stats__icon,
.hero-stats-section .hero-stats article:hover .hero-stats__icon,
.industry-card:hover .industry-card__icon {
  transform: none;
}
.public-manpower-form-card {
  background: linear-gradient(180deg, var(--light-card-surface) 0%, var(--light-card-base) 100%);
  border: 1px solid rgba(42, 53, 68, 0.12);
}
.public-manpower-label,
.contact-form span,
.contact-field-label {
  color: #2a3544;
}
.public-manpower-form input,
.public-manpower-form textarea,
.public-manpower-form select,
.contact-form input,
.contact-form textarea {
  color: #15202d;
  background: #fdfaf3;
  border-color: rgba(42, 53, 68, 0.18);
}
.public-manpower-form input::placeholder,
.public-manpower-form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(42, 53, 68, 0.55);
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
img,
svg,
video {
  max-width: 100%;
  height: auto;
}
@media (hover: none) {
  html {
    scroll-behavior: auto;
  }
}
@media (max-width: 768px) {
  [data-reveal],
  [data-section-reveal],
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-stats article,
  .hero-stats-section .hero-stats article,
  .industry-card,
  .advantage-card,
  .scope-card,
  .project-card,
  .visual-card,
  .faq-list details,
  .button.primary,
  .button.secondary {
    transition: box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  }
  .hero-stats article:active,
  .hero-stats-section .hero-stats article:active,
  .industry-card:active,
  .advantage-card:active,
  .scope-card:active,
  .project-card:active,
  .visual-card:active,
  .faq-list details:active {
    transform: none !important;
  }
  .visual-card:hover img,
  .project-card:hover img {
    transform: none;
  }
}
[data-reveal],
[data-section-reveal],
[data-reveal].is-visible,
[data-section-reveal].is-visible,
.reveal,
.reveal.active {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-actions {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
.hero-stats article,
.hero-stats-section .hero-stats article,
.service-step,
.scope-card,
.industry-card,
.project-card,
.advantage-card,
.manpower-card,
.compliance-card,
.client-slot,
.data-grid article,
.faq-list details,
.visual-card,
.button.primary,
.button.secondary {
  transition: box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease !important;
}
.hero-stats article:hover,
.hero-stats-section .hero-stats article:hover,
.service-step:hover,
.scope-card:hover,
.industry-card:hover,
.project-card:hover,
.advantage-card:hover,
.manpower-card:hover,
.compliance-card:hover,
.client-slot:hover,
.data-grid article:hover,
.faq-list details:hover,
.visual-card:hover,
.button.primary:hover,
.button.secondary:hover,
.visual-card:hover img,
.project-card:hover img,
.regional-capabilities__stat:hover,
.regional-capabilities__item:hover {
  transform: none !important;
}
.glass-panel::before,
.service-step::before,
.scope-card::before,
.industry-card::before,
.project-card::before,
.advantage-card::before,
.manpower-card::before,
.compliance-card::before,
.client-slot::before,
.data-grid article::before,
.contact-form::before,
.visual-card::before {
  transform: none !important;
  transition: none !important;
}
:root {
  --section-y: 74px;
  --section-y-sm: 50px;
  --space-blocks: 24px;
  --space-blocks-tight: 20px;
  --hero-y-top: 40px;
  --hero-y-bottom: 46px;
}
.container {
  width: min( calc(100% - 40px), 1560px );
}
.section-heading {
  max-width: min(36rem, 100%);
  margin-bottom: 26px;
}
.section-copy h2,
.section-heading h2,
.coverage-panel h2 {
  font-size: clamp(1.9rem, 3vw, 2.72rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.eyebrow {
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
}
.lead,
.section-copy p,
.service-step p,
.industry-card li,
.project-card p,
.coverage-panel p,
.manpower-card p,
.faq-list p {
  line-height: 1.58;
}
.section-light {
  background:
    radial-gradient(ellipse 100% 42% at 50% 0%, rgba(191, 164, 122, 0.07), transparent 58%),
    radial-gradient(ellipse 80% 38% at 50% 100%, rgba(42, 53, 68, 0.04), transparent 52%),
    linear-gradient(180deg, var(--light-shell-top) 0%, var(--light-shell-mid) 48%, var(--light-shell-bottom) 100%);
  box-shadow:
    inset 0 1px 0 var(--light-edge-inset),
    inset 0 -1px 0 var(--light-edge-shadow);
}
.section.section-light.section-warm {
  background:
    radial-gradient(ellipse 95% 40% at 18% 0%, rgba(191, 164, 122, 0.09), transparent 55%),
    linear-gradient(180deg, var(--light-shell-warm-top) 0%, var(--light-shell-warm-mid) 50%, var(--light-shell-warm-bottom) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 var(--light-edge-shadow);
}
.section-dark {
  background: linear-gradient(180deg, #080e16 0%, #111a25 52%, #0a111a 100%);
}
.service-step,
.scope-card,
.industry-card,
.project-card,
.advantage-card,
.manpower-card,
.compliance-card,
.client-slot,
.data-grid article,
.faq-list details {
  border-radius: 20px;
}
.service-step,
.scope-card,
.industry-card,
.advantage-card,
.manpower-card,
.compliance-card,
.data-grid article {
  padding: 22px;
}
.project-card {
  min-height: 100%;
}
.project-card h3,
.advantage-card h3,
.service-step h3,
.scope-card h3,
.industry-card h3,
.manpower-card h3,
.compliance-card h3 {
  letter-spacing: -0.01em;
}
.project-tag-row {
  gap: 8px;
}
.project-tag-row span {
  letter-spacing: 0.16em;
}
.section-contact-cta {
  margin-top: 28px;
  padding: 18px 20px;
  gap: 16px;
  border-radius: 18px;
}
.section-contact-cta__copy {
  line-height: 1.45;
  max-width: 48rem;
}
.button,
.nav-cta {
  min-height: 42px;
  padding-inline: 22px;
  letter-spacing: 0.01em;
}
.public-manpower-section {
  padding-block: 70px;
}
.public-manpower-form-card {
  border-radius: 22px;
}
.site-footer {
  padding: 34px 0 38px;
  background: linear-gradient(180deg, #0b1119 0%, #070c12 100%);
  border-top: 1px solid rgba(212, 188, 146, 0.16);
}
.footer-layout {
  align-items: flex-start;
}
.site-footer strong {
  letter-spacing: 0.2em;
}
.footer-links {
  gap: 7px;
}
.verify-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(191, 164, 122, 0.12), transparent 28%),
    linear-gradient(180deg, #080e16 0%, #111a25 42%, #f6f2eb 42%, #f7f3ec 100%);
}
.verify-main {
  padding: 70px 0 82px;
}
.verify-shell {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}
.verify-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}
.verify-copy,
.verify-panel,
.verify-result {
  border-radius: 24px;
}
.verify-copy {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #0d1520;
  border: 1px solid rgba(212, 188, 146, 0.16);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-card-dark);
}
.verify-copy .eyebrow {
  color: var(--bronze-bright);
}
.verify-copy h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-heading-dark);
}
.verify-copy p {
  margin: 0;
  max-width: 34rem;
  color: var(--text-on-dark-soft);
  font-size: 1.02rem;
  line-height: 1.58;
}
.verify-copy p + p {
  margin-top: 18px;
}
.verify-panel {
  padding: 30px;
  background: linear-gradient(180deg, var(--light-card-surface) 0%, var(--light-card-base) 100%);
  border: 1px solid rgba(42, 53, 68, 0.12);
  box-shadow: var(--shadow-card-elevated);
}
.verify-form {
  display: grid;
  gap: 18px;
}
.verify-label {
  display: grid;
  gap: 8px;
  color: var(--ink-muted);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
}
.verify-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}
.verify-input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(42, 53, 68, 0.18);
  background: #fdfaf3;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.verify-input:focus {
  outline: none;
  border-color: var(--focus-ring);
  box-shadow: 0 0 0 3px rgba(191, 164, 122, 0.22);
}
.verify-result {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(42, 53, 68, 0.12);
  background: #fff;
}
.verify-result[hidden] {
  display: none;
}
.verify-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.verify-result.is-valid .verify-status {
  color: #102015;
  background: rgba(42, 121, 74, 0.15);
  border: 1px solid rgba(42, 121, 74, 0.28);
}
.verify-result.is-invalid .verify-status,
.verify-result.is-error .verify-status {
  color: #351616;
  background: rgba(150, 54, 54, 0.13);
  border: 1px solid rgba(150, 54, 54, 0.26);
}
.verify-result h2 {
  margin: 16px 0 10px;
  color: var(--heading);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
}
.verify-result p {
  margin: 0;
  color: var(--text-body);
  line-height: 1.55;
}
.verify-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.verify-detail {
  padding: 14px;
  border-radius: 14px;
  background: #f7f3ec;
  border: 1px solid rgba(42, 53, 68, 0.08);
}
.verify-detail span {
  display: block;
  margin-bottom: 5px;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.verify-detail strong {
  color: var(--heading);
  font-size: 0.98rem;
}
.verify-note {
  padding-top: 16px;
  border-top: 1px solid rgba(42, 53, 68, 0.1);
}
.verify-disclaimer {
  margin-top: 20px;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.55;
}
.verify-disclaimer strong {
  color: var(--heading);
}
@media (max-width: 820px) {
  .verify-main {
    padding: 42px 0 58px;
  }
  .verify-shell {
    width: calc(100% - 24px);
  }
  .verify-hero,
  .verify-input-row,
  .verify-details {
    grid-template-columns: 1fr;
  }
  .verify-copy,
  .verify-panel {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 24px);
  }
  .section-heading {
    margin-bottom: 22px;
  }
  .section-copy h2,
  .section-heading h2,
  .coverage-panel h2,
  .hero-copy h1 {
    font-size: clamp(1.78rem, 9vw, 2.5rem);
    line-height: 1.08;
  }
  .lead,
  .section-copy p,
  .service-step p,
  .industry-card li,
  .project-card p,
  .coverage-panel p,
  .manpower-card p,
  .faq-list p {
    font-size: 0.96rem;
    line-height: 1.54;
  }
  .service-step,
  .scope-card,
  .industry-card,
  .advantage-card,
  .manpower-card,
  .compliance-card,
  .data-grid article {
    padding: 20px;
  }
  .section-contact-cta {
    align-items: flex-start;
    padding: 18px;
    margin-top: 24px;
  }
  .button,
  .nav-cta {
    width: 100%;
    min-height: 44px;
  }
  .footer-layout {
    gap: 18px;
  }
}
.verify-header {
  background: linear-gradient(180deg, #0d1a2c 0%, #0a1422 100%);
  border-bottom: 1px solid rgba(212, 188, 146, 0.16);
}
.verify-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.verify-intro {
  max-width: 42rem;
  margin-bottom: 24px;
  color: var(--text-on-dark-soft);
}
.verify-intro h1 {
  margin: 0 0 14px;
  color: var(--text-heading-dark);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.verify-intro p {
  margin: 0;
  max-width: 36rem;
  line-height: 1.58;
}
.verify-card,
.generator-panel,
.document-preview {
  border-radius: 24px;
  border: 1px solid rgba(42, 53, 68, 0.12);
  background: linear-gradient(180deg, var(--light-card-surface) 0%, var(--light-card-base) 100%);
  box-shadow: var(--shadow-card-elevated);
}
.verify-card {
  padding: 26px;
}
.verify-card label,
.generator-field label {
  display: grid;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.verify-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.verify-card input,
.generator-field input,
.generator-field textarea,
.generator-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(42, 53, 68, 0.18);
  background: #fdfaf3;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
}
.generator-field textarea {
  min-height: 96px;
  padding: 14px 16px;
  resize: vertical;
}
.verify-help,
.generator-notice,
.document-meta {
  color: var(--slate);
  line-height: 1.5;
}
.verify-result {
  margin-top: 22px;
}
.verify-result strong {
  display: block;
  margin-bottom: 12px;
  color: var(--heading);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}
.verify-result__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.verify-result__details div {
  padding: 14px;
  border-radius: 14px;
  background: #f7f3ec;
  border: 1px solid rgba(42, 53, 68, 0.08);
}
.verify-result__details dt {
  margin-bottom: 4px;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.verify-result__details dd {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
}
.verify-result--valid {
  border-color: rgba(42, 121, 74, 0.24);
}
.verify-result--quotation-r1 > strong:first-of-type {
  font-size: 1.28rem;
  letter-spacing: 0.16em;
}
.verify-result--quotation-r1 .verify-result__r1-lines {
  margin: 14px 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(42, 121, 74, 0.24);
  background: rgba(42, 121, 74, 0.07);
}
.verify-result--quotation-r1 .verify-result__r1-line {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0.02em;
}
.verify-result--quotation-r1 .verify-result__r1-line:last-child {
  margin-bottom: 0;
}
.verify-result--invalid {
  border-color: rgba(150, 54, 54, 0.24);
}
.generator-notice {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 188, 146, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark-soft);
}
.verify-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 188, 146, 0.24);
  background: rgba(13, 21, 32, 0.78);
  color: var(--text-on-dark-soft);
}
.generator-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}
.generator-panel {
  padding: 26px;
}
.generator-fields {
  display: grid;
  gap: 14px;
}
.generator-field {
  display: grid;
  gap: 8px;
}
.generator-actions,
.generator-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.document-preview {
  padding: 34px;
  color: var(--ink);
}
.document-preview__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(42, 53, 68, 0.14);
}
.document-preview__brand strong {
  color: var(--heading);
  letter-spacing: 0.18em;
}
.document-preview h2 {
  margin: 26px 0 10px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  color: var(--heading);
}
.document-preview__body {
  min-height: 220px;
  padding: 22px 0;
  line-height: 1.68;
  white-space: pre-line;
}
.document-preview__footer {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(42, 53, 68, 0.14);
  color: var(--ink-muted);
  font-size: 0.92rem;
}
.generator-output {
  display: grid;
  gap: 16px;
}
.qr-box {
  width: 164px;
  height: 164px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(42, 53, 68, 0.12);
  background: #fff;
}
.qr-box img {
  width: 100%;
  height: 100%;
}
@media (max-width: 920px) {
  .generator-grid,
  .verify-form-row,
  .verify-result__details {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 430px) {
  .site-header .topbar {
    gap: 6px;
    padding-right: max(8px, calc(env(safe-area-inset-right, 0px) + 56px));
  }
  .site-header .brand img {
    max-width: min(118px, 34vw);
    height: 36px;
  }
  .site-header .topbar-actions {
    gap: 4px;
  }
  .site-header .header-login__trigger,
  .site-header .nav-cta {
    padding-left: 8px;
    padding-right: 8px;
    min-height: 38px;
  }
}
.compact-intake {
  padding-top: var(--section-y-sm);
  padding-bottom: var(--section-y-sm);
}
.compact-intake__layout {
  display: grid;
  gap: 24px 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .compact-intake__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}
.compact-intake__header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  max-width: 20ch;
}
.compact-intake__lead {
  margin: 0;
  max-width: min(36rem, 100%);
  color: var(--text-body);
  line-height: 1.55;
}
.compact-intake__fields {
  display: grid;
  gap: 14px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.compact-field {
  display: grid;
  gap: 6px;
}
.compact-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.compact-field input,
.compact-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--field-bg);
  font: inherit;
}
.compact-field textarea {
  min-height: 88px;
  resize: vertical;
}
.compact-intake__actions {
  margin-top: 16px;
}
.compact-intake--desk .data-grid {
  margin-bottom: 0;
}
.cta-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#request-roster.public-manpower-section {
  padding-top: var(--section-y-sm);
  padding-bottom: var(--section-y-sm);
}
.public-manpower-section .public-manpower-intro__title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}
.intake-form__grid {
  display: grid;
  gap: 18px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.intake-field {
  display: grid;
  gap: 8px;
}
.intake-field--wide {
  grid-column: 1 / -1;
}
.intake-field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="number"],
.intake-form input[type="date"],
.intake-form input[type="file"],
.intake-form textarea,
.intake-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--field-bg);
  color: var(--field-text);
  font: inherit;
}
.intake-form textarea {
  min-height: 120px;
  resize: vertical;
}
.intake-form__actions {
  margin-top: 22px;
}
.intake-form__status {
  margin: 14px 0 0;
  font-weight: 600;
  min-height: 1.4em;
}
.intake-form__status.is-success {
  color: var(--orange-deep);
}
.section-dark .intake-form__status.is-success {
  color: var(--bronze-bright);
}
.executive-contact-grid {
  display: grid;
  gap: var(--space-blocks);
}
.executive-contact-card {
  padding: 22px 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--light-card-surface) 0%, var(--light-card-base) 100%);
  box-shadow: var(--shadow-card);
}
.executive-contact-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.executive-contact-list a {
  color: var(--navy);
  font-weight: 700;
}
.executive-contact-list a:hover {
  color: var(--orange-deep);
}
.coordination-services ul {
  margin: 0 0 var(--space-blocks);
  padding-left: 1.2rem;
  color: var(--text-body);
  line-height: 1.7;
}
.contact-desk-grid {
  margin-bottom: var(--space-blocks);
}
.section-pause {
  padding-top: calc(var(--section-y) + 12px);
  padding-bottom: calc(var(--section-y) + 12px);
}
.intake-form__grid--modal {
  gap: 14px 16px;
}
.raim-modal--premium {
  width: min(560px, calc(100vw - 32px));
}
.raim-modal__lead {
  margin: 0 0 16px;
  color: var(--text-body);
  line-height: 1.55;
}
.raim-slide-panel {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.raim-slide-panel.is-open {
  pointer-events: auto;
}
.raim-slide-panel__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(11, 16, 24, 0.36);
  cursor: pointer;
}
.raim-slide-panel__sheet {
  position: relative;
  width: min(420px, 100vw);
  max-height: 100vh;
  overflow-y: auto;
  background: var(--surface);
  box-shadow: -12px 0 40px rgba(8, 10, 14, 0.18);
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-smooth);
  padding: 24px 22px 28px;
}
.raim-slide-panel.is-open .raim-slide-panel__sheet {
  transform: translateX(0);
}
.raim-slide-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.raim-slide-panel__header h2 {
  margin: 0;
  font-size: 1.45rem;
}
.raim-slide-panel__close {
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0 4px;
}
.raim-slide-panel__lead {
  margin: 0 0 16px;
  color: var(--text-body);
}
.raim-modal {
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 0;
  border: none;
  border-radius: var(--radius-card-lg);
  background: var(--surface);
  box-shadow: 0 24px 64px rgba(8, 10, 14, 0.28);
}
.raim-modal:not([open]) {
  display: none;
}
.raim-modal::backdrop {
  background: rgba(11, 16, 24, 0.38);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.raim-modal__panel {
  padding: 26px 24px 22px;
  margin: 0;
}
.raim-modal__header h2 {
  margin: 0 0 8px;
}
.raim-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 900px) {
  .intake-form__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --section-y: 64px;
    --section-y-sm: 48px;
  }
  .compact-intake__layout {
    grid-template-columns: 1fr;
  }
  .compact-intake__fields {
    grid-template-columns: 1fr;
  }
  .section-contact-cta {
    padding: 16px 18px;
    gap: 14px;
  }
  .section-contact-cta .button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .section-heading h2 {
    font-size: clamp(1.45rem, 5.2vw, 2rem);
  }
  .section-copy p,
  .section-lead,
  .service-step p,
  .advantage-card p {
    font-size: 1rem;
    line-height: 1.62;
  }
}
.raim-authority {
  --section-y: 92px;
  --section-y-sm: 60px;
}
body.raim-authority {
  background:
    radial-gradient(ellipse 90% 55% at 12% -8%, rgba(191, 164, 122, 0.06), transparent 52%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(20, 28, 38, 0.04), transparent 45%),
    linear-gradient(180deg, #f0ebe3 0%, #e6e0d6 42%, #ebe6de 100%);
}
.raim-authority .main-shell > section {
  isolation: isolate;
}
.raim-authority .main-shell > section + section {
  box-shadow: inset 0 1px 0 var(--hairline-bronze);
}
.raim-authority .main-shell > .section-dark + .section-light,
.raim-authority .main-shell > .section-light + .section-dark,
.raim-authority .main-shell > .visual-strip + .section-light,
.raim-authority .main-shell > .section-light + .visual-strip {
  box-shadow:
    inset 0 1px 0 var(--hairline-bronze),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04);
}
.raim-authority .section-light {
  background: linear-gradient(175deg, #ebe6dd 0%, #f6f3ed 46%, #e8e3da 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(15, 19, 24, 0.05);
}
.raim-authority .section.section-light.section-warm {
  background: linear-gradient(175deg, #e6dfd3 0%, #f3efe6 50%, #ebe4d8 100%);
}
.raim-authority .section-dark,
.raim-authority .hero-stats-section.section-dark,
.raim-authority .visual-strip.section-dark {
  background: linear-gradient(168deg, #070a0f 0%, #101820 46%, #0a0f16 100%);
  box-shadow:
    inset 0 1px 0 var(--hairline-dark),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 24px 64px rgba(0, 0, 0, 0.12);
}
.raim-authority .section-dark::before,
.raim-authority .hero-stats-section.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  z-index: 0;
}
.raim-authority .eyebrow {
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--orange-deep);
}
.raim-authority .section-dark .eyebrow {
  color: var(--bronze-bright);
  opacity: 0.92;
}
.raim-authority .hero-copy h1 {
  font-size: var(--type-display);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.raim-authority .section-heading h2,
.raim-authority .section-copy h2,
.raim-authority .coverage-panel h2 {
  font-size: var(--type-section);
  line-height: 1.14;
  letter-spacing: -0.018em;
  max-width: 22ch;
}
.raim-authority .section-heading {
  max-width: min(44rem, 100%);
  margin-bottom: var(--space-blocks);
}
.raim-authority .section-heading .section-lead,
.raim-authority .lead,
.raim-authority .section-copy p,
.raim-authority .service-step p,
.raim-authority .advantage-card p,
.raim-authority .project-card p {
  font-size: var(--type-body);
  line-height: 1.68;
  max-width: var(--measure-prose);
}
.raim-authority .hero-copy .lead {
  max-width: min(36rem, 92vw);
}
.raim-authority .hero-copy .lead + .lead {
  margin-top: 0.65rem;
  opacity: 0.88;
  font-size: clamp(0.98rem, 2vw, 1.05rem);
}
.raim-authority .hero-media {
  background: var(--surface-command);
}
.raim-authority .hero-image {
  transform: scale(1.04);
  filter: contrast(1.06) saturate(0.88) brightness(0.92);
  animation: heroCinematicDrift 28s var(--ease-cinematic) infinite alternate;
}
@keyframes heroCinematicDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-0.6%, 0.4%, 0);
  }
}
.raim-authority .hero-overlay {
  background:
    linear-gradient(165deg, rgba(4, 6, 10, 0.14) 0%, transparent 40%),
    linear-gradient(
      102deg,
      rgba(2, 4, 8, 0.48) 0%,
      rgba(4, 8, 14, 0.34) 34%,
      rgba(6, 10, 16, 0.22) 62%,
      rgba(8, 12, 18, 0.12) 100%
    );
}
.raim-authority .hero-inner {
  min-height: clamp(460px, 62vh, 680px);
}
.raim-authority .visual-card {
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.raim-authority .visual-card::after,
.raim-authority .project-card::after {
  background: linear-gradient(
    185deg,
    rgba(8, 12, 18, 0.08) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.34) 100%
  );
}
.raim-authority .visual-card img,
.raim-authority .project-card img {
  filter: contrast(1.05) saturate(0.9) brightness(0.94);
}
.raim-authority .visual-card:hover img {
  transform: scale(1.035);
  transition: transform 1.1s var(--ease-cinematic);
}
.raim-authority .visual-card-copy span {
  color: var(--bronze-bright);
  letter-spacing: 0.2em;
}
.raim-authority .project-card:hover img {
  transform: scale(1.04);
}
.raim-authority [data-reveal],
.raim-authority [data-section-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.85s var(--ease-cinematic),
    transform 0.9s var(--ease-cinematic);
  transition-delay: var(--reveal-delay, 0ms);
}
.raim-authority [data-reveal="left"],
.raim-authority [data-section-reveal="left"] {
  transform: translate3d(18px, 0, 0);
}
.raim-authority [data-reveal].is-visible,
.raim-authority [data-section-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.raim-authority .reveal {
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.8s var(--ease-cinematic),
    transform 0.85s var(--ease-cinematic);
}
.raim-authority .hero-stats article,
.raim-authority .service-step,
.raim-authority .scope-card,
.raim-authority .industry-card,
.raim-authority .advantage-card,
.raim-authority .manpower-card,
.raim-authority .compliance-card,
.raim-authority .client-slot {
  transition:
    transform 0.45s var(--ease-cinematic),
    box-shadow 0.45s var(--ease-cinematic),
    border-color 0.45s ease;
}
.raim-authority .hero-stats article:hover,
.raim-authority .service-step:hover,
.raim-authority .scope-card:hover,
.raim-authority .industry-card:hover,
.raim-authority .advantage-card:hover,
.raim-authority .manpower-card:hover,
.raim-authority .project-card:hover {
  transform: translateY(-3px);
}
.raim-authority .industry-card:hover {
  transform: translateY(-3px);
}
.raim-authority .button {
  transition:
    transform 0.4s var(--ease-cinematic),
    box-shadow 0.4s var(--ease-cinematic),
    background 0.4s ease,
    border-color 0.4s ease,
    color 0.35s ease;
}
.raim-authority .button.primary::after {
  opacity: 0;
}
.raim-authority .button.primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04) saturate(1.02);
}
.raim-authority .button.secondary:hover {
  transform: translateY(-1px);
}
.raim-authority .button:active {
  transform: translateY(0);
}
.raim-authority .site-header {
  background: rgba(8, 14, 22, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  transition:
    background 0.5s var(--ease-cinematic),
    box-shadow 0.5s var(--ease-cinematic),
    border-color 0.5s ease;
}
.raim-authority .site-header.scrolled {
  background: rgba(6, 10, 16, 0.97);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}
.raim-authority .compact-intake {
  padding-top: calc(var(--section-y-sm) + 8px);
  padding-bottom: calc(var(--section-y-sm) + 8px);
}
.raim-authority .section-pause {
  padding-top: calc(var(--section-y) + 16px);
  padding-bottom: calc(var(--section-y) + 8px);
}
.raim-authority .section-contact-cta {
  border-color: rgba(191, 164, 122, 0.18);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 243, 236, 0.88) 100%);
}
.raim-authority .section-dark .section-contact-cta--dark {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.1);
}
.raim-authority .site-footer {
  background: linear-gradient(180deg, #0a0e14 0%, #06090d 100%);
  border-top: 1px solid rgba(191, 164, 122, 0.12);
  color: var(--text-on-dark-soft);
}
body.raim-operational {
  background:
    radial-gradient(ellipse 90% 55% at 12% -8%, rgba(191, 164, 122, 0.06), transparent 52%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(20, 28, 38, 0.04), transparent 45%),
    linear-gradient(180deg, #f0ebe3 0%, #e6e0d6 42%, #ebe6de 100%);
}
body.raim-operational .section-dark::before,
body.raim-operational .hero-stats-section.section-dark::before {
  content: none;
}
body.raim-operational .hero-image {
  animation: none;
  transform: none;
  filter: none;
}
body.raim-operational .hero-overlay {
  background: transparent;
}
body.raim-operational .hero-inner {
  min-height: clamp(420px, 56vh, 620px);
}
body.raim-operational .visual-card::after,
body.raim-operational .project-card::after {
  background: linear-gradient(180deg, transparent 52%, rgba(6, 10, 16, 0.38) 100%);
}
body.raim-operational .visual-card img,
body.raim-operational .project-card img {
  filter: none;
}
body.raim-operational .visual-card:hover img,
body.raim-operational .project-card:hover img {
  transform: none;
}
body.raim-operational [data-reveal],
body.raim-operational [data-section-reveal] {
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.5s var(--ease-smooth),
    transform 0.55s var(--ease-smooth);
}
body.raim-operational .reveal {
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.48s var(--ease-smooth),
    transform 0.52s var(--ease-smooth);
}
body.raim-operational .hero-stats article:hover,
body.raim-operational .project-card:hover,
body.raim-operational .service-step:hover,
body.raim-operational .industry-card:hover {
  transform: translateY(-2px);
}
body.raim-operational .hero-stats-section .hero-stats article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-dark-hover);
}
body.raim-operational .main-shell > section + section {
  box-shadow: inset 0 1px 0 rgba(191, 164, 122, 0.1);
}
.ops-stat__detail,
.ops-proof-item p {
  margin: 8px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 26ch;
}
.ops-deployment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.ops-deployment-strip li {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(235, 230, 220, 0.92);
}
.ops-proof-row {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ops-proof-item {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.ops-proof-item__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-bright);
  opacity: 0.9;
}
.ops-proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--text-heading-dark);
}
.ops-signal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 18, 0.55);
}
.section-light .ops-signal {
  border-color: var(--line);
  background: rgba(42, 53, 68, 0.04);
}
.ops-signal__status {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-bright);
}
.section-light .ops-signal__status {
  color: var(--orange-deep);
}
.ops-signal__ref {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}
.section-light .ops-signal__ref {
  color: var(--text-body);
}
.project-card .ops-signal {
  position: relative;
  z-index: 2;
  margin: 0 16px 12px;
}
@media (max-width: 900px) {
  .ops-proof-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .ops-deployment-strip li {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.raim-operational .hero-image {
    animation: none;
    transform: none;
  }
  .raim-authority [data-reveal],
  .raim-authority [data-section-reveal],
  .raim-authority .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 768px) {
  .raim-authority {
    --section-y: 64px;
    --section-y-sm: 48px;
    --type-display: clamp(1.75rem, 7vw, 2.35rem);
    --type-section: clamp(1.4rem, 5vw, 1.75rem);
  }
  .raim-authority .hero-inner {
    min-height: clamp(380px, 56vh, 520px);
  }
  .raim-authority .hero-image {
    animation: none;
  }
}
@media print {
  body * {
    visibility: hidden;
  }
  .document-preview,
  .document-preview * {
    visibility: visible;
  }
  .document-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    box-shadow: none;
    border: none;
  }
}
body.raim-operational::before {
  content: none;
}
body.raim-operational {
  background: #fff !important;
}
body.raim-operational .section-light,
body.raim-operational .section.section-light.section-warm {
  background: #fff !important;
  box-shadow: none !important;
}
body.raim-operational .public-manpower-section,
body.raim-operational .public-manpower-form-card,
body.raim-operational .public-manpower-panel {
  background: #fff !important;
}
body.raim-operational .main-shell > section + section,
body.raim-operational .main-shell > .section-dark + .section-light,
body.raim-operational .main-shell > .section-light + .section-dark,
body.raim-operational .main-shell > .visual-strip + .section-light,
body.raim-operational .main-shell > .section-light + .visual-strip {
  box-shadow: none !important;
}
body.raim-operational .main-shell > .section-dark + .section-light,
body.raim-operational .main-shell > .section-light + .section-dark,
body.raim-operational .main-shell > .visual-strip + .section-light,
body.raim-operational .main-shell > .section-light + .visual-strip {
  box-shadow:
    inset 0 1px 0 var(--hairline-bronze),
    inset 0 -1px 0 rgba(0, 0, 0, 0.035);
}
body.raim-operational .regional-capabilities {
  border-color: var(--light-border);
}
body.raim-operational .logo-cloud span,
body.raim-operational .verified-cloud span {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.7) 0%, transparent 44%),
    linear-gradient(180deg, var(--light-card-elevated) 0%, var(--light-card-surface) 100%);
  border-color: var(--light-border);
}
/* Phase: visual stabilization. Scoped to the public homepage only. */
body.raim-operational .section-heading,
body.raim-operational .section-copy,
body.raim-operational .section-lead {
  max-width: 42rem;
}
body.raim-operational .section-heading h2 {
  letter-spacing: -0.025em;
}
body.raim-operational .button,
body.raim-operational .nav-cta {
  border-radius: 999px;
  font-weight: 800;
}
body.raim-operational .feature-card,
body.raim-operational .scope-card,
body.raim-operational .industry-card,
body.raim-operational .project-card,
body.raim-operational .advantage-card,
body.raim-operational .service-step,
body.raim-operational .coverage-panel,
body.raim-operational .public-manpower-form-card,
body.raim-operational .executive-contact-card,
body.raim-operational .regional-capabilities__stat {
  border-radius: var(--radius-card);
  border-color: rgba(42, 53, 68, 0.12);
}
body.raim-operational .regional-capabilities {
  gap: clamp(16px, 2.2vw, 24px);
  padding: clamp(20px, 3vw, 32px);
  box-shadow:
    0 12px 32px rgba(15, 19, 24, 0.07),
    0 2px 8px rgba(15, 19, 24, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
body.raim-operational .regional-capabilities__visual {
  padding-bottom: 0;
}
body.raim-operational .regional-capabilities__stat {
  min-height: 112px;
  justify-content: center;
}
body.raim-operational .regional-capabilities__capabilities {
  margin-top: 2px;
  padding-top: 14px;
}
body.raim-operational .section-contact-cta {
  border-color: rgba(191, 164, 122, 0.2);
}
/* Phase: header + CTA consolidation. Public homepage only. */
body.raim-operational .announcement-bar {
  position: relative;
  z-index: 1100;
  background: #070d15;
  border-bottom: 1px solid rgba(212, 188, 146, 0.12);
}
body.raim-operational .announcement-content {
  min-height: 34px;
  padding: 8px 0;
}
body.raim-operational .site-header {
  z-index: 1200;
  isolation: isolate;
  padding: 10px max(16px, min(34px, 4vw));
  background: linear-gradient(180deg, #0b1a2a 0%, #081420 100%);
  border-bottom: 1px solid rgba(212, 188, 146, 0.14);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
body.raim-operational .topbar {
  min-height: 50px;
  gap: clamp(10px, 1.5vw, 18px);
}
body.raim-operational .brand {
  flex: 0 1 auto;
  min-width: 0;
  gap: 12px;
}
body.raim-operational .brand img {
  height: 42px;
}
body.raim-operational .brand-text {
  max-width: 10.75rem;
}
body.raim-operational .site-header .nav > a,
body.raim-operational .site-header .nav-item > a {
  color: rgba(232, 238, 246, 0.86);
}
body.raim-operational .site-header .nav > a:hover,
body.raim-operational .site-header .nav-item > a:hover {
  color: #fff;
}
body.raim-operational .topbar-actions {
  gap: 8px;
}
body.raim-operational .header-login__trigger,
body.raim-operational .site-header .nav-cta.cta {
  min-height: 38px;
  border-radius: 999px;
  font-weight: 800;
}
body.raim-operational .site-header .nav-cta.cta {
  padding: 8px 16px;
  white-space: nowrap;
}
body.raim-operational .header-login__menu {
  top: calc(100% + 10px);
  z-index: 1220;
  border-color: rgba(212, 188, 146, 0.14);
  background: #0b1828;
}
body.raim-operational .site-header.scrolled {
  background: linear-gradient(180deg, #081420 0%, #07111b 100%);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
body.raim-operational .site-header.scrolled .topbar {
  min-height: 46px;
}
body.raim-operational .site-header.scrolled .brand img {
  height: 38px;
}
body.raim-operational .raim-modal {
  width: min(520px, calc(100vw - 28px));
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(247, 241, 231, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 28px 70px rgba(3, 7, 13, 0.3),
    0 0 0 1px rgba(191, 164, 122, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
body.raim-operational .raim-modal--premium {
  width: min(540px, calc(100vw - 28px));
}
body.raim-operational .raim-modal::backdrop {
  background: rgba(5, 9, 16, 0.08) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
body.raim-operational .raim-slide-panel {
  z-index: 1300;
}
body.raim-operational .raim-slide-panel__backdrop {
  background:
    radial-gradient(ellipse 70% 58% at 32% 28%, rgba(212, 188, 146, 0.08), transparent 62%),
    linear-gradient(90deg, rgba(5, 9, 16, 0.18), rgba(5, 9, 16, 0.28));
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
body.raim-operational .raim-slide-panel__sheet {
  width: min(380px, calc(100vw - 24px));
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(245, 239, 229, 0.92) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    -18px 0 42px rgba(3, 7, 13, 0.22),
    inset 1px 0 0 rgba(191, 164, 122, 0.16);
}
body.raim-operational .raim-slide-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(42, 53, 68, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--heading);
}
@media (min-width: 769px) and (max-width: 1180px) {
  body.raim-operational .site-header .nav > a,
  body.raim-operational .site-header .nav-item > a {
    margin: 0 7px;
    font-size: 13px;
  }
  body.raim-operational .brand-text {
    max-width: 9rem;
  }
}
@media (max-width: 980px) {
  body.raim-operational.nav-open {
    position: fixed;
    inset-inline: 0;
    width: 100%;
    overflow: hidden;
  }
  body.raim-operational .site-header {
    padding: 8px max(14px, env(safe-area-inset-right, 0px)) 8px max(14px, env(safe-area-inset-left, 0px));
  }
  body.raim-operational .topbar {
    flex-wrap: nowrap;
    min-height: 48px;
    padding: 0 max(58px, calc(env(safe-area-inset-right, 0px) + 58px)) 0 0;
    gap: 8px;
  }
  body.raim-operational .brand {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    gap: 9px;
  }
  body.raim-operational .brand img {
    height: 38px;
  }
  body.raim-operational .brand-text {
    min-width: 0;
    max-width: 8.5rem;
  }
  body.raim-operational .topbar-actions {
    flex: 0 0 auto;
    gap: 6px;
  }
  body.raim-operational .header-login__trigger,
  body.raim-operational .site-header .nav-cta.cta {
    min-height: 36px;
    padding: 7px 11px;
    font-size: 0.76rem;
  }
  body.raim-operational .menu-toggle {
    display: inline-flex;
    position: fixed;
    top: max(10px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    z-index: 1250;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #0b1828;
    border-color: rgba(212, 188, 146, 0.52);
  }
  body.raim-operational.nav-open .menu-toggle {
    display: none;
  }
  body.raim-operational .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(84vw, 360px);
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding:
      max(72px, calc(env(safe-area-inset-top, 0px) + 54px))
      max(20px, env(safe-area-inset-right, 0px))
      max(28px, env(safe-area-inset-bottom, 0px))
      max(20px, env(safe-area-inset-left, 0px));
    text-align: left;
    background: #0a1422;
    z-index: 1260;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 220ms ease,
      visibility 0s linear 220ms;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  body.raim-operational .nav.is-open,
  body.raim-operational .nav.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 240ms ease,
      visibility 0s linear 0s;
  }
  body.raim-operational .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 9, 16, 0.48);
    z-index: 1255;
    opacity: 0;
    transition: opacity 220ms ease;
  }
  body.raim-operational.nav-open .nav-backdrop {
    display: block;
    opacity: 1;
  }
  body.raim-operational .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: max(10px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    z-index: 1265;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(212, 188, 146, 0.55);
    background: #0b1828;
    color: #f3eadb;
  }
  body.raim-operational .nav > a,
  body.raim-operational .nav > .nav-item {
    width: 100%;
    max-width: min(420px, 100%);
    margin-inline: auto;
  }
  body.raim-operational .nav > a,
  body.raim-operational .nav > .nav-item > a {
    display: block;
    min-height: auto;
    margin: 0;
    padding: 12px 0;
    color: var(--text-heading-dark);
    font-size: 1.02rem;
    font-weight: 750;
    text-align: left;
  }
  body.raim-operational .mega-menu {
    position: static;
    min-width: 0;
    width: 100%;
    max-width: min(420px, 100%);
    margin: 4px auto 8px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 16px;
  }
}
@media (max-width: 520px) {
  body.raim-operational .brand img {
    height: 34px;
  }
  body.raim-operational .site-header .brand span {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }
  body.raim-operational .site-header .brand small {
    display: none;
  }
  body.raim-operational .header-login__trigger,
  body.raim-operational .site-header .nav-cta.cta {
    padding: 6px 9px;
    font-size: 0.72rem;
  }
}
/* Phase: commercial proposal layout refinement. Scoped to request proposal only. */
body.raim-operational #commercial-proposal.compact-intake {
  position: relative;
  overflow: hidden;
  padding-top: clamp(42px, 5.5vw, 72px);
  padding-bottom: clamp(42px, 5.5vw, 72px);
  background:
    radial-gradient(ellipse 72% 54% at 8% 0%, rgba(191, 164, 122, 0.14), transparent 60%),
    radial-gradient(ellipse 56% 48% at 100% 100%, rgba(42, 53, 68, 0.08), transparent 58%),
    linear-gradient(180deg, #ede7dc 0%, #f7f2e9 48%, #e7dfd2 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -1px 0 rgba(15, 19, 24, 0.08);
}
body.raim-operational #commercial-proposal::before {
  content: "";
  position: absolute;
  inset: 18px max(18px, 4vw);
  border: 1px solid rgba(42, 53, 68, 0.08);
  border-radius: 28px;
  pointer-events: none;
}
body.raim-operational #commercial-proposal .compact-intake__layout {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  max-width: 1180px;
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}
body.raim-operational #commercial-proposal .compact-intake__header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(42, 53, 68, 0.1);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.28) 48%, rgba(191, 164, 122, 0.08) 100%);
  box-shadow:
    0 14px 34px rgba(15, 19, 24, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}
body.raim-operational #commercial-proposal .compact-intake__header::after {
  content: "Commercial intake";
  display: inline-flex;
  align-self: flex-start;
  margin-top: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(191, 164, 122, 0.28);
  color: var(--orange-deep);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
body.raim-operational #commercial-proposal .compact-intake__header h2 {
  max-width: 14ch;
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
body.raim-operational #commercial-proposal .compact-intake__lead {
  max-width: 28rem;
  color: rgba(42, 53, 68, 0.78);
  font-size: 1.02rem;
  line-height: 1.58;
}
body.raim-operational #commercial-proposal .compact-intake__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 24px;
  border: 1px solid rgba(42, 53, 68, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 240, 230, 0.94));
  box-shadow:
    0 18px 44px rgba(15, 19, 24, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset,
    inset 0 -1px 0 rgba(191, 164, 122, 0.12);
}
body.raim-operational #commercial-proposal .compact-intake__fields {
  gap: 12px 14px;
  align-items: stretch;
}
body.raim-operational #commercial-proposal .compact-field {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(42, 53, 68, 0.09);
  background: rgba(255, 255, 255, 0.52);
}
body.raim-operational #commercial-proposal .compact-field span {
  color: rgba(42, 53, 68, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
body.raim-operational #commercial-proposal .compact-field input,
body.raim-operational #commercial-proposal .compact-field textarea {
  min-height: 42px;
  border-color: rgba(42, 53, 68, 0.14);
  background: rgba(255, 253, 248, 0.92);
}
body.raim-operational #commercial-proposal .compact-field textarea {
  min-height: 94px;
}
body.raim-operational #commercial-proposal .compact-intake__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(42, 53, 68, 0.08);
}
body.raim-operational #commercial-proposal .compact-intake__actions .button {
  min-height: 44px;
  padding-inline: 22px;
}
body.raim-operational #commercial-proposal .intake-form__status {
  margin-top: 10px;
}
@media (min-width: 980px) {
  body.raim-operational #commercial-proposal .compact-intake__layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(560px, 1.18fr);
  }
}
@media (max-width: 900px) {
  body.raim-operational #commercial-proposal .compact-intake__layout {
    width: min(100% - 32px, 720px);
    gap: 18px;
  }
  body.raim-operational #commercial-proposal .compact-intake__header,
  body.raim-operational #commercial-proposal .compact-intake__form {
    padding: 20px;
  }
}
body.raim-operational #commercial-proposal.compact-intake {
  background: #fff !important;
  box-shadow: none !important;
}
body.raim-operational #commercial-proposal::before {
  content: none !important;
  display: none !important;
}
body.raim-operational #commercial-proposal .compact-intake__header,
body.raim-operational #commercial-proposal .compact-intake__form,
body.raim-operational #commercial-proposal .compact-field {
  background: #fff !important;
  box-shadow: none !important;
}
body.raim-operational #commercial-proposal .compact-field input,
body.raim-operational #commercial-proposal .compact-field textarea {
  background: #fff !important;
}