/* ================================================================
   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:  1200px;
  --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: rgba(246,243,242,.85);
  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: rgba(246,243,242,.96);
  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: 36px;
  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: 16px;
  font-weight: 500;
  color: rgba(0, 44, 95, 0.55);
  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: var(--hrs-primary);
}
/* 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--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--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__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);
}
.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__subtitle {
  font-size: 18px;
  color: var(--hrs-text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.hrs-section__cta {
  text-align: center;
  margin-top: clamp(40px, 4vw, 64px);
}

/* ── 8. HERO (full-bleed video — original HAEA style) ── */
.hrs-hero--video {
  position: relative;
  min-height: clamp(520px, 85vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Header is fixed ~80px — keep hero content below it */
  padding: calc(80px + clamp(32px, 5vh, 72px)) 0 clamp(56px, 8vh, 100px);
  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));
  }
}
@media (max-width: 640px) {
  .hrs-hero__legacy-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: 1px solid rgba(255, 255, 255, 0.92);
  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;
  border-color: #fff;
  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__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: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; } }

/* ── 10. OUTREACH + JOBS ── */
.hrs-outreach {
  padding-top: clamp(14px, 2vw, 24px);
  background: #fff;
}
.hrs-outreach__logo-strip {
  margin-top: clamp(20px, 3vw, 34px);
  overflow: hidden;
  padding: 14px 0;
  border: none;
  border-radius: var(--hrs-radius);
  background: #fff;
}
.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(320px, 42vw, 520px);
  width: min(1400px, calc(100% + 240px));
  margin-left: 50%;
  transform: translateX(-50%);
  background-size: cover;
  background-position: center top;
  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: 900px;
  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);
}
.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);
}
.hrs-contact__info { display: flex; flex-direction: column; gap: 16px; }
.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: 4px 10px;
  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(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin: 6px 0 6px;
}
.hrs-contact__text {
  font-size: 17px;
  color: #4e678c;
  line-height: 1.6;
}
.hrs-contact__rows { display: flex; flex-direction: column; gap: 12px; }
.hrs-contact__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: rgba(246,243,242,.95);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  transition: border-color .3s;
}
.hrs-contact__row:hover { border-color: var(--hrs-border-hover); }
.hrs-contact__row-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;
  transition: background .3s;
}
.hrs-contact__row:hover .hrs-contact__row-icon { background: var(--hrs-primary); }
.hrs-contact__row-icon svg {
  width: 22px; height: 22px;
  color: var(--hrs-primary);
  transition: color .3s;
}
.hrs-contact__row:hover .hrs-contact__row-icon svg { color: #fff; }
.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;
  padding: clamp(24px, 3vw, 40px);
  background: rgba(246,243,242,.95);
  border: 1px solid var(--hrs-border);
  border-radius: var(--hrs-radius);
  box-shadow: var(--hrs-shadow-xl);
  align-self: stretch;
}
.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: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(18px, 2vw, 28px) 0;
}
.hrs-footer__brand { max-width: 480px; }
.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: var(--hrs-primary);
  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: 1px solid var(--hrs-primary);
  transition: background .25s, color .25s;
}
.hrs-footer__family-btn:hover {
  background: #001f43;
  color: #fff;
}
.hrs-footer__family-arrow {
  font-size: 16px;
  line-height: 1;
}
.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 li + li { margin-top: 10px; }
.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__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 { flex-direction: column; gap: 20px; }
  .hrs-footer__contact { text-align: left; }
  .hrs-footer__logo img { height: 44px; }
  .hrs-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── 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; }
