:root {
  --container: 1440px !important;
  --brand-green: #add839;
  --brand-blue: #32b4f7;
  --brand-green-rgb: 173, 216, 57;
  --brand-blue-rgb: 50, 180, 247;
  --primary: var(--brand-blue);
  --primary-dark: #001f3f;
  --primary-light: #eaf6ff;
  --light-blue: var(--brand-blue);
  --green: var(--brand-green);
  --light-green: var(--brand-green);
  --green-rgb: var(--brand-green-rgb);
  --shell-dark: #010c1c;
}

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

html { scroll-behavior: smooth; }

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
  background: #fff;
  color: var(--text-primary, #0d0d0d);
  font-family: var(--font, 'Inter', sans-serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.hx-menu-open { overflow: hidden; }
body.hx-privacy-open { overflow: hidden; }

.hx-privacy-banner {
  position: fixed;
  z-index: 9998;
  right: clamp(14px, 2.5vw, 32px);
  bottom: clamp(14px, 2.5vw, 28px);
  left: clamp(14px, 2.5vw, 32px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(var(--brand-blue-rgb), 0.26);
  border-radius: 14px 14px 14px 5px;
  background: rgba(1, 12, 28, 0.97);
  box-shadow: 0 24px 64px rgba(1, 12, 28, 0.32);
  color: #061120;
  opacity: 0;
  transform: translateY(24px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.hx-privacy-banner.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.hx-privacy-banner__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px 8px 8px 3px;
  background: linear-gradient(135deg, var(--primary), var(--light-blue));
  color: #061120;
  font-size: 20px;
  font-weight: 900;
}
.hx-privacy-banner__copy strong { display: block; margin-bottom: 4px; font-size: 16px; }
.hx-privacy-banner__copy p { margin: 0; color: #cbd5e1; font-size: 14px; line-height: 1.55; }
.hx-privacy-banner a, .hx-privacy-panel a { color: #7dd3fc; text-underline-offset: 3px; }
.hx-privacy-banner__actions { display: grid; grid-template-columns: repeat(2, minmax(126px, 1fr)); gap: 8px; }

.hx-privacy-button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 7px 7px 7px 3px;
  font: 700 14px/1.2 var(--font, 'Inter', sans-serif);
  cursor: pointer;
}
.hx-privacy-button:focus-visible, .hx-footer__settings:focus-visible, .hx-privacy-panel__close:focus-visible, .hx-privacy-switch input:focus-visible + span {
  outline: 3px solid rgba(var(--brand-blue-rgb), 0.48);
  outline-offset: 2px;
}
.hx-privacy-button--primary { background: var(--primary); color: #061120; }
.hx-privacy-button--secondary { border-color: rgba(255, 255, 255, 0.4); background: transparent; color: #061120; }
.hx-privacy-button--primary:hover { background: #0874d8; }
.hx-privacy-button--secondary:hover { border-color: #061120; background: rgba(255, 255, 255, 0.08); }
.hx-privacy-button--text { grid-column: 1 / -1; min-height: auto; padding: 4px 8px; background: transparent; color: #bae6fd; }

.hx-privacy-backdrop {
  position: fixed;
  z-index: 9999;
  inset: 0;
  padding: 24px;
  overflow-y: auto;
  background: rgba(1, 12, 28, 0.72);
  backdrop-filter: blur(5px);
}
.hx-privacy-backdrop[hidden] { display: none; }
.hx-privacy-panel {
  width: min(100%, 680px);
  margin: max(20px, 7vh) auto;
  overflow: hidden;
  border: 1px solid #d9e6f1;
  border-radius: 18px 18px 18px 6px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(1, 12, 28, 0.34);
  color: #172033;
}
.hx-privacy-panel__header { padding: 26px 28px 18px; display: flex; justify-content: space-between; gap: 20px; background: #f5faff; }
.hx-privacy-panel__eyebrow { display: block; margin-bottom: 7px; color: var(--primary); font-size: 12px; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.hx-privacy-panel h2 { margin: 0; color: var(--primary-dark); font-size: clamp(24px, 4vw, 32px); line-height: 1.15; }
.hx-privacy-panel__close { width: 40px; height: 40px; flex: 0 0 auto; border: 1px solid #cadbea; border-radius: 50%; background: #fff; color: var(--primary-dark); font-size: 25px; cursor: pointer; }
.hx-privacy-panel__intro { margin: 0; padding: 20px 28px; color: #536174; font-size: 15px; line-height: 1.65; }
.hx-privacy-options { border-block: 1px solid #e4edf4; }
.hx-privacy-option { padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid #e8eff5; }
.hx-privacy-option:last-child { border-bottom: 0; }
.hx-privacy-option strong { display: block; margin-bottom: 4px; color: var(--primary-dark); font-size: 16px; }
.hx-privacy-option p { margin: 0; max-width: 470px; color: #64748b; font-size: 14px; line-height: 1.5; }
.hx-privacy-required { flex: 0 0 auto; padding: 6px 9px; border-radius: 999px; background: rgba(var(--brand-green-rgb), 0.14); color: #315800; font-size: 12px; font-weight: 800; }
.hx-privacy-switch { position: relative; flex: 0 0 auto; width: 48px; height: 28px; }
.hx-privacy-switch input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.hx-privacy-switch span { position: absolute; inset: 0; border-radius: 999px; background: #cbd5e1; transition: background 160ms ease; cursor: pointer; }
.hx-privacy-switch span::after { content: ''; position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(15, 23, 42, 0.22); transition: transform 160ms ease; }
.hx-privacy-switch input:checked + span { background: var(--green); }
.hx-privacy-switch input:checked + span::after { transform: translateX(20px); }
.hx-privacy-panel__actions { padding: 22px 28px 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hx-privacy-panel__actions .hx-privacy-button--secondary { border-color: #93a8ba; color: var(--primary-dark); }
.hx-privacy-panel__actions .hx-privacy-button--secondary:hover { border-color: var(--primary-dark); background: #f5f8fb; }
.hx-privacy-panel__policy { margin: 0; padding: 8px 28px 24px; color: #64748b; font-size: 13px; text-align: center; }
.hx-privacy-panel__policy a { color: var(--primary); }
.hx-footer__settings { padding: 0; border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.hx-footer__settings:hover { color: #cbd5e1; }

@media (max-width: 820px) {
  .hx-privacy-banner { grid-template-columns: 38px minmax(0, 1fr); }
  .hx-privacy-banner__mark { width: 38px; height: 38px; }
  .hx-privacy-banner__actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .hx-privacy-banner { padding: 15px; gap: 12px; }
  .hx-privacy-banner__actions { grid-template-columns: 1fr; }
  .hx-privacy-button--text { grid-column: auto; }
  .hx-privacy-backdrop { padding: 10px; }
  .hx-privacy-panel { margin: 10px auto; }
  .hx-privacy-panel__header, .hx-privacy-panel__intro, .hx-privacy-option { padding-inline: 18px; }
  .hx-privacy-panel__actions { padding-inline: 18px; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hx-privacy-banner, .hx-privacy-switch span, .hx-privacy-switch span::after { transition: none; }
}

.hx-hero--image {
  background-color: var(--shell-dark);
  background-image:
    linear-gradient(90deg, rgba(1, 12, 28, 0.94) 0%, rgba(1, 12, 28, 0.78) 42%, rgba(1, 12, 28, 0.58) 100%),
    linear-gradient(180deg, rgba(1, 12, 28, 0.5) 0%, rgba(1, 12, 28, 0.98) 100%),
    var(--hero-image) !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hx-hero--home { --hero-image: url('/assets/hero-images/hero-home-higgsfield.webp'); background-position: center 47%; }
.hx-hero--home.hx-hero--image {
  padding: 100px 24px 112px;
  background-image:
    linear-gradient(90deg, rgba(1, 12, 28, 0.82) 0%, rgba(1, 12, 28, 0.5) 46%, rgba(1, 12, 28, 0.42) 100%),
    linear-gradient(180deg, rgba(1, 12, 28, 0.18) 0%, rgba(1, 12, 28, 0.8) 100%),
    var(--hero-image) !important;
}
.hx-hero--home .hx-hero__content {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
  text-align: left;
  padding-inline: clamp(24px, 5.55vw, 80px);
  padding-bottom: 0;
  box-sizing: border-box;
}
.hx-hero--home .hx-hero__eyebrow {
  background: rgba(var(--brand-green-rgb), 0.14);
  color: var(--light-green);
  border-color: rgba(var(--brand-green-rgb), 0.32);
}
.hx-hero--home .hx-hero__eyebrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--light-green);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.hx-hero--home h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 20px;
}
.hx-hero--home h1 em,
.hx-hero--home h1 .hx-hero__h1-muted {
  color: var(--light-green);
  text-shadow: none;
}
.hx-hero--home h1,
.hx-hero--home .hx-hero__sub {
  margin-left: 0;
  margin-right: 0;
}
.hx-hero--home .hx-hero__sub {
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 36px;
}
.hx-hero--home .hx-hero__actions {
  margin-bottom: 44px;
}
.hx-hero--home .hx-hero__actions,
.hx-hero--home .hx-hero__proof {
  justify-content: flex-start;
}
.hx-hero--home .hx-hero__proof {
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.hx-hero--home .hx-hero__proof-item {
  gap: 10px;
}
.hx-hero--home .hx-hero__proof-icon {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: rgba(var(--brand-green-rgb), 0.15);
}
.hx-hero--home .hx-hero__proof-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--light-green);
  stroke-width: 2.5;
}
.hx-hero--home .hx-hero__proof-text {
  font-size: 13px;
  color: #b6c2d4;
}
.hx-hero--home .hx-hero__proof-sep {
  display: none;
}
.hx-hero--about { --hero-image: url('/assets/hero-images/hero-about-higgsfield.webp'); background-position: center; }
.hx-hero--about.hx-hero--image {
  padding: 100px 24px 112px;
  background-image:
    linear-gradient(90deg, rgba(1, 12, 28, 0.82) 0%, rgba(1, 12, 28, 0.5) 46%, rgba(1, 12, 28, 0.42) 100%),
    linear-gradient(180deg, rgba(1, 12, 28, 0.18) 0%, rgba(1, 12, 28, 0.8) 100%),
    var(--hero-image) !important;
}
.hx-hero--about .hx-container {
  width: min(100%, var(--container));
  max-width: var(--container);
  text-align: left;
  padding-inline: clamp(24px, 5.55vw, 80px);
  box-sizing: border-box;
}
.hx-hero--about .hx-hero__eyebrow {
  background: rgba(var(--brand-green-rgb), 0.14);
  color: var(--light-green);
  border-color: rgba(var(--brand-green-rgb), 0.32);
}
.hx-hero--about .hx-hero__h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.08;
  max-width: 820px;
  margin-left: 0;
  margin-right: 0;
  letter-spacing: 0;
}
.hx-hero--about .hx-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
}
.hx-hero--about .hx-hero__actions {
  justify-content: flex-start;
}
.hx-hero--about .hx-hero__trust {
  justify-content: flex-start;
  max-width: 760px;
}
.hx-hero--contact { --hero-image: url('/assets/hero-images/hero-home-operations.webp'); background-position: center 42%; }
.hx-hero--cyber { --hero-image: url('/assets/hero-images/service-cyber-review-higgsfield.webp'); background-position: center; }
.hx-hero--endpoint { --hero-image: url('/assets/hero-images/service-endpoint-fleet-higgsfield.webp'); background-position: center; }
.hx-hero--data { --hero-image: url('/assets/hero-images/service-data-workflow-higgsfield.webp'); background-position: center; }
.hx-hero--support-management { --hero-image: url('/assets/hero-images/service-it-management-dashboard-higgsfield.webp'); background-position: center; }
.hx-hero--helpdesk { --hero-image: url('/assets/hero-images/helpdesk-hero-startup-higgsfield.webp'); background-position: center; }
.hx-hero--infrastructure { --hero-image: url('/assets/hero-images/service-infrastructure-operations-higgsfield.webp'); background-position: center; }
.hx-hero--hardware { --hero-image: url('/assets/hero-images/service-hardware-assets-higgsfield.webp'); background-position: center; }
.hx-hero--vendor { --hero-image: url('/assets/hero-images/service-vendor-call-higgsfield.webp'); background-position: center; }

:is(.hx-hero--cyber, .hx-hero--endpoint, .hx-hero--data, .hx-hero--support-management, .hx-hero--helpdesk, .hx-hero--infrastructure, .hx-hero--hardware, .hx-hero--vendor).hx-hero--image {
  padding: 100px 24px 112px;
  background-image:
    linear-gradient(90deg, rgba(1, 12, 28, 0.82) 0%, rgba(1, 12, 28, 0.5) 46%, rgba(1, 12, 28, 0.42) 100%),
    linear-gradient(180deg, rgba(1, 12, 28, 0.18) 0%, rgba(1, 12, 28, 0.8) 100%),
    var(--hero-image) !important;
}

:is(.hx-hero--cyber, .hx-hero--endpoint, .hx-hero--data, .hx-hero--support-management, .hx-hero--helpdesk, .hx-hero--infrastructure, .hx-hero--hardware, .hx-hero--vendor) .hx-hero__inner {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(24px, 5.55vw, 80px);
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  gap: 0;
  box-sizing: border-box;
}

:is(.hx-hero--cyber, .hx-hero--endpoint, .hx-hero--data, .hx-hero--support-management, .hx-hero--helpdesk, .hx-hero--infrastructure, .hx-hero--hardware, .hx-hero--vendor) .hx-hero__content {
  max-width: 760px;
  text-align: left;
}

:is(.hx-hero--cyber, .hx-hero--endpoint, .hx-hero--data, .hx-hero--support-management, .hx-hero--helpdesk, .hx-hero--infrastructure, .hx-hero--hardware, .hx-hero--vendor) > .hx-hero__content {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(24px, 5.55vw, 80px);
  box-sizing: border-box;
}

:is(.hx-hero--cyber, .hx-hero--endpoint, .hx-hero--data, .hx-hero--support-management, .hx-hero--helpdesk, .hx-hero--infrastructure, .hx-hero--hardware, .hx-hero--vendor) h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.08;
  max-width: 820px;
  margin-left: 0;
  margin-right: 0;
  letter-spacing: 0;
}

:is(.hx-hero--cyber, .hx-hero--endpoint, .hx-hero--data, .hx-hero--support-management, .hx-hero--helpdesk, .hx-hero--infrastructure, .hx-hero--hardware, .hx-hero--vendor) .hx-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
}

:is(.hx-hero--cyber, .hx-hero--endpoint, .hx-hero--data, .hx-hero--support-management, .hx-hero--helpdesk, .hx-hero--infrastructure, .hx-hero--hardware, .hx-hero--vendor) .hx-hero__actions,
:is(.hx-hero--cyber, .hx-hero--endpoint, .hx-hero--data, .hx-hero--support-management, .hx-hero--helpdesk, .hx-hero--infrastructure, .hx-hero--hardware, .hx-hero--vendor) .hx-hero__trust {
  justify-content: flex-start;
}

:is(.hx-hero--cyber, .hx-hero--endpoint, .hx-hero--data, .hx-hero--support-management, .hx-hero--helpdesk, .hx-hero--infrastructure, .hx-hero--hardware, .hx-hero--vendor) :is(.hx-threat-panel, .hx-fleet-panel, .hx-data-monitor, .hx-vendor-panel, .hx-infra-console, .hx-asset-dashboard, .hx-manager-dashboard, .hx-support-panel, .hx-asset-register, .hx-hero__panel) {
  display: none;
}

.hx-contact-hero.hx-hero--image {
  background-color: var(--shell-dark);
  background-image:
    radial-gradient(circle at 18% 18%, rgba(var(--brand-blue-rgb), 0.18), transparent 32%),
    radial-gradient(circle at 78% 8%, rgba(var(--brand-green-rgb), 0.16), transparent 28%),
    linear-gradient(90deg, rgba(1, 12, 28, 0.95) 0%, rgba(1, 12, 28, 0.74) 48%, rgba(1, 12, 28, 0.9) 100%),
    var(--hero-image) !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hx-cta {
  padding: clamp(80px, 8vw, 120px) 24px !important;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 48%, #f2f7fb 100%) !important;
}

.hx-cta__inner {
  max-width: 1240px !important;
  min-height: 410px;
  margin: 0 auto !important;
  padding: clamp(48px, 6vw, 76px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) !important;
  gap: clamp(34px, 5vw, 72px) !important;
  align-items: center !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background-color: var(--shell-dark) !important;
  background-image:
    linear-gradient(90deg, rgba(1, 12, 28, 0.94) 0%, rgba(1, 12, 28, 0.84) 43%, rgba(1, 12, 28, 0.42) 100%),
    linear-gradient(180deg, rgba(1, 12, 28, 0.06) 0%, rgba(1, 12, 28, 0.82) 100%),
    url('/assets/cta-consultation-higgsfield.webp') !important;
  background-position: center !important;
  background-size: cover !important;
  box-shadow: 0 34px 90px rgba(1, 12, 28, 0.22) !important;
}

.hx-cta__inner::before {
  content: '' !important;
  position: absolute !important;
  inset: 1px !important;
  border-radius: inherit !important;
  background:
    radial-gradient(circle at 82% 24%, rgba(var(--brand-green-rgb), 0.18), transparent 30%),
    radial-gradient(circle at 28% 84%, rgba(var(--brand-blue-rgb), 0.14), transparent 32%) !important;
  pointer-events: none !important;
}

.hx-cta__inner::after {
  content: '' !important;
  position: absolute !important;
  inset: auto 32px 32px auto !important;
  width: min(30%, 330px) !important;
  height: 58% !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)) !important;
  backdrop-filter: blur(12px) !important;
  pointer-events: none !important;
}

.hx-cta__inner > * {
  position: relative;
  z-index: 1;
}

.hx-cta__eyebrow {
  background: rgba(var(--brand-green-rgb), 0.14) !important;
  color: var(--light-green) !important;
  border-color: rgba(var(--brand-green-rgb), 0.32) !important;
}

.hx-cta h2 {
  max-width: 680px;
  color: #fff !important;
  font-size: clamp(32px, 4.1vw, 52px) !important;
  line-height: 1.08 !important;
  margin-bottom: 18px !important;
}

.hx-cta p {
  max-width: 620px !important;
  color: #b6c2d4 !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
}

.hx-cta__actions {
  width: 100% !important;
  max-width: 340px !important;
  justify-self: end !important;
  align-items: stretch !important;
  padding: 22px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(1, 12, 28, 0.56) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26) !important;
  backdrop-filter: blur(14px) !important;
}

.hx-cta .hx-btn {
  width: 100% !important;
  box-sizing: border-box;
  text-align: center !important;
}

.hx-cta .hx-btn--white,
.hx-cta .hx-btn--primary {
  background: var(--light-green) !important;
  color: #061120 !important;
  box-shadow: 0 14px 34px rgba(var(--brand-green-rgb), 0.28) !important;
}

.hx-cta .hx-btn--white:hover,
.hx-cta .hx-btn--primary:hover {
  background: var(--brand-green) !important;
  transform: translateY(-1px);
}

.hx-cta .hx-btn--ghost {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #e8eef7 !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.hx-cta .hx-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
}

.hx-cta__note {
  color: #d5dfec !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  .hx-cta {
    padding: 72px 18px !important;
  }

  .hx-cta__inner {
    grid-template-columns: 1fr !important;
    min-height: 0;
    padding: 42px 24px !important;
    text-align: left !important;
  }

  .hx-cta__inner::after {
    display: none !important;
  }

  .hx-cta__actions {
    justify-self: stretch !important;
    max-width: none !important;
  }

  .hx-cta p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hx-cta h2 {
    font-size: clamp(30px, 10vw, 42px) !important;
  }
}

.hx-hero--image .hx-hero__grid,
.hx-hero--image .hx-hero__grid-bg,
.hx-hero--image .hx-hero__bg-grid,
.hx-hero--image .hx-hero__hex,
.hx-hero--image .hx-hero__texture {
  opacity: 0.45;
  mix-blend-mode: screen;
}

.hx-hero--image .hx-hero__glow,
.hx-hero--image .hx-hero__glow-2,
.hx-hero--image .hx-hero__glow-c,
.hx-hero--image .hx-hero__glow-r,
.hx-hero--image .hx-hero__glow-l,
.hx-hero--image .hx-hero__glow-tl,
.hx-hero--image .hx-hero__glow-br {
  opacity: 0.78;
}

.hx-hero--image .hx-threat-panel,
.hx-hero--image .hx-fleet-panel,
.hx-hero--image .hx-data-monitor,
.hx-hero--image .hx-vendor-panel,
.hx-hero--image .hx-infra-console,
.hx-hero--image .hx-asset-dashboard,
.hx-hero--image .hx-manager-dashboard,
.hx-hero--image .hx-support-panel,
.hx-contact-hero.hx-hero--image .hx-contact-hero__aside {
  background: rgba(1, 12, 28, 0.7);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.hx-hero--image .hx-hero__sub,
.hx-hero--image .hx-hero__trust-text,
.hx-hero--image .hx-hero__proof-text,
.hx-contact-hero.hx-hero--image .hx-contact-hero__sub {
  color: #b6c2d4;
}

.hx-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--shell-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hx-nav__inner {
  width: min(100%, var(--container));
  height: 106px;
  margin: 0 auto;
  padding: 0 clamp(40px, 5.55vw, 80px);
  display: flex;
  align-items: center;
  gap: 56px;
}

.hx-nav__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #061120;
  text-decoration: none;
}

.hx-nav__logo img {
  width: 224px;
  height: auto;
  display: block;
  object-fit: contain;
}

.hx-nav__logo-text { display: none; }

.hx-nav__links {
  margin-left: auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.hx-nav__item {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.hx-nav__menu-link {
  min-width: 138px;
  min-height: 60px;
  padding: 10px 10px 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 0;
  background: transparent;
  color: #061120;
  font-family: var(--font, 'Inter', sans-serif);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.hx-nav__menu-link::after {
  content: '';
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--light-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.hx-nav__menu-link:hover::after,
.hx-nav__menu-link:focus-visible::after,
.hx-nav__menu-link[aria-current='page']::after,
.hx-nav__item--services:hover .hx-nav__menu-link::after,
.hx-nav__item--services:focus-within .hx-nav__menu-link::after { transform: scaleX(1); }

.hx-nav__menu-title {
  color: #061120;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

.hx-nav__menu-meta {
  margin-top: 2px;
  color: #d2d6dc;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.hx-nav__services-row {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.hx-nav__chevron {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin: 0 2px 2px 0;
  border-right: 1.5px solid #d2d6dc;
  border-bottom: 1.5px solid #d2d6dc;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.hx-nav__item--services:hover .hx-nav__chevron,
.hx-nav__item--services:focus-within .hx-nav__chevron,
.hx-nav__item--services.hx-services-open .hx-nav__chevron {
  transform: rotate(225deg);
}

.hx-nav__dropdown {
  width: 390px;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 120;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 22px 46px rgba(0, 15, 35, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.hx-nav__item--services:hover .hx-nav__dropdown,
.hx-nav__item--services:focus-within .hx-nav__dropdown,
.hx-nav__item--services.hx-services-open .hx-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hx-nav__dropdown a {
  padding: 10px 14px;
  display: block;
  text-decoration: none;
  transition: background 0.16s ease;
}

.hx-nav__dropdown a:hover,
.hx-nav__dropdown a:focus-visible { background: #f4f7fa; }

.hx-nav__dropdown-title {
  display: block;
  color: #646464;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

.hx-nav__dropdown-meta {
  margin-top: 2px;
  display: block;
  color: #777;
  font-size: 12px;
  font-style: italic;
  line-height: 1.3;
}

.hx-nav__cta {
  display: none;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--primary);
  color: #061120;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(var(--brand-blue-rgb), 0.24);
  transition: background 0.18s ease, transform 0.18s ease;
}

.hx-nav__cta:hover {
  background: #07549f;
  transform: translateY(-1px);
}

.hx-nav__toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #061120;
  cursor: pointer;
}

.hx-nav__toggle span,
.hx-nav__toggle::before,
.hx-nav__toggle::after {
  content: '';
  width: 18px;
  height: 2px;
  position: absolute;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hx-nav__toggle::before { transform: translateY(-6px); }
.hx-nav__toggle::after { transform: translateY(6px); }
.hx-menu-open .hx-nav__toggle span { opacity: 0; }
.hx-menu-open .hx-nav__toggle::before { transform: rotate(45deg); }
.hx-menu-open .hx-nav__toggle::after { transform: rotate(-45deg); }

.hx-nav a:focus-visible,
.hx-nav button:focus-visible,
.hx-nav__toggle:focus-visible,
.hx-footer a:focus-visible,
.hx-btn:focus-visible {
  outline: 3px solid var(--light-blue);
  outline-offset: 3px;
}

.hx-footer {
  padding: 72px 32px 30px;
  background: var(--shell-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hx-footer__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-bottom: 58px;
  display: grid !important;
  grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(138px, 1fr)) !important;
  gap: clamp(32px, 5vw, 72px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hx-footer__brand-lockup {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
}

.hx-footer__brand-lockup img {
  width: 222px;
  height: auto;
  object-fit: contain;
  display: block;
}

.hx-footer__brand-lockup span { display: none; }

.hx-footer__tagline,
.hx-footer__brand-desc {
  max-width: 340px;
  color: #7f8da3;
  font-size: 14px;
  line-height: 1.7;
}

.hx-footer__badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hx-footer__badge {
  padding: 5px 10px;
  border: 1px solid rgba(var(--brand-blue-rgb), 0.18);
  border-radius: 5px;
  color: #8acfe9;
  background: rgba(var(--brand-blue-rgb), 0.05);
  font-size: 11px;
  font-weight: 600;
}

.hx-footer__col-title {
  margin-bottom: 19px;
  color: #d8e1ee;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hx-footer__links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.hx-footer__links a {
  color: #7f8da3;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.18s ease;
}

.hx-footer__links a:hover,
.hx-footer__legal a:hover,
.hx-footer__settings:hover {
  color: #d8e1ee;
}

.hx-footer__bottom {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-top: 26px;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center;
  gap: 24px;
}

.hx-footer__copy,
.hx-footer__status {
  color: #58677d;
  font-size: 13px;
}

.hx-footer__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  text-align: center;
}

.hx-footer__status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--brand-green-rgb), 0.12);
}

.hx-footer__legal {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  list-style: none;
}

.hx-footer__legal a,
.hx-footer__settings {
  border: 0;
  background: transparent;
  color: #7f8da3;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s ease;
}

.hx-scroll-top {
  width: 48px;
  height: 48px;
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: var(--primary);
  color: #061120;
  box-shadow: 0 16px 38px rgba(var(--brand-blue-rgb), 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.hx-scroll-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hx-scroll-top:hover {
  background: #07549f;
  box-shadow: 0 18px 44px rgba(var(--brand-blue-rgb), 0.42);
}

.hx-scroll-top:focus-visible {
  outline: 3px solid var(--light-blue);
  outline-offset: 4px;
}

/* Policy pages */
.hx-policy-page {
  background: #fff;
  color: var(--text-primary, #0d0d0d);
}

.hx-policy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 24px clamp(58px, 7vw, 88px);
  background-color: var(--shell-dark);
  background-image:
    linear-gradient(90deg, rgba(1, 12, 28, 0.94) 0%, rgba(1, 12, 28, 0.76) 48%, rgba(1, 12, 28, 0.58) 100%),
    linear-gradient(180deg, rgba(1, 12, 28, 0.18) 0%, rgba(1, 12, 28, 0.9) 100%),
    var(--policy-hero-image, url('/assets/hero-images/hero-home-operations.webp'));
  background-position: center;
  background-size: cover;
  color: #061120;
}

.hx-policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
}

.hx-policy-hero__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hx-policy-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(var(--brand-green-rgb), 0.32);
  border-radius: 999px;
  background: rgba(var(--brand-green-rgb), 0.13);
  color: var(--light-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hx-policy-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-green);
  box-shadow: 0 0 0 5px rgba(var(--brand-green-rgb), 0.16);
}

.hx-policy-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #061120;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hx-policy-hero h1 span { color: var(--light-green); }

.hx-policy-hero__sub {
  max-width: 760px;
  margin-top: 24px;
  color: #a7b4c7;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
}

.hx-policy-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hx-policy-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8e1ee;
  font-size: 13px;
  line-height: 1.4;
}

.hx-policy-shell {
  padding: clamp(48px, 6vw, 84px) 24px clamp(76px, 7vw, 108px);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hx-policy-layout {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.hx-policy-toc {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.hx-policy-toc__label {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hx-policy-toc nav {
  display: grid;
  gap: 4px;
}

.hx-policy-toc a {
  display: block;
  padding: 10px 11px;
  border-left: 3px solid transparent;
  border-radius: 5px;
  color: #536273;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hx-policy-toc a:hover,
.hx-policy-toc a.is-active {
  border-left-color: var(--green);
  background: #eef7ec;
  color: var(--primary-dark);
}

.hx-policy-toc__note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e4ebf3;
  color: #687587;
  font-size: 13px;
  line-height: 1.55;
}

.hx-policy-mobile-toc {
  display: none;
}

.hx-policy-content {
  min-width: 0;
}

.hx-policy-review {
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(var(--brand-blue-rgb), 0.18);
  border-left: 5px solid var(--primary);
  border-radius: 8px;
  background: #eef7ff;
  color: #24496c;
}

.hx-policy-review strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.hx-policy-review p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.hx-policy-section {
  scroll-margin-top: 110px;
  padding: clamp(28px, 4vw, 42px) 0;
  border-bottom: 1px solid #e4ebf3;
}

.hx-policy-section:first-of-type { padding-top: 0; }
.hx-policy-section:last-child { border-bottom: 0; }

.hx-policy-section h2 {
  margin: 0 0 18px;
  color: var(--primary-dark);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hx-policy-section h3 {
  margin: 28px 0 12px;
  color: var(--primary);
  font-size: 21px;
  line-height: 1.3;
}

.hx-policy-section p,
.hx-policy-section li {
  color: #435267;
  font-size: 17px;
  line-height: 1.82;
}

.hx-policy-section p + p,
.hx-policy-section ul + p,
.hx-policy-section ol + p {
  margin-top: 16px;
}

.hx-policy-section ul,
.hx-policy-section ol {
  margin: 16px 0 0;
  padding-left: 22px;
}

.hx-policy-section li + li {
  margin-top: 10px;
}

.hx-policy-callout {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(var(--brand-green-rgb), 0.34);
  border-radius: 8px;
  background: #f3faef;
  color: #31542a;
}

.hx-policy-callout strong {
  display: block;
  margin-bottom: 6px;
  color: #22461d;
}

@media (max-width: 980px) {
  .hx-policy-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hx-policy-toc {
    display: none;
  }

  .hx-policy-mobile-toc {
    position: sticky;
    top: 68px;
    z-index: 30;
    display: block;
    padding: 12px 14px;
    border: 1px solid #dfe7f1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
  }

  .hx-policy-mobile-toc label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .hx-policy-mobile-toc select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #ccd7e5;
    border-radius: 7px;
    background: #fff;
    color: #172033;
    font: inherit;
    font-size: 15px;
    padding: 0 12px;
  }
}

@media (max-width: 640px) {
  .hx-policy-hero {
    padding: 58px 20px 48px;
  }

  .hx-policy-shell {
    padding: 32px 18px 72px;
  }

  .hx-policy-section {
    scroll-margin-top: 132px;
  }

  .hx-policy-section p,
  .hx-policy-section li {
    font-size: 16px;
    line-height: 1.78;
  }
}

@media (max-width: 980px) {
  .hx-scroll-top { display: none; }

  .hx-nav__inner { height: 72px; padding: 0 24px; }
  .hx-nav__logo img { width: 174px; }
  .hx-nav__toggle { display: inline-flex; }
  .hx-nav__toggle { margin-left: auto; }
  .hx-nav__links {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: var(--shell-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .hx-menu-open .hx-nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hx-nav__dropdown a { display: block; }

  .hx-nav__item {
    width: 100%;
    height: auto;
    display: block;
  }

  .hx-nav__menu-link {
    width: 100%;
    min-height: 0;
    padding: 13px 12px;
  }

  .hx-nav__menu-link::after { display: none; }

  .hx-nav__menu-meta { white-space: normal; }

  .hx-nav__dropdown {
    width: auto;
    max-height: 0;
    margin: 0 8px;
    padding: 0;
    position: static;
    overflow: hidden;
    border: 0;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height 0.24s ease, padding 0.24s ease;
  }

  .hx-nav__item--services.hx-services-open .hx-nav__dropdown {
    max-height: 620px;
    padding: 8px 0;
    pointer-events: auto;
  }

  .hx-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 44px !important;
  }

  .hx-footer__brand { grid-column: 1 / -1; }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hx-nav__inner {
    height: 96px;
    gap: 34px;
    padding: 0 34px;
  }

  .hx-nav__logo img { width: 184px; }
  .hx-nav__links { gap: 24px; }
  .hx-nav__menu-link { min-width: 126px; }
  .hx-nav__menu-meta { font-size: 11px; }
}

@media (max-width: 640px) {
  .hx-nav__inner {
    width: min(100%, 390px);
    height: 68px;
    margin-left: 0;
    padding: 0 18px;
    gap: 12px;
  }

  .hx-nav__logo img { width: 158px; height: auto; }
  .hx-footer { padding: 56px 20px 28px; }
  .hx-footer__inner { grid-template-columns: 1fr !important; gap: 36px !important; }
  .hx-footer__brand { grid-column: auto; }
  .hx-footer__bottom {
    grid-template-columns: 1fr !important;
    align-items: flex-start;
    gap: 16px;
  }
  .hx-footer__status,
  .hx-footer__legal {
    justify-self: start;
    text-align: left;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Service page elevation layer */
.hx-service-elevation {
  --service-accent: var(--light-green);
  padding: clamp(76px, 7vw, 108px) 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 52%, #eef5fa 100%);
  overflow: hidden;
}

.hx-service-elevation__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.hx-service-elevation__copy {
  max-width: 610px;
}

.hx-service-elevation__eyebrow,
.hx-service-depth__eyebrow,
.hx-service-parallax__eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hx-service-elevation__title,
.hx-service-depth__title {
  margin: 0;
  color: #07111f;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hx-service-elevation__title span,
.hx-service-depth__title span {
  color: var(--green);
}

.hx-service-elevation__copy > p {
  margin: 22px 0 0;
  color: #536174;
  font-size: 17px;
  line-height: 1.78;
}

.hx-service-mini-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.hx-service-mini {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(1, 12, 28, 0.1);
}

.hx-service-mini__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(var(--brand-green-rgb), 0.14);
  color: var(--light-green);
}

.hx-service-mini__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hx-service-mini h3 {
  margin: 0 0 5px;
  color: #07111f;
  font-size: 17px;
  line-height: 1.22;
}

.hx-service-mini p {
  margin: 0;
  color: #667386;
  font-size: 14px;
  line-height: 1.62;
}

.hx-service-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.78fr);
  gap: 16px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 82px rgba(1, 12, 28, 0.1);
}

.hx-service-gallery__image,
.hx-service-gallery__card {
  min-height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.hx-service-gallery__image {
  position: relative;
  grid-row: span 2;
  min-height: 460px;
  background: var(--shell-dark);
}

.hx-service-gallery__image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.02);
}

.hx-service-gallery__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 12, 28, 0.04), rgba(1, 12, 28, 0.32)),
    linear-gradient(90deg, rgba(1, 12, 28, 0.22), transparent 64%);
}

.hx-service-gallery__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid rgba(1, 12, 28, 0.08);
  background: #fff;
}

.hx-service-gallery__card--brand {
  background: linear-gradient(135deg, var(--green), var(--light-green));
  color: #04111f;
}

.hx-service-gallery__card strong {
  margin-bottom: 10px;
  color: inherit;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hx-service-gallery__card span {
  color: #5a6676;
  font-size: 14px;
  line-height: 1.6;
}

.hx-service-gallery__card--brand span {
  color: rgba(4, 17, 31, 0.78);
}

.hx-service-gallery-wall {
  padding: clamp(88px, 8vw, 132px) 24px;
  background: #fff;
}

.hx-service-gallery-wall__header {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.hx-service-gallery-wall__header h2 {
  margin: 0;
  max-width: 760px;
  color: #07111f;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hx-service-gallery-wall__header h2 span {
  color: var(--green);
}

.hx-service-gallery-wall__header p:last-child {
  margin: 0;
  color: #536174;
  font-size: 17px;
  line-height: 1.72;
}

.hx-service-gallery-wall__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}

.hx-service-gallery-wall__item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--shell-dark);
  box-shadow: 0 20px 54px rgba(1, 12, 28, 0.1);
}

.hx-service-gallery-wall__item--large {
  grid-row: span 2;
  min-height: 540px;
}

.hx-service-gallery-wall__item--wide {
  grid-column: span 2;
}

.hx-service-gallery-wall__item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
}

.hx-service-gallery-wall__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(1, 12, 28, 0.78)),
    linear-gradient(90deg, rgba(1, 12, 28, 0.28), transparent 64%);
}

.hx-service-gallery-wall__caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.hx-service-gallery-wall__caption strong {
  display: block;
  color: #061120;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.14;
}

.hx-service-gallery-wall__caption span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.48;
}

.hx-service-gallery-wall__item--brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(var(--brand-green-rgb), 0.96), rgba(var(--brand-green-rgb), 0.96)),
    var(--shell-dark);
  color: #04111f;
}

.hx-service-gallery-wall__item--brand::after {
  display: none;
}

.hx-service-gallery-wall__item--brand p {
  margin: 0 0 18px;
  color: rgba(4, 17, 31, 0.72);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hx-service-gallery-wall__item--brand strong {
  color: #04111f;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.02;
}

.hx-service-gallery-wall__item--brand span {
  margin-top: 16px;
  color: rgba(4, 17, 31, 0.78);
  font-size: 16px;
  line-height: 1.62;
}

.hx-service-parallax {
  min-height: min(760px, 72vh);
  display: flex;
  align-items: center;
  padding: clamp(92px, 10vw, 150px) 24px;
  background-color: var(--shell-dark);
  background-image:
    linear-gradient(90deg, rgba(1, 12, 28, 0.94) 0%, rgba(1, 12, 28, 0.78) 43%, rgba(1, 12, 28, 0.36) 100%),
    linear-gradient(180deg, rgba(1, 12, 28, 0.16), rgba(1, 12, 28, 0.88)),
    var(--service-parallax-image, url('/assets/hero-images/hero-home-operations.webp'));
  background-position: var(--service-parallax-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #061120;
  overflow: hidden;
}

.hx-service-parallax__content {
  max-width: 780px;
}

.hx-service-parallax__eyebrow {
  color: var(--light-green);
}

.hx-service-parallax h2 {
  margin: 0;
  max-width: 760px;
  color: #061120;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hx-service-parallax h2 span {
  color: var(--light-green);
}

.hx-service-parallax p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.76;
}

.hx-service-parallax__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 42px;
}

.hx-service-parallax__stat {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hx-service-parallax__stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--light-green);
  font-size: 28px;
  line-height: 1;
}

.hx-service-parallax__stat span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.hx-service-stat-showcase {
  padding: clamp(88px, 8vw, 132px) 24px;
  background: #f7f9fc;
}

.hx-service-stat-showcase__panel {
  padding: clamp(42px, 5vw, 70px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(1, 12, 28, 0.07);
}

.hx-service-stat-showcase__heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.hx-service-stat-showcase__heading p {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hx-service-stat-showcase__heading h2 {
  margin: 0;
  color: #07111f;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hx-service-stat-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
}

.hx-service-stat-showcase__image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--shell-dark);
}

.hx-service-stat-showcase__image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.hx-service-stat-showcase__content {
  display: grid;
  gap: 28px;
}

.hx-service-stat-copy {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(1, 12, 28, 0.12);
}

.hx-service-stat-copy h3 {
  margin: 0 0 14px;
  color: #07111f;
  font-size: 24px;
  line-height: 1.18;
}

.hx-service-stat-copy p {
  margin: 0;
  color: #667386;
  font-size: 16px;
  line-height: 1.72;
}

.hx-service-stat-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hx-service-stat-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #3f4d5f;
  font-size: 15px;
  line-height: 1.55;
}

.hx-service-stat-list li::before {
  content: '';
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(var(--brand-green-rgb), 0.12);
}

.hx-service-stat-showcase__numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}

.hx-service-stat-number strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #07111f;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.hx-service-stat-number span {
  display: block;
  margin-top: 10px;
  color: #667386;
  font-size: 14px;
  line-height: 1.45;
}

.hx-service-depth {
  padding: clamp(88px, 8vw, 132px) 24px;
  background: #fff;
}

.hx-service-depth__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.hx-service-depth__copy > p {
  margin: 22px 0 0;
  max-width: 610px;
  color: #536174;
  font-size: 17px;
  line-height: 1.78;
}

.hx-service-depth__steps {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.hx-service-depth__step {
  padding: 28px;
  border: 1px solid rgba(1, 12, 28, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(1, 12, 28, 0.05);
}

.hx-service-depth__step--active {
  background: #10151f;
  border-color: rgba(255, 255, 255, 0.12);
  color: #061120;
}

.hx-service-depth__num {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(var(--brand-blue-rgb), 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hx-service-depth__step--active .hx-service-depth__num {
  background: rgba(var(--brand-green-rgb), 0.18);
  color: var(--light-green);
}

.hx-service-depth__step h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 21px;
}

.hx-service-depth__step p {
  margin: 0;
  color: #667386;
  line-height: 1.65;
}

.hx-service-depth__step--active p {
  color: rgba(255, 255, 255, 0.72);
}

.hx-service-depth__media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 22px 22px 22px 8px;
  background: var(--shell-dark);
  box-shadow: 0 30px 84px rgba(1, 12, 28, 0.16);
}

.hx-service-depth__media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
}

.hx-service-depth__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 12, 28, 0.03), rgba(1, 12, 28, 0.34)),
    linear-gradient(90deg, transparent, rgba(1, 12, 28, 0.18));
}

.hx-service-gallery-wall__grid {
  grid-auto-rows: clamp(220px, 18vw, 280px);
}

.hx-service-gallery-wall__item,
.hx-service-gallery-wall__item--large {
  min-height: 0;
  height: 100%;
}

.hx-section .hx-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(28px, 3vw, 44px);
}

.hx-section .hx-feature-card {
  opacity: 1;
  visibility: visible;
}

.hx-section .hx-benefits-grid,
.hx-service-gallery-wall__grid,
.hx-service-stat-showcase__numbers,
.hx-service-depth__steps {
  opacity: 1;
  visibility: visible;
}

.hx-benefit-card,
.hx-service-gallery-wall__item,
.hx-service-stat-number,
.hx-service-depth__step {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1100px) {
  .hx-service-elevation__grid,
  .hx-service-depth__grid,
  .hx-service-gallery-wall__header {
    grid-template-columns: 1fr;
  }

  .hx-service-gallery-wall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hx-service-gallery-wall__item--large,
  .hx-service-gallery-wall__item--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .hx-service-gallery__image {
    min-height: 440px;
  }

  .hx-service-gallery__image img {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .hx-service-elevation,
  .hx-service-depth {
    padding: 72px 18px;
  }

  .hx-service-gallery,
  .hx-service-gallery-wall__grid,
  .hx-service-parallax__stats,
  .hx-service-stat-showcase__grid,
  .hx-service-stat-showcase__numbers {
    grid-template-columns: 1fr;
  }

  .hx-service-gallery__image {
    grid-row: auto;
  }

  .hx-service-gallery__image,
  .hx-service-gallery-wall__item,
  .hx-service-gallery__image img,
  .hx-service-depth__media,
  .hx-service-depth__media img {
    min-height: 320px;
  }

  .hx-service-parallax {
    min-height: auto;
    padding: 78px 18px;
    background-attachment: scroll;
  }
}

/* Restore high-contrast text on dark and image-backed surfaces. */
.hx-privacy-banner,
.hx-privacy-button--secondary,
.hx-nav__logo,
.hx-nav__menu-link,
.hx-nav__menu-title,
.hx-nav__toggle,
.hx-hero--image h1,
.hx-policy-hero,
.hx-policy-hero h1,
.hx-services-hero,
.hx-services-hero h1,
.hx-services-process,
.hx-section-title--light,
.hx-service-card--featured h3,
.hx-process-step h3,
.hx-home-parallax,
.hx-home-step--active,
.hx-culture-band__quote,
.hx-footer__brand-name,
.hx-footer__logo,
.hx-service-gallery-wall__caption strong,
.hx-service-parallax,
.hx-service-parallax h2,
.hx-service-depth__step--active,
.hx-story-metric strong,
.hx-bento-image__caption,
.hx-capability-card h3,
.hx-parallax-band__content,
.hx-parallax-stat strong,
.hx-data-summary-item__val,
.hx-asset-summary-item__val,
.hx-vendor-summary-item__val,
.hx-manager-card__name,
.hx-dashboard__kpi-val,
.hx-how-step h3,
.hx-benefits-panel__title,
.hx-score-dial__num,
.hx-cov-cell__val,
.hx-posture-panel__title,
.hx-posture-score__grade,
.hx-console-metric__val,
.hx-infra-health__title,
.hx-ring-cell__val {
  color: #fff !important;
}

.hx-privacy-button--secondary:hover {
  border-color: #fff;
}

.hx-bento-card--muted .hx-bento-card__icon,
.hx-bento-card--brand .hx-bento-card__icon {
  color: var(--brand-green) !important;
}

.hx-home-bento-card__arrow {
  color: var(--brand-green) !important;
  line-height: 1;
}

.hx-reporting__copy h3 {
  color: #fff !important;
}

/* Keep section taglines visually aligned with the hero pill language. */
:is(
  .hx-section-label,
  .hx-home-kicker,
  .hx-services-page .hx-kicker,
  .hx-service-elevation__eyebrow,
  .hx-service-depth__eyebrow,
  .hx-service-parallax__eyebrow,
  .hx-cta__eyebrow,
  .hx-privacy-panel__eyebrow
) {
  --hx-section-pill-color: var(--brand-blue);
  --hx-section-pill-rgb: var(--brand-blue-rgb);
  --hx-section-pill-dot: var(--brand-green);
  --hx-section-pill-dot-rgb: var(--brand-green-rgb);
  width: fit-content;
  max-width: 100%;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(var(--hx-section-pill-rgb), 0.28) !important;
  border-radius: 999px;
  background: rgba(var(--hx-section-pill-rgb), 0.09) !important;
  color: var(--hx-section-pill-color) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2;
  letter-spacing: 0 !important;
  text-transform: uppercase;
  vertical-align: top;
}

:is(
  .hx-section-label,
  .hx-home-kicker,
  .hx-services-page .hx-kicker,
  .hx-service-elevation__eyebrow,
  .hx-service-depth__eyebrow,
  .hx-service-parallax__eyebrow,
  .hx-cta__eyebrow,
  .hx-privacy-panel__eyebrow
)::before {
  content: '';
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--hx-section-pill-dot);
  box-shadow: 0 0 0 3px rgba(var(--hx-section-pill-dot-rgb), 0.13);
}

:is(
  .hx-section--dark .hx-section-label,
  .hx-section-label--light,
  .hx-home-parallax .hx-home-kicker,
  .hx-services-process .hx-kicker,
  .hx-service-parallax__eyebrow,
  .hx-cta__eyebrow
) {
  --hx-section-pill-color: var(--brand-green);
  --hx-section-pill-rgb: var(--brand-green-rgb);
  --hx-section-pill-dot: var(--brand-blue);
  --hx-section-pill-dot-rgb: var(--brand-blue-rgb);
}

.hx-section-header--center .hx-section-label {
  margin-inline: auto;
}
