/* ================================================================
   HAEA React Skin v2 — Complete CSS for custom page templates.
   Design tokens + Header + Footer + All sections.
   ================================================================ */

/* ── 0. FONT ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── 1. DESIGN TOKENS ── */
:root {
  --hrs-primary:    #002c5f;
  --hrs-primary-fg: #ffffff;
  --hrs-tech-blue:  #00aad2;
  --hrs-tech-red:   #e63312;
  --hrs-tech-purple:#8b5cf6;
  --hrs-bg:         #f6f3f2;
  --hrs-card:       #ffffff;
  --hrs-secondary:  #e4dcd3;
  --hrs-foreground: #002c5f;
  --hrs-muted:      #f5f5f7;
  --hrs-border:     rgba(0, 44, 95, 0.10);
  --hrs-border-hover: rgba(0, 44, 95, 0.25);
  --hrs-text-secondary: rgba(0, 44, 95, 0.70);
  --hrs-radius:     4px;
  --hrs-radius-md:  6px;
  --hrs-shadow-sm:  0 2px 8px rgba(0,44,95,.06);
  --hrs-shadow-md:  0 8px 24px rgba(0,44,95,.10);
  --hrs-shadow-lg:  0 16px 48px rgba(0,44,95,.14);
  --hrs-shadow-xl:  0 24px 64px rgba(0,44,95,.18);
  --hrs-font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --hrs-container:  1350px;
  --hrs-px:         clamp(16px, 4vw, 48px);
}

/* ── 2. GLOBAL RESET FOR CHILD THEME PAGES ── */
body {
  font-family: var(--hrs-font);
  background: var(--hrs-bg);
  color: var(--hrs-foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after { box-sizing: border-box; }

.hrs-container {
  max-width: var(--hrs-container);
  margin: 0 auto;
  padding: 0 var(--hrs-px);
}

img { max-width: 100%; height: auto; }

/* ── 3. ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
[data-animate="fade-up"]    { transform: translateY(30px); }
[data-animate="fade-down"]  { transform: translateY(-30px); }
[data-animate="fade-left"]  { transform: translateX(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate].hrs-animated {
  opacity: 1;
  transform: none;
}

/* ── 4. HEADER ── */
.hrs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #FCFCFC;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hrs-border);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.hrs-header--scrolled {
  background: #FCFCFC;
  box-shadow: var(--hrs-shadow-sm);
  border-bottom-color: rgba(0,44,95,.08);
}
/* Below WP admin bar when logged in (fixes overlap with "Let's Connect") */
body.admin-bar .hrs-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .hrs-header {
    top: 46px;
  }
}

/* Hide admin profile text/icon so only front-end CTA is visible */
body.admin-bar #wpadminbar #wp-admin-bar-my-account {
  display: none !important;
}

.hrs-header__inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 1.8vw, 24px);
  height: 80px;
}
.hrs-header__logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
  margin-right: auto;
  margin-left: 0;
  order: 1;
}
.hrs-header__logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: .9;
}
.hrs-header__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--hrs-primary);
  text-decoration: none;
}
.hrs-header__nav {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  flex: 0 1 auto;
  order: 2;
}
.hrs-header__cta {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  order: 3;
}
.hrs-nav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 8px;
  column-gap: clamp(16px, 1.8vw, 28px);
}
.hrs-nav__list li { position: relative; }
.hrs-nav__list li a {
  font-size: 18px;
  font-weight: 600;
  color: var(--hrs-primary);
  text-decoration: none;
  transition: color .25s;
  letter-spacing: .01em;
  text-transform: none;
}
.hrs-nav__list li a:hover,
.hrs-nav__list li.current-menu-item > a {
  color: #3d4cea;
  font-weight: 600;
}
/* Dropdown */
.hrs-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius-md);
  box-shadow: var(--hrs-shadow-md);
  list-style: none;
  padding: 8px 0; margin: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.hrs-nav__list li:hover > .sub-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.hrs-nav__list .sub-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
}
.hrs-nav__list .sub-menu li a:hover {
  background: rgba(0,44,95,.04);
}

/* CTA button */
.hrs-header__cta .hrs-btn--primary {
  padding: 0 28px;
  height: 44px;
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
  border-radius: 6px;
  background: var(--hrs-primary);
  color: #fff;
  border: none;
  box-shadow: 0 1px 3px rgba(0,44,95,.12);
  letter-spacing: .01em;
  transition: background .25s, box-shadow .25s, transform .2s;
}
.hrs-header__cta .hrs-btn--primary:hover {
  background: #001f43;
  box-shadow: 0 4px 16px rgba(0,44,95,.2);
  transform: translateY(-1px);
  color: #fff;
}

/* Burger */
.hrs-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer; padding: 0;
}
.hrs-header__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--hrs-primary);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.hrs-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hrs-header__burger.is-open span:nth-child(2) { opacity: 0; }
.hrs-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — sits below fixed header (and admin bar when present) */
.hrs-mobile-nav {
  position: fixed;
  top: 80px;
  left: 0; right: 0; bottom: 0;
  background: rgba(246,243,242,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 32px var(--hrs-px);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.hrs-mobile-nav.is-open { transform: translateX(0); }
.hrs-mobile-nav__list,
.hrs-mobile-nav .hrs-nav__list {
  flex-direction: column;
  gap: 0;
}
.hrs-mobile-nav .hrs-nav__list li a,
.hrs-mobile-nav__list li a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  border-bottom: 1px solid var(--hrs-border);
}
.hrs-mobile-nav__cta {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

body.admin-bar .hrs-mobile-nav {
  top: calc(32px + 80px);
}
@media screen and (max-width: 782px) {
  body.admin-bar .hrs-mobile-nav {
    top: calc(46px + 80px);
  }
}

@media (max-width: 768px) {
  .hrs-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  .hrs-header__nav,
  .hrs-header__cta { display: none !important; }
  .hrs-header__burger {
    display: flex;
    order: 3;
    margin-left: auto;
  }
  .hrs-header__logo { order: 1; }
}

/* ── 5. BUTTONS ── */
.hrs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--hrs-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding: 14px 32px;
  border-radius: var(--hrs-radius);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
}
.hrs-btn--inline {
  display: inline-flex !important;
  width: auto !important;
  align-self: flex-start;
}
.hrs-btn--primary {
  background: var(--hrs-primary);
  color: var(--hrs-primary-fg);
  border-color: var(--hrs-primary);
}
.hrs-btn--primary:hover {
  background: #001f43;
  border-color: #001f43;
  box-shadow: 0 8px 24px rgba(0,44,95,.25);
  transform: translateY(-1px);
  color: #fff;
}
.hrs-btn--outline {
  background: var(--hrs-card);
  color: var(--hrs-foreground);
  border-color: var(--hrs-border-hover);
}
.hrs-btn--outline:hover {
  border-color: rgba(0,44,95,.35);
  box-shadow: var(--hrs-shadow-md);
  color: var(--hrs-foreground);
}
.hrs-btn--outline-dark {
  background: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
  padding: 12px 30px !important;
}
.hrs-btn--outline-dark .hrs-oblique-btn__txt {
  color: #000000 !important;
}
.hrs-btn--outline-dark:hover {
  background: #f0f0f0 !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}
.hrs-btn--outline-dark:hover .hrs-oblique-btn__txt {
  color: #000000 !important;
}
.hrs-btn--outline-dark .hrs-btn__arrow {
  stroke: #000000 !important;
}
.hrs-btn--lg { padding: 16px 36px; font-size: 17px; }
.hrs-btn--full { width: 100%; }
.hrs-btn__arrow {
  width: 16px; height: 16px;
  transition: transform .2s;
}
.hrs-btn:hover .hrs-btn__arrow { transform: translateX(4px); }

/* ── 6. BADGE ── */
.hrs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--hrs-card);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  font-size: 14px;
  color: var(--hrs-foreground);
  line-height: 1;
}
.hrs-badge--muted { background: var(--hrs-bg); }
.hrs-badge--pill { border-radius: 999px; }
.hrs-badge__dot {
  width: 8px; height: 8px;
  background: var(--hrs-tech-blue);
  border-radius: 50%;
  animation: hrs-pulse 2s infinite;
}
.hrs-badge__icon { width: 16px; height: 16px; }
@keyframes hrs-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── 7. SECTIONS ── */
.hrs-section {
  position: relative;
  padding: clamp(24px, 3.5vw, 48px) 0;
  overflow: hidden;
}
.hrs-section--card-bg { background: var(--hrs-card); }
.hrs-section--contact-compact { padding: clamp(16px, 2vw, 32px) 0; }
.hrs-section__grid-bg {
  position: absolute;
  inset: 0;
  color: var(--hrs-primary);
  opacity: 0.015;
  pointer-events: none;
}
.hrs-section__header {
  text-align: center;
  margin-bottom: clamp(16px, 2.2vw, 28px);
  width: 100%;
}
.hrs-section__title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  color: var(--hrs-primary);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 16px 0;
}
.hrs-section__title--left { text-align: left; }
.hrs-section__title--partners { font-size: clamp(32px, 5vw, 56px); font-weight: 500; color: #000; letter-spacing: -0.02em; }
.hrs-section__subtitle {
  font-size: 18px;
  color: var(--hrs-text-secondary);
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.6;
}
.hrs-section__cta {
  text-align: center;
  margin-top: clamp(40px, 4vw, 64px);
}
.hrs-btn--caps {
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hrs-btn--outline-black {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  height: 50px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hrs-btn--outline-black:hover {
  background: #e0e0e0;
  color: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  transform: translateY(-1px);
}
.hrs-hero__split-content .hrs-section__cta .hrs-btn--outline-black {
  margin-left: 16px;
}

/* ── 8. HERO (full-bleed image — HAEA style) ── */
.hrs-hero--video {
  position: relative;
  min-height: clamp(520px, 85vh, 920px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* Header is fixed ~80px — keep hero content below it */
  padding: calc(80px + clamp(32px, 5vh, 72px)) 0 clamp(40px, 6vh, 72px);
  margin-top: 0;
  overflow: hidden;
}
body.admin-bar .hrs-hero--video {
  padding-top: calc(32px + 80px + clamp(24px, 4vh, 56px));
}
@media screen and (max-width: 782px) {
  body.admin-bar .hrs-hero--video {
    padding-top: calc(46px + 80px + clamp(20px, 4vh, 48px));
  }
}
.hrs-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Before first frame loads / if source fails, avoid flat grey */
  background: #0a1f43 radial-gradient(ellipse 120% 80% at 50% 20%, #143a6b 0%, #0a1f43 55%);
}
.hrs-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  background: transparent;
}
.hrs-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Lighter overlay so motion stays visible (was reading as solid grey) */
  background: linear-gradient(
    180deg,
    rgba(0, 31, 67, 0.18) 0%,
    rgba(0, 44, 95, 0.38) 45%,
    rgba(0, 31, 67, 0.58) 100%
  );
  pointer-events: none;
}
.hrs-hero__center {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hrs-hero__content--video {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
}
.hrs-hero__title--video {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hrs-hero__subtitle--video {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

/* Legacy hero overlay copy (old site) */
.hrs-hero__legacy {
  margin-top: 18px;
  text-align: center;
  max-width: 920px;
}
.hrs-hero__legacy > .hrs-oblique-btn {
  margin-top: 22px;
}
.hrs-hero__legacy-title {
  margin: 0 0 10px 0;
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  text-transform: none;
}
.hrs-hero__legacy-desc {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}
.hrs-hero__legacy-link {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(0, 31, 67, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background .25s, border-color .25s, transform .2s;
}
.hrs-hero__legacy-link:hover {
  background: rgba(0, 31, 67, 0.55);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}
.hrs-hero__legacy-counters {
  margin-top: 42px;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.hrs-hero__counter {
  position: relative;
  text-align: left;
  padding: 18px 18px 16px;
  border-radius: 10px;
  border: 1px solid #dbe6f4;
  background: rgba(246,243,242,.95);
  box-shadow: 0 8px 20px rgba(0, 31, 67, 0.14);
  overflow: hidden;
}
.hrs-hero__counter::before,
.hrs-hero__counter::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
}
.hrs-hero__counter::before {
  left: 0;
  top: 0;
  border-left: 2px solid #c7d8ee;
  border-top: 2px solid #c7d8ee;
}
.hrs-hero__counter::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid #c7d8ee;
  border-bottom: 2px solid #c7d8ee;
}
.hrs-hero__counter-num {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  color: #00377a;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  text-shadow: none;
}
.hrs-hero__counter-label {
  font-size: clamp(13px, 1.1vw, 16px);
  color: #00377a;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}

.hrs-hero__counter-desc {
  margin-top: 0;
  font-size: clamp(13px, 1.05vw, 15px);
  color: #355a96;
  font-weight: 400;
  line-height: 1.45;
  text-shadow: none;
}
@media (max-width: 980px) {
  .hrs-hero__legacy-counters {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
/* ── Hero background image ── */
.hrs-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Excellence Through Innovation (standalone section) ── */
.hrs-excellence {
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-excellence__inner {
  text-align: center;
}
.hrs-excellence__title {
  margin: 0 0 14px 0;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: var(--hrs-primary);
  letter-spacing: -0.02em;
  text-transform: none;
}
.hrs-excellence__desc {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--hrs-text-secondary);
  line-height: 1.7;
}
.hrs-excellence__inner > .hrs-oblique-btn {
  margin-top: 22px;
}
.hrs-excellence__counters {
  margin-top: 42px;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.hrs-excellence__counter {
  position: relative;
  text-align: center;
  padding: 28px 18px 24px;
  border-radius: 10px;
  border: 1px solid #dbe6f4;
  background: rgba(246, 243, 242, 0.95);
  box-shadow: 0 8px 20px rgba(0, 31, 67, 0.1);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.hrs-excellence__counter:hover {
  border-color: #b8d0e8;
  box-shadow: 0 16px 48px rgba(0, 31, 67, 0.15);
  transform: translateY(-4px);
}
.hrs-excellence__counter::before,
.hrs-excellence__counter::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
  transition: border-color .3s;
}
.hrs-excellence__counter::before {
  left: 0;
  top: 0;
  border-left: 1px solid #c7d8ee;
  border-top: 1px solid #c7d8ee;
}
.hrs-excellence__counter:hover::before {
  border-left-color: #00aad2;
  border-top-color: #00aad2;
}
.hrs-excellence__counter::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid #c7d8ee;
  border-bottom: 1px solid #c7d8ee;
}
.hrs-excellence__counter:hover::after {
  border-right-color: #00aad2;
  border-bottom-color: #00aad2;
}
.hrs-excellence__counter-num {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  color: #00377a;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hrs-excellence__counter-label {
  font-size: clamp(13px, 1.1vw, 16px);
  color: #00377a;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}
.hrs-excellence__counter-desc {
  margin-top: 0;
  font-size: clamp(13px, 1.05vw, 15px);
  color: #355a96;
  font-weight: 400;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .hrs-excellence__counters {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
@media (max-width: 640px) {
  .hrs-excellence__counters {
    grid-template-columns: 1fr;
  }
}

/* Trapezoid / oblique CTAs — light cyan like original site */
.hrs-hero__actions--oblique {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding-top: clamp(12px, 2vw, 24px);
}
.hrs-oblique-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: none;
  border-radius: 6px;
  background: var(--hrs-primary);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,44,95,.12);
  transition: background .25s, box-shadow .25s, transform .2s;
}
.hrs-oblique-btn:hover {
  background: #001f43;
  box-shadow: 0 4px 16px rgba(0,44,95,.2);
  transform: translateY(-1px);
}
.hrs-oblique-btn--alt {
  background: var(--hrs-primary);
}
.hrs-oblique-btn--alt:hover {
  background: #001f43;
}
.hrs-oblique-btn:hover .hrs-btn__arrow {
  transform: translateX(4px);
}
.hrs-oblique-btn__txt {
  display: block;
  transform: none;
  padding: 12px 0;
  font-family: var(--hrs-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .hrs-oblique-btn__txt {
    padding: 14px 22px;
    white-space: normal;
    text-align: center;
    max-width: 220px;
  }
}
@media (max-width: 768px) {
  .hrs-hero--video {
    min-height: clamp(480px, 88vh, 720px);
  }
}

/* ── 9. SERVICES ── */
.hrs-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.hrs-service-card {
  position: relative;
  padding: 32px;
  background: rgba(246,243,242,.95);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.hrs-service-card--white {
  background: #ffffff;
}
.hrs-service-card:hover {
  border-color: var(--hrs-border-hover);
  box-shadow: var(--hrs-shadow-lg);
}
.hrs-service-card__corner {
  position: absolute;
  top: 0; right: 0;
  width: 48px; height: 48px;
  border-top: 2px solid;
  border-right: 2px solid;
  opacity: .3;
  pointer-events: none;
}
.hrs-service-card__hover-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,44,95,.04), transparent);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.hrs-service-card:hover .hrs-service-card__hover-gradient { opacity: 1; }
.hrs-service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.hrs-service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--hrs-radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.hrs-service-card:hover .hrs-service-card__icon { transform: scale(1.05); }
.hrs-service-card__icon svg { width: 26px; height: 26px; }
.hrs-service-card__metric {
  font-size: 12px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--hrs-text-secondary);
}
.hrs-service-card__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--hrs-primary);
  margin-bottom: 10px;
}
.hrs-service-card__desc {
  font-size: 15px;
  color: var(--hrs-text-secondary);
  line-height: 1.6;
}
.hrs-service-card__line {
  margin-top: 20px;
  height: 1px;
  opacity: .3;
}
@media (max-width: 1200px) { .hrs-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hrs-services-grid { grid-template-columns: 1fr; } }

/* Careers Values — 5 cards in one row */
#values .hrs-services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1400px) { #values .hrs-services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { #values .hrs-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { #values .hrs-services-grid { grid-template-columns: 1fr; } }

/* ── 10. OUTREACH + JOBS ── */
.hrs-outreach {
  padding-top: clamp(14px, 2vw, 24px);
  background: #fff;
}
.hrs-outreach__inner {
  width: 100%;
  max-width: 100%;
}
.hrs-outreach__logo-strip {
  margin-top: clamp(20px, 3vw, 34px);
  overflow: hidden;
  padding: 14px 0;
  border: none;
  border-radius: var(--hrs-radius);
  background: #fff;
  width: 70%;
  margin: 0 auto;
}
.hrs-outreach__logo-track {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  width: max-content;
  padding: 4px 16px;
  animation: hrs-logo-marquee 28s linear infinite;
}
.hrs-outreach__logo-strip:hover .hrs-outreach__logo-track {
  animation-play-state: paused;
}
.hrs-outreach__logo-item {
  min-height: 74px;
  padding: 16px;
  min-width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 10px;
  background: transparent;
}
.hrs-outreach__logo-item img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(.2) contrast(1.05);
  opacity: .95;
}
@keyframes hrs-logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 560px) {
  .hrs-outreach__logo-item { min-height: 68px; padding: 12px; }
  .hrs-outreach__logo-item img { max-height: 36px; }
}
.hrs-jobs-banner {
  margin-top: clamp(26px, 4vw, 44px);
  position: relative;
  border-radius: 0;
  overflow: visible;
  background: #fff;
}
.hrs-jobs-banner__media {
  position: relative;
  min-height: clamp(400px, 55vw, 700px);
  width: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 0;
}
.hrs-jobs-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.1) 35%, rgba(255,255,255,.1) 72%, rgba(255,255,255,.92) 100%),
    linear-gradient(90deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,.06) 45%, rgba(255,255,255,.38) 100%);
  pointer-events: none;
}
.hrs-jobs-banner__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: clamp(14px, 2vw, 22px) clamp(20px, 3vw, 40px) clamp(6px, 1vw, 12px);
  color: var(--hrs-primary);
  background: #fff;
}
.hrs-jobs-banner__title {
  margin: 0 0 14px 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  color: var(--hrs-primary);
  max-width: 900px;
}
.hrs-jobs-banner__desc {
  margin: 0 0 22px 0;
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: 1.6;
  color: rgba(0,44,95,.92);
}
@media (max-width: 768px) {
  .hrs-jobs-banner__title { font-size: clamp(24px, 7vw, 40px); }
  .hrs-jobs-banner__media {
    min-height: clamp(260px, 62vw, 420px);
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}

.hrs-section--tech-cta {
  padding-top: clamp(10px, 1.5vw, 18px);
  padding-bottom: clamp(10px, 1.5vw, 18px);
  background: #fff;
}
.hrs-tech-split {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: center;
}
.hrs-tech-split__title {
  text-align: left;
  margin-bottom: 14px;
}
.hrs-tech-split__desc {
  text-align: left;
  margin: 0 0 22px 0;
}
.hrs-tech-split__media {
  position: relative;
  border: 1px solid var(--hrs-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--hrs-bg);
  min-height: clamp(200px, 24vw, 300px);
}
.hrs-tech-split__video {
  width: 100%;
  height: 100%;
  min-height: clamp(200px, 24vw, 300px);
  display: block;
  object-fit: cover;
}
@media (max-width: 900px) {
  .hrs-tech-split {
    grid-template-columns: 1fr;
  }
  .hrs-tech-split__title,
  .hrs-tech-split__desc {
    text-align: center;
  }
  .hrs-tech-split__content .hrs-oblique-btn {
    margin: 0 auto;
  }
}

/* ── 11. ABOUT ── */
.hrs-about__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hrs-about__visual { position: relative; }
.hrs-about__image-wrap {
  position: relative;
  border-radius: var(--hrs-radius);
  overflow: hidden;
  border: 2px solid var(--hrs-border);
  box-shadow: var(--hrs-shadow-xl);
}
.hrs-about__image {
  width: 100%;
  height: clamp(320px, 36vw, 500px);
  object-fit: cover;
  display: block;
}
.hrs-about__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,170,210,.15), transparent);
}
.hrs-about__image-grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .08;
}
.hrs-about__stat {
  position: absolute;
  bottom: -28px; right: -28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--hrs-card);
  border: 2px solid rgba(230,51,18,.25);
  border-radius: var(--hrs-radius);
  box-shadow: var(--hrs-shadow-xl);
  z-index: 2;
}
.hrs-about__stat-icon {
  width: 56px; height: 56px;
  background: var(--hrs-tech-red);
  border-radius: var(--hrs-radius);
  display: flex; align-items: center; justify-content: center;
}
.hrs-about__stat-icon svg { width: 28px; height: 28px; }
.hrs-about__stat-num { font-size: 28px; font-weight: 500; color: var(--hrs-primary); }
.hrs-about__stat-label { font-size: 14px; color: var(--hrs-text-secondary); }
.hrs-about__content { display: flex; flex-direction: column; gap: 24px; }
.hrs-about__text {
  font-size: 17px;
  color: var(--hrs-text-secondary);
  line-height: 1.7;
}
.hrs-about__checklist { display: flex; flex-direction: column; gap: 16px; }
.hrs-check-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--hrs-card);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  transition: border-color .3s;
}
.hrs-check-item:hover { border-color: var(--hrs-border-hover); }
.hrs-check-item__icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--hrs-muted);
  border-radius: var(--hrs-radius);
  display: flex; align-items: center; justify-content: center;
}
.hrs-check-item__icon svg { width: 22px; height: 22px; color: var(--hrs-primary); }
.hrs-check-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--hrs-primary);
  margin-bottom: 6px;
}
.hrs-check-item p {
  font-size: 14px;
  color: var(--hrs-text-secondary);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hrs-about__cols { grid-template-columns: 1fr; }
  .hrs-about__stat { bottom: -16px; right: -8px; padding: 14px 18px; }
}

/* ── 11. VALUES ── */
.hrs-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.hrs-value-card {
  position: relative;
  padding: 32px;
  background: var(--hrs-card);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  transition: border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.hrs-value-card:hover {
  border-color: var(--hrs-border-hover);
  box-shadow: var(--hrs-shadow-lg);
}
.hrs-value-card__bracket {
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 48px;
  border-left: 2px solid rgba(0,44,95,.1);
  border-top: 2px solid rgba(0,44,95,.1);
}
.hrs-value-card__icon-wrap {
  width: 52px; height: 52px;
  background: var(--hrs-muted);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.hrs-value-card:hover .hrs-value-card__icon-wrap {
  background: var(--hrs-primary);
}
.hrs-value-card__icon-wrap svg {
  width: 26px; height: 26px;
  color: var(--hrs-primary);
  transition: color .3s;
}
.hrs-value-card:hover .hrs-value-card__icon-wrap svg { color: #fff; }
.hrs-value-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--hrs-primary);
  margin-bottom: 10px;
}
.hrs-value-card p {
  font-size: 14px;
  color: var(--hrs-text-secondary);
  line-height: 1.6;
}
.hrs-value-card__bar {
  margin-top: 20px;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(0,44,95,.15), transparent);
  border-radius: 2px;
}
@media (max-width: 992px) { .hrs-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hrs-values-grid { grid-template-columns: 1fr; } }

/* Stats panel */
.hrs-stats-panel {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  background: var(--hrs-card);
  border: 2px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  overflow: hidden;
}
.hrs-stats-panel__corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--hrs-primary);
}
.hrs-stats-panel__corner--tl { top: -2px; left: -2px; border-left: 2px solid; border-top: 2px solid; }
.hrs-stats-panel__corner--tr { top: -2px; right: -2px; border-right: 2px solid; border-top: 2px solid; }
.hrs-stats-panel__corner--bl { bottom: -2px; left: -2px; border-left: 2px solid; border-bottom: 2px solid; }
.hrs-stats-panel__corner--br { bottom: -2px; right: -2px; border-right: 2px solid; border-bottom: 2px solid; }
.hrs-stats-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.hrs-stat { padding: 20px 0; }
.hrs-stat + .hrs-stat { border-left: 1px solid var(--hrs-border); }
.hrs-stat__number {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 300;
  color: var(--hrs-primary);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.hrs-stat__label {
  font-size: 15px;
  color: var(--hrs-text-secondary);
}
@media (max-width: 600px) {
  .hrs-stats-panel__grid { grid-template-columns: 1fr; }
  .hrs-stat + .hrs-stat { border-left: none; border-top: 1px solid var(--hrs-border); }
}

/* ── 12. CONTACT ── */
.hrs-contact__cols {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}
.hrs-contact__info { display: flex; flex-direction: column; gap: 8px; }
.hrs-contact__info .hrs-badge {
  background: rgba(246,243,242,.95);
  border-color: var(--hrs-border);
  color: #284a78;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  display: inline-flex;
  width: fit-content;
}
.hrs-contact__info .hrs-badge__dot {
  width: 6px;
  height: 6px;
  animation: none;
}
.hrs-contact__info .hrs-section__title {
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.02em;
  margin: 4px 0 4px;
}
.hrs-contact__form-wrap .hrs-section__title {
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-align: left;
}
.hrs-contact__text {
  font-size: 15px;
  color: #4e678c;
  line-height: 1.5;
}
.hrs-contact__rows { display: flex; flex-direction: column; gap: 8px; }
.hrs-contact__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(246,243,242,.95);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  transition: border-color .3s;
  height: 100px;
}
.hrs-contact__row > div:not(.hrs-contact__row-icon) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.hrs-contact__row h4,
.hrs-contact__row p {
  margin: 0;
  line-height: 1.3;
}
.hrs-contact__row:hover { border-color: var(--hrs-border-hover); }
.hrs-contact__row-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--hrs-muted);
  border-radius: var(--hrs-radius);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.hrs-contact__row:hover .hrs-contact__row-icon { background: var(--hrs-primary); }
.hrs-contact__row-icon svg {
  width: 24px; height: 24px;
  color: var(--hrs-primary);
  transition: color .3s;
}
.hrs-contact__row:hover .hrs-contact__row-icon svg { color: #fff; }

/* Contact row icon hover blue */
.hrs-contact__row-icon:hover { background: #5170ff; }
.hrs-contact__row:hover .hrs-contact__row-icon { background: #5170ff; }
.hrs-contact__row-icon:hover svg { color: #fff !important; }

/* Email row link style */
.hrs-contact__row--link a.hrs-contact__row-icon { text-decoration: none; }
.hrs-contact__row h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--hrs-primary);
  margin-bottom: 4px;
}
.hrs-contact__row p {
  font-size: 14px;
  color: var(--hrs-text-secondary);
  line-height: 1.5;
}
.hrs-contact__form-wrap {
  position: relative;
  background: rgba(246,243,242,.95);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  box-shadow: var(--hrs-shadow-xl);
  overflow: hidden;
}
.hrs-contact__form-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hrs-contact__form-corner {
  position: absolute;
  width: 20px; height: 20px;
}
.hrs-contact__form-corner--tl { top: -2px; left: -2px; border-left: 2px solid var(--hrs-primary); border-top: 2px solid var(--hrs-primary); }
.hrs-contact__form-corner--tr { top: -2px; right: -2px; border-right: 2px solid var(--hrs-primary); border-top: 2px solid var(--hrs-primary); }
.hrs-contact__form-corner--bl { bottom: -2px; left: -2px; border-left: 2px solid var(--hrs-primary); border-bottom: 2px solid var(--hrs-primary); }
.hrs-contact__form-corner--br { bottom: -2px; right: -2px; border-right: 2px solid var(--hrs-primary); border-bottom: 2px solid var(--hrs-primary); }

/* Form */
.hrs-form { display: flex; flex-direction: column; gap: 20px; }
.hrs-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hrs-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hrs-primary);
}
.hrs-form__field input,
.hrs-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--hrs-card);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  font-family: var(--hrs-font);
  font-size: 15px;
  color: var(--hrs-foreground);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.hrs-form__field input:focus,
.hrs-form__field textarea:focus {
  border-color: rgba(0,44,95,.35);
  box-shadow: 0 0 0 3px rgba(0,44,95,.08);
}
.hrs-form__field textarea { resize: none; }
.hrs-form__field input::placeholder,
.hrs-form__field textarea::placeholder { color: rgba(0,44,95,.35); }

/* CF7 styling */
.hrs-contact__form-wrap .wpcf7 input[type="text"],
.hrs-contact__form-wrap .wpcf7 input[type="email"],
.hrs-contact__form-wrap .wpcf7 input[type="tel"],
.hrs-contact__form-wrap .wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--hrs-card);
  border: 1px solid var(--hrs-border) !important;
  border-radius: var(--hrs-radius) !important;
  font-family: var(--hrs-font);
  font-size: 15px;
  color: var(--hrs-foreground);
}
.hrs-contact__form-wrap .wpcf7 input[type="submit"] {
  width: 100%;
  padding: 14px 32px;
  background: var(--hrs-primary) !important;
  color: var(--hrs-primary-fg) !important;
  border: none !important;
  border-radius: var(--hrs-radius) !important;
  font-family: var(--hrs-font);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s, box-shadow .25s;
}
.hrs-contact__form-wrap .wpcf7 input[type="submit"]:hover {
  background: #001f43 !important;
  box-shadow: 0 8px 24px rgba(0,44,95,.25);
}

@media (max-width: 768px) {
  .hrs-contact__cols { grid-template-columns: 1fr; }
  .hrs-form__row { grid-template-columns: 1fr; }
}

/* ── 13. FOOTER ── */
.hrs-footer {
  background: rgba(246,243,242,.95);
  border-top: 1px solid var(--hrs-border);
  color: var(--hrs-text);
  padding: 0;
}
.hrs-footer__inner {
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 72px);
}
.hrs-footer__top {
  display: grid;
  grid-template-columns: 1fr minmax(500px, 2fr) 250px;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(18px, 2vw, 28px) 0;
}
.hrs-footer__brand {
  justify-self: start;
}
.hrs-footer__brand .hrs-footer__tagline,
.hrs-footer__brand .hrs-footer__contact {
  padding-left: 0;
}
.hrs-footer__brand .hrs-footer__contact-list {
  padding-left: 0;
}
.hrs-footer__menu {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  padding-top: 0;
}
.hrs-footer__family-dropdown {
  justify-self: end;
}
.hrs-footer__menu {
  flex: 0 0 auto;
  display: flex;
  gap: 64px;
  justify-content: center;
  padding-top: 15px;
}
.hrs-footer__menu-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hrs-footer__logo img {
  height: 52px;
  width: auto;
  margin-bottom: 8px;
}
.hrs-footer__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--hrs-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.hrs-footer__tagline {
  font-size: 13px;
  color: #555;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}
.hrs-footer__family-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5170ff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  transition: background .25s, color .25s, border-radius .25s;
  cursor: pointer;
}
.hrs-footer__family-btn:hover {
  background: #51bbff;
  color: #fff;
  border-radius: 0 0 6px 6px;
}
.hrs-footer__family-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform .3s;
}
.hrs-footer__family-dropdown {
  position: relative;
  display: inline-block;
}
.hrs-footer__family-dropdown .hrs-footer__family-menu {
  display: none !important;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #5170ff;
  border-radius: 6px 6px 0 0;
  border: none;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 240px;
  z-index: 9999;
}
.hrs-footer__family-dropdown .hrs-footer__family-menu li a {
  display: block;
  padding: 14px 20px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .2s;
}
.hrs-footer__family-dropdown .hrs-footer__family-menu li a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.hrs-footer__family-dropdown:hover .hrs-footer__family-menu {
  display: block !important;
}
.hrs-footer__family-dropdown:hover .hrs-footer__family-arrow {
  transform: rotate(180deg);
}
.hrs-footer__contact { text-align: left; flex-shrink: 0; }
.hrs-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--hrs-primary);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.hrs-footer__contact-list {
  list-style: none;
  margin: 0; padding: 0;
}
.hrs-footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hrs-footer__contact-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hrs-footer__contact-list--inline li + li {
  margin-top: 0;
}
.hrs-footer__contact-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0,44,95,.25);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--hrs-accent);
  font-weight: 700;
}
.hrs-footer__contact-list li a {
  font-size: 14px;
  color: var(--hrs-text);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.hrs-footer__contact-list li a:hover { color: var(--hrs-accent); }

.hrs-footer__menu {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  padding-top: 15px;
}
.hrs-footer__header-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--hrs-text);
  text-decoration: none;
  transition: color .2s, text-decoration-color .2s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}
.hrs-footer__header-link:hover {
  color: var(--hrs-tech-blue);
  text-decoration-color: var(--hrs-tech-blue);
}
.hrs-footer__header-link.is-active,
.hrs-footer__header-link.current-menu-item {
  color: var(--hrs-tech-blue);
  text-decoration-color: transparent;
}
.hrs-footer__privacy-icon {
  height: 16px;
  width: auto;
  vertical-align: middle;
  margin-left: 6px;
  display: inline-block;
}

.hrs-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(0,44,95,.08);
}
.hrs-footer__copyright {
  font-size: 12px;
  color: #888;
}
.hrs-footer__legal-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 20px;
}
.hrs-footer__legal-list li a {
  font-size: 12px;
  color: #888;
  text-decoration: none;
  transition: color .2s;
}
.hrs-footer__legal-list li a:hover { color: var(--hrs-primary); }
@media (max-width: 768px) {
  .hrs-footer__top { display: flex; flex-direction: column; gap: 20px; }
  .hrs-footer__brand, .hrs-footer__contact { justify-self: auto; }
  .hrs-footer__contact { text-align: left; }
  .hrs-footer__logo img { height: 44px; }
  .hrs-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hrs-footer__menu { flex-wrap: wrap; gap: 24px; padding-top: 0; }
  .hrs-footer__menu-col { flex-direction: column; gap: 10px; }
  .hrs-footer__header-link {
    font-size: 13px;
  }
}

/* ── 14. WP CONTENT FALLBACK ── */
.hrs-wp-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--hrs-text-secondary);
}
.hrs-wp-content h1,
.hrs-wp-content h2,
.hrs-wp-content h3 {
  color: var(--hrs-primary);
  font-weight: 500;
  letter-spacing: -.02em;
}
.hrs-wp-content img { border-radius: var(--hrs-radius); }

/* ── 15. HIDE PARENT THEME ELEMENTS ── */
.site-header,
.site-footer,
.site-header__top { display: none !important; }

/* ── 16. CUSTOM BUTTON COLORS ── */
/* Nút primary */
.hrs-btn--primary,
.hrs-header__cta .hrs-btn--primary,
.hrs-oblique-btn,
.hrs-oblique-btn--alt,
.hrs-footer__family-btn,
.hrs-contact__form-wrap .wpcf7 input[type="submit"] {
  background: #5170ff !important;
  border: none !important;
  color: #ffffff !important;
}

.hrs-btn--primary:hover,
.hrs-header__cta .hrs-btn--primary:hover,
.hrs-oblique-btn:hover,
.hrs-oblique-btn--alt:hover,
.hrs-footer__family-btn:hover,
.hrs-contact__form-wrap .wpcf7 input[type="submit"]:hover {
  background: #51bbff !important;
  border: none !important;
  color: #ffffff !important;
}

/* Nút outline */
.hrs-btn--outline {
  background: rgba(255, 255, 255, 0.12) !important;
  border: none !important;
  color: #ffffff !important;
}

.hrs-btn--outline:hover {
  background: rgba(81, 187, 255, 0.2) !important;
  border: none !important;
  color: #ffffff !important;
}

/* ================================================================
   CAREERS PAGE — 7 sections using hrs-* design system
   ================================================================ */

/* ── CAREERS HERO ── */
.hrs-hero--careers {
  position: relative;
  min-height: clamp(520px, 85vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(80px + clamp(32px, 5vh, 72px)) 0 clamp(56px, 8vh, 100px);
}
body.admin-bar .hrs-hero--careers {
  padding-top: calc(32px + 80px + clamp(24px, 4vh, 56px));
}
@media screen and (max-width: 782px) {
  body.admin-bar .hrs-hero--careers {
    padding-top: calc(46px + 80px + clamp(20px, 4vh, 48px));
  }
}
.hrs-hero__careers-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hrs-hero__careers-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hrs-hero__scrim--careers {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 31, 67, 0.20) 0%,
    rgba(0, 44, 95, 0.45) 45%,
    rgba(0, 31, 67, 0.65) 100%
  );
}
.hrs-hero__content--careers {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
}

/* Front page hero — left aligned copy */
.hrs-hero__content--front {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  max-width: none;
  padding-left: 0;
  margin-left: calc(-1 * var(--hrs-px) - 100px);
}
.hrs-hero__content--front .hrs-hero__title--careers,
.hrs-hero__content--front .hrs-hero__subtitle--careers {
  text-transform: none !important;
}
/* Front page hero — left text + right image split */
.hrs-hero--front-split {
  position: relative;
  min-height: clamp(520px, 85vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  padding: 80px 0 0;
}
body.admin-bar .hrs-hero--front-split {
  padding-top: calc(32px + 0px);
}
.hrs-hero__split-inner {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}
.hrs-hero__split-content {
  padding-left: calc(var(--hrs-px) + 150px);
}
.hrs-hero__split-content .hrs-hero__careers-text {
  text-align: left;
}
.hrs-hero__split-content .hrs-hero__careers-pretitle,
.hrs-hero__split-content .hrs-hero__title,
.hrs-hero__split-content .hrs-hero__subtitle {
  text-align: left;
}
.hrs-hero__split-content .hrs-section__cta,
.hrs-hero__split-content .hrs-hero__actions {
  text-align: left;
  margin-top: clamp(24px, 3vw, 40px);
  justify-content: flex-start;
}
.hrs-hero__split-image {
  width: 45%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  height: 60vh;
  max-height: 60vh;
  border-radius: 20px;
  margin-left: auto;
}
.hrs-hero__split-image-img {
  width: 45%;
  overflow: hidden;
  border-radius: 20px;
  margin-left: auto;
}
.hrs-hero__split-image--shadow {
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.hrs-hero__split-image--shadow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hrs-hero__split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50% !important;
}
@media (max-width: 900px) {
  .hrs-hero--front-split {
    flex-direction: column;
  }
  .hrs-hero__split-inner {
    width: 100%;
    text-align: center;
    padding: 0 var(--hrs-px);
  }
  .hrs-hero__split-content {
    padding-left: 0;
    padding-right: 0;
    align-items: center;
  }
  .hrs-hero__split-image {
    width: 100%;
    max-height: clamp(480px, 78vh, 820px);
    height: clamp(480px, 78vh, 820px);
    padding: 0;
  }
  .hrs-hero__split-image img {
    object-fit: cover;
    object-position: center center !important;
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar .hrs-hero--front-split {
    padding-top: 126px;
  }
  body.admin-bar .hrs-hero__split-image {
    padding-top: 126px;
  }
}

/* Careers page hero image - custom rounded style */
.page-template-careers-php .hrs-hero__split-image--rounded {
  border-radius: 40px;
}
.page-template-careers-php .hrs-hero__split-image--rounded img {
  border-radius: 30px;
  overflow: hidden;
}

.hrs-hero__content--front .hrs-hero__actions {
  justify-content: flex-start;
}
.hrs-hero__careers-text { display: flex; flex-direction: column; gap: 12px; }
.hrs-hero__careers-pretitle {
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563eb;
  text-align: left;
  margin: 0;
  padding-bottom: 10px;
}
.hrs-hero__title--careers {
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  color: var(--hrs-navy, #002c5f);
  margin: 0;
  text-align: left;
}
.hrs-hero__title--uppercase {
  text-transform: uppercase !important;
}
.hrs-hero__subtitle--careers {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--hrs-text-light, #555);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}
.hrs-hero__linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--hrs-font);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
  margin-top: 8px;
}
.hrs-hero__linkedin-btn:hover {
  opacity: 0.8;
}
.hrs-hero__linkedin-icon {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .hrs-hero__linkedin-icon {
    width: 18px;
    height: 18px;
  }
}
.hrs-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hrs-oblique-btn--careers {
  display: inline-flex;
  align-items: center;
  background: #5170ff;
  color: #fff;
  font-family: var(--hrs-font);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .25s, color .25s;
}
.hrs-oblique-btn--careers:hover {
  background: #51bbff;
  color: #fff;
}

/* ── CAREERS VALUES — 3×2 grid: heading | card | card / card | card | card ── */
.hrs-section--careers-values {
  background: linear-gradient(180deg, #f0f4f8 0%, #e8eef6 50%, #f5f7fa 100%);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-careers-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.5vw, 30px);
  align-items: stretch;
}
/* Row 1 col 1: large heading */
.hrs-careers-values-heading {
  display: flex;
  align-items: center;
  padding: clamp(8px, 1.5vw, 16px) clamp(8px, 2vw, 20px) clamp(8px, 1.5vw, 16px) 0;
}
.hrs-careers-values-heading__title {
  margin: 0;
  font-family: var(--hrs-font);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #002b5c;
  text-align: left;
}
/* Card: white, shadow, thick left accent bar, outline icons */
.hrs-careers-value-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(0, 43, 92, 0.08);
  box-shadow: 0 4px 24px rgba(0, 44, 95, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.hrs-careers-value-card:hover {
  box-shadow: 0 10px 36px rgba(0, 44, 95, 0.12);
  transform: translateY(-2px);
}
.hrs-careers-value-card__accent {
  width: 5px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #00aad2 0%, #0088b8 100%);
}
.hrs-careers-value-card__body {
  flex: 1;
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
}
.hrs-careers-value-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: #00aad2;
}
.hrs-careers-value-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hrs-careers-value-card__title {
  font-size: clamp(16px, 1.65vw, 19px);
  font-weight: 700;
  color: #002b5c;
  margin: 0;
  letter-spacing: -0.01em;
}
.hrs-careers-value-card__desc {
  font-size: clamp(13px, 1.25vw, 15px);
  color: #546e7a;
  margin: 0;
  line-height: 1.55;
}
/* Tablet: heading full width, then 2 columns of cards */
@media (max-width: 1024px) {
  .hrs-careers-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hrs-careers-values-heading {
    grid-column: 1 / -1;
    padding: 0 0 clamp(12px, 2vw, 20px);
  }
}
/* Mobile: single column */
@media (max-width: 600px) {
  .hrs-careers-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CAREERS VISION CTA ── */
.hrs-section--careers-vision {
  background: var(--hrs-bg);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-careers-vision__image {
  display: flex;
  align-items: stretch;
}
.hrs-careers-vision__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--hrs-radius);
  box-shadow: var(--hrs-shadow-lg);
  min-height: 350px;
}
.hrs-careers-vision__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding-left: clamp(16px, 3vw, 40px);
}
.hrs-careers-vision__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--hrs-primary);
  margin: 0;
  letter-spacing: -0.02em;
}
.hrs-careers-vision__desc {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--hrs-text-secondary);
  line-height: 1.7;
  margin: 0;
}
.hrs-section--careers-vision .hrs-btn--primary,
.hrs-btn--inline {
  align-self: flex-start;
  width: auto;
}
@media (max-width: 768px) {
  .hrs-section--careers-vision .hrs-contact__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hrs-careers-vision__image {
    order: -1;
  }
  .hrs-careers-vision__image img {
    min-height: 250px;
  }
  .hrs-careers-vision__content {
    padding-left: 0;
  }
}

/* ── CAREERS BENEFITS NEW ── */
.hrs-section--careers-benefits-new {
  padding: clamp(60px, 7vw, 100px) 0;
  background: #fff;
}

.hrs-benefits-new-wrapper {
  background-size: 40% auto;
  background-position: right top;
  background-repeat: no-repeat;
}

.hrs-benefits-new-inner {
  width: 100%;
}

.hrs-benefits-new-header {
  margin-bottom: clamp(30px, 4vw, 50px);
  text-align: center;
}

.hrs-benefits-new__heading {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.hrs-benefits-new__sub {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 600px;
}

.hrs-benefits-new-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hrs-benefits-new-grid-wrapper > .hrs-benefit-new-card {
  flex: 0 1 calc(25% - 30px);
  max-width: calc(25% - 30px);
}

@media (max-width: 1024px) {
  .hrs-benefits-new-grid-wrapper > .hrs-benefit-new-card {
    flex: 0 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}
@media (max-width: 768px) {
  .hrs-benefits-new-grid-wrapper > .hrs-benefit-new-card {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .hrs-benefits-new-grid-wrapper > .hrs-benefit-new-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

.hrs-benefits-new-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hrs-benefits-new-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hrs-benefits-new-wrapper {
    background-size: 50% auto;
  }
  .hrs-benefits-new-inner {
    max-width: 100%;
  }
  .hrs-benefits-new-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .hrs-benefits-new-grid { grid-template-columns: 1fr; }
}

.hrs-benefit-new-card {
  background: #ffffff;
  border: 1px solid #d4d3d3;
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: box-shadow .25s, border-color .25s;
}

.hrs-benefit-new-card:hover {
  box-shadow: 0 8px 24px rgba(0,44,95,0.12);
  border-color: var(--hrs-tech-blue);
}

.hrs-benefit-new-card__media {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hrs-benefit-new-card__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hrs-benefit-new-card__title {
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 700;
  color: #0a175c;
  margin: 0;
  line-height: 1.4;
}

/* ── CAREERS TESTIMONIALS ── */
.hrs-section--careers-testimonials {
  background: var(--hrs-bg);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: clamp(32px, 4vw, 56px);
}
@media (max-width: 680px) {
  .hrs-testimonials-grid { grid-template-columns: 1fr; }
}
.hrs-testimonial-card {
  background: var(--hrs-card);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius-md);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .25s, transform .25s;
}
.hrs-testimonial-card:hover {
  box-shadow: var(--hrs-shadow-md);
  transform: translateY(-2px);
}
.hrs-testimonial-card__quote-mark {
  width: 32px;
  height: 32px;
  color: var(--hrs-tech-blue);
  flex-shrink: 0;
}
.hrs-testimonial-card__quote-mark svg { width: 100%; height: 100%; }
.hrs-testimonial-card__text {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--hrs-foreground);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}
.hrs-testimonial-card__author { display: flex; flex-direction: column; gap: 4px; }
.hrs-testimonial-card__name {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  color: var(--hrs-primary);
}
.hrs-testimonial-card__role {
  font-size: clamp(11px, 1vw, 13px);
  color: var(--hrs-text-secondary);
}

/* ── CAREERS RECRUITMENT PROCESS ── */
.hrs-section--careers-process {
  background: linear-gradient(135deg, var(--hrs-primary) 0%, #143a6b 100%);
  padding: clamp(60px, 7vw, 100px) 0;
  color: #fff;
}
.hrs-section--careers-process .hrs-section__title { color: #fff; }
.hrs-section--careers-process .hrs-section__header::after { background: rgba(255,255,255,0.3); }
.hrs-process-steps {
  display: flex;
  gap: 0;
  margin-top: clamp(32px, 4vw, 56px);
  overflow-x: auto;
  padding-bottom: 8px;
}
.hrs-process-step {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
}
.hrs-process-step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--hrs-primary);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hrs-process-step__connector {
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: rgba(255,255,255,0.35);
  z-index: 0;
}
.hrs-process-step:last-child .hrs-process-step__connector { display: none; }
.hrs-process-step__title {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -.01em;
}
.hrs-process-step__desc {
  font-size: clamp(12px, 1.2vw, 15px);
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
  padding: 0 8px;
}

/* ── CAREERS JOBS ── */
.hrs-section--careers-jobs {
  background: var(--hrs-bg);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-careers-jobs-embed {
  margin-top: clamp(24px, 3vw, 40px);
  width: 100%;
}
/* JazzHR Basic widget injects #resumator-jobs + .resumator-job (same as legacy Resumator markup) */
.hrs-careers-jobs-wrap #resumator-jobs {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  width: 100%;
}
@media (max-width: 1200px) {
  .hrs-careers-jobs-wrap #resumator-jobs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .hrs-careers-jobs-wrap #resumator-jobs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .hrs-careers-jobs-wrap #resumator-jobs {
    grid-template-columns: 1fr;
  }
}
.hrs-careers-jobs-wrap .resumator-job {
  background: #ffffff !important;
  border: 1px solid rgba(0, 43, 92, 0.12) !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 20px rgba(0, 44, 95, 0.06) !important;
  padding: clamp(20px, 2.2vw, 26px) !important;
  margin: 0 !important;
  width: auto !important;
  max-width: none !important;
  float: none !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 100%;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.hrs-careers-jobs-wrap .resumator-job:hover {
  border-color: rgba(0, 170, 210, 0.45) !important;
  box-shadow: 0 10px 32px rgba(0, 44, 95, 0.1) !important;
  transform: translateY(-2px);
}
.hrs-careers-jobs-wrap .resumator-job-title {
  color: #002b5c !important;
  font-family: var(--hrs-font) !important;
  font-size: clamp(14px, 1.2vw, 16px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin: 0 0 12px 0 !important;
  border: none !important;
  min-height: 0 !important;
}
.hrs-careers-jobs-wrap .resumator-job-info,
.hrs-careers-jobs-wrap .resumator-jobs-text {
  color: #546e7a !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  float: none !important;
}
.hrs-careers-jobs-wrap .resumator-job-location,
.hrs-careers-jobs-wrap .resumator-job-department {
  display: block !important;
  float: none !important;
  clear: both !important;
  margin: 0 0 6px 0 !important;
}
.hrs-careers-jobs-wrap .resumator-job-view-details {
  margin-top: auto !important;
  padding-top: 14px !important;
}
.hrs-careers-jobs-wrap .resumator-job-link {
  font-family: var(--hrs-font) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #00aad2 !important;
  text-decoration: none !important;
}
.hrs-careers-jobs-wrap .resumator-job-link:hover {
  color: #002b5c !important;
}
/* If Jazz serves an iframe instead of inline jobs, stretch it */
.hrs-careers-jobs-embed iframe {
  border: none;
  width: 100%;
  min-height: 480px;
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */

/* ── SERVICES LIFECYCLE TABS ── */
/* ── SERVICES LIFECYCLE ── */
.hrs-section--services-lifecycle {
  background: #f0f4f8;
  padding: clamp(60px, 7vw, 100px) 0 clamp(48px, 6vw, 80px);
}
.hrs-section__header--center {
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 60px);
}
.hrs-section__subtitle {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--hrs-text-secondary);
  line-height: 1.65;
  max-width: 880px;
  margin: 12px auto 0;
}

/* 4 text tabs in a row */
.hrs-lifecycle-tabs {
  display: flex;
  border-bottom: 2px solid #dde3ea;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

/* Individual tab button */
.hrs-lifecycle-tab {
  flex: 1;
  padding: clamp(14px, 1.8vw, 20px) clamp(10px, 1.2vw, 16px);
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  color: var(--hrs-text-secondary);
  text-align: center;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  line-height: 1.25;
}
.hrs-lifecycle-tab:hover {
  color: var(--hrs-primary);
  border-bottom-color: rgba(0, 45, 92, 0.3);
}
.hrs-lifecycle-tab[aria-selected="true"] {
  color: var(--hrs-primary);
  font-weight: 700;
  border-bottom-color: var(--hrs-primary);
}
.hrs-lifecycle-tab:focus-visible {
  outline: none;
  color: var(--hrs-primary);
}
@media (max-width: 700px) {
  .hrs-lifecycle-tabs {
    flex-wrap: wrap;
  }
  .hrs-lifecycle-tab {
    flex: 0 0 50%;
    font-size: clamp(12px, 2vw, 14px);
    padding: 12px 8px;
  }
}

/* Panel hidden/shown */
.hrs-lifecycle-panel {
  display: block;
}
.hrs-lifecycle-panel[hidden="true"] {
  display: none;
}

/* Panel: text left, image right */
.hrs-lifecycle-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 820px) {
  .hrs-lifecycle-panel__inner {
    grid-template-columns: 1fr;
  }
  .hrs-lifecycle-panel__media {
    order: -1;
  }
}

/* Panel text */
.hrs-lifecycle-panel__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hrs-lifecycle-panel__headline {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--hrs-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.hrs-lifecycle-panel__body {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--hrs-text-secondary);
  line-height: 1.7;
  margin: 0;
}
.hrs-lifecycle-panel__detail {
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--hrs-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Lifecycle Blocks Grid */
.hrs-lifecycle-blocks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: clamp(40px, 5vw, 64px) 0 clamp(50px, 6vw, 80px);
    position: relative;
}

.hrs-lifecycle-blocks__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 1400px;
}

.hrs-lifecycle-blocks__row--top {
    gap: 0;
}

.hrs-lifecycle-blocks__row--bottom {
    gap: 0;
}

/* Individual Block */
.hrs-lifecycle-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(20px, 2.5vw, 32px);
    flex: 1;
    max-width: 320px;
}

.hrs-lifecycle-block__icon {
    width: clamp(140px, 16vw, 200px);
    height: clamp(140px, 16vw, 200px);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: clamp(16px, 2vw, 24px);
    box-shadow: 0 8px 32px rgba(0, 45, 92, 0.18);
    background: #f8f9fa;
}

.hrs-lifecycle-block__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hrs-lifecycle-block__label {
    font-size: clamp(13px, 1.3vw, 16px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hrs-accent, #e03000);
    margin: 0 0 8px;
}

.hrs-lifecycle-block__title {
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 800;
    color: var(--hrs-primary);
    margin: 0;
    line-height: 1.25;
}

/* Arrows */
.hrs-lifecycle-arrow {
    color: var(--hrs-primary);
    flex-shrink: 0;
}

.hrs-lifecycle-arrow--h {
    width: clamp(40px, 5vw, 60px);
}

.hrs-lifecycle-arrow--h svg {
    width: 100%;
    height: auto;
}

/* Diagonal connectors container - positioned between rows */
.hrs-lifecycle-blocks {
    position: relative;
    padding-bottom: 30px;
}

.hrs-lifecycle-blocks__connectors {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    pointer-events: none;
    z-index: 0;
}

.hrs-lifecycle-arrow--diag {
    width: 40px;
    height: 80px;
}

.hrs-lifecycle-arrow--diag svg {
    width: 100%;
    height: 100%;
}

.hrs-lifecycle-arrow--diag.hrs-lifecycle-arrow--to1 {
    transform: translateX(0);
}

.hrs-lifecycle-arrow--diag.hrs-lifecycle-arrow--to3 {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 800px) {
    .hrs-lifecycle-blocks__row--top {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hrs-lifecycle-blocks__row--top .hrs-lifecycle-block {
        flex: 0 0 calc(50% - 8px);
        max-width: none;
    }

    .hrs-lifecycle-arrow--h {
        display: none;
    }

    .hrs-lifecycle-blocks__connectors {
        display: none;
    }

    .hrs-lifecycle-blocks__row--bottom .hrs-lifecycle-block {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .hrs-lifecycle-blocks__row--top .hrs-lifecycle-block {
        flex: 0 0 100%;
    }
}

/* Panel image */
.hrs-lifecycle-panel__media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.hrs-lifecycle-panel__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── SERVICES STATS ── */
.hrs-section--services-stats {
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-services-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 700px) {
  .hrs-services-stats-grid { grid-template-columns: 1fr; }
}
.hrs-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .25s, border-color .25s;
}
.hrs-stat-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}
.hrs-stat-card--light {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
}
.hrs-stat-card--light:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.7);
}
.hrs-stat-card__number {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--stat-accent, #00aad2);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hrs-stat-card--large .hrs-stat-card__number {
  color: #ffffff;
}
.hrs-stat-card--light .hrs-stat-card__number,
.hrs-stat-card--light .hrs-stat-card__label {
  color: var(--hrs-primary);
}
.hrs-stat-card--light .hrs-stat-card__desc {
  color: rgba(0, 44, 95, 0.7);
}
.hrs-stat-card__label {
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.hrs-stat-card__desc {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.6;
}
.hrs-stat-card .hrs-btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  align-self: flex-start;
}
.hrs-btn--outline-light {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  font-family: var(--hrs-font);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .25s, border-color .25s;
}
.hrs-btn--outline-light:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.70);
  color: #fff;
}
.hrs-stat-card--light .hrs-btn--outline-light {
  background: #5170ff;
  border-color: #5170ff;
  color: #fff;
}
.hrs-stat-card--light .hrs-btn--outline-light:hover {
  background: #51bbff;
  border-color: #51bbff;
}
.hrs-btn--outline-light svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── SERVICES CTA BANNER ── */
.hrs-section--services-cta {
  background: var(--hrs-bg);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-services-cta {
  background: linear-gradient(135deg, #5170ff 0%, #3d5dff 100%);
  border-radius: 12px;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
}
.hrs-services-cta__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.hrs-services-cta__icon svg { width: 28px; height: 28px; }
.hrs-services-cta__text {
  flex: 1;
  min-width: 200px;
}
.hrs-services-cta__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.hrs-services-cta__desc {
  font-size: clamp(13px, 1.3vw, 16px);
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}
.hrs-services-cta .hrs-oblique-btn--services {
  flex-shrink: 0;
  background: #ffffff;
  border: none;
  color: #002c5f;
  font-size: clamp(12px, 1.2vw, 14px);
  padding: 13px 28px;
}
.hrs-services-cta .hrs-oblique-btn--services:hover {
  background: rgba(255,255,255,0.88);
  color: #002c5f;
}

/* ── ABOUT PAGE ── */

/* Section 2: Company Overview */
.hrs-section--about-overview {
  background: var(--hrs-card);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 780px) {
  .hrs-about-overview { grid-template-columns: 1fr; }
}
.hrs-about-overview__title {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--hrs-primary);
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}
.hrs-about-overview__desc {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--hrs-text-secondary);
  line-height: 1.7;
  margin: 0 0 14px 0;
}
.hrs-about-overview__img {
  width: 100%;
  height: auto;
  border-radius: var(--hrs-radius-md);
  box-shadow: var(--hrs-shadow-lg);
  display: block;
}

/* Section 3: Timeline */
.hrs-section--about-timeline {
  background: var(--hrs-muted);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-timeline {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hrs-timeline-item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  align-items: start;
  gap: 0;
}
.hrs-timeline-item__year {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--hrs-primary);
  letter-spacing: -0.02em;
  text-align: right;
  padding-top: 2px;
  padding-right: 16px;
}
.hrs-timeline-item__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hrs-timeline-item__connector::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--hrs-primary);
  border: 3px solid var(--hrs-tech-blue);
  flex-shrink: 0;
  margin-top: 4px;
}
.hrs-timeline-item__connector::after {
  content: "";
  width: 2px;
  background: linear-gradient(to bottom, var(--hrs-primary), var(--hrs-border));
  flex: 1;
  min-height: 40px;
}
.hrs-timeline-item:last-child .hrs-timeline-item__connector::after {
  display: none;
}
.hrs-timeline-item__content {
  padding: 0 0 32px 16px;
}
.hrs-timeline-item__title {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  color: var(--hrs-primary);
  margin: 0 0 6px 0;
}
.hrs-timeline-item__desc {
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--hrs-text-secondary);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 640px) {
  .hrs-timeline-item {
    grid-template-columns: 70px 28px 1fr;
  }
}

/* ── ABOUT SECTION 3: Timeline carousel ── */
.hrs-timeline-carousel {
  position: relative;
  margin-top: clamp(32px, 4vw, 56px);
}
.hrs-timeline__main-row {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
}
.hrs-timeline__track-wrapper {
  flex: 1;
  overflow: hidden;
}
.hrs-timeline__track {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.hrs-timeline-card {
  flex: 0 0 auto;
  min-width: clamp(200px, 28vw, 280px);
  max-width: min(280px, calc((100vw - 80px) / 3));
  padding: clamp(24px, 3vw, 32px);
  background: var(--hrs-card);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  box-shadow: 0 4px 20px rgba(0,44,95,.06);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hrs-timeline-card:hover {
  border-color: var(--hrs-border-hover);
  box-shadow: 0 10px 32px rgba(0,44,95,.12);
  transform: translateY(-4px);
}
.hrs-timeline-card__year {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--hrs-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hrs-timeline-card__desc {
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--hrs-text-secondary);
  line-height: 1.55;
  margin: 0;
}
.hrs-timeline-btn {
  flex-shrink: 0;
  width: clamp(36px, 4vw, 48px);
  height: clamp(36px, 4vw, 48px);
  border-radius: 50%;
  border: 2px solid var(--hrs-border);
  background: var(--hrs-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.hrs-timeline-btn:hover {
  border-color: var(--hrs-primary);
  background: var(--hrs-primary);
}
.hrs-timeline-btn:hover svg {
  color: #fff;
}
.hrs-timeline-btn svg {
  width: clamp(16px, 2vw, 20px);
  height: clamp(16px, 2vw, 20px);
  color: var(--hrs-primary);
  transition: color .2s;
}
.hrs-timeline-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.hrs-timeline-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(16px, 2vw, 24px);
}
.hrs-timeline-dot {
  width: clamp(10px, 1.2vw, 12px);
  height: clamp(10px, 1.2vw, 12px);
  border-radius: 50%;
  border: 2px solid var(--hrs-border);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.hrs-timeline-dot:hover {
  border-color: var(--hrs-primary);
}
.hrs-timeline-dot.is-active {
  background: var(--hrs-primary);
  border-color: var(--hrs-primary);
}
@media (max-width: 768px) {
  .hrs-timeline-btn {
    display: none;
  }
  .hrs-timeline__track-wrapper {
    margin: 0;
  }
  .hrs-timeline__track {
    gap: clamp(12px, 3vw, 16px);
  }
  .hrs-timeline-card {
    min-width: clamp(200px, 75vw, 280px);
    max-width: min(280px, calc((100vw - 48px) / 2));
  }
}

/* Section 4: Stats */
.hrs-section--about-stats {
  background: linear-gradient(135deg, var(--hrs-primary) 0%, #143a6b 100%);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 900px) {
  .hrs-about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .hrs-about-stats-grid { grid-template-columns: 1fr; }
}
.hrs-about-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--hrs-radius-md);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
  text-align: center;
  transition: background .3s, border-color .3s;
}
.hrs-about-stat-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}
.hrs-about-stat-card__number {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.hrs-about-stat-card__label {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.hrs-about-stat-card__desc {
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ── ABOUT SECTION 4: Global Presence — full-width background ── */
.hrs-section--about-global {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.hrs-global-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #002c5f;
}
.hrs-global-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hrs-global-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.hrs-global-content__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(12px, 2vw, 20px) 0;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hrs-global-content__subtitle {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,.9);
  margin: 0 0 clamp(20px, 2.5vw, 32px) 0;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hrs-global-btn {
  display: inline-block;
  padding: clamp(12px, 1.5vw, 16px) clamp(28px, 3vw, 40px);
  background: #fff;
  color: #002c5f;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.hrs-global-btn:hover {
  background: #00aad2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}

/* ── ABOUT SECTION 5: Global IT Jobs ── */
.hrs-section--about-jobs {
  padding: clamp(60px, 8vw, 100px) 0;
}
.hrs-jobs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 6vw, 100px);
  align-items: center;
}
.hrs-jobs-image {
  position: relative;
  border-radius: var(--hrs-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,44,95,.15);
}
.hrs-jobs-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s;
}
.hrs-jobs-image:hover img {
  transform: scale(1.03);
}
.hrs-jobs-content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}
.hrs-jobs-content__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--hrs-primary);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.hrs-jobs-content__subtitle {
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--hrs-text-secondary);
  line-height: 1.7;
  margin: 0;
}
.hrs-section--services-jobs .hrs-btn--primary {
  align-self: flex-start;
  width: auto;
}
.hrs-jobs-btn {
  display: inline-block;
  padding: clamp(12px, 1.5vw, 16px) clamp(28px, 3vw, 40px);
  background: #fff;
  color: var(--hrs-primary);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(0,44,95,.2);
  align-self: flex-start;
}
.hrs-jobs-btn:hover {
  background: #00aad2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,44,95,.3);
}
@media (max-width: 900px) {
  .hrs-jobs-split {
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 48px);
  }
  .hrs-jobs-btn {
    align-self: center;
  }
}

/* Section 6: CTA */
.hrs-section--about-cta {
  background: var(--hrs-card);
  padding: clamp(60px, 7vw, 100px) 0;
}
.hrs-about-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hrs-about-cta__title {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: var(--hrs-primary);
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}
.hrs-about-cta__desc {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--hrs-text-secondary);
  line-height: 1.7;
  margin: 0 0 32px 0;
}
.hrs-about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── ABOUT SECTION 2: Company Overview (2-column split) ── */
.hrs-excellence__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 768px) {
  .hrs-excellence__split {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 56px);
  }
}
.hrs-excellence__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hrs-excellence__left > .hrs-oblique-btn {
  align-self: flex-start;
}
.hrs-excellence__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hrs-excellence__feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--hrs-card);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  box-shadow: 0 4px 16px rgba(0,44,95,.06);
  transition: border-color .3s, box-shadow .3s, transform .25s;
}
.hrs-excellence__feature:hover {
  border-color: var(--hrs-border-hover);
  box-shadow: 0 8px 24px rgba(0,44,95,.10);
  transform: translateY(-2px);
}
.hrs-excellence__feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hrs-excellence__feature-imgwrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--hrs-muted);
  border-radius: var(--hrs-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.hrs-excellence__feature:hover .hrs-excellence__feature-imgwrap {
  background: #5170ff;
}
.hrs-excellence__feature-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: filter .3s;
}
.hrs-excellence__feature:hover .hrs-excellence__feature-img {
  filter: brightness(0) invert(1);
}
.hrs-excellence__feature-title {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--hrs-primary);
}
.hrs-excellence__feature-desc {
  margin: 0;
  font-size: clamp(13px, 1.1vw, 14px);
  color: var(--hrs-text-secondary);
  line-height: 1.55;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

/* ── CONTACT SOCIAL LINKS ── */
.hrs-contact__social {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--hrs-border);
}
.hrs-contact__social-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hrs-text-secondary);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hrs-contact__social-links {
  display: flex;
  gap: 12px;
}
.hrs-contact__social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--hrs-muted);
  border: 1px solid var(--hrs-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hrs-primary);
  text-decoration: none;
  transition: all .2s;
}
.hrs-contact__social-link:hover {
  background: var(--hrs-primary);
  border-color: var(--hrs-primary);
  color: #fff;
  transform: translateY(-2px);
}
.hrs-contact__social-link svg {
  width: 18px;
  height: 18px;
}

/* ── CONTACT LOCATION IMAGE SECTION ── */
.hrs-section--contact-location {
  background: var(--hrs-bg);
  padding: 0 0 clamp(48px, 6vw, 80px);
}
.hrs-contact-location {
  position: relative;
  border-radius: var(--hrs-radius-md);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,44,95,.15);
}
.hrs-contact-location__image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}
.hrs-contact-location__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hrs-contact-location__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,44,95,0.95) 0%, rgba(0,44,95,0.7) 60%, transparent 100%);
  padding: clamp(32px, 4vw, 56px);
  color: #fff;
}
.hrs-contact-location__content {
  max-width: 600px;
}
.hrs-contact-location__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}
.hrs-contact-location__address {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255,255,255,0.85);
  margin: 0 0 20px 0;
  line-height: 1.5;
}

/* ── LOCATION MAP TOGGLE ── */
.hrs-location-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: clamp(24px, 3vw, 40px);
  background: var(--hrs-muted);
  border: 1px solid var(--hrs-border);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hrs-location-toggle__btn {
  font-family: var(--hrs-font);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  padding: clamp(8px, 1.5vw, 12px) clamp(20px, 3vw, 32px);
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--hrs-text-secondary);
  cursor: pointer;
  transition: all .25s;
}
.hrs-location-toggle__btn--active {
  background: var(--hrs-primary);
  color: #fff;
}

/* ── LOCATION MAP IMAGES ── */
.hrs-location-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.hrs-location-map__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.hrs-location-map__img--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hrs-location-map__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
  z-index: 1;
}
.hrs-location-map__wrapper.hrs-location-map__img--active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.hrs-location-map__wrapper--haea,
.hrs-location-map__wrapper--global {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.hrs-location-map__wrapper--haea.hrs-location-map__img--active,
.hrs-location-map__wrapper--global.hrs-location-map__img--active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.hrs-location-map__wrapper img,
.hrs-location-map__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hrs-location-map__markers--global {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hrs-location-map__markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hrs-location-map__marker {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.hrs-location-map__marker-dot {
  width: 28px;
  height: 28px;
  background: #1a1a1a;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
.hrs-location-map__marker-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.hrs-location-map__marker:hover .hrs-location-map__marker-dot {
  transform: scale(1.15);
}
.hrs-location-map__marker:hover .hrs-location-map__marker-dot::before {
  opacity: 1;
}
.hrs-location-map__marker-plus {
  font-size: 18px;
  line-height: 1;
}
/* Multi-location marker (3 stores) */
.hrs-location-map__marker--multi .hrs-location-map__marker-dot {
  width: 38px;
  height: 38px;
  background: #1a1a1a;
  border-width: 4px;
}
.hrs-location-map__marker--multi .hrs-location-map__marker-dot::before {
  width: 56px;
  height: 56px;
}
/* Highlight marker (red for single locations) */
.hrs-location-map__marker--highlight .hrs-location-map__marker-dot {
  background: #e63312;
}
.hrs-location-map__marker--highlight .hrs-location-map__marker-dot::before {
  background: rgba(230,51,18,0.2);
}
.hrs-location-map__marker-count {
  font-size: 16px;
  line-height: 1;
}
.hrs-location-map__marker-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #333;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 220px;
  text-align: center;
  padding: 0;
  overflow: hidden;
}
.hrs-location-map__marker-tooltip::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #fff;
}
.hrs-location-map__marker:hover .hrs-location-map__marker-tooltip {
  opacity: 1;
  visibility: visible;
}
.hrs-location-map__marker-info {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.hrs-location-map__marker-info + .hrs-location-map__marker-info {
  border-top: 1px solid #e0e0e0;
}
.hrs-location-map__marker-name {
  font-weight: 700;
  color: #002c5f;
  font-size: 15px;
  line-height: 1.4;
}
.hrs-location-map__marker-address {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}
.hrs-location-map__marker-divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
}

/* ── HERO LINKEDIN BUTTON ── */
.hrs-hero__linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--hrs-font);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
  margin-top: 8px;
}
.hrs-hero__linkedin-btn:hover {
  opacity: 0.8;
}
.hrs-hero__linkedin-icon {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .hrs-hero__linkedin-icon {
    width: 18px;
    height: 18px;
  }
}

/* ── NEW TIMELINE SECTION ── */
.hrs-timeline-new {
  padding: 40px 0;
  overflow: visible;
}

.hrs-timeline-new .hrs-container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
  overflow: visible;
}

.hrs-timeline-new {
  overflow: visible !important;
}

.hrs-timeline-new .hrs-container {
  overflow: visible !important;
}

.hrs-timeline-new__subtitle {
  font-family: var(--hrs-font);
  font-size: 20px;
  color: #64748b;
  text-align: center;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hrs-timeline-new__label {
  display: inline-block;
  font-family: var(--hrs-font);
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: #2563eb;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.hrs-section__title--timeline {
  font-size: clamp(24px, 3vw, 36px);
}

.hrs-timeline-new__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 80px 20px 80px;
  margin: 0;
  width: 100%;
}

.hrs-timeline-new__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  flex: 1;
  min-width: 0;
  height: 200px;
  width: 100%;
}

.hrs-timeline-new__dot {
  width: 14px;
  height: 14px;
  background: #1a365d;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.hrs-timeline-new__item:hover .hrs-timeline-new__dot {
  background: #2563eb;
  transform: translateY(-50%) scale(1.3);
}

.hrs-timeline-new__year {
  font-family: var(--hrs-font);
  font-size: 13px;
  font-weight: 700;
  color: #1a365d;
  text-align: center;
  position: absolute;
  top: calc(50% + 16px);
  left: 50%;
  transform: translateX(-50%);
}

.hrs-timeline-new__desc {
  font-family: var(--hrs-font);
  font-size: 14px;
  color: #1a365d;
  text-align: left;
  width: 120px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
  padding: 8px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
}

.hrs-timeline-new__desc-num {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #2563eb;
  margin-bottom: 2px;
}

.hrs-timeline-new__desc-full {
  display: none;
  font-family: var(--hrs-font);
  text-align: left;
  width: 180px;
  line-height: 1.4;
  padding: 14px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  white-space: normal;
  border-top: 4px solid #2563eb;
}

.hrs-timeline-new__desc-full .hrs-timeline-new__desc-year {
  display: block;
  font-weight: 700;
  font-size: 20px;
  color: #2563eb;
  margin-bottom: 4px;
}

.hrs-timeline-new__desc-short {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #1a365d;
  margin-bottom: 8px;
}

.hrs-timeline-new__desc-long {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: #4a5568;
}

/* Hover state - show full desc */
.hrs-timeline-new__item:hover .hrs-timeline-new__desc {
  display: none;
}

.hrs-timeline-new__item:hover .hrs-timeline-new__desc-full {
  display: block;
}

.hrs-timeline-new__item:hover .hrs-timeline-new__desc-year {
  font-size: 20px;
}

/* Even index: desc above dot, Odd index: desc below year */
.hrs-timeline-new__item--top .hrs-timeline-new__desc,
.hrs-timeline-new__item--top .hrs-timeline-new__desc-full {
  position: absolute;
  bottom: calc(50% + 30px);
  left: 50%;
  transform: translateX(-50%);
}

.hrs-timeline-new__item--bottom .hrs-timeline-new__desc,
.hrs-timeline-new__item--bottom .hrs-timeline-new__desc-full {
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  transform: translateX(-50%);
}

/* Horizontal connector line */
.hrs-timeline-new__wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #1a365d;
  z-index: 0;
}