:root {
    --primary: #fe0000;
    --primary-dark: #dfd2c7;
    --ink: #171717;
    --paper: #ffffff;
    --muted: #656565;
    --heading-font: "Manrope", sans-serif;
    --body-font: "DM Sans", sans-serif;
    --container-max: 1440px;
    --container-padding: 60px;
    --header-height: 86px;
    --header-radius: 20px;
    --section-space-xl: 100px;
    --section-space-lg: 90px;
    --section-space-md: 70px;
    --section-space-sm: 50px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    position: relative;
    color: var(--ink);
    font-family: var(--body-font);
}
#root,
main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
img,
video,
svg {
    max-width: 100%;
    height: auto;
}
button,
input,
textarea,
select {
    font: inherit;
}
button {
    cursor: pointer;
}
a {
    color: inherit;
    text-decoration: none;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* =========================================
GLOBAL LAYOUT CONTAINER
========================================= */
.container.hlx-layout-container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}
/* =========================================
1600PX+
========================================= */
@media (min-width: 1600px) {
    .container.hlx-layout-container {
        max-width: 1600px;
        padding-inline: 72px;
    }
}
/* =========================================
1400PX - 1599PX
========================================= */
@media (min-width: 1400px) and (max-width: 1599.98px) {
    .container.hlx-layout-container {
        max-width: 1440px;
        padding-inline: 60px;
    }
}
/* =========================================
1200PX - 1399PX
========================================= */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container.hlx-layout-container {
        max-width: 100%;
        padding-inline: 50px;
    }
}
/* =========================================
992PX - 1199PX
========================================= */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container.hlx-layout-container {
        max-width: 100%;
        padding-inline: 40px;
    }
}
/* =========================================
768PX - 991PX
========================================= */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container.hlx-layout-container {
        max-width: 100%;
        padding-inline: 32px;
    }
}
/* =========================================
576PX - 767PX
========================================= */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container.hlx-layout-container {
        max-width: 100%;
        padding-inline: 24px;
    }
}
/* =========================================
420PX - 575PX
========================================= */
@media (min-width: 420px) and (max-width: 575.98px) {
    .container.hlx-layout-container {
        max-width: 100%;
        padding-inline: 18px;
    }
}
/* =========================================
BELOW 420PX
========================================= */
@media (max-width: 419.98px) {
    .container.hlx-layout-container {
        max-width: 100%;
        padding-inline: 16px;
    }
}


/* =========================================
GLOBAL SECTION SPACING
========================================= */
.hlx-section {
    padding-block: var(--section-space-xl);
}
.hlx-section-lg {
    padding-block: var(--section-space-lg);
}
.hlx-section-md {
    padding-block: var(--section-space-md);
}
.hlx-section-sm {
    padding-block: var(--section-space-sm);
}
@media (max-width: 992px) {
    :root {
        --section-space-xl: 90px;
        --section-space-lg: 75px;
        --section-space-md: 60px;
        --section-space-sm: 45px;
    }
}
@media (max-width: 768px) {
    :root {
        --section-space-xl: 75px;
        --section-space-lg: 65px;
        --section-space-md: 50px;
        --section-space-sm: 40px;
    }
}
@media (max-width: 576px) {
    :root {
        --section-space-xl: 60px;
        --section-space-lg: 52px;
        --section-space-md: 45px;
        --section-space-sm: 35px;
    }
}
/* =========================================
GLOBAL SECTION TYPOGRAPHY
========================================= */
.hlx-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: clamp(0.75rem, 0.7vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
}
.hlx-section-eyebrow::before {
    content: "";
    width: 48px;
    height: 2px;
    flex: 0 0 48px;
    background: var(--primary);
}
.hlx-section-title {
    margin: 0;
    color: var(--ink);
    font-family: var(--heading-font);
    font-size: clamp(2.2rem, 3vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
}
.hlx-section-description {
    max-width: 760px;
    margin: 26px 0 0;
    color: #666d72;
    font-family: var(--body-font);
    font-size: clamp(0.95rem, 0.95vw, 1.05rem);
    font-weight: 400;
    line-height: 1.85;
}
/* =========================================
GLOBAL BUTTONS
========================================= */
.btn-primary,
.btn-enquire,
.hero-btn,
.services-btn,
.hlx-faq-read-btn,
.hlx-blog-view-btn {
    border-radius: 50px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
/* =========================================
GLOBAL PRIMARY BUTTON
========================================= */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--paper);
}
.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--paper);
}
/* =========================================
GLOBAL CARD SYSTEM
========================================= */
.product-card,
.expertise-card,
.service-image-card,
.review-card,
.hlx-about-content,
.hlx-floating-content,
.hlx-india-location-card,
.stat-item,
.hlx-blog-card {
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
/* =========================================
GLOBAL CARD IMAGE
========================================= */
.product-card img,
.expertise-card img,
.service-image-card img,
.review-card img,
.hlx-blog-card img {
    max-width: 100%;
    height: auto;
}
/* =========================================
GLOBAL CARD CONTENT
========================================= */
.product-card,
.expertise-card,
.service-image-card,
.review-card,
.hlx-about-content,
.hlx-floating-content,
.hlx-india-location-card,
.stat-item,
.hlx-blog-card {
    overflow: hidden;
}
/* =========================================
GLOBAL CARD HOVER
========================================= */
.product-card,
.expertise-card,
.service-image-card,
.review-card,
.hlx-about-content,
.hlx-floating-content,
.hlx-india-location-card,
.stat-item,
.hlx-blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover,
.expertise-card:hover,
.service-image-card:hover,
.review-card:hover,
.hlx-about-content:hover,
.hlx-floating-content:hover,
.hlx-india-location-card:hover,
.stat-item:hover,
.hlx-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.11);
}

/* HEADER */

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  padding: 18px 22px 0 !important;
  margin: 0 !important;
  z-index: 9999 !important;
  box-sizing: border-box !important;
  background: transparent !important;
}
.site-header .navbar {
  width: 100% !important;
  height: 86px !important;
  min-height: 86px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
}
.header-container {
  height: 86px !important;
  min-height: 86px !important;
  display: flex !important;
  align-items: center !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.brand-logo {
  width: 206px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.25s ease;
}
.brand .brand-logo {
  transform: scale(1.02);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}
.desktop-navigation {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 1.9rem 0.9rem !important;
  color: rgba(23, 23, 23, 0.52);
  font-family: var(--heading-font);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.nav-link::after {
  display: none;
}
.mega-trigger {
  border: 0;
  background: transparent;
}
.mega-trigger i {
  font-size: 0.62rem;
  transition: transform 0.3s ease;
}
.dropdown-mega:hover > .mega-trigger i,
.dropdown-mega:focus-within > .mega-trigger i {
  transform: rotate(180deg);
}
.dropdown-mega {
  position: static;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(1160px, calc(100vw - 60px));
  margin: 0;
  padding: 10px;
  background: transparent;
  border: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  height: 24px;
  pointer-events: auto;
}
.dropdown-mega:hover > .mega-menu,
.dropdown-mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.6fr);
  min-height: 360px;
  overflow: visible;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}
.mega-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 17px 0 0 17px;
}
.mega-eyebrow {
  display: block;
  margin-bottom: 15px;
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.mega-intro h2 {
  max-width: 340px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.mega-intro p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--body-font);
  font-size: 0.84rem;
  line-height: 1.7;
}
.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 25px;
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mega-view-all i {
  transition: transform 0.25s ease;
}
.mega-view-all:hover i {
  transform: translateX(4px);
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 38px;
}
.mega-column {
  min-width: 0;
}
.mega-title {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.mega-column > a {
  display: block;
  padding: 7px 0;
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 0.79rem;
  line-height: 1.45;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.mega-column > a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.mega-product {
  position: relative;
}
.mega-product-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: var(--body-font);
  font-size: 0.79rem;
  line-height: 1.4;
  text-align: left;
  transition: color 0.2s ease;
}
.mega-product-trigger:hover {
  color: var(--primary);
}
.mega-product-trigger i {
  flex-shrink: 0;
  color: #9a9a9a;
  font-size: 0.55rem;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.mega-product:hover > .mega-product-trigger i {
  color: var(--primary);
  transform: translateX(3px);
}
.mega-submenu {
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  z-index: 20;
  min-width: 245px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.mega-product:hover > .mega-submenu,
.mega-product:focus-within > .mega-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.mega-submenu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  width: 13px;
  height: 13px;
  background: var(--paper);
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transform: translateY(-50%) rotate(45deg);
}
.mega-submenu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 0.8rem;
  line-height: 1.4;
  border-radius: 9px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.mega-submenu a:hover {
  color: var(--primary);
  background: #fafafa;
  transform: translateX(3px);
}
.navbar-toggler {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 42px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none !important;
}
.navbar-toggler span {
  width: 21px;
  height: 2px;
  display: block;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.navbar-toggler:hover {
  color: var(--primary);
}
.mobile-navigation-panel {
  display: none;
}
.mobile-navigation-inner {
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  padding: 18px 22px 22px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}
.mobile-nav-link:hover {
  color: var(--primary);
}
.mobile-product-trigger {
  cursor: pointer;
}
.mobile-product-trigger i {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}
.mobile-product-trigger[aria-expanded="true"] {
  color: var(--primary);
}
.mobile-product-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.mobile-product-list {
  padding: 10px 0 14px 12px;
}
.mobile-category {
  padding: 11px 0;
}
.mobile-category > span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-category > a {
  display: block;
  padding: 8px 0;
  color: #555;
  font-family: var(--body-font);
  font-size: 0.8rem;
  line-height: 1.45;
}
.mobile-category > a:hover {
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 18px 20px 0;
  color: var(--ink);
}
.site-header .navbar {
  position: relative;
  z-index: 1060;
  min-height: var(--header-height);
  padding: 0;
  background: var(--paper);
  border-radius: var(--header-radius);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
.header-container {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.brand-logo {
  width: 206px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.25s ease;
}
.brand .brand-logo {
  transform: scale(1.02);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}
.desktop-navigation {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 1.9rem 0.9rem !important;
  color: rgba(23, 23, 23, 0.52);
  font-family: var(--heading-font);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.nav-link::after {
  display: none;
}
.mega-trigger {
  border: 0;
  background: transparent;
}
.mega-trigger i {
  font-size: 0.62rem;
  transition: transform 0.3s ease;
}
.dropdown-mega:hover > .mega-trigger i,
.dropdown-mega:focus-within > .mega-trigger i {
  transform: rotate(180deg);
}
.dropdown-mega {
  position: static;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(1160px, calc(100vw - 60px));
  margin: 0;
  padding: 10px;
  background: transparent;
  border: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  height: 24px;
  pointer-events: auto;
}
.dropdown-mega:hover > .mega-menu,
.dropdown-mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.6fr);
  min-height: 360px;
  overflow: visible;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}
.mega-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 17px 0 0 17px;
}
.mega-eyebrow {
  display: block;
  margin-bottom: 15px;
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.mega-intro h2 {
  max-width: 340px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.mega-intro p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--body-font);
  font-size: 0.84rem;
  line-height: 1.7;
}
.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 25px;
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mega-view-all i {
  transition: transform 0.25s ease;
}
.mega-view-all:hover i {
  transform: translateX(4px);
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 38px;
}
.mega-column {
  min-width: 0;
}
.mega-title {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.mega-column > a {
  display: block;
  padding: 7px 0;
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 0.79rem;
  line-height: 1.45;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.mega-column > a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.mega-product {
  position: relative;
}
.mega-product-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: var(--body-font);
  font-size: 0.79rem;
  line-height: 1.4;
  text-align: left;
  transition: color 0.2s ease;
}
.mega-product-trigger:hover {
  color: var(--primary);
}
.mega-product-trigger i {
  flex-shrink: 0;
  color: #9a9a9a;
  font-size: 0.55rem;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.mega-product:hover > .mega-product-trigger i {
  color: var(--primary);
  transform: translateX(3px);
}
.mega-submenu {
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  z-index: 20;
  min-width: 245px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.mega-product:hover > .mega-submenu,
.mega-product:focus-within > .mega-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.mega-submenu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  width: 13px;
  height: 13px;
  background: var(--paper);
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transform: translateY(-50%) rotate(45deg);
}
.mega-submenu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 0.8rem;
  line-height: 1.4;
  border-radius: 9px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.mega-submenu a:hover {
  color: var(--primary);
  background: #fafafa;
  transform: translateX(3px);
}
.navbar-toggler {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 42px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none !important;
}
.navbar-toggler span {
  width: 21px;
  height: 2px;
  display: block;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.navbar-toggler:hover {
  color: var(--primary);
}
.mobile-navigation-panel {
  display: none;
}
.mobile-navigation-inner {
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  padding: 18px 22px 22px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}
.mobile-nav-link:hover {
  color: var(--primary);
}
.mobile-product-trigger {
  cursor: pointer;
}
.mobile-product-trigger i {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}
.mobile-product-trigger[aria-expanded="true"] {
  color: var(--primary);
}
.mobile-product-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.mobile-product-list {
  padding: 10px 0 14px 12px;
}
.mobile-category {
  padding: 11px 0;
}
.mobile-category > span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-category > a {
  display: block;
  padding: 8px 0;
  color: #555;
  font-family: var(--body-font);
  font-size: 0.8rem;
  line-height: 1.45;
}
.mobile-category > a:hover {
  color: var(--primary);
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* KEEP HEADER STICKY */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1050 !important;

    padding: 18px 20px 0 !important;
  }

  .site-header .navbar {
    position: relative !important;
    z-index: 1060 !important;

    min-height: 86px !important;
    height: 86px !important;

    border-radius: 20px !important;
  }

  .header-container {
    min-height: 86px !important;
    height: 86px !important;

    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }

  /* LOGO */
  .brand {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .brand-logo {
    width: 206px !important;
  }

  /* DESKTOP NAV */
  .desktop-navigation {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
    height: 86px !important;
  }

  /* FORCE NAVIGATION HORIZONTAL */
  .desktop-navigation .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 4px !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .desktop-navigation .nav-item {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
  }

  .desktop-navigation .nav-link {
    display: inline-flex !important;
    align-items: center !important;

    height: 86px !important;
    padding: 0 12px !important;

    white-space: nowrap !important;
  }

  /* PRODUCTS DROPDOWN */
  .dropdown-mega {
    position: static !important;
  }

  .mega-trigger {
    height: 86px !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    margin-left: 12px !important;
  }

  /* HAMBURGER OFF ON DESKTOP */
  .navbar-toggler {
    display: none !important;
  }

  .mobile-navigation-panel {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .site-header {
    position: sticky;
    top: 0;
    padding: 14px 16px 0;
    z-index: 1050;
  }
  .site-header .navbar {
    min-height: var(--header-height);
  }
  .header-container {
    min-height: var(--header-height);
  }
  .desktop-navigation {
    display: none !important;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
  }
  .navbar-toggler {
    display: inline-flex !important;
  }
  .mobile-navigation-panel {
    position: fixed;
    top: 110px;
    left: 16px;
    right: 16px;
    z-index: 1100;
    display: block;
    width: auto;
    max-height: calc(100dvh - 125px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: transparent;
    border-radius: 20px;
  }
  .mobile-navigation-panel:not(.show) {
    display: none;
  }
  .mobile-navigation-inner {
    width: 100%;
    padding: 20px 24px 24px;
  }
  body:has(.mobile-navigation-panel.show) {
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mobile-navigation-panel {
    top: 110px;
    left: 16px;
    right: 16px;
    max-height: calc(100dvh - 125px);
  }
  .mobile-navigation-inner {
    padding: 20px 24px 24px;
  }
}
@media (max-width: 767.98px) {
  .site-header {
    padding-top: 0;
    transform: translateY(16px);
  }

  .site-header .navbar {
    min-height: 64px;
    border-radius: 17px;
  }
  .header-container {
    min-height: 64px;
    padding-inline: 16px !important;
  }
  .brand-logo {
    width: 170px;
    max-width: calc(100vw - 105px);
  }
  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 4px;
    margin-left: auto;
  }
  .navbar-toggler {
    display: inline-flex !important;
  }
  .mobile-navigation-panel {
    top: 84px;
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 96px);
    border-radius: 17px;
  }
  .mobile-navigation-inner {
    padding: 16px 20px 20px;
    border-radius: 17px;
  }
  .mobile-nav-link {
    font-size: 0.78rem;
    padding: 13px 0;
  }
  .mobile-product-list {
    padding-left: 10px;
  }
  .mobile-category > span {
    font-size: 0.62rem;
  }
  .mobile-category > a {
    font-size: 0.76rem;
  }
}
@media (max-width: 575.98px) {
  .site-header {
    padding-top: 0;
    transform: translateY(14px);
  }

  .site-header .navbar {
    min-height: 60px;
    border-radius: 16px;
  }
  .header-container {
    min-height: 60px;
    padding-inline: 14px !important;
  }
  .brand-logo {
    width: 155px;
    max-width: calc(100vw - 92px);
  }
  .navbar-toggler {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .navbar-toggler span {
    width: 20px;
  }
  .mobile-navigation-panel {
    left: 10px;
    right: 10px;
    top: 77px;
    max-height: calc(100dvh - 87px);
  }
  .mobile-navigation-inner {
    padding: 14px 18px 18px;
  }
}
@media (max-width: 419.98px) {
  .site-header {
    padding-top: 0;
    transform: translateY(12px);
  }

  .site-header .navbar {
    min-height: 58px;
    border-radius: 15px;
  }
  .header-container {
    min-height: 58px;
    padding-inline: 12px !important;
  }
  .brand-logo {
    width: 140px;
    max-width: calc(100vw - 82px);
  }
  .navbar-toggler {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .navbar-toggler span {
    width: 19px;
  }
  .mobile-navigation-panel {
    left: 8px;
    right: 8px;
    top: 72px;
    max-height: calc(100dvh - 80px);
  }
  .mobile-navigation-inner {
    padding: 12px 16px 16px;
  }
  .mobile-nav-link {
    font-size: 0.72rem;
    padding: 12px 0;
  }
}

/* =========================================================
   HELIX HERO — COMPLETE RESPONSIVE SECTION
   DESKTOP 1200PX+ PRESERVED
   ========================================================= */
/* HERO */
.hero-placeholder {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 100vh !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.hero-placeholder::before {
  display: none;
}
.hlx-hero-carousel,
.hlx-hero-inner,
.hlx-hero-slide {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
}
.hero-carousel {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.hlx-hero-inner {
  height: 100%;
}
.hero-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.hero-overlay,
.hlx-hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background: rgba(0, 0, 0, 0.65) !important;
}
/* HERO CONTENT */
.hlx-hero-content-layer {
  min-height: 100vh;
  display: flex;
  position: relative !important;
  z-index: 3 !important;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 150px;
}
.hlx-hero-copy-container {
  width: 100%;
  max-width: 900px;
  margin-top: clamp(28px, 6vh, 56px);
}
.hero-placeholder-content {
  width: 100%;
  max-width: 850px;
  transform: translateY(70px);
}
.hlx-hero-eyebrow {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hlx-hero-slide h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: var(--heading-font);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.hlx-hero-slide p {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.8;
}
/* HERO BUTTON */
.hlx-hero-button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: 30px;
  padding: 0 28px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.hlx-hero-button:hover,
.hlx-hero-button:focus {
  color: #000;
  background: var(--paper);
  transform: translateY(-2px);
}
/* HERO NAVIGATION */
.hlx-hero-navigation-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  z-index: 10;
  width: 100%;
}
.hlx-hero-navigation {
  position: relative;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto !important;
  padding: 0 72px !important;
  display: flex !important;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  height: auto;
  list-style: none;
}
.hlx-hero-navigation button {
  position: relative;
  width: auto !important;
  height: auto !important;
  flex: 1 1 0;
  margin: 0 !important;
  padding: 0 0 15px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38) !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--heading-font);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: left;
  text-indent: 0 !important;
  opacity: 1 !important;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}
.hlx-hero-navigation button span {
  display: block;
  white-space: nowrap;
}
.hlx-hero-navigation button:hover,
.hlx-hero-navigation button.active {
  color: var(--paper);
}
.hlx-hero-navigation button:hover {
  border-bottom-color: #fff !important;
}
.hlx-hero-navigation button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}
.hlx-hero-navigation button.active::after {
  animation: hlx-hero-progress 5s linear forwards;
}
@keyframes hlx-hero-progress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.carousel-indicators [data-bs-target] {
  box-sizing: border-box;
  flex: 1 1 0;
}
/* 1400PX-1599PX */
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hlx-hero-navigation {
    max-width: 1440px;
    padding-inline: 60px !important;
  }
  .hlx-hero-slide h1 {
    font-size: clamp(3.4rem, 5.7vw, 5.6rem);
  }
}
/* MAIN DESKTOP HEADER FIX - DO NOT CHANGE */
@media (min-width: 1200px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 18px 20px 0 !important;
    z-index: 9999 !important;
    background: transparent !important;
    transform: none !important;
  }
  .site-header .navbar {
    position: relative !important;
    width: 100% !important;
    height: 86px !important;
    min-height: 86px !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
  }
  .header-container {
    width: 100% !important;
    height: 86px !important;
    min-height: 86px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  .desktop-navigation {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
  }
  .desktop-navigation .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 4px !important;
  }
  .desktop-navigation .nav-item {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
  }
  .desktop-navigation .nav-link {
    display: inline-flex !important;
    align-items: center !important;
    height: 86px !important;
    padding: 0 12px !important;
    white-space: nowrap !important;
  }
  .header-actions {
    display: flex !important;
    align-items: center !important;
    margin-left: 12px !important;
  }
  .navbar-toggler,
  .mobile-navigation-panel {
    display: none !important;
  }
}
/* 1200PX-1399PX - DO NOT CHANGE */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
  }
  .site-header .navbar {
    border-radius: 20px !important;
  }
  .container.hlx-layout-container {
    max-width: 100% !important;
    padding-inline: 50px !important;
  }
  .brand-logo {
    width: 206px !important;
  }
  .desktop-navigation .nav-link {
    padding-inline: 10px !important;
  }
}
/* BELOW 1200PX - TABLET */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-placeholder {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100svh !important;
    min-height: 100svh !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
  }
  .hlx-hero-carousel,
  .hlx-hero-inner,
  .hlx-hero-slide {
    width: 100% !important;
    height: 100svh !important;
    min-height: 100svh !important;
  }
  .hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .hlx-hero-content-layer {
    min-height: 100svh;
    padding: 150px 40px 190px;
    align-items: center;
  }
  .hlx-hero-copy-container {
    max-width: 800px;
    margin-top: 30px;
  }
  .hero-placeholder-content {
    max-width: 760px;
    transform: none;
    transform: translateY(90px);
  }
  .hlx-hero-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 20px;
  }
  .hlx-hero-slide h1 {
    font-size: clamp(3.2rem, 6vw, 5rem);
    line-height: 0.98;
    max-width: 720px;
  }
  .hlx-hero-slide p {
    max-width: 620px;
    margin-top: 24px;
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .hlx-hero-button {
    margin-top: 28px;
    min-height: 50px;
    padding: 0 26px;
  }
  .hlx-hero-navigation-wrapper {
    bottom: 38px;
  }
  .hlx-hero-navigation {
    max-width: 100%;
    padding: 0 40px !important;
    gap: 18px;
  }
  .hlx-hero-navigation button {
    font-size: 0.68rem;
    padding-bottom: 12px !important;
  }
}
/* BELOW 992PX - TABLET / LARGE MOBILE */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-placeholder {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100svh !important;
    min-height: 100svh !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
  }
  .hlx-hero-carousel,
  .hlx-hero-inner,
  .hlx-hero-slide {
    width: 100% !important;
    height: 100svh !important;
    min-height: 100svh !important;
  }
  .hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .hlx-hero-content-layer {
    min-height: 100svh;
    padding: 150px 32px 190px;
    align-items: center;
  }
  .hlx-hero-copy-container {
    max-width: 720px;
    margin-top: 20px;
  }
  .hero-placeholder-content {
    max-width: 680px;
    transform: none;
    transform: translateY(90px);
  }
  .hlx-hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 18px;
    letter-spacing: 0.18em;
  }
  .hlx-hero-slide h1 {
    font-size: clamp(3rem, 7vw, 4.5rem);
    line-height: 0.98;
  }
  .hlx-hero-slide p {
    max-width: 600px;
    margin-top: 22px;
    font-size: 0.94rem;
    line-height: 1.75;
  }
  .hlx-hero-button {
    margin-top: 26px;
    min-height: 50px;
    padding: 0 25px;
  }
  .hlx-hero-navigation-wrapper {
    bottom: 28px;
  }
  .hlx-hero-navigation {
    padding: 0 32px !important;
    gap: 16px;
    overflow: hidden;
  }
  .hlx-hero-navigation button {
    font-size: 0.62rem;
    padding-bottom: 10px !important;
  }
}
/* BELOW 768PX - MOBILE */
@media (max-width: 767.98px) {
  .hero-placeholder {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100svh !important;
    min-height: 100svh !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
    overflow: hidden !important;
  }
  .hlx-hero-carousel,
  .hlx-hero-inner,
  .hlx-hero-slide {
    width: 100% !important;
    height: 100svh !important;
    min-height: 100svh !important;
  }
  .hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .hero-overlay {
    inset: 0 !important;
  }
  /* MOBILE HEADER */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 14px 14px 0 !important;
    margin: 0 !important;
    z-index: 9999 !important;
    background: transparent !important;
  }
  .site-header .navbar {
    position: relative !important;
    width: 100% !important;
    height: 70px !important;
    min-height: 70px !important;
    margin: 0 !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
  }
  .header-container {
    width: 100% !important;
    height: 70px !important;
    min-height: 70px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }
  .desktop-navigation {
    display: none !important;
  }
  .header-actions {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
  }
  .navbar-toggler {
    display: flex !important;
    position: relative !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 10001 !important;
  }
  .navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
  }
  .brand-logo {
    width: auto !important;
    max-width: 190px !important;
    height: auto !important;
    max-height: 32px !important;
  }
  /* MOBILE DROPDOWN */
  .mobile-navigation-panel {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 20px !important;
    background: #fff !important;
    z-index: 10000 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1) !important;
  }
  .mobile-navigation-panel .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 10px 18px 14px !important;
  }
  .mobile-navigation-panel .nav-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .mobile-navigation-panel .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 0 !important;
    border-bottom: 1px solid #eeeeee !important;
    color: #171717 !important;
    font-family: var(--heading-font) !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
  }
  .mobile-navigation-panel .nav-item:last-child .nav-link {
    border-bottom: 0 !important;
  }
  .mobile-navigation-panel .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 4px !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .mobile-product-list {
    padding-top: 8px !important;
  }
  /* HERO CONTENT */
  .hlx-hero-content-layer {
    min-height: 100svh !important;
    height: 100svh !important;
    display: flex !important;
    align-items: flex-start !important;
    padding: 0 20px 145px !important;
    padding-top: calc(70px + 72px) !important;
  }
  .hlx-hero-copy-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .hero-placeholder-content {
    width: 100% !important;
    max-width: 100% !important;
    transform: translateY(160px);
  }
  .hlx-hero-eyebrow {
    margin-bottom: 20px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.2em !important;
    line-height: 1.5 !important;
  }
  .hlx-hero-slide h1 {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: clamp(3rem, 13vw, 4.4rem) !important;
    font-weight: 500 !important;
    letter-spacing: -0.055em !important;
    line-height: 0.93 !important;
  }
  .hlx-hero-slide p {
        display: none !important;
    }
  .hlx-hero-button {
    display: inline-flex !important;
    margin-top: 26px !important;
    min-height: 54px !important;
    padding: 0 28px !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.07em !important;
    white-space: nowrap !important;
  }
  /* MOBILE HERO NAVIGATION */
  .hlx-hero-navigation-wrapper {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 20px !important;
    width: 100% !important;
    z-index: 20 !important;
    padding: 0 !important;
  }
  .hlx-hero-navigation {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    height: auto !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .hlx-hero-navigation::-webkit-scrollbar {
    display: none !important;
  }
  .hlx-hero-navigation button {
    position: relative !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: max-content !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 0 10px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35) !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.04em !important;
    line-height: 1.4 !important;
    text-align: left !important;
  }
  .hlx-hero-navigation button span {
    display: block !important;
    white-space: nowrap !important;
  }
  .hlx-hero-navigation button.active {
    color: #fff !important;
  }
  .hlx-hero-navigation button::after {
    bottom: -1px !important;
    height: 2px !important;
  }
}
/* 576PX-767PX */
@media (min-width: 576px) and (max-width: 767.98px) {
  .site-header {
    padding-inline: 18px !important;
  }
  .site-header .navbar {
    height: 72px !important;
    min-height: 72px !important;
  }
  .header-container {
    height: 72px !important;
    min-height: 72px !important;
    padding-inline: 20px !important;
  }
  .hlx-hero-content-layer {
    padding-inline: 32px !important;
    padding-top: calc(72px + 78px) !important;
    padding-bottom: 150px !important;
  }
  .hero-placeholder-content {
    max-width: 620px !important;
    transform: translateY(90px);
  }
  .hlx-hero-slide h1 {
    font-size: clamp(3.2rem, 9vw, 4.8rem) !important;
  }
  .hlx-hero-slide p {
    max-width: 590px !important;
    font-size: 0.92rem !important;
  }
  .hlx-hero-navigation {
    padding-inline: 32px !important;
  }
}
/* 420PX-575PX */
@media (min-width: 420px) and (max-width: 575.98px) {
  .site-header {
    padding: 14px 14px 0 !important;
  }
  .site-header .navbar {
    height: 70px !important;
    min-height: 70px !important;
    border-radius: 20px !important;
  }
  .header-container {
    height: 70px !important;
    min-height: 70px !important;
    padding-inline: 18px !important;
  }
  .brand-logo {
    max-width: 185px !important;
  }
  .hlx-hero-content-layer {
    padding: 0 18px 145px !important;
    padding-top: calc(70px + 68px) !important;
  }
  .hlx-hero-eyebrow {
    font-size: 0.63rem !important;
    margin-bottom: 20px !important;
  }
  .hlx-hero-slide h1 {
    font-size: clamp(3rem, 12vw, 4.1rem) !important;
    line-height: 0.94 !important;
  }
  .hlx-hero-slide p {
    margin-top: 26px !important;
    font-size: 0.86rem !important;
    line-height: 1.9 !important;
  }
  .hlx-hero-button {
    margin-top: 25px !important;
    min-height: 53px !important;
    padding-inline: 26px !important;
  }
  .hlx-hero-navigation-wrapper {
    bottom: 18px !important;
  }
  .hlx-hero-navigation {
    padding-inline: 18px !important;
    gap: 20px !important;
  }
  .hlx-hero-navigation button {
    font-size: 0.6rem !important;
  }
}
/* BELOW 420PX */
@media (max-width: 419.98px) {
  .site-header {
    padding: 12px 12px 0 !important;
  }
  .site-header .navbar {
    height: 66px !important;
    min-height: 66px !important;
    border-radius: 18px !important;
  }
  .header-container {
    height: 66px !important;
    min-height: 66px !important;
    padding-inline: 16px !important;
  }
  .brand-logo {
    max-width: 165px !important;
    max-height: 28px !important;
  }
  .navbar-toggler {
    width: 40px !important;
    height: 40px !important;
  }
  .hlx-hero-content-layer {
    padding: 0 16px 140px !important;
    padding-top: calc(66px + 62px) !important;
  }
  .hlx-hero-eyebrow {
    font-size: 0.58rem !important;
    letter-spacing: 0.18em !important;
    margin-bottom: 18px !important;
  }
  .hlx-hero-slide h1 {
    font-size: clamp(2.75rem, 14vw, 3.5rem) !important;
    line-height: 0.94 !important;
  }
  .hlx-hero-slide p {
    margin-top: 23px !important;
    font-size: 0.82rem !important;
    line-height: 1.85 !important;
  }
  .hlx-hero-button {
    margin-top: 23px !important;
    min-height: 50px !important;
    padding-inline: 23px !important;
    font-size: 0.66rem !important;
  }
  .hlx-hero-navigation-wrapper {
    bottom: 15px !important;
  }
  .hlx-hero-navigation {
    padding-inline: 16px !important;
    gap: 18px !important;
  }
  .hlx-hero-navigation button {
    font-size: 0.56rem !important;
    padding-bottom: 9px !important;
  }
}
/* RESPONSIVE HERO NAVIGATION */
@media (max-width: 991.98px) {
  .hlx-hero-navigation {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .hlx-hero-navigation::-webkit-scrollbar {
    display: none;
  }
  .hlx-hero-navigation button {
    flex: 0 0 auto !important;
    min-width: max-content !important;
    padding: 9px 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 999px !important;
    background: rgba(20, 20, 20, 0.28) !important;
    backdrop-filter: blur(8px);
    scroll-snap-align: start;
  }
  .hlx-hero-navigation button.active {
    border-color: var(--primary) !important;
    background: transparent !important;
    color: #fff !important;
  }
  .hlx-hero-navigation button::after {
    display: none;
  }
}
/* MOBILE MENU OPEN STATE */
@media (max-width: 1199.98px) {
  body.mobile-menu-open {
    overflow: hidden !important;
  }
  .site-header .navbar-toggler[aria-expanded="true"] {
    z-index: 10002 !important;
  }
  .mobile-navigation-panel.show,
  .mobile-navigation-panel.open {
    display: block !important;
  }
}
/* GLOBAL CONTAINER */
.container.hlx-layout-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}
@media (min-width: 1600px) {
  .container.hlx-layout-container {
    max-width: 1600px;
    padding-inline: 72px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .container.hlx-layout-container {
    max-width: 1440px;
    padding-inline: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .container.hlx-layout-container {
    max-width: 100%;
    padding-inline: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container.hlx-layout-container {
    max-width: 100%;
    padding-inline: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .container.hlx-layout-container {
    max-width: 100%;
    padding-inline: 32px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .container.hlx-layout-container {
    max-width: 100%;
    padding-inline: 24px;
  }
}
@media (min-width: 420px) and (max-width: 575.98px) {
  .container.hlx-layout-container {
    max-width: 100%;
    padding-inline: 18px;
  }
}
@media (max-width: 419.98px) {
  .container.hlx-layout-container {
    max-width: 100%;
    padding-inline: 16px;
  }
}


/* =========================================
HELIX ABOUT / KINETIC INDUSTRIAL UI
========================================= */
.hlx-about-section {
    position: relative;
    isolation: isolate;
    
    background: #eef4f8;
    color: var(--ink);
    overflow: hidden;
}
.hlx-about-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: linear-gradient(rgba(23,23,23,0.045) 1px,transparent 1px),linear-gradient(90deg,rgba(23,23,23,0.045) 1px,transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom,transparent,black 10%,black 90%,transparent);
}
.hlx-about-noise {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hlx-about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(23,23,23,0.07);
    pointer-events: none;
}
.hlx-about-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(254,0,0,0.09);
    border-radius: 50%;
    pointer-events: none;
}
.hlx-orbit-one {
    top: 30px;
    right: -180px;
    width: 650px;
    height: 650px;
    animation: hlxOrbitRotate 28s linear infinite;
}
.hlx-orbit-two {
    top: 105px;
    right: -105px;
    width: 500px;
    height: 500px;
    border-color: rgba(23,23,23,0.06);
    animation: hlxOrbitRotateReverse 20s linear infinite;
}
.hlx-orbit-three {
    top: 180px;
    right: -30px;
    width: 350px;
    height: 350px;
    border-color: rgba(254,0,0,0.08);
    animation: hlxOrbitRotate 15s linear infinite;
}



.hlx-about-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 300px;
    align-items: center;
}
.hlx-about-hero-left {
    position: relative;
    z-index: 4;
    padding-left: 7%;
}
.hlx-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1;
}
.hlx-about-eyebrow > span {
    display: block;
    width: 58px;
    height: 2px;
    background: var(--primary);
    transform-origin: left;
    animation: hlxLineGrow 1.2s .4s cubic-bezier(.16,1,.3,1) both;
}
.hlx-about-title-mask {
    overflow: hidden;
}
.hlx-about-title {
    margin: 0;
    font-family: var(--heading-font);
    font-size: clamp(5rem,8.2vw,9rem);
    font-weight: 800;
    letter-spacing: -0.095em;
    line-height: 0.79;
    animation: hlxTitleReveal 1.25s .15s cubic-bezier(.16,1,.3,1) both;
}
.hlx-about-title span {
    display: block;
}
.hlx-title-red {
    color: var(--primary);
    animation: hlxRedPulse 4s 1.4s ease-in-out infinite;
}
.hlx-about-counter {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
    color: #7b858a;
    font-family: var(--heading-font);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    animation: hlxFadeUp 1s 1s cubic-bezier(.16,1,.3,1) both;
}
.hlx-about-counter strong {
    color: var(--primary);
}
.hlx-about-hero-right {
    position: relative;
    height: 100%;
}
.hlx-about-giant-letter {
    position: absolute;
    top: 50%;
    left: 48%;
    color: transparent;
    font-family: var(--heading-font);
    font-size: clamp(22rem,34vw,40rem);
    font-weight: 800;
    letter-spacing: -0.18em;
    line-height: 0.65;
    transform: translate(-50%,-50%);
    -webkit-text-stroke: 1px rgba(23,23,23,0.065);
    animation: hlxLetterReveal 1.8s .25s cubic-bezier(.16,1,.3,1) both,hlxLetterFloat 7s 2s ease-in-out infinite;
    user-select: none;
}
.hlx-about-crosshair {
    position: absolute;
    top: 50%;
    left: 48%;
    width: 145px;
    height: 145px;
    border: 1px solid rgba(254,0,0,0.2);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    animation: hlxCrosshair 5s linear infinite;
}
.hlx-about-crosshair::before,
.hlx-about-crosshair::after {
    content: "";
    position: absolute;
    background: var(--primary);
    opacity: 0.65;
}
.hlx-about-crosshair::before {
    top: 50%;
    left: -30px;
    width: calc(100% + 60px);
    height: 1px;
}
.hlx-about-crosshair::after {
    left: 50%;
    top: -30px;
    width: 1px;
    height: calc(100% + 60px);
}
.hlx-about-coordinate {
    position: absolute;
    color: #879197;
    font-family: var(--heading-font);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    opacity: 0;
    animation: hlxFadeUp 1s 1.5s ease forwards;
}

.hlx-about-description {
    position: absolute;
    right: 2%;
    bottom: 77px;
    display: flex;
    gap: 20px;
    width: 300px;
    animation: hlxFadeUp 1s 1.2s cubic-bezier(.16,1,.3,1) both;
     background-color: white;
}
.hlx-description-line {
    display: block;
    width: 2px;
    flex: 0 0 2px;
    background: var(--primary);
}
.hlx-about-description p {
    margin: 0;
    color: #626d73;
    font-size: 0.85rem;
    line-height: 1.8;
   
}
.hlx-about-status {
    position: absolute;
    right: 8%;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #000406;
    font-family: var(--heading-font);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    animation: hlxFadeIn 1s 1.8s ease both;
}
.hlx-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #19a463;
    box-shadow: 0 0 0 5px rgba(25,164,99,0.08);
    animation: hlxStatusPulse 2s ease-in-out infinite;
}

.hlx-about-dashboard {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.35fr 0.78fr 0.87fr;
    grid-template-rows: 275px 230px 5px;
    gap: 10px;
}
.hlx-about-card {
    position: relative;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.16,1,.3,1),box-shadow .5s ease,background .35s ease,color .35s ease;
}
.hlx-about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(120deg,transparent 20%,rgba(255,255,255,.25) 50%,transparent 80%);
    transform: translateX(-100%);
    transition: opacity .3s ease;
}
.hlx-about-card:hover::before {
    opacity: 1;
    animation: hlxCardShine .8s ease forwards;
}
.hlx-about-card:hover {
    transform: translateY(-10px) scale(1.012);
    z-index: 20;
    box-shadow: 0 30px 70px rgba(23,23,23,.18);
}
.hlx-card-story {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px;
    background: #fff;
    border-radius: 32px 8px 8px 8px;
    box-shadow: 0 20px 55px rgba(23,23,23,.08);
}
.hlx-card-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(254,0,0,.06);
    filter: blur(15px);
    transition: transform .6s ease;
}
.hlx-card-story:hover .hlx-card-glow {
    transform: scale(1.7);
}
.hlx-card-top,
.hlx-card-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--heading-font);
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.hlx-card-top {
    color: #8a9499;
}
.hlx-card-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(23,23,23,.11);
    color: #8a9499;
}
.hlx-card-active {
    display: flex;
    align-items: center;
    gap: 7px;
}
.hlx-card-active i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #19a463;
}
.hlx-card-content {
    position: relative;
    z-index: 2;
    padding: 25px 0;
}
.hlx-card-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .2em;
}
.hlx-card-content h3 {
    margin: 0 0 25px;
    font-family: var(--heading-font);
    font-size: clamp(2.5rem,4vw,4.3rem);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: .86;
}
.hlx-card-content h3 em {
    color: var(--primary);
    font-style: normal;
}
.hlx-card-content p {
    max-width: 670px;
    margin: 0 0 14px;
    color: #657076;
    font-size: .88rem;
    line-height: 1.72;
}
.hlx-card-content p:last-child {
    margin-bottom: 0;
}
.hlx-card-content strong {
    color: var(--ink);
}
.hlx-card-year {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background: #171717;
    color: #fff;
    border-radius: 8px 32px 8px 8px;
}
.hlx-year-ring {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(254,0,0,.4);
    border-radius: 50%;
    transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.hlx-year-ring::before {
    content: "";
    position: absolute;
    inset: 35px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}
.hlx-card-year:hover .hlx-year-ring {
    transform: scale(1.3) rotate(25deg);
}
.hlx-year-content {
    position: relative;
    z-index: 2;
}
.hlx-year-content small {
    display: block;
    margin-bottom: 8px;
    color: #929a9e;
    font-family: var(--heading-font);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.hlx-year-content strong {
    display: block;
    font-family: var(--heading-font);
    font-size: clamp(4rem,6vw,6.5rem);
    font-weight: 800;
    letter-spacing: -.1em;
    line-height: .78;
}
.hlx-year-content span {
    display: block;
    margin-top: 16px;
    color: #8d969b;
    font-family: var(--heading-font);
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .15em;
}
.hlx-card-scan {
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: 62px;
    height: 1px;
    background: var(--primary);
    transform: rotate(-8deg);
    animation: hlxScanLine 4s ease-in-out infinite;
}
.hlx-card-business {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 32px 8px 8px 8px;
}
.hlx-business-big {
    position: relative;
    z-index: 2;
    font-family: var(--heading-font);
    font-size: clamp(4rem,6vw,6rem);
    font-weight: 800;
    letter-spacing: -.1em;
    line-height: .75;
}
.hlx-business-text {
    position: relative;
    z-index: 2;
    font-family: var(--heading-font);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.4;
}
.hlx-business-cross {
    position: absolute;
    right: 28px;
    top: 50%;
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
}
.hlx-business-cross::before,
.hlx-business-cross::after {
    content: "";
    position: absolute;
    background: rgba(255,255,255,.6);
}
.hlx-business-cross::before {
    top: 50%;
    left: -15px;
    width: 85px;
    height: 1px;
}
.hlx-business-cross::after {
    top: -15px;
    left: 50%;
    width: 1px;
    height: 85px;
}
.hlx-card-turnover {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background: #dce6ed;
    border-radius: 8px 8px 8px 32px;
}
.hlx-turnover-content {
    position: relative;
    z-index: 2;
}
.hlx-turnover-content small {
    display: block;
    margin-bottom: 8px;
    color: #707a80;
    font-family: var(--heading-font);
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.hlx-turnover-content strong {
    display: block;
    font-family: var(--heading-font);
    font-size: clamp(2.5rem,4vw,4.3rem);
    font-weight: 800;
    letter-spacing: -.09em;
    line-height: .8;
}
.hlx-turnover-content span {
    display: block;
    margin-top: 12px;
    color: #6e787d;
    font-family: var(--heading-font);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.hlx-data-bar {
    position: relative;
    height: 3px;
    background: rgba(23,23,23,.1);
    overflow: hidden;
}
.hlx-data-bar i {
    display: block;
    width: 72%;
    height: 100%;
    background: var(--primary);
    transform-origin: left;
    animation: hlxDataLoad 2s 1s cubic-bezier(.16,1,.3,1) both;
}
.hlx-card-team {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background: #fff;
    border-radius: 8px;
}
.hlx-team-content strong {
    display: block;
    font-family: var(--heading-font);
    font-size: clamp(3rem,4.5vw,4.8rem);
    font-weight: 800;
    letter-spacing: -.09em;
    line-height: .8;
}
.hlx-team-content span {
    display: block;
    margin-top: 12px;
    color: #777f84;
    font-family: var(--heading-font);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.hlx-team-grid {
    display: grid;
    grid-template-columns: repeat(6,8px);
    gap: 5px;
}
.hlx-team-grid i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd4d9;
    transition: transform .3s ease,background .3s ease;
}
.hlx-team-grid i:nth-child(-n+7) {
    background: var(--primary);
}
.hlx-card-team:hover .hlx-team-grid i {
    animation: hlxDotJump .5s ease both;
}
.hlx-card-team:hover .hlx-team-grid i:nth-child(2) {
    animation-delay: .04s;
}
.hlx-card-team:hover .hlx-team-grid i:nth-child(3) {
    animation-delay: .08s;
}
.hlx-card-team:hover .hlx-team-grid i:nth-child(4) {
    animation-delay: .12s;
}
.hlx-card-team:hover .hlx-team-grid i:nth-child(5) {
    animation-delay: .16s;
}
.hlx-card-team:hover .hlx-team-grid i:nth-child(6) {
    animation-delay: .2s;
}
.hlx-card-team:hover .hlx-team-grid i:nth-child(7) {
    animation-delay: .24s;
}
.hlx-card-principle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: #171717;
    color: #fff;
    border-radius: 8px 8px 32px 8px;
}
.hlx-principle-mark {
    position: absolute;
    top: 0;
    right: 20px;
    color: var(--primary);
    font-family: Georgia,serif;
    font-size: 6rem;
    line-height: .9;
}
.hlx-card-principle p {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 0 18px;
    font-family: var(--heading-font);
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.55;
}
.hlx-card-principle > span {
    color: #899297;
    font-family: var(--heading-font);
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.hlx-principle-line {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 1px;
    background: var(--primary);
}
.hlx-about-capabilities {
    padding-top: 120px;
}
.hlx-capabilities-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 45px;
}
.hlx-capabilities-heading .hlx-about-eyebrow {
    margin-bottom: 20px;
}
.hlx-capabilities-heading h3 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: clamp(3.2rem,6vw,6.5rem);
    font-weight: 800;
    letter-spacing: -.09em;
    line-height: .82;
}
.hlx-capabilities-heading h3 em {
    color: var(--primary);
    font-style: normal;
}
.hlx-capability-count {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}
.hlx-capability-count strong {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .75;
}
.hlx-capability-count span {
    color: #7d868b;
    font-family: var(--heading-font);
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.4;
}
.hlx-capability-list {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 2px;
    background: rgba(23,23,23,.15);
}
.hlx-capability-item {
    position: relative;
    min-height: 185px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    background: #f7fafc;
    overflow: hidden;
    transition: transform .45s cubic-bezier(.16,1,.3,1),background .35s ease,color .35s ease;
}
.hlx-capability-item:hover {
    z-index: 5;
    background: var(--primary);
    color: #fff;
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(23,23,23,.15);
}
.hlx-capability-item > span {
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.hlx-capability-item:hover > span {
    color: rgba(255,255,255,.75);
}
.hlx-capability-item strong {
    position: relative;
    z-index: 2;
    font-family: var(--heading-font);
    font-size: clamp(1.3rem,1.7vw,2rem);
    font-weight: 800;
    letter-spacing: -.06em;
}
.hlx-capability-item small {
    color: #7b858a;
    font-family: var(--heading-font);
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .14em;
}
.hlx-capability-item:hover small {
    color: rgba(255,255,255,.75);
}
.hlx-capability-item i {
    position: absolute;
    right: 22px;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(23,23,23,.15);
    border-radius: 50%;
    color: var(--primary);
    font-style: normal;
    opacity: 0;
    transform: translateY(15px) rotate(-45deg);
    transition: opacity .3s ease,transform .4s ease;
}
.hlx-capability-item:hover i {
    opacity: 1;
    color: #fff;
    border-color: rgba(255,255,255,.5);
    transform: translateY(0) rotate(0);
}
.hlx-about-final {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    margin-top: 70px;
    padding: 65px;
    background: #171717;
    color: #fff;
    border-radius: 32px 8px 32px 8px;
    overflow: hidden;
}
.hlx-about-final::before {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -300px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(254,0,0,.2);
    border-radius: 50%;
}
.hlx-final-orbit {
    position: absolute;
    right: 80px;
    bottom: -190px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    animation: hlxOrbitRotate 18s linear infinite;
}
.hlx-final-left,
.hlx-final-right {
    position: relative;
    z-index: 2;
}
.hlx-final-left > span {
    display: block;
    margin-bottom: 25px;
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .18em;
}
.hlx-final-left h3 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: clamp(3.2rem,5.5vw,6rem);
    font-weight: 800;
    letter-spacing: -.09em;
    line-height: .85;
}
.hlx-final-left h3 em {
    color: var(--primary);
    font-style: normal;
}
.hlx-final-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.hlx-final-right p {
    max-width: 430px;
    margin: 0;
    color: #a3aaae;
    font-size: .88rem;
    line-height: 1.8;
}
.hlx-final-right a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
    color: #fff;
    font-family: var(--heading-font);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .14em;
}
.hlx-final-right a b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 400;
    transition: background .3s ease,color .3s ease,transform .3s ease;
}
.hlx-final-right a:hover b {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: rotate(45deg);
}
.hlx-about-footer {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 30px;
    padding-top: 25px;
    color: #7d878c;
    font-family: var(--heading-font);
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .15em;
}
@keyframes hlxTopReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes hlxLineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
@keyframes hlxTitleReveal {
    from {
        opacity: 0;
        transform: translateY(110%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes hlxLetterReveal {
    from {
        opacity: 0;
        transform: translate(-35%,-50%) scale(.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }
}
@keyframes hlxLetterFloat {
    0%,100% {
        margin-top: 0;
    }
    50% {
        margin-top: -14px;
    }
}
@keyframes hlxFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes hlxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes hlxRedPulse {
    0%,100% {
        text-shadow: 0 0 0 rgba(254,0,0,0);
    }
    50% {
        text-shadow: 0 0 35px rgba(254,0,0,.12);
    }
}
@keyframes hlxOrbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes hlxOrbitRotateReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}
@keyframes hlxCrosshair {
    from {
        transform: translate(-50%,-50%) rotate(0deg);
    }
    to {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}
@keyframes hlxStatusPulse {
    0%,100% {
        box-shadow: 0 0 0 4px rgba(25,164,99,.07);
    }
    50% {
        box-shadow: 0 0 0 9px rgba(25,164,99,.02);
    }
}
@keyframes hlxScan {
    0% {
        transform: translateX(-100%);
    }
    50%,100% {
        transform: translateX(100%);
    }
}
@keyframes hlxScanLine {
    0%,100% {
        opacity: .3;
        transform: rotate(-8deg) translateX(-10%);
    }
    50% {
        opacity: 1;
        transform: rotate(-8deg) translateX(10%);
    }
}
@keyframes hlxDataLoad {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
@keyframes hlxCardShine {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}
@keyframes hlxDotJump {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}
@media (max-width:1200px) {
    .hlx-about-hero-left {
        padding-left: 3%;
    }
    .hlx-about-dashboard {
        grid-template-columns: 1.25fr .8fr .95fr;
    }
    .hlx-capability-list {
        grid-template-columns: repeat(3,1fr);
    }
}
@media (max-width:992px) {
    .hlx-about-section {
        padding-top: 100px;
    }
   
    .hlx-about-hero {
        min-height: 560px;
    }
    .hlx-about-hero-left {
        padding-left: 0;
    }
    .hlx-about-title {
        font-size: clamp(4rem,9vw,7rem);
    }
    .hlx-about-dashboard {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .hlx-card-story {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 500px;
    }
    .hlx-card-year,
    .hlx-card-business,
    .hlx-card-turnover,
    .hlx-card-team {
        min-height: 230px;
    }
    .hlx-card-principle {
        grid-column: span 2;
        min-height: 230px;
    }
    .hlx-about-final {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
@media (max-width:768px) {
    .hlx-about-section {
        padding: 80px 0 30px;
    }
    .hlx-about-grid {
        background-size: 45px 45px;
    }
   
   
    .hlx-about-hero {
        display: block;
        min-height: 570px;
        padding: 85px 0 50px;
    }
    .hlx-about-hero-left {
        position: relative;
        z-index: 5;
    }
    .hlx-about-title {
        font-size: clamp(3.7rem,15vw,6rem);
        line-height: .84;
    }
    .hlx-about-intro-number {
        margin-top: 30px;
    }
    .hlx-about-hero-right {
        position: absolute;
        inset: 0;
        pointer-events: none;
    }
    .hlx-about-giant-letter {
        top: 48%;
        left: 58%;
        font-size: 18rem;
    }
    .hlx-about-crosshair {
        top: 48%;
        left: 58%;
        width: 110px;
        height: 110px;
    }
    .hlx-about-coordinate {
        display: none;
    }
    .hlx-about-vertical-label {
        display: none;
    }
    .hlx-about-description {
        right: 0;
        bottom: 55px;
        width: min(270px,80%);
    }
    .hlx-about-status {
        right: 0;
        bottom: 15px;
    }
    .hlx-about-scroll-cue {
        left: 0;
        bottom: 15px;
    }
    .hlx-about-dashboard {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .hlx-card-story,
    .hlx-card-principle {
        grid-column: auto;
    }
    .hlx-card-story {
        min-height: 570px;
        padding: 25px;
        border-radius: 25px 6px 6px 6px;
    }
    .hlx-card-content {
        padding: 20px 0;
    }
    .hlx-card-content h3 {
        font-size: 3.1rem;
    }
    .hlx-card-content p {
        font-size: .84rem;
    }
    .hlx-card-year,
    .hlx-card-business,
    .hlx-card-turnover,
    .hlx-card-team,
    .hlx-card-principle {
        min-height: 210px;
    }
    .hlx-about-capabilities {
        padding-top: 85px;
    }
    .hlx-capabilities-heading {
        display: block;
    }
    .hlx-capabilities-heading h3 {
        font-size: 3.5rem;
    }
    .hlx-capability-count {
        margin-top: 25px;
    }
    .hlx-capability-list {
        grid-template-columns: 1fr 1fr;
    }
    .hlx-capability-item {
        min-height: 150px;
        padding: 20px;
    }
    .hlx-about-final {
        margin-top: 45px;
        padding: 35px 25px;
        border-radius: 25px 6px 25px 6px;
    }
    .hlx-final-left h3 {
        font-size: 3.2rem;
    }
    .hlx-about-footer {
        grid-template-columns: 1fr;
        gap: 10px;
        line-height: 1.5;
    }
}
@media (max-width:576px) {
    .hlx-about-title {
        font-size: clamp(3.2rem,16vw,5rem);
    }
    .hlx-about-hero {
        min-height: 520px;
    }
    .hlx-about-giant-letter {
        font-size: 13rem;
    }
    .hlx-about-crosshair {
        width: 85px;
        height: 85px;
    }
    .hlx-about-description {
        width: 88%;
        bottom: 55px;
    }
    .hlx-about-scroll-cue {
        display: none;
    }
    .hlx-card-story {
        min-height: 610px;
    }
    .hlx-card-content h3 {
        font-size: 2.8rem;
    }
    .hlx-capability-list {
        grid-template-columns: 1fr 1fr;
    }
    .hlx-capability-item {
        min-height: 135px;
        padding: 18px;
    }
    .hlx-capability-item strong {
        font-size: 1.2rem;
    }
    .hlx-about-final {
        padding: 30px 22px;
    }
    .hlx-final-left h3 {
        font-size: 2.8rem;
    }
}
/* @media (prefers-reduced-motion:reduce) {
    .hlx-about-section *,
    .hlx-about-section *::before,
    .hlx-about-section *::after {
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
    }
} */
 

/*=========================================
HELIX PRODUCTS
=========================================*/
.hlx-products-section{
position:relative;
min-height:760px;
padding:42px 0 34px;
overflow:hidden;
isolation:isolate;
background:#080b0d;
color:#fff;
}
.hlx-products-bg{
position:absolute;
inset:0;
z-index:-4;
background-image:
/* linear-gradient(90deg,rgba(4,7,9,.94) 0%,rgba(4,7,9,.7) 38%,rgba(4,7,9,.9) 100%), */
url("../images/products/products-bg.jpg");
background-position:center;
background-size:cover;
}
.hlx-products-overlay{
position:absolute;
inset:0;
z-index:-3;
background:
radial-gradient(circle at 15% 55%,rgba(254,0,0,.14),transparent 32%),
linear-gradient(90deg,rgba(0,0,0,.2),transparent 5%,rgba(0,0,0,.45)); 
pointer-events:none;
}
.hlx-products-grid{
position:absolute;
inset:0;
z-index:-2;
opacity:.12;
background-image:
linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);
background-size:70px 70px;
mask-image:linear-gradient(90deg,rgba(0,0,0,.75),transparent 80%);
pointer-events:none;
}
/*=========================================
TOP
=========================================*/
.hlx-products-top{
display:flex;
align-items:center;
justify-content:space-between;
min-height:40px;
padding-bottom:20px;
border-bottom:1px solid rgba(255,255,255,.14);
}
.hlx-products-brand{
display:flex;
align-items:center;
gap:12px;
color:#fff;
font-family:var(--heading-font);
font-size:12px;
font-weight:800;
letter-spacing:.26em;
}
.hlx-products-dot{
position:relative;
width:22px;
height:22px;
border:1px solid var(--primary);
border-radius:50%;
}
.hlx-products-dot:before{
content:"";
position:absolute;
inset:6px;
border-radius:50%;
background:var(--primary);
box-shadow:0 0 14px rgba(254,0,0,.7);
}
.hlx-products-location{
color:rgba(255,255,255,.45);
font-family:var(--heading-font);
font-size:9px;
font-weight:700;
letter-spacing:.22em;
}
/*=========================================
CATEGORY BUTTONS
=========================================*/
.hlx-product-category-nav{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:14px;
margin:34px 0;
}
.hlx-category-btn{
position:relative;
display:flex;
align-items:center;
min-height:82px;
padding:12px 20px;
overflow:hidden;
border:1px solid rgba(255,255,255,.2);
border-radius:50px;
outline:none;
background:rgba(10,14,17,.6);
color:#fff;
text-align:left;
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);
transition:.4s ease;
}
.hlx-category-btn:before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(100deg,#fe0000,#e90000);
opacity:0;
transition:.35s ease;
}
.hlx-category-btn:hover{
border-color:rgba(254,0,0,.7);
transform:translateY(-3px);
box-shadow:0 18px 45px rgba(0,0,0,.35);
}
.hlx-category-btn.active{
background:#fe0000;
border-color:#ff4a4a;
box-shadow:0 15px 45px rgba(254,0,0,.25);
}
.hlx-category-btn.active:before{
opacity:1;
}
.hlx-category-icon,
.hlx-category-copy,
.hlx-category-number,
.hlx-category-arrow{
position:relative;
z-index:2;
}
.hlx-category-icon{
display:grid;
width:46px;
height:46px;
flex:0 0 46px;
margin-right:16px;
place-items:center;
border:1px solid rgba(255,255,255,.25);
border-radius:50%;
background:rgba(255,255,255,.05);
}
.hlx-category-icon svg{
width:27px;
height:27px;
fill:none;
stroke:currentColor;
stroke-width:1.5;
stroke-linecap:round;
stroke-linejoin:round;
}
.hlx-category-copy{
display:flex;
flex-direction:column;
gap:5px;
}
.hlx-category-copy strong{
color:#fff;
font-family:var(--heading-font);
font-size:17px;
font-weight:800;
letter-spacing:.16em;
line-height:1;
}
.hlx-category-copy small{
color:rgba(255,255,255,.48);
font-family:var(--heading-font);
font-size:12px;
font-weight:600;
letter-spacing:.14em;
}
.hlx-category-number{
margin-left:auto;
color:rgba(255,255,255,.45);
font-family:var(--heading-font);
font-size:12px;
font-weight:700;
}
.hlx-category-arrow{
display:none;
margin-left:14px;
font-size:18px;
}
/*=========================================
MAIN
=========================================*/
.hlx-products-main{
display:grid;
grid-template-columns:minmax(290px,.65fr) minmax(0,1.7fr);
gap:45px;
align-items:center;
}
.hlx-products-intro{
position:relative;
z-index:3;
padding:15px 0 20px;
}
.hlx-products-index{
display:flex;
align-items:baseline;
gap:7px;
margin-bottom:28px;
font-family:var(--heading-font);
}
.hlx-products-index strong{
color:var(--primary);
font-size:16px;
font-weight:800;
}
.hlx-products-index span{
color:rgba(255,255,255,.4);
font-size:10px;
}
.hlx-products-eyebrow{
display:block;
margin-bottom:12px;
color:rgba(255,255,255,.75);
font-family:var(--heading-font);
font-size:11px;
font-weight:800;
letter-spacing:.26em;
}
.hlx-products-title{
margin:0;
color:#fff;
font-family:var(--heading-font);
font-size:clamp(3.5rem,5.2vw,6rem);
font-weight:700;
letter-spacing:-.065em;
line-height:.86;
}
.hlx-products-title em{
display:block;
color:var(--primary);
font-style:normal;
}
.hlx-products-description{
max-width:470px;
margin:28px 0 0;
color:rgba(255,255,255,.64);
font-size:14px;
line-height:1.7;
}
.hlx-products-cta{
display:inline-flex;
align-items:center;
gap:18px;
margin-top:28px;
color:#fff;
font-family:var(--heading-font);
font-size:10px;
font-weight:800;
letter-spacing:.24em;
}
.hlx-products-cta-circle{
display:grid;
width:58px;
height:58px;
place-items:center;
border-radius:50%;
background:var(--primary);
box-shadow:0 0 0 8px rgba(254,0,0,.14),0 12px 30px rgba(254,0,0,.32);
font-size:23px;
transition:.35s ease;
}
.hlx-products-cta:hover .hlx-products-cta-circle{
transform:translateX(6px);
}
.hlx-products-microcopy{
display:flex;
align-items:center;
gap:10px;
margin-top:75px;
color:rgba(255,255,255,.58);
font-family:var(--heading-font);
font-size:8px;
font-weight:700;
letter-spacing:.24em;
}
.hlx-products-microcopy i{
width:18px;
height:1px;
background:rgba(255,255,255,.28);
}
/*=========================================
SWIPER AREA
=========================================*/
.hlx-products-slider-area{
position:relative;
min-width:0;
overflow:visible;
padding:18px 0 4px;
}
.hlx-product-slider{
display:none;
width:100%;
}
.hlx-product-slider.active{
display:block;
}
/*=========================================
SWIPER
=========================================*/
.hlxProductSwiper{
position:relative;
width:100%;
overflow:hidden;
padding:0 1px 2px;
}
.hlxProductSwiper .swiper-wrapper{
align-items:stretch;
}
.hlxProductSwiper .swiper-slide{
height:400px;
display:flex;
}
.hlx-product-slide-card{
position:relative;
width:100%;
height:100%;
overflow:hidden;
border:1px solid rgba(255,255,255,.25);
border-radius:12px;
background:#11171b;
box-shadow:0 20px 50px rgba(0,0,0,.32);
transition:.4s ease;
}
.hlx-product-slide-card:hover{
border-color:rgba(255,255,255,.72);
transform:translateY(-6px);
box-shadow:0 28px 65px rgba(0,0,0,.55);
}
.hlx-product-slide-card:before{
content:"";
position:absolute;
inset:0;
z-index:3;
pointer-events:none;
background:linear-gradient(120deg,transparent 20%,rgba(255,255,255,.2) 48%,transparent 70%);
transform:translateX(-120%);
transition:.8s ease;
}
.hlx-product-slide-card:hover:before{
transform:translateX(120%);
}
.hlx-product-slide-card>img{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
display:block;
filter:saturate(.8) contrast(1.05);
transition:.7s cubic-bezier(.16,1,.3,1);
user-select:none;
-webkit-user-drag:none;
}
.hlx-product-slide-card:hover>img{
transform:scale(1.07);
filter:saturate(1) contrast(1.05);
}
.hlx-product-slide-card:after{
content:"";
position:absolute;
inset:0;
z-index:1;
background:linear-gradient(180deg,rgba(0,0,0,.02) 30%,rgba(0,0,0,.08) 45%,rgba(0,0,0,.95) 100%);
pointer-events:none;
}
.hlx-product-card-number{
position:absolute;
top:17px;
left:17px;
z-index:5;
color:#fff;
font-family:var(--heading-font);
font-size:10px;
font-weight:800;
}
.hlx-product-bookmark{
position:absolute;
top:16px;
right:16px;
z-index:5;
color:rgba(255,255,255,.85);
font-size:19px;
}
.hlx-product-card-content{
position:absolute;
right:0;
bottom:0;
left:0;
z-index:5;
display:flex;
align-items:flex-end;
padding:22px 14px 14px;
}
.hlx-product-card-content>span{
position:absolute;
top:0;
left:14px;
width:27px;
height:2px;
background:var(--primary);
box-shadow:0 0 10px rgba(254,0,0,.65);
}
.hlx-product-card-content h3{
max-width:calc(100% - 48px);
margin:0;
color:#fff;
font-family:var(--heading-font);
font-size:14px;
font-weight:700;
letter-spacing:-.025em;
line-height:1.15;
}
.hlx-product-card-content a{
display:grid;
width:38px;
height:38px;
flex:0 0 38px;
margin-left:auto;
place-items:center;
border:1px solid rgba(255,255,255,.38);
border-radius:50%;
color:#fff;
font-size:16px;
transition:.3s ease;
}
.hlx-product-card-content a:hover{
border-color:var(--primary);
background:var(--primary);
}
/*=========================================
CONTROLS
=========================================*/
.hlx-product-controls{
display:flex;
align-items:center;
gap:14px;
margin-top:45px;
}
.hlx-product-prev,
.hlx-product-next{
position:relative;
display:grid;
width:50px;
height:50px;
flex:0 0 50px;
place-items:center;
border:1px solid rgba(255,255,255,.38);
border-radius:50%;
outline:none;
background:transparent;
color:#fff;
font-size:20px;
cursor:pointer;
transition:.3s ease;
z-index:20;
}
.hlx-product-prev:hover,
.hlx-product-next:hover{
border-color:var(--primary);
background:var(--primary);
color:#fff;
transform:scale(1.05);
}
.hlx-product-progress{
position:relative;
width:280px;
height:1px;
margin-left:10px;
background:rgba(255,255,255,.25);
}
.hlx-product-progress span{
position:absolute;
top:-1px;
left:0;
width:25%;
height:3px;
background:var(--primary);
box-shadow:0 0 12px rgba(254,0,0,.65);
transition:width .45s ease;
}
.hlx-product-counter{
display:flex;
align-items:center;
gap:6px;
margin-left:15px;
font-family:var(--heading-font);
font-size:10px;
font-weight:700;
letter-spacing:.12em;
}
.hlx-product-counter strong{
color:var(--primary);
}
.hlx-product-counter i{
color:rgba(255,255,255,.35);
font-style:normal;
}
.hlx-product-counter span{
color:rgba(255,255,255,.65);
}
/*=========================================
1400+
=========================================*/
@media (min-width:1400px){
.hlxProductSwiper .swiper-slide{
height:420px;
}
}
/*=========================================
992 - 1199
=========================================*/
@media (min-width:992px) and (max-width:1199.98px){
.hlx-products-main{
grid-template-columns:minmax(270px,.58fr) minmax(0,1.42fr);
gap:30px;
}
.hlxProductSwiper .swiper-slide{
height:370px;
}
.hlx-category-btn{
padding-inline:15px;
}
.hlx-category-icon{
width:40px;
height:40px;
flex-basis:40px;
margin-right:10px;
}
.hlx-category-copy strong{
font-size:9px;
}
}
/*=========================================
768 - 991
=========================================*/
@media (min-width:768px) and (max-width:991.98px){
.hlx-products-main{
grid-template-columns:minmax(250px,.58fr) minmax(0,1.42fr);
gap:25px;
}
.hlx-product-category-nav{
gap:10px;
}
.hlx-category-btn{
padding-inline:12px;
}
.hlx-category-icon{
width:38px;
height:38px;
flex-basis:38px;
margin-right:8px;
}
.hlx-category-copy strong{
font-size:8px;
}
.hlx-category-copy small{
font-size:6px;
}
.hlxProductSwiper .swiper-slide{
height:350px;
}
}
/*=========================================
MOBILE
=========================================*/
@media (max-width:767.98px){
.hlx-products-section{
min-height:auto;
padding-top:25px;
padding-bottom:35px;
}
.hlx-products-section .hlx-layout-container{
display:flex;
flex-direction:column;
}
.hlx-products-top{
order:1;
}
.hlx-products-main{
display:contents;
}
.hlx-products-intro{
order:2;
padding-top:8px;
}
.hlx-products-slider-area{
order:3;
width:100%;
padding-top:20px;
}
.hlx-product-category-nav{
order:4;
grid-template-columns:1fr;
gap:9px;
margin:38px 0 0;
}
.hlx-products-location{
display:none;
}
.hlx-products-title{
font-size:clamp(2.8rem,14vw,4.3rem);
line-height:.88;
}
.hlx-products-description{
margin-top:22px;
font-size:13px;
}
.hlx-products-microcopy{
margin-top:30px;
}
.hlxProductSwiper{
overflow:hidden;
}
.hlxProductSwiper .swiper-slide{
height:350px;
}
.hlx-category-btn{
min-height:70px;
padding:10px 15px;
border-radius:18px;
}
.hlx-category-icon{
width:44px;
height:44px;
flex-basis:44px;
margin-right:13px;
}
.hlx-category-arrow{
display:block;
}
.hlx-product-controls{
margin-top:30px;
}
}
/*=========================================
SMALL MOBILE
=========================================*/
@media (max-width:575.98px){
.hlxProductSwiper .swiper-slide{
height:340px;
}
.hlx-product-controls{
gap:9px;
}
.hlx-product-prev,
.hlx-product-next{
width:43px;
height:43px;
flex-basis:43px;
}
.hlx-product-progress{
flex:1;
width:auto;
min-width:60px;
max-width:150px;
margin-left:5px;
}
.hlx-product-counter{
margin-left:3px;
}
}



/* =========================================
HELIX SERVICES
========================================= */
.hlx-services-section{
    position:relative;
    padding-block:var(--section-space-xl);
    overflow:hidden;
    isolation:isolate;
    background:#fff;
    color:var(--ink);
}
.hlx-services-section::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-3;
    pointer-events:none;
    background:
        radial-gradient(circle at 8% 15%,rgba(254,0,0,.045),transparent 22%),
        radial-gradient(circle at 88% 35%,rgba(23,23,23,.035),transparent 26%),
        radial-gradient(circle at 50% 100%,rgba(254,0,0,.025),transparent 30%);
}
.hlx-services-section::after{
    content:"";
    position:absolute;
    right:-250px;
    bottom:-350px;
    width:700px;
    height:700px;
    border:1px solid rgba(254,0,0,.045);
    border-radius:50%;
    pointer-events:none;
    animation:hlxServicesLargeOrbit 18s linear infinite;
}
/* =========================================
TECHNICAL GRID
========================================= */
.hlx-services-tech-grid{
    position:absolute;
    top:0;
    right:0;
    left:0;
    height:570px;
    z-index:-2;
    pointer-events:none;
    opacity:.55;
    background-image:
        linear-gradient(rgba(23,23,23,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(23,23,23,.035) 1px,transparent 1px);
    background-size:72px 72px;
    mask-image:linear-gradient(to bottom,black 0%,rgba(0,0,0,.7) 55%,transparent 100%);
    animation:hlxServicesGridMove 16s linear infinite;
}
.hlx-services-scanline{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    z-index:1;
    pointer-events:none;
    background:linear-gradient(
        90deg,
        transparent 0%,
        transparent 18%,
        rgba(254,0,0,.7) 40%,
        var(--primary) 50%,
        rgba(254,0,0,.7) 60%,
        transparent 82%,
        transparent 100%
    );
    opacity:.55;
    animation:hlxServicesScan 7s ease-in-out infinite;
}


/* =========================================
TOP HEADER
========================================= */
.hlx-services-header{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:70px;
    animation:hlxServicesHeaderIn .9s cubic-bezier(.16,1,.3,1) both;
}
.hlx-services-brand{
    display:flex;
    align-items:center;
    gap:9px;
    flex-shrink:0;
    color:var(--ink);
    font-family:var(--heading-font);
    font-size:9px;
    font-weight:800;
    letter-spacing:.2em;
    text-transform:uppercase;
}
.hlx-services-brand-mark{
    position:relative;
    display:block;
    width:22px;
    height:22px;
    overflow:hidden;
    border:1px solid var(--ink);
    border-radius:50%;
    background:#fff;
}
.hlx-services-brand-mark::before{
    content:"";
    position:absolute;
    top:50%;
    left:-2px;
    width:25px;
    height:1px;
    background:var(--primary);
    transform:rotate(-45deg);
    transform-origin:center;
    animation:hlxMarkSweep 3s ease-in-out infinite;
}
.hlx-services-brand-mark::after{
    content:"";
    position:absolute;
    inset:5px;
    border:1px solid rgba(254,0,0,.2);
    border-radius:50%;
}
.hlx-services-brand-mark i{
    position:absolute;
    top:3px;
    right:3px;
    width:3px;
    height:3px;
    border-radius:50%;
    background:var(--primary);
    animation:hlxServicesDotPulse 2s ease-in-out infinite;
}
.hlx-services-header-line{
    position:relative;
    width:100%;
    height:1px;
    overflow:hidden;
    background:rgba(23,23,23,.09);
}
.hlx-services-header-line span{
    position:absolute;
    top:0;
    left:-20%;
    width:20%;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--primary),transparent);
    animation:hlxHeaderLine 5s ease-in-out infinite;
}
.hlx-services-header-label{
    flex-shrink:0;
    color:#999;
    font-family:var(--heading-font);
    font-size:8px;
    font-weight:700;
    letter-spacing:.2em;
    text-transform:uppercase;
}

/* =========================================
INTRO
========================================= */
.hlx-services-intro{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
}
.hlx-services-intro-index{
    position:absolute;
    top:28px;
    left:-90px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
    color:#aaa;
    font-family:var(--heading-font);
    font-size:7px;
    font-weight:700;
    letter-spacing:.2em;
    line-height:1;
    text-transform:uppercase;
    opacity:0;
    animation:hlxIndexIn 1s .45s cubic-bezier(.16,1,.3,1) forwards;
}
.hlx-services-intro-index strong{
    color:var(--primary);
    font-size:22px;
    font-weight:700;
    letter-spacing:-.05em;
}
.hlx-services-eyebrow{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:13px;
    margin-bottom:20px;
    color:var(--primary);
    font-family:var(--heading-font);
    font-size:9px;
    font-weight:800;
    letter-spacing:.3em;
    line-height:1;
    text-transform:uppercase;
    opacity:0;
    animation:hlxEyebrowIn .8s .15s cubic-bezier(.16,1,.3,1) forwards;
}
.hlx-services-eyebrow i{
    display:block;
    width:26px;
    height:1px;
    background:var(--primary);
    transform-origin:center;
}
.hlx-services-eyebrow i:first-child{
    animation:hlxEyebrowLineLeft 1.4s .4s ease-in-out infinite;
}
.hlx-services-eyebrow i:last-child{
    animation:hlxEyebrowLineRight 1.4s .4s ease-in-out infinite;
}
.hlx-services-title{
    position:relative;
    margin:0;
    color:var(--ink);
    font-family:var(--heading-font);
    font-size:clamp(3.2rem,5.4vw,6.2rem);
    font-weight:700;
    letter-spacing:-.075em;
    line-height:.9;
    opacity:0;
    transform:translateY(35px);
    animation:hlxTitleReveal 1.15s .3s cubic-bezier(.16,1,.3,1) forwards;
}
.hlx-services-title::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:210px;
    height:210px;
    border:1px solid rgba(254,0,0,.06);
    border-radius:50%;
    transform:translate(-50%,-50%);
    z-index:-1;
    animation:hlxTitleRing 8s linear infinite;
}
.hlx-services-title span{
    display:block;
    color:var(--primary);
    font-style:italic;
    font-weight:500;
    letter-spacing:-.085em;
    transform:translateX(35px);
    animation:hlxItalicReveal 1.2s .6s cubic-bezier(.16,1,.3,1) forwards;
}
.hlx-services-title-line{
    position:relative;
    width:0;
    height:1px;
    margin:23px auto 0;
    background:rgba(23,23,23,.12);
    animation:hlxTitleLine 1s 1s cubic-bezier(.16,1,.3,1) forwards;
}
.hlx-services-title-line span{
    position:absolute;
    top:0;
    left:0;
    width:70px;
    height:1px;
    background:var(--primary);
    animation:hlxTitleLinePulse 2.8s ease-in-out infinite;
}
.hlx-services-description{
    max-width:600px;
    margin:22px auto 0;
    color:#747474;
    font-family:var(--body-font);
    font-size:13px;
    line-height:1.8;
    opacity:0;
    transform:translateY(15px);
    animation:hlxDescriptionIn .9s .8s cubic-bezier(.16,1,.3,1) forwards;
}
.hlx-services-explore{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:27px;
    padding:6px 7px 6px 19px;
    border:1px solid rgba(23,23,23,.13);
    border-radius:50px;
    color:var(--ink);
    font-family:var(--heading-font);
    font-size:8px;
    font-weight:800;
    letter-spacing:.2em;
    text-transform:uppercase;
    opacity:0;
    transform:translateY(15px);
    animation:hlxButtonIn .9s 1s cubic-bezier(.16,1,.3,1) forwards;
    transition:.35s ease;
}
.hlx-services-explore::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    pointer-events:none;
}
.hlx-services-explore span{
    position:relative;
}
.hlx-services-explore i{
    display:grid;
    width:36px;
    height:36px;
    place-items:center;
    border-radius:50%;
    background:var(--ink);
    color:#fff;
    font-size:14px;
    font-style:normal;
    transition:.35s ease;
}
.hlx-services-explore:hover{
    background:var(--ink);
    color:#fff;
    transform:translateY(-3px);
}
.hlx-services-explore:hover i{
    background:var(--primary);
    transform:rotate(-45deg);
}
.hlx-services-floating-word{
    position:absolute;
    right:-175px;
    bottom:0;
    color:rgba(23,23,23,.055);
    font-family:var(--heading-font);
    font-size:8px;
    font-weight:800;
    letter-spacing:.35em;
    white-space:nowrap;
    transform:rotate(90deg);
    transform-origin:center;
    animation:hlxFloatingWord 5s ease-in-out infinite;
}
/* =========================================
SLIDER WRAPPER
========================================= */
.hlx-services-slider-wrap{
    position:relative;
    width:100%;
    overflow:visible;
}
/* =========================================
MAIN SWIPER
========================================= */
.hlxServicesSwiper{
    position:relative;
    width:100%;
    overflow:hidden;
    padding:0 0 78px;
    isolation:isolate;
}
/* =========================================
CONTINUOUS TOP CURVE
========================================= */
.hlxServicesSwiper::before{
    content:"";
    position:absolute;
    top:-1px;
    left:-5%;
    width:110%;
    height:78px;
    z-index:20;
    background:#fff;
    border-radius:0 0 50% 50% / 0 0 100% 100%;
    pointer-events:none;
}
/* =========================================
CONTINUOUS BOTTOM CURVE
========================================= */
.hlxServicesSwiper::after{
    content:"";
    position:absolute;
    right:-5%;
    bottom:0;
    left:-5%;
    width:110%;
    height:78px;
    z-index:20;
    background:#fff;
    border-radius:50% 50% 0 0 / 100% 100% 0 0;
    pointer-events:none;
}
/* =========================================
SWIPER WRAPPER
========================================= */
.hlxServicesSwiper .swiper-wrapper{
    align-items:stretch;
}
.hlxServicesSwiper .swiper-slide{
    height:430px;
    display:flex;
    overflow:hidden;
    opacity:.94;
    transition:opacity .45s ease;
}
.hlxServicesSwiper .swiper-slide-active{
    opacity:1;
}
/* =========================================
CARD
========================================= */
.hlx-service-slide{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
    background:#151719;
    border-radius:0;
    clip-path:none;
    isolation:isolate;
    transition:
        transform .6s cubic-bezier(.16,1,.3,1),
        box-shadow .5s ease;
}
.hlxServicesSwiper .swiper-slide-active .hlx-service-slide{
    box-shadow:0 30px 65px rgba(0,0,0,.18);
}
.hlx-service-slide:hover{
    transform:translateY(-5px);
}
/* =========================================
IMAGE
========================================= */
.hlx-service-image{
    position:absolute;
    inset:0;
    overflow:hidden;
    background:#16191b;
}
.hlx-service-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    filter:saturate(.9) contrast(1.05);
    transform:scale(1.01);
    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        filter .6s ease;
}
.hlx-service-slide:hover .hlx-service-image img{
    transform:scale(1.06);
    filter:saturate(1) contrast(1.06);
}
/* =========================================
IMAGE DARK OVERLAY
========================================= */
.hlx-service-shade{
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 18%,
            rgba(0,0,0,.02) 38%,
            rgba(0,0,0,.24) 62%,
            rgba(0,0,0,.88) 100%
        );
}
/* =========================================
CARD NUMBER
========================================= */
.hlx-service-number{
    position:absolute;
    top:84px;
    left:30px;
    z-index:10;
    display:flex;
    align-items:center;
    color:#fff;
    font-family:var(--heading-font);
    font-size:9px;
    font-weight:700;
    letter-spacing:.16em;
}
.hlx-service-number::after{
    content:"";
    width:28px;
    height:1px;
    margin-left:9px;
    background:var(--primary);
}
/* =========================================
CARD CONTENT
========================================= */
.hlx-service-content{
    position:absolute;
    right:0;
    bottom:76px;
    left:0;
    z-index:30;
    padding:0 30px;
    pointer-events:none;
}
.hlx-service-content > span{
    display:block;
    margin-bottom:10px;
    color:var(--primary);
    font-family:var(--heading-font);
    font-size:7px;
    font-weight:800;
    letter-spacing:.25em;
    line-height:1.3;
    text-transform:uppercase;
}
.hlx-service-content h3{
    max-width:78%;
    margin:0;
    color:#fff;
    font-family:var(--heading-font);
    font-size:clamp(1.25rem,1.6vw,1.6rem);
    font-weight:700;
    letter-spacing:-.045em;
    line-height:1.08;
    text-wrap:balance;
}
.hlx-service-content a{
    position:absolute;
    right:27px;
    bottom:0;
    display:grid;
    width:48px;
    height:48px;
    place-items:center;
    border:1px solid rgba(255,255,255,.48);
    border-radius:50%;
    color:#fff;
    font-size:16px;
    pointer-events:auto;
    transition:.35s ease;
}
.hlx-service-content a:hover{
    border-color:var(--primary);
    background:var(--primary);
    color:#fff;
    transform:rotate(-45deg);
}
/* =========================================
SIDE FADES
========================================= */
.hlx-services-slider-edge{
    position:absolute;
    top:0;
    bottom:25px;
    z-index:25;
    width:78px;
    pointer-events:none;
}
.hlx-services-edge-left{
    left:0;
    background:
        linear-gradient(
            90deg,
            #fff 0%,
            rgba(255,255,255,.86) 24%,
            rgba(255,255,255,0) 100%
        );
}
.hlx-services-edge-right{
    right:0;
    background:
        linear-gradient(
            270deg,
            #fff 0%,
            rgba(255,255,255,.86) 24%,
            rgba(255,255,255,0) 100%
        );
}
/* =========================================
CONTROLS
========================================= */
.hlx-services-controls{
    position:relative;
    z-index:40;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:-27px;
}
.hlx-services-prev,
.hlx-services-next{
    display:grid;
    width:54px;
    height:54px;
    flex:0 0 54px;
    padding:0;
    place-items:center;
    border:1px solid rgba(23,23,23,.15);
    border-radius:50%;
    outline:none;
    background:#fff;
    color:var(--ink);
    box-shadow:0 12px 30px rgba(0,0,0,.09);
    transition:.35s ease;
}
.hlx-services-prev span,
.hlx-services-next span{
    font-size:17px;
    line-height:1;
}
.hlx-services-prev:hover,
.hlx-services-next:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
    transform:scale(1.06);
}
/* =========================================
PROGRESS
========================================= */
.hlx-services-progress{
    width:210px;
    height:1px;
    margin-left:18px;
    background:rgba(23,23,23,.14);
}
.hlx-services-progress span{
    display:block;
    width:11.111%;
    height:2px;
    margin-top:-1px;
    background:var(--primary);
    box-shadow:0 0 8px rgba(254,0,0,.25);
    transition:width .5s ease;
}
/* =========================================
COUNTER
========================================= */
.hlx-services-counter{
    display:flex;
    align-items:baseline;
    gap:6px;
    margin-left:8px;
    font-family:var(--heading-font);
    font-size:9px;
    font-weight:700;
    letter-spacing:.08em;
}
.hlx-services-counter strong{
    color:var(--primary);
    font-size:13px;
}
.hlx-services-counter span{
    color:#888;
}
/* =========================================
BOTTOM LABEL
========================================= */
.hlx-services-footer{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-top:45px;
    color:#8c8c8c;
    font-family:var(--heading-font);
    font-size:7px;
    font-weight:700;
    letter-spacing:.2em;
    text-transform:uppercase;
}
.hlx-services-footer i{
    width:20px;
    height:1px;
    background:rgba(23,23,23,.15);
}
/* =========================================
KEYFRAMES
========================================= */
@keyframes hlxServicesHeaderIn{
    from{
        opacity:0;
        transform:translateY(-15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes hlxHeaderLine{
    0%{
        left:-20%;
        opacity:0;
    }
    15%{
        opacity:1;
    }
    55%{
        opacity:1;
    }
    100%{
        left:110%;
        opacity:0;
    }
}
@keyframes hlxMarkSweep{
    0%,100%{
        transform:rotate(-45deg) translateX(-3px);
    }
    50%{
        transform:rotate(-45deg) translateX(3px);
    }
}
@keyframes hlxEyebrowIn{
    from{
        opacity:0;
        transform:translateY(12px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes hlxEyebrowLineLeft{
    0%,100%{
        width:26px;
        transform:scaleX(1);
    }
    50%{
        width:42px;
        transform:scaleX(.7);
    }
}
@keyframes hlxEyebrowLineRight{
    0%,100%{
        width:26px;
        transform:scaleX(1);
    }
    50%{
        width:42px;
        transform:scaleX(.7);
    }
}
@keyframes hlxTitleReveal{
    from{
        opacity:0;
        transform:translateY(35px);
        filter:blur(8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
        filter:blur(0);
    }
}
@keyframes hlxItalicReveal{
    from{
        opacity:0;
        transform:translateX(35px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}
@keyframes hlxTitleLine{
    from{
        width:0;
    }
    to{
        width:170px;
    }
}
@keyframes hlxTitleLinePulse{
    0%,100%{
        left:0;
        opacity:1;
    }
    50%{
        left:100px;
        opacity:.45;
    }
}
@keyframes hlxTitleRing{
    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }
    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }
}
@keyframes hlxDescriptionIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes hlxButtonIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes hlxIndexIn{
    from{
        opacity:0;
        transform:translateX(-15px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}
@keyframes hlxFloatingWord{
    0%,100%{
        opacity:.45;
        transform:rotate(90deg) translateX(0);
    }
    50%{
        opacity:.8;
        transform:rotate(90deg) translateX(8px);
    }
}
@keyframes hlxServicesScan{
    0%{
        top:0;
        opacity:0;
    }
    15%{
        opacity:.6;
    }
    50%{
        opacity:.25;
    }
    100%{
        top:570px;
        opacity:0;
    }
}
@keyframes hlxServicesGridMove{
    from{
        background-position:0 0,0 0;
    }
    to{
        background-position:0 72px,72px 0;
    }
}
@keyframes hlxServicesOrbit{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
@keyframes hlxServicesOrbitReverse{
    from{
        transform:rotate(360deg);
    }
    to{
        transform:rotate(0deg);
    }
}
@keyframes hlxServicesLargeOrbit{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
@keyframes hlxServicesDotPulse{
    0%,100%{
        opacity:.4;
        transform:scale(.8);
    }
    50%{
        opacity:1;
        transform:scale(1.3);
    }
}
/* =========================================
LARGE DESKTOP
========================================= */
@media (min-width:1400px){
  
    .hlx-services-intro-index{
        left:-120px;
    }
    .hlx-services-floating-word{
        right:-220px;
    }
    .hlxServicesSwiper .swiper-slide{
        height:450px;
    }
    .hlx-service-content{
        bottom:82px;
        padding-inline:32px;
    }
    .hlx-service-content h3{
        max-width:75%;
        font-size:1.6rem;
    }
    .hlx-service-number{
        top:88px;
        left:32px;
    }
}
/* =========================================
1200 - 1399
========================================= */
@media (min-width:1200px) and (max-width:1399.98px){
   
    .hlx-services-intro-index{
        left:-65px;
    }
    .hlx-services-floating-word{
        right:-145px;
    }
    .hlxServicesSwiper .swiper-slide{
        height:430px;
    }
    .hlx-service-content{
        bottom:76px;
    }
    .hlx-service-content h3{
        font-size:1.45rem;
    }
}
/* =========================================
992 - 1199
========================================= */
@media (min-width:992px) and (max-width:1199.98px){


    .hlx-services-intro-index{
        display:none;
    }
    .hlx-services-floating-word{
        right:-100px;
    }
    .hlxServicesSwiper .swiper-slide{
        height:400px;
    }
    .hlxServicesSwiper::before,
    .hlxServicesSwiper::after{
        height:70px;
    }
    .hlx-service-number{
        top:76px;
        left:24px;
    }
    .hlx-service-content{
        bottom:70px;
        padding-inline:24px;
    }
    .hlx-service-content h3{
        max-width:75%;
        font-size:1.3rem;
    }
    .hlx-service-content a{
        right:22px;
        width:44px;
        height:44px;
    }
    .hlx-services-slider-edge{
        bottom:70px;
        width:60px;
    }
}
/* =========================================
TABLET
========================================= */
@media (min-width:768px) and (max-width:991.98px){
   
    .hlx-services-intro-index{
        display:none;
    }
    .hlx-services-floating-word{
        display:none;
    }
    .hlxServicesSwiper{
        padding-bottom:68px;
    }
    .hlxServicesSwiper .swiper-slide{
        height:390px;
    }
    .hlxServicesSwiper::before,
    .hlxServicesSwiper::after{
        height:65px;
    }
    .hlx-service-number{
        top:70px;
        left:22px;
    }
    .hlx-service-content{
        bottom:68px;
        padding-inline:22px;
    }
    .hlx-service-content > span{
        font-size:6.5px;
        margin-bottom:8px;
    }
    .hlx-service-content h3{
        max-width:78%;
        font-size:1.2rem;
    }
    .hlx-service-content a{
        right:20px;
        width:43px;
        height:43px;
    }
    .hlx-services-slider-edge{
        width:45px;
        bottom:68px;
    }
    .hlx-services-progress{
        width:150px;
    }
}
/* =========================================
MOBILE
========================================= */
@media (max-width:767.98px){
    .hlx-services-section{
        padding-block:var(--section-space-lg);
    }
  
    .hlx-services-header-label{
        display:none;
    }
    .hlx-services-brand{
        font-size:8px;
    }
    
    .hlx-services-intro-index{
        display:none;
    }
    .hlx-services-floating-word{
        display:none;
    }
    .hlx-services-title{
        font-size:clamp(2.45rem,11vw,3.7rem);
        line-height:.92;
    }
    .hlx-services-title::before{
        width:145px;
        height:145px;
    }
    .hlx-services-description{
        padding-inline:10px;
        font-size:12.5px;
    }
    .hlx-services-eyebrow{
        font-size:8px;
    }
    .hlx-services-title-line{
        margin-top:18px;
    }
    .hlxServicesSwiper{
        padding-bottom:58px;
    }
    .hlxServicesSwiper .swiper-slide{
        height:400px;
    }
    .hlxServicesSwiper::before{
        height:58px;
    }
    .hlxServicesSwiper::after{
        height:58px;
    }
    .hlx-service-number{
        top:66px;
        left:22px;
        font-size:8px;
    }
    .hlx-service-number::after{
        width:24px;
        margin-left:7px;
    }
    .hlx-service-content{
        bottom:63px;
        padding:0 22px;
    }
    .hlx-service-content > span{
        margin-bottom:9px;
        font-size:6.5px;
        letter-spacing:.22em;
    }
    .hlx-service-content h3{
        max-width:76%;
        font-size:1.35rem;
        line-height:1.06;
    }
    .hlx-service-content a{
        right:20px;
        bottom:-1px;
        width:43px;
        height:43px;
        font-size:14px;
    }
    .hlx-services-slider-edge{
        width:35px;
        bottom:58px;
    }
    .hlx-services-controls{
        margin-top:-15px;
    }
    .hlx-services-prev,
    .hlx-services-next{
        width:47px;
        height:47px;
        flex-basis:47px;
    }
    .hlx-services-progress{
        width:105px;
        margin-left:7px;
    }
    .hlx-services-counter{
        margin-left:4px;
    }
    .hlx-services-footer{
        flex-wrap:wrap;
        gap:9px;
        margin-top:35px;
    }
}
/* =========================================
SMALL MOBILE
========================================= */
@media (max-width:575.98px){
   
    .hlx-services-brand-mark{
        width:20px;
        height:20px;
    }

    .hlx-services-title{
        font-size:clamp(2.3rem,12vw,3.2rem);
    }
    .hlx-services-description{
        font-size:12px;
    }
    .hlx-services-explore{
        margin:22px;
    }
    .hlxServicesSwiper{
        padding-bottom:52px;
    }
    .hlxServicesSwiper .swiper-slide{
        height:380px;
    }
    .hlxServicesSwiper::before,
    .hlxServicesSwiper::after{
        height:52px;
    }
    .hlx-service-number{
        top:59px;
        left:19px;
    }
    .hlx-service-content{
        bottom:57px;
        padding-inline:19px;
    }
    .hlx-service-content h3{
        max-width:74%;
        font-size:1.22rem;
    }
    .hlx-service-content > span{
        font-size:6px;
        margin-bottom:7px;
    }
    .hlx-service-content a{
        right:17px;
        width:40px;
        height:40px;
    }
    .hlx-services-slider-edge{
        width:28px;
        bottom:52px;
    }
    .hlx-services-prev,
    .hlx-services-next{
        width:43px;
        height:43px;
        flex-basis:43px;
    }
    .hlx-services-progress{
        width:72px;
    }
}
/* =========================================
VERY SMALL MOBILE
========================================= */
@media (max-width:419.98px){
    .hlx-services-section{
        padding-block:var(--section-space-md);
    }
   
    .hlx-services-eyebrow{
        gap:8px;
        letter-spacing:.24em;
    }
    .hlx-services-eyebrow i{
        width:18px;
    }
    .hlx-services-title{
        font-size:2.25rem;
    }
    .hlx-services-title::before{
        width:115px;
        height:115px;
    }
    .hlxServicesSwiper .swiper-slide{
        height:365px;
    }
    .hlx-service-content{
        bottom:53px;
        padding-inline:17px;
    }
    .hlx-service-content h3{
        max-width:72%;
        font-size:1.12rem;
    }
    .hlx-service-content a{
        right:15px;
        width:38px;
        height:38px;
    }
    .hlx-service-number{
        top:56px;
        left:17px;
    }
    .hlx-services-progress{
        width:55px;
    }
    .hlx-services-counter{
        font-size:8px;
    }
}


/* =========================================
REDUCED MOTION
========================================= */
/* @media (prefers-reduced-motion:reduce){
    .hlx-services-section *,
    .hlx-services-section::after{
        animation:none!important;
        transition:none!important;
    }
} */


/* =========================================================
HELIX EXPERTISE
FLOATING STAGGERED CARD SYSTEM
========================================================= */
.hlx-expertise-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0 120px;
    background: #f4f7fa;
}
.hlx-expertise-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .42;
    background-image:
        linear-gradient(rgba(23,23,23,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,23,23,.045) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.hlx-expertise-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(254,0,0,.08), transparent 24%),
        radial-gradient(circle at 88% 75%, rgba(254,0,0,.06), transparent 25%);
}
.hlx-expertise-glow {
    position: absolute;
    z-index: -2;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: .18;
}
.hlx-expertise-glow-one {
    top: 8%;
    left: -220px;
    background: var(--primary);
}
.hlx-expertise-glow-two {
    right: -220px;
    bottom: 5%;
    background: #171717;
}
/* =========================================================
HEADING
========================================================= */
.hlx-expertise-heading {
    position: relative;
    z-index: 5;
    max-width: 1050px;
    margin: 0 auto 75px;
    text-align: center;
}
.hlx-expertise-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
}
.hlx-expertise-eyebrow i {
    display: block;
    width: 42px;
    height: 2px;
    background: var(--primary);
}
.hlx-expertise-heading h2 {
    margin: 0;
    color: #101010;
    font-family: var(--heading-font);
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.02;
}
.hlx-expertise-heading h2 em {
    color: var(--primary);
    font-style: normal;
}
.hlx-expertise-heading p {
    max-width: 720px;
    margin: 24px auto 0;
    color: #697178;
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.8;
}
/* =========================================================
CARD BOARD
========================================================= */
.hlx-expertise-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 38px;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 10px 35px;
}
/* =========================================================
CARD
========================================================= */
.hlx-expertise-card {
    position: relative;
    isolation: isolate;
    height: 310px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 25px;
    background: #fff;
    box-shadow:
        0 18px 45px rgba(17,25,35,.09),
        0 4px 12px rgba(17,25,35,.04);
    transform: translateY(0);
    transition:
        transform .55s cubic-bezier(.16,1,.3,1),
        box-shadow .55s ease,
        border-color .35s ease;
    will-change: transform;
    animation: hlxExpertiseFloat 6s ease-in-out infinite;
}
.hlx-expertise-card:nth-child(1) {
    animation-delay: -.4s;
}
.hlx-expertise-card:nth-child(2) {
    animation-delay: -2s;
}
.hlx-expertise-card:nth-child(3) {
    animation-delay: -3.2s;
}
.hlx-expertise-card:nth-child(4) {
    animation-delay: -1.4s;
}
.hlx-expertise-card:nth-child(5) {
    animation-delay: -4s;
}
.hlx-expertise-card:nth-child(6) {
    animation-delay: -2.6s;
}
/* =========================================================
STAGGERED ALIGNMENT
========================================================= */
.hlx-expertise-card-2,
.hlx-expertise-card-5 {
    transform: translateY(34px);
}
.hlx-expertise-card-2:hover,
.hlx-expertise-card-5:hover {
    transform: translateY(19px) scale(1.035);
}
.hlx-expertise-card-1:hover,
.hlx-expertise-card-3:hover,
.hlx-expertise-card-4:hover,
.hlx-expertise-card-6:hover {
    transform: translateY(-15px) scale(1.035);
}
/* =========================================================
IMAGE
========================================================= */
.hlx-expertise-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    background: #e7ebee;
}
.hlx-expertise-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
    transition:
        transform .8s cubic-bezier(.16,1,.3,1),
        filter .5s ease;
}
.hlx-expertise-card:hover .hlx-expertise-image img {
    transform: scale(1.1);
    filter: saturate(1.08) contrast(1.04);
}
/* =========================================================
DARK IMAGE GRADIENT
========================================================= */
.hlx-expertise-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(7,11,15,.05) 0%,
            rgba(7,11,15,.02) 34%,
            rgba(7,11,15,.16) 52%,
            rgba(7,11,15,.86) 100%
        );
    transition: background .45s ease;
}
.hlx-expertise-card:hover .hlx-expertise-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(7,11,15,.08) 0%,
            rgba(7,11,15,.04) 30%,
            rgba(7,11,15,.22) 48%,
            rgba(7,11,15,.92) 100%
        );
}
/* =========================================================
HOVER SHINE
========================================================= */
.hlx-expertise-shine {
    position: absolute;
    z-index: 4;
    top: -30%;
    left: -75%;
    width: 45%;
    height: 170%;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,.04) 25%,
        rgba(255,255,255,.62) 50%,
        rgba(255,255,255,.04) 75%,
        transparent 100%
    );
    transform: rotate(20deg);
}
.hlx-expertise-card:hover .hlx-expertise-shine {
    opacity: 1;
    animation: hlxExpertiseShine .9s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes hlxExpertiseShine {
    0% {
        left: -75%;
    }
    100% {
        left: 145%;
    }
}
/* =========================================================
FLOAT ANIMATION
========================================================= */
@keyframes hlxExpertiseFloat {
    0%,
    100% {
        margin-top: 0;
    }
    50% {
        margin-top: -7px;
    }
}
/* =========================================================
TOP BADGE
========================================================= */
.hlx-expertise-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 5px;
    background: rgba(12,15,18,.46);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--heading-font);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1;
}
/* =========================================================
CORNER ARROW
========================================================= */
.hlx-expertise-corner {
    position: absolute;
    top: 17px;
    right: 18px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: rgba(12,15,18,.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 17px;
    transition:
        background .35s ease,
        color .35s ease,
        transform .4s cubic-bezier(.16,1,.3,1);
}
.hlx-expertise-card:hover .hlx-expertise-corner {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}
/* =========================================================
CONTENT
========================================================= */
.hlx-expertise-content {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 5;
}
.hlx-expertise-content span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.72);
    font-family: var(--heading-font);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
    line-height: 1;
}
.hlx-expertise-content h3 {
    margin: 0;
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(1.55rem, 2.1vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1;
    text-transform: uppercase;
}
.hlx-expertise-content p {
    max-width: 280px;
    margin: 9px 0 0;
    color: rgba(255,255,255,.76);
    font-family: var(--body-font);
    font-size: 11px;
    line-height: 1.5;
}
/* =========================================================
BOTTOM RED LINE
========================================================= */
.hlx-expertise-line {
    position: absolute;
    right: 24px;
    bottom: 17px;
    left: 24px;
    z-index: 6;
    height: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.22);
}
.hlx-expertise-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width .6s cubic-bezier(.16,1,.3,1);
}
.hlx-expertise-card:hover .hlx-expertise-line::after {
    width: 100%;
}
/* =========================================================
FOOTER META
========================================================= */
.hlx-expertise-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1220px;
    margin: 40px auto 0;
    padding: 17px 10px 0;
    border-top: 1px solid rgba(23,23,23,.12);
    color: #737b80;
    font-family: var(--heading-font);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}
.hlx-expertise-footer span:nth-child(2) {
    color: var(--primary);
}
/* =========================================================
TABLET
========================================================= */
@media (max-width: 1100px) {
    .hlx-expertise-section {
        padding: 90px 0 100px;
    }
    .hlx-expertise-board {
        column-gap: 22px;
        row-gap: 30px;
    }
    .hlx-expertise-card {
        height: 285px;
    }
    .hlx-expertise-card-2,
    .hlx-expertise-card-5 {
        transform: translateY(25px);
    }
    .hlx-expertise-card-2:hover,
    .hlx-expertise-card-5:hover {
        transform: translateY(10px) scale(1.025);
    }
}
/* =========================================================
TABLET / SMALL LAPTOP
========================================================= */
@media (max-width: 900px) {
    .hlx-expertise-heading {
        margin-bottom: 55px;
    }
    .hlx-expertise-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }
    .hlx-expertise-card {
        height: 300px;
    }
    .hlx-expertise-card-2,
    .hlx-expertise-card-5 {
        transform: translateY(0);
    }
    .hlx-expertise-card-2:hover,
    .hlx-expertise-card-5:hover {
        transform: translateY(-12px) scale(1.025);
    }
    .hlx-expertise-card-3,
    .hlx-expertise-card-6 {
        transform: translateY(25px);
    }
    .hlx-expertise-card-3:hover,
    .hlx-expertise-card-6:hover {
        transform: translateY(13px) scale(1.025);
    }
}
/* =========================================================
MOBILE
========================================================= */
@media (max-width: 650px) {
    .hlx-expertise-section {
        padding: 75px 0 80px;
    }
    .hlx-expertise-heading {
        margin-bottom: 42px;
    }
    .hlx-expertise-heading h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }
    .hlx-expertise-heading p {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.7;
    }
    .hlx-expertise-board {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-inline: 0;
    }
    .hlx-expertise-card,
    .hlx-expertise-card-2,
    .hlx-expertise-card-3,
    .hlx-expertise-card-4,
    .hlx-expertise-card-5,
    .hlx-expertise-card-6 {
        height: 310px;
        transform: none;
    }
    .hlx-expertise-card:hover,
    .hlx-expertise-card-2:hover,
    .hlx-expertise-card-3:hover,
    .hlx-expertise-card-4:hover,
    .hlx-expertise-card-5:hover,
    .hlx-expertise-card-6:hover {
        transform: translateY(-8px) scale(1.015);
    }
    .hlx-expertise-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 35px;
    }
}
/* =========================================================
SMALL MOBILE
========================================================= */
@media (max-width: 420px) {
    .hlx-expertise-section {
        padding: 60px 0 70px;
    }
    .hlx-expertise-card {
        height: 285px;
        border-radius: 20px;
    }
    .hlx-expertise-content {
        right: 19px;
        bottom: 21px;
        left: 19px;
    }
    .hlx-expertise-badge {
        top: 14px;
        left: 14px;
    }
    .hlx-expertise-corner {
        top: 13px;
        right: 14px;
        width: 34px;
        height: 34px;
    }
    .hlx-expertise-line {
        right: 19px;
        bottom: 14px;
        left: 19px;
    }
}
/* =========================================================
REDUCED MOTION
========================================================= */
/* @media (prefers-reduced-motion: reduce) {
    .hlx-expertise-card {
        animation: none;
        transition: none;
    }
    .hlx-expertise-shine {
        display: none;
    }
    .hlx-expertise-image img,
    .hlx-expertise-corner,
    .hlx-expertise-line::after {
        transition: none;
    }
} */