/* ==========================================================================
   Vanya Traders — Global Design System
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */

:root {
  /* Brand Colors */
  --he-color-primary-blue: #0A3D91;
  --he-color-primary-green: #00A676;
  --he-color-white: #FFFFFF;
  --he-color-black: #000000;

  /* Text Colors */
  --he-color-text: #1E293B;
  --he-color-text-muted: #64748B;
  --he-color-text-light: #94A3B8;
  --he-color-text-inverse: #FFFFFF;

  /* Gray Scale */
  --he-gray-50: #F8FAFC;
  --he-gray-100: #F1F5F9;
  --he-gray-200: #E2E8F0;
  --he-gray-300: #CBD5E1;
  --he-gray-400: #94A3B8;
  --he-gray-500: #64748B;
  --he-gray-600: #475569;
  --he-gray-700: #334155;
  --he-gray-800: #1E293B;
  --he-gray-900: #0F172A;

  /* Surface Colors */
  --he-color-border: #E2E8F0;
  --he-color-border-dark: #CBD5E1;
  --he-color-section-bg: #F8FAFC;
  --he-color-section-bg-alt: #F1F5F9;
  --he-color-card-bg: #FFFFFF;

  /* Shadow Colors */
  --he-shadow-color: rgba(10, 61, 145, 0.08);
  --he-shadow-color-md: rgba(10, 61, 145, 0.12);
  --he-shadow-color-lg: rgba(10, 61, 145, 0.16);
  --he-shadow-color-green: rgba(0, 166, 118, 0.15);

  /* Gradients */
  --he-gradient-primary: linear-gradient(135deg, var(--he-color-primary-blue) 0%, #0D4FB5 50%, var(--he-color-primary-green) 100%);
  --he-gradient-blue: linear-gradient(135deg, #0A3D91 0%, #1565C0 100%);
  --he-gradient-green: linear-gradient(135deg, #008F65 0%, #00A676 100%);
  --he-gradient-overlay: linear-gradient(180deg, rgba(10, 61, 145, 0.7) 0%, rgba(0, 166, 118, 0.5) 100%);
  --he-gradient-subtle: linear-gradient(180deg, var(--he-gray-50) 0%, var(--he-color-white) 100%);

  /* Typography */
  --he-font-family: 'Poppins', sans-serif;
  --he-font-weight-light: 300;
  --he-font-weight-regular: 400;
  --he-font-weight-medium: 500;
  --he-font-weight-semibold: 600;
  --he-font-weight-bold: 700;
  --he-font-weight-extrabold: 800;

  /* Layout */
  --he-container-width: 1280px;
  --he-container-narrow: 960px;
  --he-container-wide: 1440px;
  --he-navbar-height: 80px;

  /* Border Radius */
  --he-radius-sm: 4px;
  --he-radius-md: 8px;
  --he-radius-lg: 12px;
  --he-radius-xl: 16px;
  --he-radius-2xl: 24px;
  --he-radius-full: 9999px;

  /* Transitions */
  --he-transition-speed: 0.3s;
  --he-transition-speed-fast: 0.15s;
  --he-transition-speed-slow: 0.5s;
  --he-transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --he-transition-ease-in: cubic-bezier(0.4, 0, 1, 1);
  --he-transition-ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* Animation */
  --he-animation-duration: 0.6s;
  --he-animation-duration-fast: 0.3s;
  --he-animation-duration-slow: 1s;
  --he-animation-delay: 0s;
  --he-animation-ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing Scale */
  --he-space-1: 0.25rem;   /* 4px */
  --he-space-2: 0.5rem;    /* 8px */
  --he-space-3: 0.75rem;   /* 12px */
  --he-space-4: 1rem;      /* 16px */
  --he-space-5: 1.25rem;   /* 20px */
  --he-space-6: 1.5rem;    /* 24px */
  --he-space-8: 2rem;      /* 32px */
  --he-space-10: 2.5rem;   /* 40px */
  --he-space-12: 3rem;     /* 48px */
  --he-space-16: 4rem;     /* 64px */
  --he-space-20: 5rem;     /* 80px */
  --he-space-24: 6rem;     /* 96px */
  --he-space-32: 8rem;     /* 128px */

  /* Z-Index System */
  --he-z-dropdown: 100;
  --he-z-sticky: 200;
  --he-z-fixed: 300;
  --he-z-navbar: 400;
  --he-z-overlay: 500;
  --he-z-modal: 600;
  --he-z-popover: 700;
  --he-z-tooltip: 800;

  /* Shadows */
  --he-shadow-sm: 0 1px 2px var(--he-shadow-color);
  --he-shadow-md: 0 4px 12px var(--he-shadow-color-md);
  --he-shadow-lg: 0 8px 24px var(--he-shadow-color-lg);
  --he-shadow-xl: 0 16px 48px var(--he-shadow-color-lg);
  --he-shadow-card: 0 2px 8px var(--he-shadow-color), 0 8px 24px var(--he-shadow-color-md);
  --he-shadow-card-hover: 0 8px 32px var(--he-shadow-color-lg), 0 4px 12px var(--he-shadow-color-green);

  /* Selection */
  --he-selection-bg: rgba(10, 61, 145, 0.2);
  --he-selection-color: var(--he-color-primary-blue);
}


/* --------------------------------------------------------------------------
   12. Reset — Browser Default Spacing
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* --------------------------------------------------------------------------
   10. Smooth Scroll
   -------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* --------------------------------------------------------------------------
   9. Selection Color
   -------------------------------------------------------------------------- */

::selection {
  background-color: var(--he-selection-bg);
  color: var(--he-selection-color);
}

::-moz-selection {
  background-color: var(--he-selection-bg);
  color: var(--he-selection-color);
}


/* --------------------------------------------------------------------------
   8. Scrollbar Styling — Premium Blue + Green Theme
   -------------------------------------------------------------------------- */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--he-color-primary-green) var(--he-gray-100);
}

/* WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--he-gray-100);
  border-radius: var(--he-radius-full);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--he-color-primary-blue) 0%, var(--he-color-primary-green) 100%);
  border-radius: var(--he-radius-full);
  border: 2px solid var(--he-gray-100);
  transition: background var(--he-transition-speed) var(--he-transition-ease);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0D4FB5 0%, #00BF85 100%);
}

::-webkit-scrollbar-corner {
  background: var(--he-gray-100);
}


/* --------------------------------------------------------------------------
   11. Default Body Styles
   -------------------------------------------------------------------------- */

body {
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-regular);
  line-height: 1.6;
  color: var(--he-color-text);
  background-color: var(--he-color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}


/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */

.he-display {
  font-family: var(--he-font-family);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--he-font-weight-extrabold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--he-color-text);
}

.he-h1,
h1.he-heading {
  font-family: var(--he-font-family);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--he-color-text);
}

.he-h2,
h2.he-heading {
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--he-color-text);
}

.he-h3,
h3.he-heading {
  font-family: var(--he-font-family);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: var(--he-font-weight-semibold);
  line-height: 1.3;
  color: var(--he-color-text);
}

.he-h4,
h4.he-heading {
  font-family: var(--he-font-family);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: var(--he-font-weight-semibold);
  line-height: 1.4;
  color: var(--he-color-text);
}

.he-paragraph,
p.he-text {
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-regular);
  line-height: 1.7;
  color: var(--he-color-text);
}

.he-text-small {
  font-family: var(--he-font-family);
  font-size: 0.875rem;
  font-weight: var(--he-font-weight-regular);
  line-height: 1.6;
  color: var(--he-color-text-muted);
}

.he-text-button {
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Typography Color Modifiers */
.he-text-primary {
  color: var(--he-color-primary-blue);
}

.he-text-green {
  color: var(--he-color-primary-green);
}

.he-text-muted {
  color: var(--he-color-text-muted);
}

.he-text-inverse {
  color: var(--he-color-text-inverse);
}

.he-text-gradient {
  background: var(--he-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */

.he-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--he-space-2);
  padding: var(--he-space-3) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: var(--he-radius-md);
  cursor: pointer;
  transition:
    background-color var(--he-transition-speed) var(--he-transition-ease),
    color var(--he-transition-speed) var(--he-transition-ease),
    border-color var(--he-transition-speed) var(--he-transition-ease),
    box-shadow var(--he-transition-speed) var(--he-transition-ease),
    transform var(--he-transition-speed-fast) var(--he-transition-ease);
}

.he-btn:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-btn:disabled,
.he-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary Button */
.he-btn-primary {
  background-color: var(--he-color-primary-blue);
  color: var(--he-color-white);
  border-color: var(--he-color-primary-blue);
  box-shadow: var(--he-shadow-sm);
}

.he-btn-primary:hover:not(:disabled) {
  background-color: #083578;
  border-color: #083578;
  box-shadow: var(--he-shadow-md);
  transform: translateY(-1px);
}

.he-btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: var(--he-shadow-sm);
}

/* Secondary Button */
.he-btn-secondary {
  background-color: var(--he-color-primary-green);
  color: var(--he-color-white);
  border-color: var(--he-color-primary-green);
  box-shadow: var(--he-shadow-sm);
}

.he-btn-secondary:hover:not(:disabled) {
  background-color: #008F65;
  border-color: #008F65;
  box-shadow: var(--he-shadow-md);
  transform: translateY(-1px);
}

.he-btn-secondary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: var(--he-shadow-sm);
}

/* Outline Button */
.he-btn-outline {
  background-color: transparent;
  color: var(--he-color-primary-blue);
  border-color: var(--he-color-primary-blue);
}

.he-btn-outline:hover:not(:disabled) {
  background-color: var(--he-color-primary-blue);
  color: var(--he-color-white);
  box-shadow: var(--he-shadow-sm);
  transform: translateY(-1px);
}

.he-btn-outline:active:not(:disabled) {
  transform: translateY(0);
}

/* Button Size Modifiers */
.he-btn-sm {
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.8125rem;
}

.he-btn-lg {
  padding: var(--he-space-4) var(--he-space-8);
  font-size: 1rem;
}


/* --------------------------------------------------------------------------
   4. Cards
   -------------------------------------------------------------------------- */

.he-card {
  background-color: var(--he-color-card-bg);
  border: 1px solid var(--he-color-border);
  border-radius: var(--he-radius-lg);
  box-shadow: var(--he-shadow-card);
  overflow: hidden;
  transition:
    box-shadow var(--he-transition-speed) var(--he-transition-ease),
    transform var(--he-transition-speed) var(--he-transition-ease),
    border-color var(--he-transition-speed) var(--he-transition-ease);
}

.he-card-body {
  padding: var(--he-space-6);
}

.he-card-hover:hover {
  box-shadow: var(--he-shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--he-color-border-dark);
}

.he-card-flat {
  box-shadow: none;
}

.he-card-bordered {
  border: 1px solid var(--he-color-border);
  box-shadow: none;
}


/* --------------------------------------------------------------------------
   5. Global Utility Classes
   -------------------------------------------------------------------------- */

/* Section Padding */
.he-section {
  padding-top: var(--he-space-20);
  padding-bottom: var(--he-space-20);
}

.he-section-sm {
  padding-top: var(--he-space-12);
  padding-bottom: var(--he-space-12);
}

.he-section-lg {
  padding-top: var(--he-space-24);
  padding-bottom: var(--he-space-24);
}

.he-section-bg {
  background-color: var(--he-color-section-bg);
}

.he-section-bg-alt {
  background-color: var(--he-color-section-bg-alt);
}

/* Container */
.he-container {
  width: 100%;
  max-width: var(--he-container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--he-space-6);
  padding-right: var(--he-space-6);
}

.he-container-narrow {
  max-width: var(--he-container-narrow);
}

.he-container-wide {
  max-width: var(--he-container-wide);
}

/* Grid Helpers */
.he-grid {
  display: grid;
  gap: var(--he-space-6);
}

.he-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.he-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.he-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.he-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Flex Helpers */
.he-flex {
  display: flex;
}

.he-flex-col {
  display: flex;
  flex-direction: column;
}

.he-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.he-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.he-flex-wrap {
  flex-wrap: wrap;
}

.he-flex-1 {
  flex: 1;
}

.he-items-center {
  align-items: center;
}

.he-justify-center {
  justify-content: center;
}

.he-gap-2 { gap: var(--he-space-2); }
.he-gap-4 { gap: var(--he-space-4); }
.he-gap-6 { gap: var(--he-space-6); }
.he-gap-8 { gap: var(--he-space-8); }

/* Text Helpers */
.he-text-center { text-align: center; }
.he-text-left { text-align: left; }
.he-text-right { text-align: right; }

.he-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.he-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Margin Helpers */
.he-mx-auto { margin-left: auto; margin-right: auto; }
.he-mt-4 { margin-top: var(--he-space-4); }
.he-mt-6 { margin-top: var(--he-space-6); }
.he-mt-8 { margin-top: var(--he-space-8); }
.he-mb-4 { margin-bottom: var(--he-space-4); }
.he-mb-6 { margin-bottom: var(--he-space-6); }
.he-mb-8 { margin-bottom: var(--he-space-8); }

/* Visibility Helpers */
.he-hidden { display: none !important; }
.he-visible { visibility: visible; }
.he-invisible { visibility: hidden; }

.he-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Grid Breakpoints */
@media (max-width: 1024px) {
  .he-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .he-section {
    padding-top: var(--he-space-16);
    padding-bottom: var(--he-space-16);
  }

  .he-section-lg {
    padding-top: var(--he-space-20);
    padding-bottom: var(--he-space-20);
  }

  .he-grid-2,
  .he-grid-3,
  .he-grid-4 {
    grid-template-columns: 1fr;
  }

  .he-container {
    padding-left: var(--he-space-4);
    padding-right: var(--he-space-4);
  }
}


/* --------------------------------------------------------------------------
   6. Image Styling
   -------------------------------------------------------------------------- */

.he-img-responsive {
  display: block;
  width: 100%;
  height: auto;
}

.he-img-rounded {
  border-radius: var(--he-radius-lg);
  overflow: hidden;
}

.he-img-rounded-full {
  border-radius: var(--he-radius-full);
  overflow: hidden;
}

.he-img-hero {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.he-object-cover {
  object-fit: cover;
}

.he-object-contain {
  object-fit: contain;
}

.he-object-center {
  object-position: center;
}

.he-aspect-video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.he-aspect-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}


/* --------------------------------------------------------------------------
   7. Animation Utilities
   -------------------------------------------------------------------------- */

.he-animate-fade-in {
  animation: heFadeIn var(--he-animation-duration) var(--he-animation-ease) var(--he-animation-delay) both;
}

.he-animate-slide-up {
  animation: heSlideUp var(--he-animation-duration) var(--he-animation-ease) var(--he-animation-delay) both;
}

.he-animate-slide-down {
  animation: heSlideDown var(--he-animation-duration) var(--he-animation-ease) var(--he-animation-delay) both;
}

@keyframes heFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heSlideDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Delay Modifiers */
.he-delay-100 { animation-delay: 0.1s; }
.he-delay-200 { animation-delay: 0.2s; }
.he-delay-300 { animation-delay: 0.3s; }
.he-delay-500 { animation-delay: 0.5s; }


/* ==========================================================================
   Premium Top Bar
   ========================================================================== */

#header {
  --he-topbar-height: 40px;
}

@media (max-width: 1024px) {
  #header {
    --he-topbar-height: 38px;
  }
}

@media (max-width: 479px) {
  #header {
    --he-topbar-height: 0px;
  }
}

.he-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--he-topbar-height);
  z-index: calc(var(--he-z-navbar) + 1);
  background: linear-gradient(90deg, #0A3D91 0%, #00A676 100%);
  overflow: hidden;
}

.he-topbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 100%
  );
  animation: heTopbarShine 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heTopbarShine {
  0% {
    left: -80%;
  }
  50%, 100% {
    left: 130%;
  }
}

.he-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--he-space-4);
}

.he-topbar__left {
  display: flex;
  align-items: center;
  gap: var(--he-space-4);
  min-width: 0;
}

.he-topbar__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.he-topbar__link,
.he-topbar__gst {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-2);
  font-family: var(--he-font-family);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.he-topbar__icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--he-transition-ease);
}

.he-topbar__divider {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  user-select: none;
}

/* Phone hover */
.he-topbar__link--phone {
  transition: color 0.3s var(--he-transition-ease);
}

.he-topbar__link--phone:hover {
  color: #ffffff;
}

.he-topbar__link--phone:hover .he-topbar__icon {
  transform: scale(1.15);
}

/* Mail hover — underline animation */
.he-topbar__link--mail {
  position: relative;
  transition: color 0.3s var(--he-transition-ease);
}

.he-topbar__link--mail::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--he-transition-ease);
}

.he-topbar__link--mail:hover::after {
  transform: scaleX(1);
}

.he-topbar__link--mail:hover .he-topbar__icon {
  transform: translateY(-1px);
}

/* GST soft glow */
.he-topbar__gst {
  transition: text-shadow 0.35s var(--he-transition-ease);
}

.he-topbar__gst:hover {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}

.he-topbar__gst:hover .he-topbar__icon {
  transform: scale(1.1);
}

.he-topbar__link:focus-visible,
.he-topbar__gst:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
  border-radius: var(--he-radius-sm);
}

/* Tablet — reduced spacing */
@media (max-width: 1024px) {
  .he-topbar__inner {
    gap: var(--he-space-3);
  }

  .he-topbar__left {
    gap: var(--he-space-3);
  }

  .he-topbar__link,
  .he-topbar__gst {
    font-size: 12px;
  }
}

/* Mobile — hide GST */
@media (max-width: 767px) {
  .he-topbar__right {
    display: none;
  }

  .he-topbar__inner {
    justify-content: center;
  }

  .he-topbar__left {
    gap: var(--he-space-3);
  }

  .he-topbar__link span,
  .he-topbar__gst span {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .he-topbar__link span {
    max-width: none;
  }
}

/* Very small mobile — hide top bar */
@media (max-width: 479px) {
  .he-topbar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-topbar::after {
    animation: none;
  }
}


/* ==========================================================================
   Header / Navbar — Premium Corporate V2
   ========================================================================== */

/* Component injection wrapper */
#header {
  position: relative;
  z-index: var(--he-z-navbar);
  height: calc(var(--he-header-height, 98px) + var(--he-topbar-height, 40px));
  overflow: hidden;
  transition: height 0.35s var(--he-transition-ease);
}

#header.he-header--scrolled {
  --he-header-height: 80px;
}

@media (max-width: 1024px) {
  #header {
    --he-header-height: 86px;
  }

  #header.he-header--scrolled {
    --he-header-height: 74px;
  }
}

@media (max-width: 768px) {
  #header {
    --he-header-height: 78px;
  }

  #header.he-header--scrolled {
    --he-header-height: 68px;
  }
}

/* Base Navbar — solid white corporate bar */
.he-navbar {
  --he-header-h: 98px;
  position: fixed;
  top: var(--he-topbar-height, 40px);
  left: 0;
  width: 100%;
  height: var(--he-header-h);
  z-index: var(--he-z-navbar);
  background-color: var(--he-color-white);
  border-bottom: 1px solid #ECECEC;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition:
    height 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

/* Scrolled — compact white header, stronger shadow */
.he-navbar.he-navbar--scrolled {
  --he-header-h: 80px;
  box-shadow: 0 4px 24px rgba(10, 61, 145, 0.1);
}

@media (max-width: 1024px) {
  .he-navbar {
    --he-header-h: 86px;
  }

  .he-navbar.he-navbar--scrolled {
    --he-header-h: 74px;
  }
}

@media (max-width: 768px) {
  .he-navbar {
    --he-header-h: 78px;
  }

  .he-navbar.he-navbar--scrolled {
    --he-header-h: 68px;
  }
}

/* Inner layout */
.he-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--he-space-6);
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}

/* Logo */
.he-navbar__logo {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-shrink: 0;
  height: 100%;
  max-height: 100%;
  padding-left: var(--he-space-4);
  padding-right: var(--he-space-8);
  margin-right: var(--he-space-4);
  line-height: 0;
}

.he-navbar__logo-img {
  display: block;
  height: auto;
  width: auto;
  max-height: min(70px, calc(var(--he-header-h) - 26px));
  max-width: 240px;
  object-fit: contain;
  object-position: left center;
}

.he-mobile-menu .he-navbar__logo-img--mobile {
  max-height: 44px;
  width: auto;
}

/* Desktop Navigation */
.he-navbar__nav {
  display: none;
  flex: 1;
  justify-content: center;
}

@media (min-width: 1024px) {
  .he-navbar__nav {
    display: flex;
  }
}

.he-navbar__menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.he-navbar__item {
  position: relative;
}

/* Nav Links */
.he-navbar .he-nav-link {
  position: relative;
  display: inline-block;
  padding: var(--he-space-2) 0;
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0A3D91;
  transition:
    color 0.3s var(--he-transition-ease),
    text-shadow 0.3s var(--he-transition-ease);
}

.he-navbar .he-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0A3D91 0%, #00A676 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--he-transition-ease);
}

.he-navbar .he-nav-link:hover {
  color: #00A676;
}

.he-navbar .he-nav-link:hover::after {
  transform: scaleX(1);
}

/* Active Link */
.he-navbar .he-nav-link.he-nav-link--active {
  color: #0A3D91;
  text-shadow: 0 0 14px rgba(0, 166, 118, 0.35);
}

.he-navbar .he-nav-link.he-nav-link--active::after {
  background: #00A676;
  transform: scaleX(1);
  box-shadow: 0 0 8px rgba(0, 166, 118, 0.5);
}

.he-navbar .he-nav-link:focus-visible {
  outline: 2px solid #0A3D91;
  outline-offset: 4px;
  border-radius: var(--he-radius-sm);
}

/* Actions */
.he-navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--he-space-4);
  flex-shrink: 0;
  padding-right: var(--he-space-2);
}

/* CTA Button — gradient pill */
.he-navbar__cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 1.625rem;
  font-family: var(--he-font-family);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--he-color-white);
  background: linear-gradient(135deg, #0A3D91 0%, #00A676 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(10, 61, 145, 0.22);
  cursor: pointer;
  transition:
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

@media (min-width: 1024px) {
  .he-navbar__cta {
    display: inline-flex;
  }
}

.he-navbar__cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 8px 28px rgba(10, 61, 145, 0.32),
    0 0 24px rgba(0, 166, 118, 0.3);
}

.he-navbar__cta:active {
  transform: translateY(0) scale(1);
}

.he-navbar__cta:focus-visible {
  outline: 2px solid #0A3D91;
  outline-offset: 3px;
}

/* Hamburger — white on blue, rounded */
.he-navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background-color: #0A3D91;
  border-radius: var(--he-radius-lg);
  transition: background-color 0.3s var(--he-transition-ease);
}

@media (min-width: 1024px) {
  .he-navbar__toggle {
    display: none;
  }
}

.he-navbar__toggle:hover {
  background-color: #083578;
}

.he-navbar__toggle:focus-visible {
  outline: 2px solid #0A3D91;
  outline-offset: 3px;
}

.he-navbar__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--he-color-white);
  border-radius: var(--he-radius-full);
  transition:
    transform 0.35s var(--he-transition-ease),
    opacity 0.25s var(--he-transition-ease);
}

.he-navbar__toggle[aria-expanded='true'] .he-navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.he-navbar__toggle[aria-expanded='true'] .he-navbar__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.he-navbar__toggle[aria-expanded='true'] .he-navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.he-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--he-z-overlay);
  background-color: rgba(8, 35, 78, 0.65);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--he-transition-ease),
    visibility 0.35s var(--he-transition-ease);
}

.he-mobile-overlay.he-mobile-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu — navy slide panel */
.he-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--he-z-modal);
  display: flex;
  flex-direction: column;
  width: min(100%, 360px);
  height: 100dvh;
  background-color: #0A3D91;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform 0.4s var(--he-transition-ease),
    visibility 0.4s var(--he-transition-ease);
  overflow-y: auto;
}

.he-mobile-menu.he-mobile-menu--open {
  transform: translateX(0);
  visibility: visible;
}

.he-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--he-space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.he-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--he-color-white);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--he-radius-lg);
  transition:
    background-color 0.25s var(--he-transition-ease),
    color 0.25s var(--he-transition-ease);
}

.he-mobile-menu__close:hover {
  background-color: rgba(0, 166, 118, 0.25);
  color: #00A676;
}

.he-mobile-menu__close:focus-visible {
  outline: 2px solid var(--he-color-white);
  outline-offset: 2px;
}

.he-mobile-menu__nav {
  flex: 1;
  padding: var(--he-space-6);
}

.he-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-1);
}

.he-mobile-nav-link {
  display: block;
  padding: var(--he-space-4) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--he-color-white);
  border-left: 3px solid transparent;
  border-radius: 0 var(--he-radius-md) var(--he-radius-md) 0;
  transition:
    color 0.3s var(--he-transition-ease),
    background-color 0.3s var(--he-transition-ease),
    border-color 0.3s var(--he-transition-ease);
}

.he-mobile-nav-link:hover {
  color: #00A676;
  background-color: rgba(255, 255, 255, 0.06);
}

.he-mobile-nav-link.he-nav-link--active {
  font-weight: 600;
  color: var(--he-color-white);
  border-left-color: #00A676;
  background-color: rgba(0, 166, 118, 0.12);
}

.he-mobile-nav-link:focus-visible {
  outline: 2px solid #00A676;
  outline-offset: 2px;
}

.he-mobile-menu__footer {
  padding: var(--he-space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.he-mobile-menu__cta {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* Body scroll lock */
body.he-menu-open {
  overflow: hidden;
}


/* ==========================================================================
   Hero Section
   ========================================================================== */

.he-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

/* Background Image */
.he-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.he-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.12);
  will-change: transform;
  transition: transform 1.8s var(--he-transition-ease-out);
}

.he-hero.he-hero--loaded .he-hero__bg-img {
  transform: scale(1);
}

/* Dark Brand Overlay */
.he-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10, 61, 145, 0.88) 0%,
    rgba(10, 61, 145, 0.72) 35%,
    rgba(8, 53, 120, 0.55) 60%,
    rgba(0, 166, 118, 0.18) 100%
  );
  pointer-events: none;
}

/* Container & Grid */
.he-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--he-navbar-height) + var(--he-space-8));
  padding-bottom: var(--he-space-20);
}

.he-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--he-space-12);
}

.he-hero__content {
  max-width: 640px;
}

.he-hero__aside {
  /* Intentionally empty — banner visual lives here */
}

/* Badge */
.he-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--he-space-2) var(--he-space-4);
  margin-bottom: var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 0.8125rem;
  font-weight: var(--he-font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--he-color-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--he-radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--he-transition-ease),
    transform 0.7s var(--he-transition-ease);
}

.he-hero.he-hero--loaded .he-hero__badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Heading */
.he-hero__heading {
  font-family: var(--he-font-family);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--he-color-white);
  margin-bottom: var(--he-space-6);
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--he-transition-ease),
    transform 0.8s var(--he-transition-ease);
}

.he-hero__heading-accent {
  font-weight: var(--he-font-weight-extrabold);
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(0, 166, 118, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.he-hero.he-hero--loaded .he-hero__heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Supporting Text */
.he-hero__text {
  font-family: var(--he-font-family);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: var(--he-font-weight-regular);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: var(--he-space-8);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--he-transition-ease),
    transform 0.8s var(--he-transition-ease);
}

.he-hero.he-hero--loaded .he-hero__text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* CTA Buttons */
.he-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--he-space-4);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--he-transition-ease),
    transform 0.8s var(--he-transition-ease);
}

.he-hero.he-hero--loaded .he-hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.85s;
}

.he-hero__btn-primary {
  border-radius: var(--he-radius-full);
  box-shadow: 0 4px 20px rgba(10, 61, 145, 0.4);
}

.he-hero__btn-primary:hover {
  box-shadow:
    0 6px 24px rgba(10, 61, 145, 0.45),
    0 0 28px rgba(0, 166, 118, 0.35);
  transform: translateY(-2px) scale(1.03);
}

.he-hero__btn-secondary {
  border-radius: var(--he-radius-full);
}

/* Outline Light — for dark hero backgrounds */
.he-btn-outline-light {
  background-color: transparent;
  color: var(--he-color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.he-btn-outline-light:hover {
  background-color: var(--he-color-white);
  color: var(--he-color-primary-blue);
  border-color: var(--he-color-white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.he-btn-outline-light:focus-visible {
  outline: 2px solid var(--he-color-white);
  outline-offset: 3px;
}

/* Scroll Indicator */
.he-hero__scroll {
  position: absolute;
  bottom: var(--he-space-8);
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--he-space-2);
  color: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.8s var(--he-transition-ease) 1.2s;
}

.he-hero.he-hero--loaded .he-hero__scroll {
  opacity: 1;
}

.he-hero__scroll-text {
  font-family: var(--he-font-family);
  font-size: 0.6875rem;
  font-weight: var(--he-font-weight-medium);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.he-hero__scroll-icon {
  display: flex;
  animation: heScrollBounce 2s var(--he-transition-ease) infinite;
}

.he-hero__scroll:hover {
  color: var(--he-color-white);
}

.he-hero__scroll:focus-visible {
  outline: 2px solid var(--he-color-white);
  outline-offset: 4px;
  border-radius: var(--he-radius-sm);
}

@keyframes heScrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .he-hero {
    min-height: 90vh;
  }

  .he-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--he-space-8);
  }

  .he-hero__aside {
    display: none;
  }

  .he-hero__container {
    padding-top: calc(var(--he-navbar-height) + var(--he-space-6));
    padding-bottom: var(--he-space-16);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .he-hero {
    min-height: 80vh;
  }

  .he-hero__container {
    padding-top: calc(var(--he-navbar-height) + var(--he-space-4));
    padding-bottom: var(--he-space-12);
  }

  .he-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .he-hero__actions .he-btn {
    width: 100%;
    justify-content: center;
  }

  .he-hero__scroll {
    bottom: var(--he-space-6);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .he-hero__bg-img {
    transform: scale(1);
    transition: none;
  }

  .he-hero__badge,
  .he-hero__heading,
  .he-hero__text,
  .he-hero__actions,
  .he-hero__scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .he-hero__scroll-icon {
    animation: none;
  }
}


/* ==========================================================================
   Procurement Process Section
   ========================================================================== */

.he-process {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FBFD 0%, #FFFFFF 100%);
}

.he-process__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.he-process__blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(10, 61, 145, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 61, 145, 0.6) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(10, 61, 145, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0, 166, 118, 0.06) 0%, transparent 40%);
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%;
}

.he-process__grid-texture {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(10, 61, 145, 0.15) 23px,
      rgba(10, 61, 145, 0.15) 24px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 23px,
      rgba(10, 61, 145, 0.15) 23px,
      rgba(10, 61, 145, 0.15) 24px
    );
}

.he-process__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: he-process-blob-drift 14s ease-in-out infinite alternate;
}

.he-process__blob--1 {
  top: -8%;
  right: -4%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(10, 61, 145, 0.12) 0%, transparent 70%);
}

.he-process__blob--2 {
  bottom: -10%;
  left: -6%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 166, 118, 0.1) 0%, transparent 70%);
  animation-delay: -4s;
}

@keyframes he-process-blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(24px, -18px) scale(1.06); }
}

.he-process__float-circle {
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(10, 61, 145, 0.08);
  background: rgba(255, 255, 255, 0.35);
  animation: he-process-float 10s ease-in-out infinite;
}

.he-process__float-circle--1 {
  top: 18%;
  left: 6%;
  width: 72px;
  height: 72px;
}

.he-process__float-circle--2 {
  top: 62%;
  right: 8%;
  width: 48px;
  height: 48px;
  animation-delay: -3s;
}

.he-process__float-circle--3 {
  bottom: 14%;
  left: 42%;
  width: 36px;
  height: 36px;
  animation-delay: -6s;
}

@keyframes he-process-float {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-16px); opacity: 0.85; }
}

.he-process__container {
  position: relative;
  z-index: 1;
}

.he-process__header {
  max-width: 720px;
  margin: 0 auto var(--he-space-8);
  text-align: center;
}

.he-process__badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.1);
  border-radius: var(--he-radius-full);
}

.he-process__title {
  margin-bottom: var(--he-space-3);
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--he-color-text);
}

.he-process__desc {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--he-color-text-muted);
}

.he-process [data-process-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--he-transition-ease),
    transform 0.65s var(--he-transition-ease);
}

.he-process [data-process-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-process__timeline {
  position: relative;
  width: 85%;
  max-width: 1080px;
  margin: 0 auto var(--he-space-10);
  padding-top: var(--he-space-4);
}

.he-process__svg-layer {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 100px;
}

.he-process__svg {
  display: none;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.he-process__svg--desktop {
  display: block;
}

.he-process__path-track {
  fill: none;
  stroke: rgba(10, 61, 145, 0.12);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke 0.35s var(--he-transition-ease);
}

.he-process__path-draw {
  fill: none;
  stroke: url(#he-process-grad-desktop);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition:
    stroke-dashoffset 2.8s cubic-bezier(0.4, 0, 0.2, 1),
    stroke-width 0.35s var(--he-transition-ease),
    filter 0.35s var(--he-transition-ease);
}

.he-process:has(.he-process__step:hover) .he-process__path-track,
.he-process:has(.he-process__step:focus-visible) .he-process__path-track {
  stroke: rgba(10, 61, 145, 0.22);
}

.he-process:has(.he-process__step:hover) .he-process__path-draw,
.he-process:has(.he-process__step:focus-visible) .he-process__path-draw {
  stroke-width: 3.5;
  filter: brightness(1.18) drop-shadow(0 0 6px rgba(0, 166, 118, 0.35));
}

.he-process__svg--tablet .he-process__path-draw {
  stroke: url(#he-process-grad-tablet);
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
}

.he-process__svg--mobile .he-process__path-draw {
  stroke: url(#he-process-grad-desktop);
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.he-process.he-is-animated .he-process__path-draw {
  stroke-dashoffset: 0;
}

.he-process__path-dot {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.he-process.he-is-animated .he-process__path-dot {
  opacity: 1;
}

.he-process__steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--he-space-5);
}

.he-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s var(--he-transition-ease),
    transform 0.5s var(--he-transition-ease);
}

.he-process__step.he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-process__node {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  margin-top: -4px;
  margin-bottom: 28px;
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border: 3px solid var(--he-color-white);
  border-radius: var(--he-radius-full);
  box-shadow:
    0 10px 28px rgba(10, 61, 145, 0.26),
    0 4px 16px rgba(0, 166, 118, 0.2),
    0 0 0 4px rgba(10, 61, 145, 0.06);
  transition:
    transform 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease),
    filter 0.4s var(--he-transition-ease);
}

.he-process__step.he-is-active .he-process__node {
  box-shadow:
    0 0 0 8px rgba(10, 61, 145, 0.14),
    0 0 32px rgba(0, 166, 118, 0.42),
    0 12px 32px rgba(10, 61, 145, 0.3);
  animation: he-process-node-bounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes he-process-node-bounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.he-process__step:hover .he-process__node,
.he-process__step:focus-visible .he-process__node {
  transform: rotate(5deg);
  box-shadow:
    0 0 0 10px rgba(10, 61, 145, 0.12),
    0 0 36px rgba(0, 166, 118, 0.48),
    0 16px 40px rgba(10, 61, 145, 0.32);
  filter: brightness(1.1);
}

.he-process__step:focus-visible {
  outline: none;
}

.he-process__step:focus-visible .he-process__step-body {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 4px;
  border-radius: var(--he-radius-lg);
}

.he-process__step-body {
  width: 100%;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.he-process__step-label {
  display: block;
  margin-bottom: var(--he-space-2);
  font-family: var(--he-font-family);
  font-size: 0.6875rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--he-color-primary-green);
}

.he-process__step-title {
  margin-bottom: 14px;
  font-family: var(--he-font-family);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--he-color-text);
  transition: color 0.35s var(--he-transition-ease);
}

.he-process__step:hover .he-process__step-title,
.he-process__step:focus-visible .he-process__step-title {
  color: var(--he-color-primary-blue);
}

.he-process__step-desc {
  max-width: 220px;
  margin: 0 auto;
  font-family: var(--he-font-family);
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
  color: var(--he-color-text-muted);
}

.he-process__cta-wrap {
  display: flex;
  justify-content: center;
}

.he-process__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-3);
  padding: var(--he-space-4) var(--he-space-10);
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-white);
  text-decoration: none;
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow:
    0 8px 28px rgba(10, 61, 145, 0.28),
    0 4px 14px rgba(0, 166, 118, 0.18);
  transition:
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

.he-process__cta:hover,
.he-process__cta:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(10, 61, 145, 0.38),
    0 8px 22px rgba(0, 166, 118, 0.26);
}

.he-process__cta:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-process__cta-arrow {
  display: inline-block;
  transition: transform 0.35s var(--he-transition-ease);
}

.he-process__cta:hover .he-process__cta-arrow,
.he-process__cta:focus-visible .he-process__cta-arrow {
  transform: translateX(6px);
}

/* Tablet — 3×2 */
@media (max-width: 1024px) {
  .he-process__svg--desktop {
    display: none;
  }

  .he-process__svg--tablet {
    display: block;
  }

  .he-process__svg-layer {
    top: 18px;
    left: 5%;
    right: 5%;
    height: 100%;
    bottom: 0;
  }

  .he-process__timeline {
    width: 92%;
  }

  .he-process__steps {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: var(--he-space-8) var(--he-space-5);
    row-gap: 140px;
  }
}

/* Mobile — vertical */
@media (max-width: 640px) {
  .he-process__svg--tablet {
    display: none;
  }

  .he-process__svg--mobile {
    display: block;
  }

  .he-process__svg-layer {
    top: 0;
    left: 35px;
    right: auto;
    width: 80px;
    height: 100%;
  }

  .he-process__header {
    text-align: left;
    margin-bottom: var(--he-space-7);
  }

  .he-process__desc {
    margin: 0;
  }

  .he-process__timeline {
    width: 100%;
    padding-top: var(--he-space-3);
  }

  .he-process__steps {
    grid-template-columns: 1fr;
    gap: var(--he-space-8);
    padding-left: 88px;
  }

  .he-process__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: var(--he-space-5);
  }

  .he-process__node {
    position: absolute;
    left: -88px;
    margin-bottom: 0;
  }

  .he-process__step-body {
    padding: 18px 12px;
    align-items: flex-start;
  }

  .he-process__step-desc {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .he-process__step-title {
    font-size: 1.25rem;
  }

  .he-process__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-process__blob,
  .he-process__float-circle {
    animation: none;
  }

  .he-process [data-process-animate],
  .he-process__step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .he-process__path-draw {
    stroke-dashoffset: 0 !important;
    transition: none;
  }

  .he-process__path-dot {
    opacity: 0.6;
  }

  .he-process__step.he-is-active .he-process__node {
    animation: none;
  }

  .he-process__step:hover .he-process__node,
  .he-process__step:focus-visible .he-process__node {
    transform: none;
  }

  .he-process__cta:hover,
  .he-process__cta:focus-visible {
    transform: none;
  }

  .he-process__cta:hover .he-process__cta-arrow,
  .he-process__cta:focus-visible .he-process__cta-arrow {
    transform: none;
  }
}

/* ==========================================================================
   Business Highlights Section
   ========================================================================== */

.he-highlights {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 110px;
  background: linear-gradient(
    180deg,
    #F5F9FF 0%,
    #FAFCFF 40%,
    #FFFFFF 100%
  );
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.04);
}

.he-highlights__top-curve {
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 2;
  width: 110%;
  height: 44px;
  background: linear-gradient(180deg, #FAFCFF 0%, #F5F9FF 100%);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.he-highlights__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.he-highlights__blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(10, 61, 145, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 61, 145, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
}

.he-highlights__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.04;
  animation: he-highlights-deco-float 18s ease-in-out infinite alternate;
}

.he-highlights__blob--1 {
  top: -6%;
  right: -3%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(10, 61, 145, 0.9) 0%, transparent 70%);
}

.he-highlights__blob--2 {
  bottom: -8%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 166, 118, 0.8) 0%, transparent 70%);
  animation-delay: -6s;
}

.he-highlights__deco {
  position: absolute;
  display: block;
  opacity: 0.04;
  animation: he-highlights-deco-float 14s ease-in-out infinite;
}

.he-highlights__deco--circle-1 {
  top: 22%;
  left: 8%;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(10, 61, 145, 0.6);
  border-radius: 50%;
  background: rgba(10, 61, 145, 0.08);
}

.he-highlights__deco--circle-2 {
  bottom: 18%;
  right: 10%;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0, 166, 118, 0.5);
  border-radius: 50%;
  animation-delay: -4s;
}

.he-highlights__deco--square-1 {
  top: 14%;
  right: 18%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(10, 61, 145, 0.45);
  border-radius: 6px;
  transform: rotate(12deg);
  animation-delay: -2s;
}

.he-highlights__deco--square-2 {
  bottom: 24%;
  left: 14%;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(10, 61, 145, 0.4);
  border-radius: 4px;
  transform: rotate(-8deg);
  animation-delay: -8s;
}

@keyframes he-highlights-deco-float {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(var(--he-hl-rot, 0deg));
  }

  50% {
    transform: translateY(-14px) translateX(8px) rotate(var(--he-hl-rot, 0deg));
  }
}

.he-highlights__deco--square-1 {
  --he-hl-rot: 12deg;
}

.he-highlights__deco--square-2 {
  --he-hl-rot: -8deg;
}

.he-highlights .he-container {
  position: relative;
  z-index: 1;
}

/* Section Header */
.he-highlights__header {
  max-width: 720px;
  margin-bottom: var(--he-space-12);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.he-highlights__eyebrow {
  display: inline-block;
  margin-bottom: var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.8125rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--he-color-primary-green);
}

.he-highlights__title {
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--he-color-text);
  margin-bottom: var(--he-space-4);
}

.he-highlights__desc {
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-regular);
  line-height: 1.75;
  color: var(--he-color-text-muted);
}

/* Cards Grid */
.he-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
}

/* Scroll Reveal Animation */
.he-highlights [data-highlight-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s var(--he-transition-ease),
    transform 0.6s var(--he-transition-ease),
    box-shadow var(--he-transition-speed) var(--he-transition-ease),
    border-color var(--he-transition-speed) var(--he-transition-ease),
    background-color var(--he-transition-speed) var(--he-transition-ease);
}

.he-highlights [data-highlight-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Highlight Card */
.he-highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--he-space-8);
  background-color: #FFFFFF;
  border: 1px solid rgba(20, 70, 140, 0.08);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(15, 45, 90, 0.08);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease),
    border-color 0.4s var(--he-transition-ease);
}

.he-highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--he-gradient-primary);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--he-transition-speed) var(--he-transition-ease);
  pointer-events: none;
}

.he-highlight-card.he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-highlight-card:hover,
.he-highlight-card:focus-visible {
  transform: translateY(-12px);
  border-color: rgba(10, 61, 145, 0.35);
  background-color: #FFFFFF;
  box-shadow:
    0 28px 60px rgba(15, 45, 90, 0.14),
    0 12px 32px rgba(10, 61, 145, 0.1),
    0 0 0 1px rgba(10, 61, 145, 0.12);
}

.he-highlight-card:hover::before,
.he-highlight-card:focus-visible::before {
  opacity: 1;
}

.he-highlight-card:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

/* Icon Circle */
.he-highlight-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--he-space-6);
  color: var(--he-color-primary-blue);
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.08) 0%, rgba(0, 166, 118, 0.08) 100%);
  border-radius: var(--he-radius-full);
  transition:
    transform var(--he-transition-speed) var(--he-transition-ease),
    color var(--he-transition-speed) var(--he-transition-ease),
    background var(--he-transition-speed) var(--he-transition-ease);
}

.he-highlight-card:hover .he-highlight-card__icon,
.he-highlight-card:focus-visible .he-highlight-card__icon {
  transform: scale(1.08);
  color: var(--he-color-primary-green);
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.12) 0%, rgba(0, 166, 118, 0.15) 100%);
}

.he-highlight-card__title {
  font-family: var(--he-font-family);
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-semibold);
  line-height: 1.35;
  color: var(--he-color-text);
  margin-bottom: var(--he-space-3);
}

.he-highlight-card__text {
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-regular);
  line-height: 1.65;
  color: var(--he-color-text-muted);
}

/* Stagger Animation Delays */
.he-highlights__header.he-is-visible {
  transition-delay: 0s;
}

.he-highlights__grid .he-highlight-card:nth-child(1).he-is-visible { transition-delay: 0.1s; }
.he-highlights__grid .he-highlight-card:nth-child(2).he-is-visible { transition-delay: 0.2s; }
.he-highlights__grid .he-highlight-card:nth-child(3).he-is-visible { transition-delay: 0.3s; }
.he-highlights__grid .he-highlight-card:nth-child(4).he-is-visible { transition-delay: 0.4s; }

/* Tablet — 2x2 Grid */
@media (max-width: 1024px) {
  .he-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--he-space-5);
  }

  .he-highlights__header {
    margin-bottom: var(--he-space-10);
  }
}

/* Mobile — 1 Column */
@media (max-width: 768px) {
  .he-highlights__grid {
    grid-template-columns: 1fr;
    gap: var(--he-space-4);
  }

  .he-highlight-card {
    padding: var(--he-space-6);
  }

  .he-highlights__header {
    text-align: left;
    margin-bottom: var(--he-space-8);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .he-highlights__blob,
  .he-highlights__deco {
    animation: none;
  }

  .he-highlight-card,
  .he-highlights__header {
    opacity: 1;
    transform: none;
    transition: box-shadow var(--he-transition-speed) var(--he-transition-ease),
                border-color var(--he-transition-speed) var(--he-transition-ease);
  }

  .he-highlight-card:hover,
  .he-highlight-card:focus-visible {
    transform: none;
  }

  .he-highlight-card:hover .he-highlight-card__icon,
  .he-highlight-card:focus-visible .he-highlight-card__icon {
    transform: none;
  }
}


/* ==========================================================================
   About Section — Premium Corporate
   ========================================================================== */

.he-about {
  position: relative;
  background-color: #FAFCFE;
  background-image:
    radial-gradient(ellipse 80% 60% at 8% 15%, rgba(10, 61, 145, 0.045) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 85%, rgba(0, 166, 118, 0.04) 0%, transparent 55%);
  overflow: hidden;
}

.he-about__container {
  position: relative;
  z-index: 1;
}

/* Background Decoration */
.he-about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.he-about__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 61, 145, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
}

.he-about__deco {
  position: absolute;
  color: var(--he-color-primary-blue);
  opacity: 0.05;
  animation: heAboutFloat 25s ease-in-out infinite;
}

.he-about__deco--square-1 {
  top: 12%;
  right: 8%;
  width: 80px;
  height: 80px;
  border: 1px solid currentColor;
  border-radius: var(--he-radius-md);
  animation-duration: 28s;
}

.he-about__deco--square-2 {
  bottom: 18%;
  left: 5%;
  width: 56px;
  height: 56px;
  border: 1px solid var(--he-color-primary-green);
  color: var(--he-color-primary-green);
  border-radius: var(--he-radius-sm);
  animation-duration: 22s;
  animation-delay: -5s;
}

.he-about__deco--rect-1 {
  top: 55%;
  right: 15%;
  width: 120px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: var(--he-radius-full);
  animation-duration: 30s;
  animation-delay: -10s;
}

.he-about__deco--rect-2 {
  top: 8%;
  left: 42%;
  width: 64px;
  height: 64px;
  border: 1px solid currentColor;
  border-radius: var(--he-radius-xl);
  animation-duration: 26s;
  animation-delay: -15s;
}

.he-about__deco--wire {
  bottom: 10%;
  right: 28%;
  width: 100px;
  height: 100px;
  animation-duration: 24s;
  animation-delay: -8s;
}

@keyframes heAboutFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(12px, -18px) rotate(3deg);
  }
  66% {
    transform: translate(-8px, 10px) rotate(-2deg);
  }
}

/* Grid Layout */
.he-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--he-space-16);
}

/* Media — Image */
.he-about__media {
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.9s var(--he-transition-ease),
    transform 0.9s var(--he-transition-ease);
}

.he-about__media.he-is-visible {
  opacity: 1;
  transform: translateX(0);
}

.he-about__image-wrap {
  position: relative;
  max-width: 700px;
  aspect-ratio: 700 / 850;
  border-radius: var(--he-radius-2xl);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(10, 61, 145, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06);
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s var(--he-transition-ease);
}

.he-about__image-wrap:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-3deg);
}

.he-about__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-about__image-wrap:hover .he-about__image {
  transform: scale(1.02);
}

/* Floating Glass Cards */
.he-about__float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--he-space-1);
  padding: var(--he-space-4) var(--he-space-5);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--he-radius-xl);
  box-shadow: 0 8px 32px rgba(10, 61, 145, 0.1);
  animation: heAboutCardFloat 6s ease-in-out infinite;
}

.he-about__float-card--tl {
  top: 8%;
  left: -4%;
  animation-delay: 0s;
}

.he-about__float-card--br {
  bottom: 10%;
  right: -4%;
  animation-delay: -3s;
}

@keyframes heAboutCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.he-about__float-value {
  font-family: var(--he-font-family);
  font-size: 1.75rem;
  font-weight: var(--he-font-weight-bold);
  line-height: 1;
  color: var(--he-color-primary-blue);
}

.he-about__float-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.he-about__float-title {
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-text);
}

.he-about__float-label {
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-medium);
  color: var(--he-color-text-muted);
  letter-spacing: 0.02em;
}

/* Content */
.he-about__content {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-4);
}

.he-about [data-about-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--he-transition-ease),
    transform 0.7s var(--he-transition-ease);
}

.he-about [data-about-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-about__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: var(--he-radius-full);
}

.he-about__title {
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--he-color-text);
  margin-bottom: var(--he-space-2);
}

.he-about__text {
  font-family: var(--he-font-family);
  font-size: 1.03125rem;
  font-weight: var(--he-font-weight-regular);
  line-height: 1.78;
  color: var(--he-color-text-muted);
  max-width: 560px;
}

/* Premium Stat Cards */
.he-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-4);
  margin-top: var(--he-space-6);
  margin-bottom: var(--he-space-4);
}

.he-about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-2);
  padding: var(--he-space-5);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(10, 61, 145, 0.08);
  border-radius: var(--he-radius-xl);
  box-shadow: 0 4px 20px rgba(10, 61, 145, 0.06);
  transition:
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease),
    border-color 0.35s var(--he-transition-ease);
}

.he-about__stat:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 118, 0.2);
  box-shadow: 0 12px 36px rgba(10, 61, 145, 0.1);
}

.he-about__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--he-color-primary-blue);
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.08) 0%, rgba(0, 166, 118, 0.08) 100%);
  border-radius: var(--he-radius-lg);
}

.he-about__stat-value-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.he-about__stat-value {
  font-family: var(--he-font-family);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1;
  color: var(--he-color-primary-blue);
}

.he-about__stat-suffix {
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-primary-green);
}

.he-about__stat-title {
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  line-height: 1.3;
  color: var(--he-color-text);
}

.he-about__stat-desc {
  font-family: var(--he-font-family);
  font-size: 0.8125rem;
  font-weight: var(--he-font-weight-regular);
  line-height: 1.5;
  color: var(--he-color-text-muted);
}

/* CTA Button */
.he-about__cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  margin-top: var(--he-space-2);
  padding: var(--he-space-3) var(--he-space-8);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.02em;
  color: var(--he-color-white);
  background: linear-gradient(135deg, #0A3D91 0%, #0A3D91 100%);
  border-radius: var(--he-radius-full);
  box-shadow: 0 4px 16px rgba(10, 61, 145, 0.25);
  transition:
    background 0.4s var(--he-transition-ease),
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

.he-about__cta:hover {
  background: linear-gradient(135deg, #0A3D91 0%, #00A676 100%);
  transform: translateY(-3px);
  box-shadow:
    0 8px 28px rgba(10, 61, 145, 0.3),
    0 0 24px rgba(0, 166, 118, 0.25);
}

.he-about__cta:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

/* Stagger delays */
.he-about__content [data-about-animate]:nth-child(1).he-is-visible { transition-delay: 0.05s; }
.he-about__content [data-about-animate]:nth-child(2).he-is-visible { transition-delay: 0.12s; }
.he-about__content [data-about-animate]:nth-child(3).he-is-visible { transition-delay: 0.2s; }
.he-about__content [data-about-animate]:nth-child(4).he-is-visible { transition-delay: 0.28s; }
.he-about__content [data-about-animate]:nth-child(5).he-is-visible { transition-delay: 0.36s; }
.he-about__content [data-about-animate]:nth-child(6).he-is-visible { transition-delay: 0.44s; }

/* Tablet */
@media (max-width: 1024px) {
  .he-about__grid {
    grid-template-columns: 1fr;
    gap: var(--he-space-12);
  }

  .he-about__media {
    transform: translateY(32px);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .he-about__media.he-is-visible {
    transform: translateY(0);
  }

  .he-about__float-card--tl {
    left: 2%;
  }

  .he-about__float-card--br {
    right: 2%;
  }

  .he-about__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .he-about__stats {
    grid-template-columns: 1fr;
  }

  .he-about__float-card {
    padding: var(--he-space-3) var(--he-space-4);
  }

  .he-about__float-value {
    font-size: 1.375rem;
  }

  .he-about__float-card--tl {
    top: 4%;
    left: 0;
  }

  .he-about__float-card--br {
    bottom: 4%;
    right: 0;
  }

  .he-about__cta {
    width: 100%;
    justify-content: center;
  }

  .he-about__deco {
    opacity: 0.03;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .he-about__deco,
  .he-about__float-card {
    animation: none;
  }

  .he-about__media,
  .he-about [data-about-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .he-about__image-wrap:hover,
  .he-about__image-wrap:hover .he-about__image {
    transform: none;
  }
}


/* ==========================================================================
   Services Section
   ========================================================================== */

.he-services {
  background-color: var(--he-color-white);
  background-image:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(10, 61, 145, 0.03) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0, 166, 118, 0.03) 0%, transparent 55%);
}

/* Section Header */
.he-services__header {
  max-width: 780px;
  margin-bottom: var(--he-space-12);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.he-services__badge {
  display: inline-block;
  margin-bottom: var(--he-space-4);
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.1);
  border-radius: var(--he-radius-full);
}

.he-services__title {
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--he-color-text);
  margin-bottom: var(--he-space-4);
}

.he-services__desc {
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-regular);
  line-height: 1.75;
  color: var(--he-color-text-muted);
}

/* Scroll Reveal */
.he-services [data-services-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s var(--he-transition-ease),
    transform 0.65s var(--he-transition-ease),
    box-shadow var(--he-transition-speed) var(--he-transition-ease),
    border-color var(--he-transition-speed) var(--he-transition-ease),
    background-color var(--he-transition-speed) var(--he-transition-ease);
}

.he-services [data-services-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services Grid */
.he-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-6);
}

/* Service Card */
.he-services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--he-space-8);
  background-color: var(--he-color-card-bg);
  border: 1px solid var(--he-color-border);
  border-radius: var(--he-radius-2xl);
  box-shadow: 0 2px 16px rgba(10, 61, 145, 0.06);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease),
    border-color 0.4s var(--he-transition-ease),
    background-color 0.4s var(--he-transition-ease);
}

.he-services__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #0A3D91 0%, #00A676 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--he-transition-ease);
  pointer-events: none;
}

.he-services__card:hover,
.he-services__card:focus-visible {
  transform: translateY(-8px);
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 16px 48px rgba(10, 61, 145, 0.12),
    0 6px 20px rgba(0, 166, 118, 0.08);
}

.he-services__card:hover::before,
.he-services__card:focus-visible::before {
  opacity: 1;
}

.he-services__card:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

/* Icon */
.he-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: var(--he-space-6);
  color: var(--he-color-primary-blue);
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.08) 0%, rgba(0, 166, 118, 0.08) 100%);
  border-radius: var(--he-radius-full);
  transition:
    transform 0.4s var(--he-transition-ease),
    color 0.4s var(--he-transition-ease),
    background 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease);
}

.he-services__card:hover .he-services__icon,
.he-services__card:focus-visible .he-services__icon {
  transform: scale(1.1) translateY(-2px);
  color: var(--he-color-primary-green);
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.12) 0%, rgba(0, 166, 118, 0.16) 100%);
  box-shadow: 0 4px 16px rgba(0, 166, 118, 0.15);
}

.he-services__card-title {
  font-family: var(--he-font-family);
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-semibold);
  line-height: 1.35;
  color: var(--he-color-text);
  margin-bottom: var(--he-space-3);
}

.he-services__card-text {
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-regular);
  line-height: 1.65;
  color: var(--he-color-text-muted);
}

/* Stagger Delays */
.he-services__header.he-is-visible { transition-delay: 0s; }
.he-services__grid .he-services__card:nth-child(1).he-is-visible { transition-delay: 0.08s; }
.he-services__grid .he-services__card:nth-child(2).he-is-visible { transition-delay: 0.16s; }
.he-services__grid .he-services__card:nth-child(3).he-is-visible { transition-delay: 0.24s; }
.he-services__grid .he-services__card:nth-child(4).he-is-visible { transition-delay: 0.32s; }
.he-services__grid .he-services__card:nth-child(5).he-is-visible { transition-delay: 0.4s; }
.he-services__grid .he-services__card:nth-child(6).he-is-visible { transition-delay: 0.48s; }

/* CTA */
.he-services__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--he-space-12);
}

.he-services__cta {
  display: inline-flex;
  align-items: center;
  padding: var(--he-space-3) var(--he-space-8);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.02em;
  color: var(--he-color-white);
  background: linear-gradient(135deg, #0A3D91 0%, #0A3D91 100%);
  border-radius: var(--he-radius-full);
  box-shadow: 0 4px 16px rgba(10, 61, 145, 0.25);
  transition:
    background 0.4s var(--he-transition-ease),
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

.he-services__cta:hover {
  background: linear-gradient(135deg, #0A3D91 0%, #00A676 100%);
  transform: translateY(-3px);
  box-shadow:
    0 8px 28px rgba(10, 61, 145, 0.3),
    0 0 24px rgba(0, 166, 118, 0.25);
}

.he-services__cta:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-services__cta-wrap.he-is-visible {
  transition-delay: 0.55s;
}

/* Tablet — 2 columns */
@media (max-width: 1024px) {
  .he-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--he-space-5);
  }

  .he-services__header {
    margin-bottom: var(--he-space-10);
  }
}

/* Mobile — 1 column */
@media (max-width: 768px) {
  .he-services__grid {
    grid-template-columns: 1fr;
    gap: var(--he-space-4);
  }

  .he-services__card {
    padding: var(--he-space-6);
  }

  .he-services__header {
    text-align: left;
    margin-bottom: var(--he-space-8);
  }

  .he-services__cta-wrap {
    margin-top: var(--he-space-8);
  }

  .he-services__cta {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .he-services [data-services-animate] {
    opacity: 1;
    transform: none;
    transition: box-shadow var(--he-transition-speed) var(--he-transition-ease),
                border-color var(--he-transition-speed) var(--he-transition-ease);
  }

  .he-services__card:hover,
  .he-services__card:focus-visible {
    transform: none;
  }

  .he-services__card:hover .he-services__icon,
  .he-services__card:focus-visible .he-services__icon {
    transform: none;
  }
}

/* ============================================================
   Industries We Serve
   ============================================================ */

.he-industries {
  position: relative;
  min-height: auto;
  padding: 72px 0 56px;
  overflow: hidden;
  color: var(--he-color-white);
}

.he-industries__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #050f23;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.he-industries__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      rgba(5, 15, 35, 0.88) 0%,
      rgba(5, 15, 35, 0.78) 45%,
      rgba(5, 20, 40, 0.82) 100%
    );
  animation: he-industries-overlay-shift 12s ease-in-out infinite alternate;
}

@keyframes he-industries-overlay-shift {
  0% {
    background:
      linear-gradient(
        135deg,
        rgba(5, 15, 35, 0.88) 0%,
        rgba(5, 15, 35, 0.78) 45%,
        rgba(5, 20, 40, 0.82) 100%
      );
  }

  100% {
    background:
      linear-gradient(
        145deg,
        rgba(5, 18, 38, 0.86) 0%,
        rgba(8, 22, 48, 0.8) 50%,
        rgba(5, 15, 35, 0.84) 100%
      );
  }
}

.he-industries__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.he-industries__particle {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 12px rgba(0, 166, 118, 0.35);
  animation: he-industries-float 8s ease-in-out infinite;
}

.he-industries__particle:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; animation-duration: 9s; }
.he-industries__particle:nth-child(2) { top: 28%; left: 82%; animation-delay: 1.2s; animation-duration: 11s; width: 3px; height: 3px; }
.he-industries__particle:nth-child(3) { top: 55%; left: 15%; animation-delay: 2.4s; animation-duration: 10s; width: 5px; height: 5px; }
.he-industries__particle:nth-child(4) { top: 68%; left: 72%; animation-delay: 0.8s; animation-duration: 12s; }
.he-industries__particle:nth-child(5) { top: 38%; left: 48%; animation-delay: 3s; animation-duration: 9.5s; width: 3px; height: 3px; opacity: 0.7; }
.he-industries__particle:nth-child(6) { top: 82%; left: 35%; animation-delay: 1.8s; animation-duration: 10.5s; }

@keyframes he-industries-float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-28px) translateX(12px);
    opacity: 0.85;
  }
}

.he-industries__container {
  position: relative;
  z-index: 3;
  max-width: 1320px;
}

.he-industries__header {
  max-width: 720px;
  margin: 0 auto var(--he-space-8);
  text-align: center;
}

.he-industries__badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--he-radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.he-industries__title {
  margin-bottom: var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--he-color-white);
}

.he-industries__desc {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--he-font-family);
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.he-industries [data-industries-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s var(--he-transition-ease),
    transform 0.65s var(--he-transition-ease),
    box-shadow var(--he-transition-speed) var(--he-transition-ease),
    border-color var(--he-transition-speed) var(--he-transition-ease),
    background-color var(--he-transition-speed) var(--he-transition-ease);
}

.he-industries [data-industries-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.he-industries__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  max-height: 240px;
  padding: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 28px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease),
    border-color 0.4s var(--he-transition-ease),
    background 0.4s var(--he-transition-ease);
}

.he-industries__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.9) 0%, rgba(0, 166, 118, 0.9) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--he-transition-ease);
  pointer-events: none;
}

.he-industries__card:hover,
.he-industries__card:focus-visible {
  transform: translateY(-8px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 44px rgba(10, 61, 145, 0.26),
    0 8px 24px rgba(0, 166, 118, 0.16);
}

.he-industries__card:hover::before,
.he-industries__card:focus-visible::before {
  opacity: 1;
}

.he-industries__card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.he-industries__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--he-radius-full);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.4s var(--he-transition-ease),
    background 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease);
}

.he-industries__card:hover .he-industries__icon,
.he-industries__card:focus-visible .he-industries__icon {
  transform: scale(1.1);
  color: var(--he-color-white);
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.45) 0%, rgba(0, 166, 118, 0.45) 100%);
  box-shadow: 0 4px 16px rgba(0, 166, 118, 0.35);
}

.he-industries__card-title {
  margin-bottom: 12px;
  font-family: var(--he-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--he-color-white);
}

.he-industries__card-text {
  font-family: var(--he-font-family);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.he-industries__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--he-space-4);
  margin-top: var(--he-space-8);
}

.he-industries__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-3);
  padding: var(--he-space-4) var(--he-space-10);
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-white);
  text-decoration: none;
  background: var(--he-gradient-primary);
  border: none;
  border-radius: var(--he-radius-full);
  box-shadow:
    0 8px 28px rgba(10, 61, 145, 0.35),
    0 4px 16px rgba(0, 166, 118, 0.2);
  transition:
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

.he-industries__cta:hover,
.he-industries__cta:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(10, 61, 145, 0.45),
    0 8px 24px rgba(0, 166, 118, 0.3);
}

.he-industries__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.he-industries__cta-arrow {
  display: inline-block;
  transition: transform 0.35s var(--he-transition-ease);
}

.he-industries__cta:hover .he-industries__cta-arrow,
.he-industries__cta:focus-visible .he-industries__cta-arrow {
  transform: translateX(6px);
}

/* Tablet */
@media (max-width: 1024px) {
  .he-industries {
    padding: 64px 0 48px;
  }

  .he-industries__title {
    font-size: 38px;
  }

  .he-industries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .he-industries__card {
    padding: 26px;
    max-height: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .he-industries {
    padding: 56px 0 40px;
  }

  .he-industries__title {
    font-size: 30px;
  }

  .he-industries__bg {
    background-attachment: scroll;
  }

  .he-industries__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .he-industries__header {
    text-align: left;
    margin-bottom: var(--he-space-6);
  }

  .he-industries__desc {
    text-align: left;
    font-size: 0.9375rem;
  }

  .he-industries__card {
    padding: 26px;
    min-height: auto;
    max-height: none;
  }

  .he-industries__card-title {
    font-size: 1.25rem;
  }

  .he-industries__cta-wrap {
    margin-top: var(--he-space-6);
  }

  .he-industries__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-industries__overlay {
    animation: none;
  }

  .he-industries__particle {
    animation: none;
    opacity: 0.4;
  }

  .he-industries [data-industries-animate] {
    opacity: 1;
    transform: none;
    transition: box-shadow var(--he-transition-speed) var(--he-transition-ease),
                border-color var(--he-transition-speed) var(--he-transition-ease);
  }

  .he-industries__card:hover,
  .he-industries__card:focus-visible {
    transform: none;
  }

  .he-industries__card:hover .he-industries__icon,
  .he-industries__card:focus-visible .he-industries__icon {
    transform: none;
  }

  .he-industries__cta:hover,
  .he-industries__cta:focus-visible {
    transform: none;
  }

  .he-industries__cta:hover .he-industries__cta-arrow,
  .he-industries__cta:focus-visible .he-industries__cta-arrow {
    transform: none;
  }
}

/* ==========================================================================
   Product Categories Section
   ========================================================================== */

.he-products {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
}

.he-products__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.he-products__blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(10, 61, 145, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 61, 145, 0.45) 1px, transparent 1px);
  background-size: 52px 52px;
}

.he-products__deco {
  position: absolute;
  display: block;
  opacity: 0.04;
  animation: he-products-deco-float 16s ease-in-out infinite alternate;
}

.he-products__deco--circle {
  top: 12%;
  right: 6%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(10, 61, 145, 0.5);
  border-radius: 50%;
}

.he-products__deco--square {
  bottom: 18%;
  left: 5%;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(0, 166, 118, 0.45);
  border-radius: 8px;
  transform: rotate(14deg);
  animation-delay: -5s;
}

@keyframes he-products-deco-float {
  0%, 100% { transform: translateY(0) rotate(var(--he-prod-rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--he-prod-rot, 0deg)); }
}

.he-products__deco--square {
  --he-prod-rot: 14deg;
}

.he-products__container {
  position: relative;
  z-index: 1;
}

.he-products__header {
  max-width: 760px;
  margin: 0 auto var(--he-space-10);
  text-align: center;
}

.he-products__badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.1);
  border-radius: var(--he-radius-full);
}

.he-products__title {
  margin-bottom: var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--he-color-text);
}

.he-products__desc {
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--he-color-text-muted);
}

.he-products [data-products-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s var(--he-transition-ease),
    transform 0.6s var(--he-transition-ease);
}

.he-products [data-products-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
}

.he-products__card {
  position: relative;
  height: 100%;
  background: var(--he-color-white);
  border: 1px solid rgba(10, 61, 145, 0.08);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(15, 45, 90, 0.07);
  overflow: hidden;
  transition:
    transform 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease),
    border-color 0.4s var(--he-transition-ease);
}

.he-products__card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #0A3D91 0%, #00A676 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--he-transition-ease);
  pointer-events: none;
}

.he-products__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.he-products__card-link:focus-visible {
  outline: none;
}

.he-products__card:hover,
.he-products__card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(10, 61, 145, 0.18);
  box-shadow:
    0 20px 48px rgba(15, 45, 90, 0.12),
    0 8px 24px rgba(0, 166, 118, 0.08);
}

.he-products__card:hover::before,
.he-products__card:focus-within::before {
  opacity: 1;
}

.he-products__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #F0F5FA 0%, #E8EEF5 100%);
}

.he-products__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--he-transition-ease);
}

.he-products__card:hover .he-products__img,
.he-products__card:focus-within .he-products__img {
  transform: scale(1.06);
}

.he-products__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--he-space-6);
}

.he-products__card-title {
  margin-bottom: var(--he-space-2);
  font-family: var(--he-font-family);
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-semibold);
  line-height: 1.35;
  color: var(--he-color-text);
}

.he-products__card-text {
  flex: 1;
  margin-bottom: var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--he-color-text-muted);
}

.he-products__card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-2);
  font-family: var(--he-font-family);
  font-size: 0.875rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-primary-blue);
  transition: color 0.3s var(--he-transition-ease);
}

.he-products__card-arrow {
  display: inline-block;
  transition: transform 0.35s var(--he-transition-ease);
}

.he-products__card:hover .he-products__card-cta,
.he-products__card:focus-within .he-products__card-cta {
  color: var(--he-color-primary-green);
}

.he-products__card:hover .he-products__card-arrow,
.he-products__card:focus-within .he-products__card-arrow {
  transform: translateX(5px);
}

.he-products__card--catalogue .he-products__media {
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.06) 0%, rgba(0, 166, 118, 0.06) 100%);
}

.he-products__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--he-space-10);
}

.he-products__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-3);
  padding: var(--he-space-4) var(--he-space-10);
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-white);
  text-decoration: none;
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow:
    0 8px 28px rgba(10, 61, 145, 0.28),
    0 4px 14px rgba(0, 166, 118, 0.18);
  transition:
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

.he-products__cta:hover,
.he-products__cta:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(10, 61, 145, 0.38),
    0 8px 22px rgba(0, 166, 118, 0.26);
}

.he-products__cta:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-products__cta-arrow {
  display: inline-block;
  transition: transform 0.35s var(--he-transition-ease);
}

.he-products__cta:hover .he-products__cta-arrow,
.he-products__cta:focus-visible .he-products__cta-arrow {
  transform: translateX(6px);
}

.he-products__grid .he-products__card:nth-child(1).he-is-visible { transition-delay: 0.06s; }
.he-products__grid .he-products__card:nth-child(2).he-is-visible { transition-delay: 0.12s; }
.he-products__grid .he-products__card:nth-child(3).he-is-visible { transition-delay: 0.18s; }
.he-products__grid .he-products__card:nth-child(4).he-is-visible { transition-delay: 0.24s; }
.he-products__grid .he-products__card:nth-child(5).he-is-visible { transition-delay: 0.3s; }
.he-products__grid .he-products__card:nth-child(6).he-is-visible { transition-delay: 0.36s; }
.he-products__grid .he-products__card:nth-child(7).he-is-visible { transition-delay: 0.42s; }
.he-products__grid .he-products__card:nth-child(8).he-is-visible { transition-delay: 0.48s; }

@media (max-width: 1024px) {
  .he-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--he-space-5);
  }
}

@media (max-width: 640px) {
  .he-products__header {
    text-align: left;
    margin-bottom: var(--he-space-8);
  }

  .he-products__grid {
    grid-template-columns: 1fr;
    gap: var(--he-space-4);
  }

  .he-products__body {
    padding: var(--he-space-5);
  }

  .he-products__cta-wrap {
    margin-top: var(--he-space-8);
  }

  .he-products__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-products__deco {
    animation: none;
  }

  .he-products [data-products-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .he-products__card:hover,
  .he-products__card:focus-within {
    transform: none;
  }

  .he-products__card:hover .he-products__img,
  .he-products__card:focus-within .he-products__img {
    transform: none;
  }

  .he-products__card:hover .he-products__card-arrow,
  .he-products__card:focus-within .he-products__card-arrow {
    transform: none;
  }

  .he-products__cta:hover,
  .he-products__cta:focus-visible {
    transform: none;
  }

  .he-products__cta:hover .he-products__cta-arrow,
  .he-products__cta:focus-visible .he-products__cta-arrow {
    transform: none;
  }
}

/* ==========================================================================
   Why Choose Vanya Traders
   ========================================================================== */

.he-why {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FBFD 0%, #FFFFFF 100%);
}

.he-why__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.he-why__blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(10, 61, 145, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 61, 145, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
}

.he-why__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(10, 61, 145, 0.15) 18px,
    rgba(10, 61, 145, 0.15) 19px
  );
}

.he-why__float {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.035;
  animation: he-why-float 18s ease-in-out infinite alternate;
}

.he-why__float--1 {
  top: -5%;
  right: 8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(10, 61, 145, 0.9) 0%, transparent 70%);
}

.he-why__float--2 {
  bottom: -8%;
  left: 4%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 166, 118, 0.8) 0%, transparent 70%);
  animation-delay: -6s;
}

.he-why__float--3 {
  top: 45%;
  left: 45%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(10, 61, 145, 0.6) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes he-why-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(16px, -12px); }
}

.he-why__container {
  position: relative;
  z-index: 1;
}

.he-why__header {
  max-width: 720px;
  margin: 0 auto var(--he-space-10);
  text-align: center;
}

.he-why__badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.1);
  border-radius: var(--he-radius-full);
}

.he-why__title {
  margin-bottom: var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--he-color-text);
}

.he-why__desc {
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--he-color-text-muted);
}

.he-why [data-why-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s var(--he-transition-ease),
    transform 0.6s var(--he-transition-ease);
}

.he-why [data-why-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-6);
  margin-bottom: var(--he-space-8);
}

.he-why__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--he-space-8);
  background: var(--he-color-white);
  border: 1px solid rgba(10, 61, 145, 0.1);
  border-radius: 26px;
  box-shadow: 0 12px 40px rgba(15, 45, 90, 0.08);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease),
    border-color 0.4s var(--he-transition-ease),
    background-color 0.4s var(--he-transition-ease);
}

.he-why__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #0A3D91 0%, #00A676 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--he-transition-ease);
  pointer-events: none;
  z-index: 2;
}

.he-why__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(10, 61, 145, 0.04) 45%,
    rgba(0, 166, 118, 0.06) 55%,
    transparent 100%
  );
  transform: skewX(-12deg);
  transition: left 0.65s var(--he-transition-ease);
  pointer-events: none;
  z-index: 1;
}

.he-why__card:hover,
.he-why__card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(10, 61, 145, 0.22);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 22px 52px rgba(15, 45, 90, 0.12),
    0 8px 28px rgba(0, 166, 118, 0.1);
}

.he-why__card:hover::before,
.he-why__card:focus-visible::before {
  opacity: 1;
}

.he-why__card:hover::after,
.he-why__card:focus-visible::after {
  left: 120%;
}

.he-why__card:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-why__icon {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-bottom: var(--he-space-5);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow:
    0 6px 20px rgba(10, 61, 145, 0.22),
    0 0 0 4px rgba(10, 61, 145, 0.06);
  transition:
    transform 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease);
}

.he-why__card:hover .he-why__icon,
.he-why__card:focus-visible .he-why__icon {
  transform: rotate(8deg) scale(1.05);
  box-shadow:
    0 8px 28px rgba(10, 61, 145, 0.28),
    0 0 0 6px rgba(0, 166, 118, 0.1);
}

.he-why__card-title {
  position: relative;
  z-index: 3;
  margin-bottom: var(--he-space-3);
  font-family: var(--he-font-family);
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-semibold);
  line-height: 1.35;
  color: var(--he-color-text);
}

.he-why__card-text {
  position: relative;
  z-index: 3;
  flex: 1;
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--he-color-text-muted);
}

.he-why__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--he-space-4);
  margin-bottom: var(--he-space-10);
  padding: var(--he-space-5) var(--he-space-8);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow:
    0 10px 32px rgba(10, 61, 145, 0.22),
    0 4px 16px rgba(0, 166, 118, 0.15);
}

.he-why__strip-item {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-2);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-white);
  white-space: nowrap;
}

.he-why__strip-check {
  font-size: 0.875rem;
  opacity: 0.95;
}

.he-why__strip-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.he-why__cta-wrap {
  display: flex;
  justify-content: center;
}

.he-why__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-3);
  padding: var(--he-space-4) var(--he-space-10);
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-white);
  text-decoration: none;
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow:
    0 8px 28px rgba(10, 61, 145, 0.28),
    0 4px 14px rgba(0, 166, 118, 0.18);
  transition:
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

.he-why__cta:hover,
.he-why__cta:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(10, 61, 145, 0.38),
    0 8px 22px rgba(0, 166, 118, 0.26);
}

.he-why__cta:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-why__cta-arrow {
  display: inline-block;
  transition: transform 0.35s var(--he-transition-ease);
}

.he-why__cta:hover .he-why__cta-arrow,
.he-why__cta:focus-visible .he-why__cta-arrow {
  transform: translateX(6px);
}

.he-why__grid .he-why__card:nth-child(1).he-is-visible { transition-delay: 0.06s; }
.he-why__grid .he-why__card:nth-child(2).he-is-visible { transition-delay: 0.12s; }
.he-why__grid .he-why__card:nth-child(3).he-is-visible { transition-delay: 0.18s; }
.he-why__grid .he-why__card:nth-child(4).he-is-visible { transition-delay: 0.24s; }
.he-why__grid .he-why__card:nth-child(5).he-is-visible { transition-delay: 0.3s; }
.he-why__grid .he-why__card:nth-child(6).he-is-visible { transition-delay: 0.36s; }

@media (max-width: 1024px) {
  .he-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--he-space-5);
  }
}

@media (max-width: 640px) {
  .he-why__header {
    text-align: left;
    margin-bottom: var(--he-space-8);
  }

  .he-why__grid {
    grid-template-columns: 1fr;
    gap: var(--he-space-4);
  }

  .he-why__card {
    padding: var(--he-space-6);
  }

  .he-why__strip {
    flex-direction: column;
    gap: var(--he-space-3);
    padding: var(--he-space-5) var(--he-space-6);
    border-radius: var(--he-radius-2xl);
  }

  .he-why__strip-dot {
    display: none;
  }

  .he-why__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-why__float {
    animation: none;
  }

  .he-why [data-why-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .he-why__card:hover,
  .he-why__card:focus-visible {
    transform: none;
  }

  .he-why__card:hover::after,
  .he-why__card:focus-visible::after {
    left: -100%;
  }

  .he-why__card:hover .he-why__icon,
  .he-why__card:focus-visible .he-why__icon {
    transform: none;
  }

  .he-why__cta:hover,
  .he-why__cta:focus-visible {
    transform: none;
  }

  .he-why__cta:hover .he-why__cta-arrow,
  .he-why__cta:focus-visible .he-why__cta-arrow {
    transform: none;
  }
}

/* ==========================================================================
   Business Achievements & Company Stats
   ========================================================================== */

.he-achievements {
  position: relative;
  overflow: hidden;
  color: var(--he-color-white);
  background: linear-gradient(135deg, #0A2342 0%, #0E3D91 55%, #008E6B 100%);
}

.he-achievements__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.he-achievements__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 75%, rgba(0, 166, 118, 0.08) 0%, transparent 50%);
  animation: he-achievements-glow 10s ease-in-out infinite alternate;
}

@keyframes he-achievements-glow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.he-achievements__blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 56px 56px;
}

.he-achievements__lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.2) 80px,
    rgba(255, 255, 255, 0.2) 81px
  );
}

.he-achievements__rays {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 140%;
  height: 80%;
  transform: translateX(-50%);
  background: conic-gradient(
    from 180deg at 50% 100%,
    transparent 0deg,
    rgba(255, 255, 255, 0.04) 30deg,
    transparent 60deg,
    rgba(255, 255, 255, 0.03) 120deg,
    transparent 150deg
  );
  animation: he-achievements-rays 14s linear infinite;
}

@keyframes he-achievements-rays {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

.he-achievements__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.he-achievements__particle {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 166, 118, 0.4);
  animation: he-achievements-particle 9s ease-in-out infinite;
}

.he-achievements__particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.he-achievements__particle:nth-child(2) { top: 35%; left: 85%; animation-delay: 1.5s; width: 3px; height: 3px; }
.he-achievements__particle:nth-child(3) { top: 60%; left: 25%; animation-delay: 3s; }
.he-achievements__particle:nth-child(4) { top: 75%; left: 70%; animation-delay: 0.8s; width: 5px; height: 5px; }
.he-achievements__particle:nth-child(5) { top: 45%; left: 50%; animation-delay: 2.2s; width: 3px; height: 3px; }

@keyframes he-achievements-particle {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-24px); opacity: 0.8; }
}

.he-achievements__container {
  position: relative;
  z-index: 1;
}

.he-achievements__header {
  max-width: 680px;
  margin: 0 auto var(--he-space-10);
  text-align: center;
}

.he-achievements__badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--he-radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.he-achievements__title {
  margin-bottom: var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  color: var(--he-color-white);
}

.he-achievements__desc {
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.he-achievements [data-achievements-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s var(--he-transition-ease),
    transform 0.6s var(--he-transition-ease);
}

.he-achievements [data-achievements-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
  margin-bottom: var(--he-space-8);
}

.he-achievements__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: var(--he-space-8) var(--he-space-6);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease),
    border-color 0.4s var(--he-transition-ease),
    background 0.4s var(--he-transition-ease);
}

.he-achievements__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(10, 61, 145, 0.8) 0%, rgba(0, 166, 118, 0.8) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--he-transition-ease);
  pointer-events: none;
}

.he-achievements__card:hover,
.he-achievements__card:focus-visible {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 48px rgba(0, 0, 0, 0.22),
    0 0 32px rgba(0, 166, 118, 0.12);
}

.he-achievements__card:hover::before,
.he-achievements__card:focus-visible::before {
  opacity: 1;
}

.he-achievements__card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.he-achievements__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: var(--he-space-5);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow:
    0 6px 24px rgba(10, 61, 145, 0.35),
    0 0 0 4px rgba(255, 255, 255, 0.06);
  animation: he-achievements-icon-float 5s ease-in-out infinite;
  transition:
    transform 0.4s var(--he-transition-ease),
    box-shadow 0.4s var(--he-transition-ease);
}

.he-achievements__card:nth-child(2) .he-achievements__icon { animation-delay: -1s; }
.he-achievements__card:nth-child(3) .he-achievements__icon { animation-delay: -2s; }
.he-achievements__card:nth-child(4) .he-achievements__icon { animation-delay: -3s; }

@keyframes he-achievements-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.he-achievements__card:hover .he-achievements__icon,
.he-achievements__card:focus-visible .he-achievements__icon {
  animation: none;
  transform: scale(1.06);
  box-shadow:
    0 8px 28px rgba(10, 61, 145, 0.4),
    0 0 24px rgba(0, 166, 118, 0.25);
}

.he-achievements__number {
  margin: 0 0 var(--he-space-3);
  font-family: var(--he-font-family);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.1;
  color: var(--he-color-white);
  letter-spacing: -0.02em;
}

.he-achievements__suffix {
  font-size: 0.85em;
  opacity: 0.95;
}

.he-achievements__card-title {
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.he-achievements__map-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  margin-bottom: var(--he-space-2);
}

.he-achievements__map {
  width: 72px;
  height: auto;
  color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 0 12px rgba(0, 166, 118, 0.35));
}

.he-achievements__map-outline {
  transition: fill 0.4s var(--he-transition-ease);
}

.he-achievements__card--map.he-is-map-active .he-achievements__map-outline {
  fill: rgba(0, 166, 118, 0.12);
}

.he-achievements__map-dot {
  opacity: 0;
  transform-origin: center;
  animation: he-achievements-map-pulse 2s ease-in-out infinite;
}

.he-achievements__card--map.he-is-map-active .he-achievements__map-dot {
  opacity: 1;
}

.he-achievements__map-dot--1 { animation-delay: 0s; }
.he-achievements__map-dot--2 { animation-delay: 0.4s; }
.he-achievements__map-dot--3 { animation-delay: 0.8s; }
.he-achievements__map-dot--4 { animation-delay: 1.2s; }

@keyframes he-achievements-map-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.he-achievements__map-label {
  margin: 0 0 var(--he-space-3);
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.1;
  color: var(--he-color-white);
  letter-spacing: -0.01em;
}

.he-achievements__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--he-space-4);
  margin-bottom: var(--he-space-10);
  padding: var(--he-space-5) var(--he-space-8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--he-radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.he-achievements__strip-item {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-2);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.he-achievements__strip-check {
  font-size: 0.875rem;
  color: #00A676;
}

.he-achievements__strip-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 8px rgba(0, 166, 118, 0.5);
  flex-shrink: 0;
}

.he-achievements__cta-wrap {
  display: flex;
  justify-content: center;
}

.he-achievements__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-3);
  padding: var(--he-space-4) var(--he-space-10);
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-white);
  text-decoration: none;
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow:
    0 8px 32px rgba(10, 61, 145, 0.4),
    0 4px 16px rgba(0, 166, 118, 0.25);
  transition:
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

.he-achievements__cta:hover,
.he-achievements__cta:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 14px 44px rgba(10, 61, 145, 0.5),
    0 8px 28px rgba(0, 166, 118, 0.35);
}

.he-achievements__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.he-achievements__cta-arrow {
  display: inline-block;
  transition: transform 0.35s var(--he-transition-ease);
}

.he-achievements__cta:hover .he-achievements__cta-arrow,
.he-achievements__cta:focus-visible .he-achievements__cta-arrow {
  transform: translateX(6px);
}

.he-achievements__grid .he-achievements__card:nth-child(1).he-is-visible { transition-delay: 0.06s; }
.he-achievements__grid .he-achievements__card:nth-child(2).he-is-visible { transition-delay: 0.12s; }
.he-achievements__grid .he-achievements__card:nth-child(3).he-is-visible { transition-delay: 0.18s; }
.he-achievements__grid .he-achievements__card:nth-child(4).he-is-visible { transition-delay: 0.24s; }

@media (max-width: 1024px) {
  .he-achievements__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--he-space-5);
  }
}

@media (max-width: 640px) {
  .he-achievements__header {
    text-align: left;
    margin-bottom: var(--he-space-8);
  }

  .he-achievements__grid {
    grid-template-columns: 1fr;
    gap: var(--he-space-4);
  }

  .he-achievements__card {
    padding: var(--he-space-6);
  }

  .he-achievements__strip {
    flex-direction: column;
    gap: var(--he-space-3);
    padding: var(--he-space-5) var(--he-space-6);
    border-radius: var(--he-radius-2xl);
  }

  .he-achievements__strip-dot {
    display: none;
  }

  .he-achievements__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-achievements__gradient,
  .he-achievements__rays,
  .he-achievements__particle,
  .he-achievements__icon {
    animation: none;
  }

  .he-achievements [data-achievements-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .he-achievements__card:hover,
  .he-achievements__card:focus-visible {
    transform: none;
  }

  .he-achievements__map-dot {
    opacity: 1;
    animation: none;
  }

  .he-achievements__cta:hover,
  .he-achievements__cta:focus-visible {
    transform: none;
  }

  .he-achievements__cta:hover .he-achievements__cta-arrow,
  .he-achievements__cta:focus-visible .he-achievements__cta-arrow {
    transform: none;
  }
}

/* ==========================================================================
   Premium FAQ Section
   ========================================================================== */

.he-faq {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FBFD 0%, #FFFFFF 100%);
}

.he-faq__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.he-faq__blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(10, 61, 145, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 61, 145, 0.45) 1px, transparent 1px);
  background-size: 48px 48px;
}

.he-faq__container {
  position: relative;
  z-index: 1;
}

.he-faq__header {
  max-width: 680px;
  margin: 0 auto var(--he-space-8);
  text-align: center;
}

.he-faq__badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.1);
  border-radius: var(--he-radius-full);
}

.he-faq__title {
  margin-bottom: var(--he-space-3);
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  color: var(--he-color-text);
}

.he-faq__desc {
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--he-color-text-muted);
}

.he-faq [data-faq-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--he-transition-ease),
    transform 0.6s var(--he-transition-ease);
}

.he-faq [data-faq-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Two-column layout — desktop */
.he-faq__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.he-faq__col {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-4);
  min-width: 0;
}

.he-faq__item {
  background: var(--he-color-white);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: var(--he-radius-xl);
  box-shadow: 0 4px 20px rgba(15, 45, 90, 0.06);
  overflow: hidden;
  transition:
    transform 0.3s var(--he-transition-ease),
    box-shadow 0.3s var(--he-transition-ease),
    border-color 0.3s var(--he-transition-ease);
}

.he-faq__item:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 61, 145, 0.22);
  box-shadow: 0 10px 32px rgba(15, 45, 90, 0.1);
}

.he-faq__item.is-open {
  border-color: rgba(10, 61, 145, 0.28);
  box-shadow:
    0 12px 36px rgba(10, 61, 145, 0.12),
    0 4px 16px rgba(0, 166, 118, 0.08);
}

.he-faq__question-wrap {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.he-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--he-space-4);
  width: 100%;
  padding: var(--he-space-5) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  line-height: 1.45;
  text-align: left;
  color: var(--he-color-text);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s var(--he-transition-ease);
}

.he-faq__trigger:hover,
.he-faq__trigger:focus-visible {
  color: var(--he-color-primary-blue);
}

.he-faq__trigger:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: -2px;
  border-radius: var(--he-radius-xl);
}

.he-faq__question {
  flex: 1;
}

.he-faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  transition: transform 300ms var(--he-transition-ease);
}

.he-faq__toggle-v,
.he-faq__toggle-h {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--he-color-primary-blue);
  border-radius: 1px;
  transition:
    transform 300ms var(--he-transition-ease),
    opacity 300ms var(--he-transition-ease),
    background 300ms var(--he-transition-ease);
}

.he-faq__toggle-v {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.he-faq__toggle-h {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.he-faq__item.is-open .he-faq__toggle {
  transform: rotate(180deg);
}

.he-faq__item.is-open .he-faq__toggle-v {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.he-faq__item.is-open .he-faq__toggle-h {
  background: var(--he-color-primary-green);
}

.he-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--he-transition-ease);
}

.he-faq__item.is-open .he-faq__panel {
  grid-template-rows: 1fr;
}

.he-faq__panel-inner {
  overflow: hidden;
}

.he-faq__answer {
  margin: 0;
  padding: 0 var(--he-space-6) var(--he-space-5);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--he-color-text-muted);
  opacity: 0;
  transition: opacity 300ms var(--he-transition-ease);
}

.he-faq__item.is-open .he-faq__answer {
  opacity: 1;
}

/* Tablet & mobile — single column, ordered 1–12 */
@media (max-width: 1023px) {
  .he-faq__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .he-faq__col {
    gap: var(--he-space-4);
  }

  .he-faq__col--right {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .he-faq__header {
    text-align: left;
    margin-bottom: var(--he-space-6);
  }

  .he-faq__col {
    gap: var(--he-space-5);
  }

  .he-faq__trigger {
    padding: var(--he-space-5);
    font-size: 0.9375rem;
  }

  .he-faq__answer {
    padding: 0 var(--he-space-5) var(--he-space-5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-faq [data-faq-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .he-faq__item:hover {
    transform: none;
  }

  .he-faq__panel {
    transition: none;
  }

  .he-faq__toggle,
  .he-faq__toggle-v,
  .he-faq__toggle-h,
  .he-faq__answer {
    transition: none;
  }
}

/* ==========================================================================
   Universal Call To Action Component
   ========================================================================== */

.he-cta {
  position: relative;
  overflow: hidden;
  padding: var(--he-space-12) 0;
  color: var(--he-color-white);
  background: linear-gradient(135deg, #0A2342 0%, #0E3D91 55%, #00A676 100%);
}

.he-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.he-cta__blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
}

.he-cta__lines {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.15) 60px,
    rgba(255, 255, 255, 0.15) 61px
  );
}

.he-cta__rays {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 160%;
  height: 90%;
  transform: translateX(-50%);
  background: conic-gradient(
    from 200deg at 50% 100%,
    transparent 0deg,
    rgba(255, 255, 255, 0.05) 25deg,
    transparent 55deg,
    rgba(255, 255, 255, 0.04) 110deg,
    transparent 140deg
  );
  animation: he-cta-rays 16s linear infinite;
}

@keyframes he-cta-rays {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

.he-cta__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: he-cta-float 12s ease-in-out infinite;
}

.he-cta__shape--1 {
  top: 10%;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 166, 118, 0.5) 0%, transparent 70%);
}

.he-cta__shape--2 {
  bottom: 5%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(14, 61, 145, 0.55) 0%, transparent 70%);
  animation-delay: -4s;
}

@keyframes he-cta-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.06); }
}

.he-cta__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.he-cta__particle {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 12px rgba(0, 166, 118, 0.45);
  animation: he-cta-particle 8s ease-in-out infinite;
}

.he-cta__particle:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.he-cta__particle:nth-child(2) { top: 42%; left: 78%; animation-delay: 1.2s; width: 3px; height: 3px; }
.he-cta__particle:nth-child(3) { top: 68%; left: 30%; animation-delay: 2.4s; }
.he-cta__particle:nth-child(4) { top: 55%; left: 55%; animation-delay: 0.6s; width: 5px; height: 5px; }

@keyframes he-cta-particle {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  50% { transform: translateY(-20px); opacity: 0.85; }
}

.he-cta__container {
  position: relative;
  z-index: 1;
}

.he-cta__card {
  padding: clamp(2rem, 5vw, 3.5rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.22),
    0 0 80px rgba(14, 61, 145, 0.12);
}

.he-cta__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.he-cta [data-cta-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s var(--he-transition-ease),
    transform 0.65s var(--he-transition-ease);
}

.he-cta [data-cta-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-cta__badge {
  display: inline-block;
  margin-bottom: var(--he-space-4);
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--he-radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.he-cta__title {
  margin-bottom: var(--he-space-5);
  font-family: var(--he-font-family);
  font-size: clamp(1.75rem, 3.2vw, 2.625rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.22;
  color: var(--he-color-white);
}

.he-cta__desc {
  max-width: 560px;
  font-family: var(--he-font-family);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.he-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-6);
}

.he-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-4);
}

.he-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--he-space-3);
  width: 100%;
  padding: var(--he-space-4) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  text-decoration: none;
  border-radius: var(--he-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.35s var(--he-transition-ease),
    color 0.35s var(--he-transition-ease),
    border-color 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease),
    transform 0.35s var(--he-transition-ease);
}

.he-cta__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.he-cta__btn-icon {
  font-size: 1.125rem;
  line-height: 1;
}

.he-cta__btn--call {
  color: #0E3D91;
  background: var(--he-color-white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.he-cta__btn--call:hover,
.he-cta__btn--call:focus-visible {
  color: var(--he-color-white);
  background: #0E3D91;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(14, 61, 145, 0.35);
}

.he-cta__btn--quote {
  color: var(--he-color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
}

.he-cta__btn--quote:hover,
.he-cta__btn--quote:focus-visible {
  color: #0E3D91;
  background: var(--he-color-white);
  border-color: var(--he-color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 255, 255, 0.18);
}

.he-cta__btn--whatsapp {
  color: var(--he-color-white);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.28);
}

.he-cta__btn--whatsapp:hover,
.he-cta__btn--whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(37, 211, 102, 0.45),
    0 0 24px rgba(37, 211, 102, 0.35);
}

.he-cta__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--he-space-3);
  padding: var(--he-space-4) var(--he-space-5);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--he-radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.he-cta__trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-2);
  font-family: var(--he-font-family);
  font-size: 0.8125rem;
  font-weight: var(--he-font-weight-semibold);
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.he-cta__trust-check {
  font-size: 0.75rem;
  color: #00A676;
}

.he-cta__trust-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 10px rgba(0, 166, 118, 0.55);
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .he-cta__grid {
    grid-template-columns: 1fr;
    gap: var(--he-space-8);
  }

  .he-cta__desc {
    max-width: none;
  }

  .he-cta__actions {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .he-cta {
    padding: var(--he-space-10) 0;
  }

  .he-cta__card {
    padding: var(--he-space-8) var(--he-space-6);
    border-radius: 24px;
  }

  .he-cta__trust {
    flex-direction: column;
    gap: var(--he-space-2);
    border-radius: var(--he-radius-2xl);
  }

  .he-cta__trust-dot {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-cta__rays,
  .he-cta__shape,
  .he-cta__particle {
    animation: none;
  }

  .he-cta [data-cta-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .he-cta__btn:hover,
  .he-cta__btn:focus-visible {
    transform: none;
  }
}

/* ==========================================================================
   Premium Universal Footer
   ========================================================================== */

.he-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, #081A35 0%, #0A2342 100%);
}

.he-footer__top-border {
  position: relative;
  z-index: 2;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 166, 118, 0.2) 15%,
    #00A676 35%,
    #0E3D91 50%,
    #00A676 65%,
    rgba(0, 166, 118, 0.2) 85%,
    transparent 100%
  );
  box-shadow:
    0 0 24px rgba(0, 166, 118, 0.45),
    0 0 48px rgba(14, 61, 145, 0.25);
}

.he-footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.he-footer__blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 52px 52px;
}

.he-footer__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.12) 40px,
    rgba(255, 255, 255, 0.12) 41px
  );
}

.he-footer__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(14, 61, 145, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 60%, rgba(0, 166, 118, 0.12) 0%, transparent 50%);
  animation: he-footer-glow 12s ease-in-out infinite alternate;
}

@keyframes he-footer-glow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.he-footer__light {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  animation: he-footer-float 14s ease-in-out infinite;
}

.he-footer__light--1 {
  top: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(0, 166, 118, 0.35);
}

.he-footer__light--2 {
  bottom: 20%;
  left: 8%;
  width: 160px;
  height: 160px;
  background: rgba(14, 61, 145, 0.4);
  animation-delay: -5s;
}

@keyframes he-footer-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -14px); }
}

.he-footer__container {
  position: relative;
  z-index: 1;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.he-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.he-footer [data-footer-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s var(--he-transition-ease),
    transform 0.6s var(--he-transition-ease);
}

.he-footer [data-footer-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.he-footer__col--brand {
  max-width: 320px;
}

.he-footer__logo {
  display: inline-block;
  margin-bottom: var(--he-space-5);
  transition: opacity 0.3s var(--he-transition-ease);
}

.he-footer__logo:hover,
.he-footer__logo:focus-visible {
  opacity: 0.88;
}

.he-footer__logo:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
  border-radius: 4px;
}

.he-footer__logo-img {
  display: block;
  width: 180px;
  height: auto;
}

.he-footer__about {
  margin-bottom: var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.he-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-3);
}

.he-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--he-radius-full);
  transition:
    background 0.35s var(--he-transition-ease),
    border-color 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease),
    transform 0.35s var(--he-transition-ease),
    color 0.35s var(--he-transition-ease);
}

.he-footer__social-link:hover,
.he-footer__social-link:focus-visible {
  color: var(--he-color-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 166, 118, 0.45);
  box-shadow: 0 0 20px rgba(0, 166, 118, 0.35);
  transform: translateY(-3px) rotate(6deg);
}

.he-footer__social-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.he-footer__social-link--whatsapp:hover,
.he-footer__social-link--whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
}

.he-footer__title {
  margin-bottom: var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-color-white);
  letter-spacing: 0.02em;
}

.he-footer__nav,
.he-footer__services,
.he-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.he-footer__nav li + li,
.he-footer__services li + li {
  margin-top: var(--he-space-3);
}

.he-footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-2);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-medium);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s var(--he-transition-ease);
}

.he-footer__nav-arrow {
  display: inline-block;
  font-size: 0.875rem;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.3s var(--he-transition-ease),
    transform 0.3s var(--he-transition-ease);
  color: #00A676;
}

.he-footer__nav-link:hover,
.he-footer__nav-link:focus-visible {
  color: var(--he-color-white);
}

.he-footer__nav-link:hover .he-footer__nav-arrow,
.he-footer__nav-link:focus-visible .he-footer__nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.he-footer__nav-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
  border-radius: 2px;
}

.he-footer__service-link {
  display: block;
  padding: var(--he-space-2) 0 var(--he-space-2) var(--he-space-3);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-medium);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition:
    color 0.3s var(--he-transition-ease),
    border-color 0.3s var(--he-transition-ease),
    padding-left 0.3s var(--he-transition-ease),
    background 0.3s var(--he-transition-ease);
}

.he-footer__service-link:hover,
.he-footer__service-link:focus-visible {
  color: var(--he-color-white);
  padding-left: var(--he-space-4);
  border-left-color: #00A676;
  background: linear-gradient(90deg, rgba(0, 166, 118, 0.08) 0%, transparent 100%);
}

.he-footer__service-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.he-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--he-space-4);
}

.he-footer__contact-item + .he-footer__contact-item {
  margin-top: var(--he-space-5);
}

.he-footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: #00A676;
  background: rgba(0, 166, 118, 0.1);
  border: 1px solid rgba(0, 166, 118, 0.22);
  border-radius: var(--he-radius-full);
  transition:
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

.he-footer__contact-item:hover .he-footer__contact-icon,
.he-footer__contact-item:focus-within .he-footer__contact-icon {
  transform: rotate(-8deg);
  box-shadow: 0 0 16px rgba(0, 166, 118, 0.25);
}

.he-footer__contact-text {
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.he-footer__contact-link {
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.3s var(--he-transition-ease);
}

.he-footer__contact-link:hover,
.he-footer__contact-link:focus-visible {
  color: var(--he-color-white);
}

.he-footer__contact-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
  border-radius: 2px;
}

.he-footer__bar {
  position: relative;
  z-index: 1;
  min-height: 60px;
  background: rgba(4, 14, 28, 0.65);
  border-top: 1px solid transparent;
  border-image: linear-gradient(
    90deg,
    transparent,
    rgba(0, 166, 118, 0.35) 25%,
    rgba(14, 61, 145, 0.35) 50%,
    rgba(0, 166, 118, 0.35) 75%,
    transparent
  ) 1;
}

.he-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--he-space-4);
  min-height: 60px;
  padding-top: var(--he-space-4);
  padding-bottom: var(--he-space-4);
}

.he-footer__copyright,
.he-footer__credit {
  margin: 0;
  font-family: var(--he-font-family);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
}

.he-footer__credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.35rem;
  font-weight: var(--he-font-weight-semibold);
  text-decoration: none;
  background: linear-gradient(135deg, #0E3D91 0%, #00A676 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s var(--he-transition-ease);
}

.he-footer__credit-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #0E3D91, #00A676);
  transition: width 0.35s var(--he-transition-ease);
}

.he-footer__credit-link {
  position: relative;
}

.he-footer__credit-link:hover::after,
.he-footer__credit-link:focus-visible::after {
  width: 100%;
}

.he-footer__credit-link:hover,
.he-footer__credit-link:focus-visible {
  opacity: 0.92;
}

.he-footer__credit-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
  border-radius: 2px;
}

.he-footer__credit-link span {
  font-size: 0.75rem;
  -webkit-text-fill-color: #00A676;
  animation: he-footer-heart 1.4s ease-in-out infinite;
}

@keyframes he-footer-heart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@media (max-width: 1023px) {
  .he-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--he-space-8) var(--he-space-6);
  }

  .he-footer__col--brand {
    max-width: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .he-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--he-space-8);
  }

  .he-footer__bar-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .he-footer__credit-link {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-footer__glow,
  .he-footer__light,
  .he-footer__credit-link span {
    animation: none;
  }

  .he-footer [data-footer-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .he-footer__social-link:hover,
  .he-footer__social-link:focus-visible,
  .he-footer__contact-item:hover .he-footer__contact-icon,
  .he-footer__contact-item:focus-within .he-footer__contact-icon {
    transform: none;
  }
}

/* ==========================================================================
   Universal Quote Popup Modal
   ========================================================================== */

body.he-quote-open {
  overflow: hidden;
}

.he-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--he-space-4);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear 350ms, opacity 350ms ease-out;
}

.he-quote-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: visibility 0s linear 0s, opacity 350ms ease-out;
}

.he-quote-modal.is-closing {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear 250ms, opacity 250ms ease-out;
}

.he-quote-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.he-quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  background: var(--he-color-white);
  border-radius: 28px;
  box-shadow:
    0 24px 80px rgba(10, 20, 35, 0.35),
    0 8px 32px rgba(10, 61, 145, 0.12);
  transform: scale(0.92);
  opacity: 0;
  transition:
    transform 350ms ease-out,
    opacity 350ms ease-out;
}

.he-quote-modal.is-open .he-quote-modal__dialog {
  transform: scale(1);
  opacity: 1;
}

.he-quote-modal.is-closing .he-quote-modal__dialog {
  transform: scale(0.92);
  opacity: 0;
  transition:
    transform 250ms ease-out,
    opacity 250ms ease-out;
}

.he-quote-modal__close {
  position: absolute;
  top: var(--he-space-4);
  right: var(--he-space-4);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--he-gray-500);
  background: var(--he-gray-50);
  border: 1px solid var(--he-gray-200);
  border-radius: var(--he-radius-full);
  cursor: pointer;
  transition:
    color 0.3s var(--he-transition-ease),
    background 0.3s var(--he-transition-ease),
    border-color 0.3s var(--he-transition-ease),
    box-shadow 0.3s var(--he-transition-ease),
    transform 0.3s var(--he-transition-ease);
}

.he-quote-modal__close:hover,
.he-quote-modal__close:focus-visible {
  color: var(--he-color-primary-blue);
  background: var(--he-color-white);
  border-color: rgba(10, 61, 145, 0.2);
  box-shadow: 0 4px 16px rgba(10, 61, 145, 0.12);
  transform: rotate(90deg);
}

.he-quote-modal__close:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 2px;
}

.he-quote-modal__body {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  padding-top: clamp(2rem, 4vw, 2.5rem);
}

.he-quote-modal__header {
  margin-bottom: var(--he-space-6);
  padding-right: var(--he-space-10);
}

.he-quote-modal__badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.6875rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.08);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: var(--he-radius-full);
}

.he-quote-modal__title {
  margin-bottom: var(--he-space-3);
  font-family: var(--he-font-family);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.3;
  color: var(--he-gray-900);
}

.he-quote-modal__desc {
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

.he-quote-modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-4);
}

.he-quote-modal__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--he-space-4);
}

.he-quote-modal__field {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-2);
}

.he-quote-modal__label {
  font-family: var(--he-font-family);
  font-size: 0.875rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-gray-700);
}

.he-quote-modal__required {
  color: #E11D48;
}

.he-quote-modal__input {
  width: 100%;
  padding: var(--he-space-3) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  color: var(--he-gray-800);
  background: var(--he-color-white);
  border: 1px solid var(--he-gray-200);
  border-radius: 14px;
  transition:
    border-color 0.3s var(--he-transition-ease),
    box-shadow 0.3s var(--he-transition-ease);
}

.he-quote-modal__input::placeholder {
  color: var(--he-gray-400);
}

.he-quote-modal__input:focus {
  outline: none;
  border-color: var(--he-color-primary-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 145, 0.15);
}

.he-quote-modal__input--error {
  border-color: #E11D48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

.he-quote-modal__textarea {
  min-height: 110px;
  resize: vertical;
}

.he-quote-modal__error {
  min-height: 1.125rem;
  font-family: var(--he-font-family);
  font-size: 0.8125rem;
  color: #E11D48;
}

.he-quote-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--he-space-3);
  width: 100%;
  min-height: 56px;
  margin-top: var(--he-space-2);
  padding: var(--he-space-4) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(10, 61, 145, 0.22);
  transition:
    transform 0.35s var(--he-transition-ease),
    box-shadow 0.35s var(--he-transition-ease);
}

.he-quote-modal__submit:hover,
.he-quote-modal__submit:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 12px 36px rgba(10, 61, 145, 0.28),
    0 0 24px rgba(0, 166, 118, 0.2);
}

.he-quote-modal__submit:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-quote-modal__submit-arrow {
  display: inline-block;
  transition: transform 0.35s var(--he-transition-ease);
}

.he-quote-modal__submit:hover .he-quote-modal__submit-arrow,
.he-quote-modal__submit:focus-visible .he-quote-modal__submit-arrow {
  transform: translateX(4px);
}

.he-quote-modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--he-space-8) var(--he-space-4);
}

.he-quote-modal__success[hidden] {
  display: none;
}

.he-quote-modal__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: var(--he-space-5);
  color: var(--he-color-white);
  background: linear-gradient(135deg, #00A676 0%, #008E6B 100%);
  border-radius: var(--he-radius-full);
  box-shadow: 0 12px 36px rgba(0, 166, 118, 0.35);
}

.he-quote-modal__success-title {
  margin-bottom: var(--he-space-3);
  font-family: var(--he-font-family);
  font-size: 1.75rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
}

.he-quote-modal__success-text {
  max-width: 380px;
  margin-bottom: var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

.he-quote-modal__success-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 48px;
  padding: var(--he-space-3) var(--he-space-8);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-primary-blue);
  background: var(--he-gray-50);
  border: 1px solid var(--he-gray-200);
  border-radius: 14px;
  cursor: pointer;
  transition:
    background 0.3s var(--he-transition-ease),
    border-color 0.3s var(--he-transition-ease),
    color 0.3s var(--he-transition-ease);
}

.he-quote-modal__success-close:hover,
.he-quote-modal__success-close:focus-visible {
  color: var(--he-color-white);
  background: var(--he-color-primary-blue);
  border-color: var(--he-color-primary-blue);
}

.he-quote-modal__success-close:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

@media (max-width: 1023px) {
  .he-quote-modal__dialog {
    max-width: 90%;
  }
}

@media (max-width: 767px) {
  .he-quote-modal {
    padding: var(--he-space-3);
  }

  .he-quote-modal__dialog {
    max-width: 95%;
    border-radius: 22px;
  }

  .he-quote-modal__row {
    grid-template-columns: 1fr;
  }

  .he-quote-modal__body {
    padding: var(--he-space-6) var(--he-space-5);
    padding-top: var(--he-space-8);
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-quote-modal,
  .he-quote-modal__dialog,
  .he-quote-modal__close,
  .he-quote-modal__submit,
  .he-quote-modal__submit-arrow {
    transition: none;
  }

  .he-quote-modal__close:hover,
  .he-quote-modal__close:focus-visible,
  .he-quote-modal__submit:hover,
  .he-quote-modal__submit:focus-visible {
    transform: none;
  }
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.he-abt-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--he-color-white);
  background: #0A2342;
}

.he-abt-hero__bg {
  position: absolute;
  inset: 0;
}

.he-abt-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-abt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 26, 53, 0.88) 0%, rgba(10, 35, 66, 0.72) 45%, rgba(0, 166, 118, 0.35) 100%);
}

.he-abt-hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
}

.he-abt-hero__badge {
  display: inline-block;
  margin-bottom: var(--he-space-4);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--he-radius-full);
}

.he-abt-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--he-space-4);
  max-width: 820px;
}

.he-abt-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.he-abt-hero__crumb a {
  color: var(--he-color-white);
  text-decoration: none;
  transition: opacity 0.3s var(--he-transition-ease);
}

.he-abt-hero__crumb a:hover {
  opacity: 0.85;
}

.he-abt-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.he-abt-section--alt {
  background: var(--he-color-section-bg);
}

.he-abt-section--dark {
  color: var(--he-color-white);
  background: linear-gradient(135deg, #0A2342 0%, #0E3D91 55%, #008E6B 100%);
}

.he-abt-badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.08);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: var(--he-radius-full);
}

.he-abt-badge--light {
  color: var(--he-color-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.he-abt-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-4);
}

.he-abt-title--sm {
  font-size: 1.375rem;
}

.he-abt-title--inverse {
  color: var(--he-color-white);
}

.he-abt-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--he-gray-500);
}

.he-abt-desc--gap {
  margin-top: var(--he-space-4);
}

.he-abt-desc--inverse {
  color: rgba(255, 255, 255, 0.82);
}

.he-abt-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.he-abt-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.15);
}

.he-abt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-abt-img-wrap:hover img {
  transform: scale(1.04);
}

.he-abt-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-3);
  margin-top: var(--he-space-6);
}

.he-abt-highlight {
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.8125rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.1);
  border-radius: var(--he-radius-full);
}

.he-abt-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--he-space-6);
}

.he-abt-mv-card {
  position: relative;
  padding: var(--he-space-8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(10, 61, 145, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.08);
  transition: transform 0.4s var(--he-transition-ease), box-shadow 0.4s var(--he-transition-ease);
}

.he-abt-mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 61, 145, 0.14);
}

.he-abt-mv-card__img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: var(--he-space-5);
  height: 180px;
}

.he-abt-mv-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-abt-mv-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--he-space-4);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
}

.he-abt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-6);
}

.he-abt-value-card {
  padding: var(--he-space-8) var(--he-space-6);
  text-align: center;
  border-radius: 20px;
  background: var(--he-color-white);
  border: 1px solid var(--he-gray-200);
  box-shadow: 0 8px 32px rgba(10, 61, 145, 0.06);
  transition: transform 0.35s var(--he-transition-ease), box-shadow 0.35s var(--he-transition-ease), border-color 0.35s var(--he-transition-ease);
}

.he-abt-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 118, 0.35);
  box-shadow: 0 16px 40px rgba(0, 166, 118, 0.12);
}

.he-abt-value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--he-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.08);
  border-radius: var(--he-radius-full);
  transition: transform 0.4s var(--he-transition-ease), background 0.4s var(--he-transition-ease), color 0.4s var(--he-transition-ease);
}

.he-abt-value-card:hover .he-abt-value-card__icon {
  transform: rotate(-8deg) scale(1.05);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
}

.he-abt-value-card h3 {
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-2);
}

.he-abt-value-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--he-gray-500);
}

.he-abt-checklist {
  list-style: none;
  padding: 0;
  margin: var(--he-space-6) 0 0;
}

.he-abt-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--he-space-3);
  padding: var(--he-space-2) 0;
  font-size: 1rem;
  color: var(--he-gray-700);
}

.he-abt-checklist li span:first-child {
  color: var(--he-color-primary-green);
  font-weight: var(--he-font-weight-bold);
  flex-shrink: 0;
}

.he-abt-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-4);
  margin-top: var(--he-space-8);
}

.he-abt-stat-mini {
  padding: var(--he-space-5);
  border-radius: 16px;
  text-align: center;
  background: rgba(10, 61, 145, 0.04);
  border: 1px solid rgba(10, 61, 145, 0.08);
}

.he-abt-stat-mini strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--he-color-primary-blue);
  line-height: 1.2;
}

.he-abt-stat-mini span {
  font-size: 0.8125rem;
  color: var(--he-gray-500);
  font-weight: var(--he-font-weight-medium);
}

.he-abt-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: var(--he-space-8);
}

.he-abt-timeline::before {
  content: '';
  position: absolute;
  left: 0.625rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--he-color-primary-blue), var(--he-color-primary-green));
}

.he-abt-timeline-item {
  position: relative;
  padding: 0 0 var(--he-space-10) var(--he-space-8);
}

.he-abt-timeline-item::before {
  content: '';
  position: absolute;
  left: -1.55rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--he-color-primary-green);
  border: 3px solid var(--he-color-white);
  box-shadow: 0 0 0 2px var(--he-color-primary-blue);
}

.he-abt-timeline-item h3 {
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-2);
}

.he-abt-timeline-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

.he-abt-timeline-item time {
  display: inline-block;
  margin-bottom: var(--he-space-2);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
}

.he-abt-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--he-space-4);
  position: relative;
}

.he-abt-process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--he-color-primary-blue), var(--he-color-primary-green));
  z-index: 0;
}

.he-abt-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.he-abt-process-step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--he-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow: 0 8px 24px rgba(10, 61, 145, 0.25);
}

.he-abt-process-step h3 {
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-2);
}

.he-abt-process-step p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--he-gray-500);
}

.he-abt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
}

.he-abt-stat-card {
  padding: var(--he-space-8) var(--he-space-6);
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.he-abt-stat-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--he-color-white);
  line-height: 1.1;
  margin-bottom: var(--he-space-2);
}

.he-abt-stat-card span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--he-font-weight-medium);
}

.he-abt-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-6);
}

.he-abt-gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.12);
}

.he-abt-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-abt-gallery-card:hover img {
  transform: scale(1.08);
}

.he-abt-gallery-card__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--he-space-5);
  background: linear-gradient(transparent, rgba(8, 26, 53, 0.85));
  color: var(--he-color-white);
}

.he-abt-gallery-card__cap h3 {
  font-size: 1rem;
  font-weight: var(--he-font-weight-bold);
  margin-bottom: var(--he-space-1);
}

.he-abt-gallery-card__cap p {
  font-size: 0.8125rem;
  opacity: 0.85;
}

.he-abt-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--he-space-12);
}

.he-abt-center--inverse {
  color: var(--he-color-white);
}

[data-abt-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--he-transition-ease), transform 0.6s var(--he-transition-ease);
}

[data-abt-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .he-abt-grid-2,
  .he-abt-mv-grid,
  .he-abt-values-grid {
    grid-template-columns: 1fr;
  }

  .he-abt-process {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--he-space-6);
  }

  .he-abt-process::before {
    display: none;
  }

  .he-abt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .he-abt-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .he-abt-stats-mini {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .he-abt-hero {
    min-height: 360px;
  }

  .he-abt-hero__content {
    padding: 6rem 0 3rem;
  }

  .he-abt-process {
    grid-template-columns: 1fr 1fr;
  }

  .he-abt-stats-grid,
  .he-abt-gallery {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SERVICES PAGE
   ========================================== */

.he-svc-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--he-color-white);
  background: #0A2342;
}

.he-svc-hero__bg {
  position: absolute;
  inset: 0;
}

.he-svc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 26, 53, 0.9) 0%, rgba(10, 35, 66, 0.75) 45%, rgba(0, 166, 118, 0.38) 100%);
}

.he-svc-hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
  max-width: 820px;
}

.he-svc-hero__badge {
  display: inline-block;
  margin-bottom: var(--he-space-4);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--he-radius-full);
}

.he-svc-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--he-space-4);
}

.he-svc-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--he-space-5);
  max-width: 640px;
}

.he-svc-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.he-svc-hero__crumb a {
  color: var(--he-color-white);
  text-decoration: none;
}

.he-svc-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.he-svc-section--alt {
  background: var(--he-color-section-bg);
}

.he-svc-section--dark {
  color: var(--he-color-white);
  background: linear-gradient(135deg, #0A2342 0%, #0E3D91 55%, #008E6B 100%);
}

.he-svc-badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.08);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: var(--he-radius-full);
}

.he-svc-badge--light {
  color: var(--he-color-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.he-svc-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-4);
}

.he-svc-title--inverse {
  color: var(--he-color-white);
}

.he-svc-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--he-gray-500);
}

.he-svc-desc--gap {
  margin-top: var(--he-space-4);
}

.he-svc-desc--inverse {
  color: rgba(255, 255, 255, 0.82);
}

.he-svc-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--he-space-12);
}

.he-svc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.he-svc-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.15);
}

.he-svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-svc-img-wrap:hover img {
  transform: scale(1.04);
}

.he-svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-6);
}

.he-svc-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--he-color-white);
  border: 1px solid var(--he-gray-200);
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.08);
  transition: transform 0.4s var(--he-transition-ease), box-shadow 0.4s var(--he-transition-ease);
}

.he-svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(10, 61, 145, 0.16);
}

.he-svc-card__img {
  height: 200px;
  overflow: hidden;
}

.he-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-svc-card:hover .he-svc-card__img img {
  transform: scale(1.06);
}

.he-svc-card__body {
  padding: var(--he-space-6);
}

.he-svc-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--he-space-4);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
}

.he-svc-card__body h3 {
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-2);
}

.he-svc-card__body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--he-gray-500);
  margin-bottom: var(--he-space-5);
}

.he-svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-2);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-primary-blue);
  text-decoration: none;
  transition: gap 0.3s var(--he-transition-ease), color 0.3s var(--he-transition-ease);
}

.he-svc-card__link:hover {
  color: var(--he-color-primary-green);
  gap: var(--he-space-3);
}

.he-svc-checklist {
  list-style: none;
  padding: 0;
  margin: var(--he-space-6) 0 0;
}

.he-svc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--he-space-3);
  padding: var(--he-space-2) 0;
  font-size: 1rem;
  color: var(--he-gray-700);
}

.he-svc-checklist li span:first-child {
  color: var(--he-color-primary-green);
  font-weight: var(--he-font-weight-bold);
  flex-shrink: 0;
}

.he-svc-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--he-space-3);
  position: relative;
}

.he-svc-process::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--he-color-primary-blue), var(--he-color-primary-green));
  z-index: 0;
}

.he-svc-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.he-svc-process-step__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--he-space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow: 0 8px 28px rgba(10, 61, 145, 0.25);
  transition: transform 0.4s var(--he-transition-ease);
}

.he-svc-process-step:hover .he-svc-process-step__icon {
  transform: scale(1.08);
}

.he-svc-process-step h3 {
  font-size: 0.875rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-1);
}

.he-svc-process-step p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--he-gray-500);
}

.he-svc-industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-6);
}

.he-svc-industry {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.he-svc-industry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-svc-industry:hover img {
  transform: scale(1.08);
}

.he-svc-industry__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(8, 26, 53, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--he-space-6);
  color: var(--he-color-white);
  transition: background 0.4s var(--he-transition-ease);
}

.he-svc-industry:hover .he-svc-industry__overlay {
  background: linear-gradient(transparent 10%, rgba(10, 61, 145, 0.85) 100%);
}

.he-svc-industry__overlay h3 {
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-bold);
  margin-bottom: var(--he-space-1);
}

.he-svc-industry__overlay p {
  font-size: 0.8125rem;
  opacity: 0.85;
}

.he-svc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
}

.he-svc-stat {
  padding: var(--he-space-8) var(--he-space-6);
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.he-svc-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--he-color-white);
  line-height: 1.1;
  margin-bottom: var(--he-space-2);
}

.he-svc-stat span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.he-svc-faq {
  max-width: 800px;
  margin: 0 auto;
}

.he-svc-faq-item {
  border: 1px solid var(--he-gray-200);
  border-radius: 16px;
  margin-bottom: var(--he-space-4);
  background: var(--he-color-white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 61, 145, 0.05);
  transition: box-shadow 0.3s var(--he-transition-ease);
}

.he-svc-faq-item.is-open {
  box-shadow: 0 8px 32px rgba(10, 61, 145, 0.1);
}

.he-svc-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--he-space-4);
  padding: var(--he-space-5) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-gray-900);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.he-svc-faq-trigger:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: -2px;
}

.he-svc-faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  color: var(--he-color-primary-blue);
}

.he-svc-faq-icon::before,
.he-svc-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--he-transition-ease);
}

.he-svc-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.he-svc-faq-item.is-open .he-svc-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.he-svc-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--he-transition-ease);
}

.he-svc-faq-item.is-open .he-svc-faq-panel {
  max-height: 300px;
}

.he-svc-faq-answer {
  padding: 0 var(--he-space-6) var(--he-space-5);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

[data-svc-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--he-transition-ease), transform 0.6s var(--he-transition-ease);
}

[data-svc-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .he-svc-grid-2,
  .he-svc-cards,
  .he-svc-industries {
    grid-template-columns: 1fr 1fr;
  }

  .he-svc-process {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--he-space-6);
  }

  .he-svc-process::before {
    display: none;
  }

  .he-svc-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .he-svc-hero {
    min-height: 380px;
  }

  .he-svc-hero__content {
    padding: 6rem 0 3rem;
  }

  .he-svc-cards,
  .he-svc-industries,
  .he-svc-process,
  .he-svc-stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   PRODUCTS PAGE
   ========================================== */

.he-prd-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--he-color-white);
  background: #0A2342;
}

.he-prd-hero__bg {
  position: absolute;
  inset: 0;
}

.he-prd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-prd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 26, 53, 0.9) 0%, rgba(10, 35, 66, 0.75) 45%, rgba(0, 166, 118, 0.38) 100%);
}

.he-prd-hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
  max-width: 820px;
}

.he-prd-hero__badge {
  display: inline-block;
  margin-bottom: var(--he-space-4);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--he-radius-full);
}

.he-prd-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--he-space-4);
}

.he-prd-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--he-space-5);
  max-width: 640px;
}

.he-prd-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.he-prd-hero__crumb a {
  color: var(--he-color-white);
  text-decoration: none;
}

.he-prd-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.he-prd-section--alt {
  background: var(--he-color-section-bg);
}

.he-prd-section--dark {
  color: var(--he-color-white);
  background: linear-gradient(135deg, #0A2342 0%, #0E3D91 55%, #008E6B 100%);
}

.he-prd-badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.08);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: var(--he-radius-full);
}

.he-prd-badge--light {
  color: var(--he-color-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.he-prd-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-4);
}

.he-prd-title--inverse {
  color: var(--he-color-white);
}

.he-prd-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--he-gray-500);
}

.he-prd-desc--gap {
  margin-top: var(--he-space-4);
}

.he-prd-desc--inverse {
  color: rgba(255, 255, 255, 0.82);
}

.he-prd-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--he-space-12);
}

.he-prd-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.he-prd-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.15);
}

.he-prd-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-prd-img-wrap:hover img {
  transform: scale(1.04);
}

.he-prd-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
}

.he-prd-category {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.1);
  transition: transform 0.4s var(--he-transition-ease), box-shadow 0.4s var(--he-transition-ease);
}

.he-prd-category:hover,
.he-prd-category:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(10, 61, 145, 0.18);
}

.he-prd-category:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-prd-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-prd-category:hover img {
  transform: scale(1.08);
}

.he-prd-category__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--he-space-3);
  padding: var(--he-space-5);
  background: linear-gradient(transparent 20%, rgba(8, 26, 53, 0.75) 55%, rgba(10, 61, 145, 0.9) 100%);
  color: var(--he-color-white);
  transition: background 0.4s var(--he-transition-ease);
}

.he-prd-category:hover .he-prd-category__overlay {
  background: linear-gradient(transparent 10%, rgba(10, 61, 145, 0.85) 100%);
}

.he-prd-category__name {
  font-size: 1rem;
  font-weight: var(--he-font-weight-bold);
  line-height: 1.3;
}

.he-prd-category__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  font-size: 1.125rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--he-radius-full);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s var(--he-transition-ease), transform 0.35s var(--he-transition-ease), background 0.35s var(--he-transition-ease);
}

.he-prd-category:hover .he-prd-category__arrow {
  opacity: 1;
  transform: translateX(0);
  background: rgba(0, 166, 118, 0.85);
}

.he-prd-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-6);
}

.he-prd-product {
  border-radius: 24px;
  overflow: hidden;
  background: var(--he-color-white);
  border: 1px solid var(--he-gray-200);
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.08);
  transition: transform 0.4s var(--he-transition-ease), box-shadow 0.4s var(--he-transition-ease);
}

.he-prd-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(10, 61, 145, 0.16);
}

.he-prd-product__img {
  height: 220px;
  overflow: hidden;
}

.he-prd-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-prd-product:hover .he-prd-product__img img {
  transform: scale(1.06);
}

.he-prd-product__body {
  padding: var(--he-space-6);
}

.he-prd-product__body h3 {
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-2);
}

.he-prd-product__body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--he-gray-500);
  margin-bottom: var(--he-space-5);
}

.he-prd-product__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--he-space-2);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-primary-blue);
  text-decoration: none;
  transition: gap 0.3s var(--he-transition-ease), color 0.3s var(--he-transition-ease);
}

.he-prd-product__btn:hover {
  color: var(--he-color-primary-green);
  gap: var(--he-space-3);
}

.he-prd-checklist {
  list-style: none;
  padding: 0;
  margin: var(--he-space-6) 0 0;
}

.he-prd-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--he-space-3);
  padding: var(--he-space-2) 0;
  font-size: 1rem;
  color: var(--he-gray-700);
}

.he-prd-checklist li span:first-child {
  color: var(--he-color-primary-green);
  font-weight: var(--he-font-weight-bold);
  flex-shrink: 0;
}

.he-prd-quality {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.he-prd-quality__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.15);
}

.he-prd-quality__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.he-prd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-3);
  margin-top: var(--he-space-6);
}

.he-prd-badge-item {
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.8125rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.06);
  border: 1px solid rgba(10, 61, 145, 0.1);
  border-radius: var(--he-radius-full);
}

.he-prd-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--he-space-3);
  position: relative;
}

.he-prd-process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--he-color-primary-blue), var(--he-color-primary-green));
  z-index: 0;
}

.he-prd-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.he-prd-process-step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--he-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow: 0 8px 24px rgba(10, 61, 145, 0.25);
}

.he-prd-process-step h3 {
  font-size: 0.875rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-1);
}

.he-prd-process-step p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--he-gray-500);
}

.he-prd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
}

.he-prd-stat {
  padding: var(--he-space-8) var(--he-space-6);
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.he-prd-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--he-color-white);
  line-height: 1.1;
  margin-bottom: var(--he-space-2);
}

.he-prd-stat span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.he-prd-faq {
  max-width: 800px;
  margin: 0 auto;
}

.he-prd-faq-item {
  border: 1px solid var(--he-gray-200);
  border-radius: 16px;
  margin-bottom: var(--he-space-4);
  background: var(--he-color-white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 61, 145, 0.05);
  transition: box-shadow 0.3s var(--he-transition-ease);
}

.he-prd-faq-item.is-open {
  box-shadow: 0 8px 32px rgba(10, 61, 145, 0.1);
}

.he-prd-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--he-space-4);
  padding: var(--he-space-5) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-gray-900);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.he-prd-faq-trigger:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: -2px;
}

.he-prd-faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  color: var(--he-color-primary-blue);
}

.he-prd-faq-icon::before,
.he-prd-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--he-transition-ease);
}

.he-prd-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.he-prd-faq-item.is-open .he-prd-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.he-prd-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--he-transition-ease);
}

.he-prd-faq-item.is-open .he-prd-faq-panel {
  max-height: 300px;
}

.he-prd-faq-answer {
  padding: 0 var(--he-space-6) var(--he-space-5);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

[data-prd-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--he-transition-ease), transform 0.6s var(--he-transition-ease);
}

[data-prd-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .he-prd-grid-2,
  .he-prd-quality {
    grid-template-columns: 1fr;
  }

  .he-prd-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .he-prd-featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .he-prd-process {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--he-space-6);
  }

  .he-prd-process::before {
    display: none;
  }

  .he-prd-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .he-prd-hero {
    min-height: 380px;
  }

  .he-prd-hero__content {
    padding: 6rem 0 3rem;
  }

  .he-prd-categories,
  .he-prd-featured,
  .he-prd-process,
  .he-prd-stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.he-cnt-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--he-color-white);
  background: #0A2342;
}

.he-cnt-hero__bg {
  position: absolute;
  inset: 0;
}

.he-cnt-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-cnt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 26, 53, 0.9) 0%, rgba(10, 35, 66, 0.75) 45%, rgba(0, 166, 118, 0.38) 100%);
}

.he-cnt-hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
  max-width: 820px;
}

.he-cnt-hero__badge {
  display: inline-block;
  margin-bottom: var(--he-space-4);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--he-radius-full);
}

.he-cnt-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--he-space-4);
}

.he-cnt-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--he-space-5);
  max-width: 640px;
}

.he-cnt-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.he-cnt-hero__crumb a {
  color: var(--he-color-white);
  text-decoration: none;
}

.he-cnt-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.he-cnt-section--alt {
  background: var(--he-color-section-bg);
}

.he-cnt-badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.08);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: var(--he-radius-full);
}

.he-cnt-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-4);
}

.he-cnt-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--he-gray-500);
}

.he-cnt-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--he-space-12);
}

.he-cnt-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.he-cnt-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.15);
}

.he-cnt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-cnt-img-wrap:hover img {
  transform: scale(1.04);
}

.he-cnt-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
}

.he-cnt-info-card {
  padding: var(--he-space-8) var(--he-space-6);
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.08);
  transition: transform 0.4s var(--he-transition-ease), box-shadow 0.4s var(--he-transition-ease), border-color 0.4s var(--he-transition-ease);
}

.he-cnt-section--alt .he-cnt-info-card {
  background: var(--he-color-white);
}

.he-cnt-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(10, 61, 145, 0.14);
  border-color: rgba(10, 61, 145, 0.15);
}

.he-cnt-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--he-space-5);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow: 0 8px 24px rgba(10, 61, 145, 0.25);
  transition: transform 0.35s var(--he-transition-ease);
}

.he-cnt-info-card:hover .he-cnt-info-card__icon {
  transform: scale(1.08);
}

.he-cnt-info-card h3 {
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-3);
}

.he-cnt-info-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

.he-cnt-info-card a {
  color: var(--he-color-primary-blue);
  text-decoration: none;
  transition: color 0.3s var(--he-transition-ease);
}

.he-cnt-info-card a:hover {
  color: var(--he-color-primary-green);
}

.he-cnt-form-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.he-cnt-form-card {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 28px;
  background: var(--he-color-white);
  border: 1px solid var(--he-gray-200);
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.1);
}

.he-cnt-form-header {
  text-align: center;
  margin-bottom: var(--he-space-8);
}

.he-cnt-form {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-4);
}

.he-cnt-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--he-space-4);
}

.he-cnt-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--he-space-2);
}

.he-cnt-form__label {
  font-size: 0.875rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-gray-700);
}

.he-cnt-form__required {
  color: #E11D48;
}

.he-cnt-form__input {
  width: 100%;
  padding: var(--he-space-3) var(--he-space-4);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  color: var(--he-gray-800);
  background: var(--he-color-white);
  border: 1px solid var(--he-gray-200);
  border-radius: 14px;
  transition:
    border-color 0.3s var(--he-transition-ease),
    box-shadow 0.3s var(--he-transition-ease);
}

.he-cnt-form__input::placeholder {
  color: var(--he-gray-400);
}

.he-cnt-form__input:focus {
  outline: none;
  border-color: var(--he-color-primary-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 145, 0.15);
}

.he-cnt-form__input--error {
  border-color: #E11D48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

.he-cnt-form__textarea {
  min-height: 160px;
  resize: vertical;
}

.he-cnt-form__error {
  min-height: 1.125rem;
  font-size: 0.8125rem;
  color: #E11D48;
}

.he-cnt-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--he-space-3);
  width: 100%;
  min-height: 56px;
  margin-top: var(--he-space-2);
  padding: var(--he-space-4) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(10, 61, 145, 0.25);
  transition:
    transform 0.3s var(--he-transition-ease),
    box-shadow 0.3s var(--he-transition-ease);
}

.he-cnt-form__submit:hover,
.he-cnt-form__submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(10, 61, 145, 0.32);
}

.he-cnt-form__submit:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-cnt-form__submit-arrow {
  transition: transform 0.3s var(--he-transition-ease);
}

.he-cnt-form__submit:hover .he-cnt-form__submit-arrow,
.he-cnt-form__submit:focus-visible .he-cnt-form__submit-arrow {
  transform: translateX(4px);
}

.he-cnt-form-success {
  padding: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  border-radius: 28px;
  background: var(--he-color-white);
  border: 1px solid rgba(0, 166, 118, 0.2);
  box-shadow: 0 20px 60px rgba(0, 166, 118, 0.12);
}

.he-cnt-form-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: var(--he-space-6);
  color: var(--he-color-primary-green);
  background: rgba(0, 166, 118, 0.1);
  border-radius: var(--he-radius-full);
}

.he-cnt-form-success__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-3);
}

.he-cnt-form-success__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--he-gray-500);
  margin-bottom: var(--he-space-6);
}

.he-cnt-form-success__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--he-space-3) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.08);
  border: 1px solid rgba(10, 61, 145, 0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s var(--he-transition-ease), color 0.3s var(--he-transition-ease);
}

.he-cnt-form-success__btn:hover,
.he-cnt-form-success__btn:focus-visible {
  background: rgba(10, 61, 145, 0.12);
  color: var(--he-color-primary-green);
}

.he-cnt-checklist {
  list-style: none;
  padding: 0;
  margin: var(--he-space-6) 0 0;
}

.he-cnt-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--he-space-3);
  padding: var(--he-space-2) 0;
  font-size: 1rem;
  color: var(--he-gray-700);
}

.he-cnt-checklist li span:first-child {
  color: var(--he-color-primary-green);
  font-weight: var(--he-font-weight-bold);
  flex-shrink: 0;
}

.he-cnt-map {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.12);
}

.he-cnt-map__visual {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 320px;
}

.he-cnt-map__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.he-cnt-map__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 53, 0.2) 0%, rgba(10, 61, 145, 0.55) 100%);
}

.he-cnt-map__card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 520px);
  padding: var(--he-space-8) var(--he-space-6);
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(10, 61, 145, 0.2);
}

.he-cnt-map__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: var(--he-space-4);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow: 0 8px 24px rgba(10, 61, 145, 0.25);
}

.he-cnt-map__notice {
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-3);
}

.he-cnt-map__address {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--he-gray-500);
}

.he-cnt-faq {
  max-width: 800px;
  margin: 0 auto;
}

.he-cnt-faq-item {
  border: 1px solid var(--he-gray-200);
  border-radius: 16px;
  margin-bottom: var(--he-space-4);
  background: var(--he-color-white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 61, 145, 0.05);
  transition: box-shadow 0.3s var(--he-transition-ease);
}

.he-cnt-faq-item.is-open {
  box-shadow: 0 8px 32px rgba(10, 61, 145, 0.1);
}

.he-cnt-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--he-space-4);
  padding: var(--he-space-5) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-gray-900);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.he-cnt-faq-trigger:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: -2px;
}

.he-cnt-faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  color: var(--he-color-primary-blue);
}

.he-cnt-faq-icon::before,
.he-cnt-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--he-transition-ease);
}

.he-cnt-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.he-cnt-faq-item.is-open .he-cnt-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.he-cnt-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--he-transition-ease);
}

.he-cnt-faq-item.is-open .he-cnt-faq-panel {
  max-height: 300px;
}

.he-cnt-faq-answer {
  padding: 0 var(--he-space-6) var(--he-space-5);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

[data-cnt-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--he-transition-ease), transform 0.6s var(--he-transition-ease);
}

[data-cnt-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .he-cnt-grid-2 {
    grid-template-columns: 1fr;
  }

  .he-cnt-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .he-cnt-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .he-cnt-hero {
    min-height: 380px;
  }

  .he-cnt-hero__content {
    padding: 6rem 0 3rem;
  }

  .he-cnt-info-grid {
    grid-template-columns: 1fr;
  }

  .he-cnt-map__visual {
    min-height: 360px;
  }

  .he-cnt-map__card {
    width: min(88%, 100%);
    padding: var(--he-space-6) var(--he-space-5);
  }
}

/* ==========================================
   INDUSTRIES PAGE
   ========================================== */

.he-ind-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--he-color-white);
  background: #0A2342;
}

.he-ind-hero__bg {
  position: absolute;
  inset: 0;
}

.he-ind-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-ind-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 26, 53, 0.9) 0%, rgba(10, 35, 66, 0.75) 45%, rgba(0, 166, 118, 0.38) 100%);
}

.he-ind-hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
  max-width: 820px;
}

.he-ind-hero__badge {
  display: inline-block;
  margin-bottom: var(--he-space-4);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--he-radius-full);
}

.he-ind-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--he-space-4);
}

.he-ind-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--he-space-5);
  max-width: 640px;
}

.he-ind-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.he-ind-hero__crumb a {
  color: var(--he-color-white);
  text-decoration: none;
}

.he-ind-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.he-ind-section--alt {
  background: var(--he-color-section-bg);
}

.he-ind-section--dark {
  color: var(--he-color-white);
  background: linear-gradient(135deg, #0A2342 0%, #0E3D91 55%, #008E6B 100%);
}

.he-ind-badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.08);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: var(--he-radius-full);
}

.he-ind-badge--light {
  color: var(--he-color-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.he-ind-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-4);
}

.he-ind-title--inverse {
  color: var(--he-color-white);
}

.he-ind-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--he-gray-500);
}

.he-ind-desc--gap {
  margin-top: var(--he-space-4);
}

.he-ind-desc--inverse {
  color: rgba(255, 255, 255, 0.82);
}

.he-ind-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--he-space-12);
}

.he-ind-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.he-ind-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.15);
}

.he-ind-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-ind-img-wrap:hover img {
  transform: scale(1.04);
}

.he-ind-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-6);
}

.he-ind-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--he-color-white);
  border: 1px solid var(--he-gray-200);
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.08);
  transition: transform 0.4s var(--he-transition-ease), box-shadow 0.4s var(--he-transition-ease);
}

.he-ind-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(10, 61, 145, 0.16);
}

.he-ind-card__img {
  height: 200px;
  overflow: hidden;
}

.he-ind-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--he-transition-ease);
}

.he-ind-card:hover .he-ind-card__img img {
  transform: scale(1.06);
}

.he-ind-card__body {
  padding: var(--he-space-6);
}

.he-ind-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: var(--he-space-4);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(10, 61, 145, 0.2);
  transition: transform 0.35s var(--he-transition-ease);
}

.he-ind-card:hover .he-ind-card__icon {
  transform: scale(1.08);
}

.he-ind-card__body h3 {
  font-size: 1.125rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-2);
}

.he-ind-card__body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--he-gray-500);
}

.he-ind-checklist {
  list-style: none;
  padding: 0;
  margin: var(--he-space-6) 0 0;
}

.he-ind-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--he-space-3);
  padding: var(--he-space-2) 0;
  font-size: 1rem;
  color: var(--he-gray-700);
}

.he-ind-checklist li span:first-child {
  color: var(--he-color-primary-green);
  font-weight: var(--he-font-weight-bold);
  flex-shrink: 0;
}

.he-ind-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--he-space-3);
  position: relative;
}

.he-ind-process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--he-color-primary-blue), var(--he-color-primary-green));
  z-index: 0;
}

.he-ind-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.he-ind-process-step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--he-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow: 0 8px 24px rgba(10, 61, 145, 0.25);
}

.he-ind-process-step h3 {
  font-size: 0.875rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-1);
}

.he-ind-process-step p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--he-gray-500);
}

.he-ind-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
}

.he-ind-stat {
  padding: var(--he-space-8) var(--he-space-6);
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.he-ind-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--he-color-white);
  line-height: 1.1;
  margin-bottom: var(--he-space-2);
}

.he-ind-stat span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.he-ind-faq {
  max-width: 800px;
  margin: 0 auto;
}

.he-ind-faq-item {
  border: 1px solid var(--he-gray-200);
  border-radius: 16px;
  margin-bottom: var(--he-space-4);
  background: var(--he-color-white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 61, 145, 0.05);
  transition: box-shadow 0.3s var(--he-transition-ease);
}

.he-ind-faq-item.is-open {
  box-shadow: 0 8px 32px rgba(10, 61, 145, 0.1);
}

.he-ind-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--he-space-4);
  padding: var(--he-space-5) var(--he-space-6);
  font-family: var(--he-font-family);
  font-size: 1rem;
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-gray-900);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.he-ind-faq-trigger:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: -2px;
}

.he-ind-faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  color: var(--he-color-primary-blue);
}

.he-ind-faq-icon::before,
.he-ind-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--he-transition-ease);
}

.he-ind-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.he-ind-faq-item.is-open .he-ind-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.he-ind-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--he-transition-ease);
}

.he-ind-faq-item.is-open .he-ind-faq-panel {
  max-height: 300px;
}

.he-ind-faq-answer {
  padding: 0 var(--he-space-6) var(--he-space-5);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

[data-ind-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--he-transition-ease), transform 0.6s var(--he-transition-ease);
}

[data-ind-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .he-ind-grid-2 {
    grid-template-columns: 1fr;
  }

  .he-ind-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .he-ind-process {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--he-space-6);
  }

  .he-ind-process::before {
    display: none;
  }

  .he-ind-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .he-ind-hero {
    min-height: 380px;
  }

  .he-ind-hero__content {
    padding: 6rem 0 3rem;
  }

  .he-ind-cards,
  .he-ind-process,
  .he-ind-stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   THANK YOU PAGE
   ========================================== */

.he-thk-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--he-color-white);
  background: #0A2342;
}

.he-thk-hero__bg {
  position: absolute;
  inset: 0;
}

.he-thk-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-thk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 26, 53, 0.9) 0%, rgba(10, 35, 66, 0.75) 45%, rgba(0, 166, 118, 0.38) 100%);
}

.he-thk-hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.he-thk-hero__badge {
  display: inline-block;
  margin-bottom: var(--he-space-4);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--he-radius-full);
}

.he-thk-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--he-space-4);
}

.he-thk-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto;
}

.he-thk-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.he-thk-section--alt {
  background: var(--he-color-section-bg);
}

.he-thk-section--compact {
  padding-top: 0;
}

.he-thk-badge {
  display: inline-block;
  margin-bottom: var(--he-space-3);
  padding: var(--he-space-2) var(--he-space-4);
  font-size: 0.75rem;
  font-weight: var(--he-font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--he-color-primary-blue);
  background: rgba(10, 61, 145, 0.08);
  border: 1px solid rgba(10, 61, 145, 0.12);
  border-radius: var(--he-radius-full);
}

.he-thk-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-4);
}

.he-thk-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--he-gray-500);
}

.he-thk-desc--gap {
  margin-top: var(--he-space-4);
}

.he-thk-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--he-space-12);
}

.he-thk-success {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.he-thk-success__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.15);
}

.he-thk-success__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.he-thk-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: var(--he-space-6);
  color: var(--he-color-primary-green);
  background: rgba(0, 166, 118, 0.1);
  border-radius: var(--he-radius-full);
}

.he-thk-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-4);
  position: relative;
}

.he-thk-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--he-color-primary-blue), var(--he-color-primary-green));
  z-index: 0;
}

.he-thk-timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--he-space-4);
}

.he-thk-timeline-step__check {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--he-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: var(--he-radius-full);
  box-shadow: 0 8px 24px rgba(10, 61, 145, 0.25);
}

.he-thk-timeline-step h3 {
  font-size: 0.9375rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-1);
}

.he-thk-timeline-step p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--he-gray-500);
}

.he-thk-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--he-space-6);
}

.he-thk-action-card {
  position: relative;
  display: block;
  padding: var(--he-space-8) var(--he-space-6);
  text-decoration: none;
  text-align: center;
  border-radius: 24px;
  background: var(--he-color-white);
  border: 1px solid var(--he-gray-200);
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.08);
  transition: transform 0.4s var(--he-transition-ease), box-shadow 0.4s var(--he-transition-ease), border-color 0.4s var(--he-transition-ease);
}

.he-thk-action-card:hover,
.he-thk-action-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(10, 61, 145, 0.16);
  border-color: rgba(10, 61, 145, 0.15);
}

.he-thk-action-card:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-thk-action-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: var(--he-space-5);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(10, 61, 145, 0.2);
  transition: transform 0.35s var(--he-transition-ease);
}

.he-thk-action-card:hover .he-thk-action-card__icon {
  transform: scale(1.08);
}

.he-thk-action-card h3 {
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-2);
}

.he-thk-action-card p {
  font-size: 0.875rem;
  color: var(--he-gray-500);
}

.he-thk-action-card__arrow {
  display: inline-block;
  margin-top: var(--he-space-4);
  font-size: 1.125rem;
  color: var(--he-color-primary-blue);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s var(--he-transition-ease), transform 0.35s var(--he-transition-ease), color 0.35s var(--he-transition-ease);
}

.he-thk-action-card:hover .he-thk-action-card__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--he-color-primary-green);
}

.he-thk-support-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 5;
  min-height: 200px;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.12);
}

.he-thk-support-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.he-thk-support-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 26, 53, 0.85) 0%, rgba(10, 61, 145, 0.6) 50%, rgba(0, 166, 118, 0.45) 100%);
}

.he-thk-support-banner__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--he-space-6);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: var(--he-font-weight-semibold);
  color: var(--he-color-white);
  text-align: center;
}

[data-thk-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--he-transition-ease), transform 0.6s var(--he-transition-ease);
}

[data-thk-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .he-thk-success {
    grid-template-columns: 1fr;
  }

  .he-thk-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--he-space-6);
  }

  .he-thk-timeline::before {
    display: none;
  }

  .he-thk-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .he-thk-hero {
    min-height: 360px;
  }

  .he-thk-hero__content {
    padding: 6rem 0 3rem;
  }

  .he-thk-timeline,
  .he-thk-actions {
    grid-template-columns: 1fr;
  }

  .he-thk-support-banner {
    aspect-ratio: 16 / 9;
  }
}

/* ==========================================
   404 PAGE
   ========================================== */

.he-404-hero {
  position: relative;
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--he-color-section-bg);
}

.he-404-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.he-404-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-404-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 252, 0.96) 100%);
}

.he-404-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.he-404-hero__illustration {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 145, 0.12);
}

.he-404-hero__illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.he-404-hero__code {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1;
  background: var(--he-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--he-space-3);
}

.he-404-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-4);
}

.he-404-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--he-gray-500);
  margin-bottom: var(--he-space-8);
  max-width: 480px;
}

.he-404-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-4);
}

.he-404-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.he-404-section--alt {
  background: var(--he-color-white);
}

.he-404-center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--he-space-10);
}

.he-404-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-3);
}

.he-404-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

.he-404-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--he-space-6);
}

.he-404-nav-card {
  display: block;
  padding: var(--he-space-8) var(--he-space-6);
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  background: var(--he-color-white);
  border: 1px solid var(--he-gray-200);
  box-shadow: 0 8px 32px rgba(10, 61, 145, 0.06);
  transition: transform 0.35s var(--he-transition-ease), box-shadow 0.35s var(--he-transition-ease), border-color 0.35s var(--he-transition-ease);
}

.he-404-nav-card:hover,
.he-404-nav-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 61, 145, 0.12);
  border-color: rgba(10, 61, 145, 0.12);
}

.he-404-nav-card:focus-visible {
  outline: 2px solid var(--he-color-primary-blue);
  outline-offset: 3px;
}

.he-404-nav-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--he-space-4);
  color: var(--he-color-white);
  background: var(--he-gradient-primary);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(10, 61, 145, 0.2);
  transition: transform 0.35s var(--he-transition-ease);
}

.he-404-nav-card:hover .he-404-nav-card__icon {
  transform: scale(1.08);
}

.he-404-nav-card h3 {
  font-size: 1.0625rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-2);
}

.he-404-nav-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--he-gray-500);
}

.he-404-help {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 24px;
  background: var(--he-color-section-bg);
  border: 1px solid var(--he-gray-200);
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.06);
}

.he-404-help__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 61, 145, 0.1);
}

.he-404-help__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.he-404-help__content .he-404-desc {
  margin-bottom: var(--he-space-6);
}

.he-404-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-4);
}

[data-404-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--he-transition-ease), transform 0.55s var(--he-transition-ease);
}

[data-404-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .he-404-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .he-404-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .he-404-hero__actions {
    justify-content: center;
  }

  .he-404-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .he-404-help {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .he-404-hero {
    padding-top: 5.5rem;
  }

  .he-404-nav-grid {
    grid-template-columns: 1fr;
  }

  .he-404-hero__actions,
  .he-404-help__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .he-404-hero__actions .he-btn,
  .he-404-help__actions .he-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   LEGAL PAGES
   ========================================== */

.he-leg-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--he-color-white);
  background: #0A2342;
}

.he-leg-hero__bg {
  position: absolute;
  inset: 0;
}

.he-leg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-leg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 26, 53, 0.88) 0%, rgba(10, 35, 66, 0.72) 50%, rgba(0, 166, 118, 0.35) 100%);
}

.he-leg-hero__content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 3rem;
  max-width: 720px;
}

.he-leg-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--he-space-2);
  margin-bottom: var(--he-space-4);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.he-leg-hero__crumb a {
  color: var(--he-color-white);
  text-decoration: none;
}

.he-thk-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--he-space-2);
  margin-top: var(--he-space-5);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.he-thk-hero__crumb a {
  color: var(--he-color-white);
  text-decoration: none;
}

.he-abt-desc a,
.he-svc-desc a,
.he-prd-desc a,
.he-ind-desc a {
  color: var(--he-color-primary-blue);
  text-decoration: none;
  font-weight: var(--he-font-weight-semibold);
}

.he-abt-desc a:hover,
.he-svc-desc a:hover,
.he-prd-desc a:hover,
.he-ind-desc a:hover {
  color: var(--he-color-primary-green);
}

.he-leg-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--he-space-3);
}

.he-leg-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

.he-leg-content {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--he-color-white);
}

.he-leg-body {
  max-width: 800px;
  margin: 0 auto;
}

.he-leg-block {
  margin-bottom: var(--he-space-8);
  padding-bottom: var(--he-space-8);
  border-bottom: 1px solid var(--he-gray-200);
}

.he-leg-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.he-leg-block h2 {
  font-size: 1.25rem;
  font-weight: var(--he-font-weight-bold);
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-4);
}

.he-leg-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.he-leg-block li {
  position: relative;
  padding-left: var(--he-space-6);
  margin-bottom: var(--he-space-3);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--he-gray-600);
}

.he-leg-block li:last-child {
  margin-bottom: 0;
}

.he-leg-block li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--he-color-primary-green);
  font-weight: var(--he-font-weight-bold);
}

.he-leg-block a {
  color: var(--he-color-primary-blue);
  text-decoration: none;
  transition: color 0.3s var(--he-transition-ease);
}

.he-leg-block a:hover {
  color: var(--he-color-primary-green);
}

[data-leg-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--he-transition-ease), transform 0.5s var(--he-transition-ease);
}

[data-leg-animate].he-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .he-leg-hero {
    min-height: 240px;
  }

  .he-leg-hero__content {
    padding: 5.5rem 0 2.5rem;
  }
}

/* ==========================================
   CLIENT LOGO SLIDER
   ========================================== */

.he-clients {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--he-color-white);
  border-top: 1px solid var(--he-gray-200);
}

.he-clients__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--he-space-10);
  padding: 0 var(--he-space-4);
}

.he-clients__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--he-font-weight-bold);
  line-height: 1.25;
  color: var(--he-gray-900);
  margin-bottom: var(--he-space-3);
}

.he-clients__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--he-gray-500);
}

.he-clients__slider-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.he-clients__slider {
  width: 100%;
}

.he-clients__track {
  display: flex;
  width: max-content;
  animation: he-clients-marquee 60s linear infinite;
  will-change: transform;
}

.he-clients__slider:hover .he-clients__track {
  animation-play-state: paused;
}

.he-clients__set {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.he-clients__item {
  flex: 0 0 auto;
  width: clamp(140px, 16.5vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--he-space-4) var(--he-space-3);
  border-radius: 16px;
  background: var(--he-color-section-bg);
  border: 1px solid var(--he-gray-200);
  transition: border-color 0.3s var(--he-transition-ease), box-shadow 0.3s var(--he-transition-ease);
}

.he-clients__item:hover {
  border-color: rgba(10, 61, 145, 0.15);
  box-shadow: 0 8px 24px rgba(10, 61, 145, 0.08);
}

.he-clients__item img {
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.35s var(--he-transition-ease), filter 0.35s var(--he-transition-ease);
}

.he-clients__item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes he-clients-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1023px) {
  .he-clients__item {
    width: clamp(130px, 22vw, 180px);
  }
}

@media (max-width: 767px) {
  .he-clients__item {
    width: clamp(120px, 42vw, 160px);
  }

  .he-clients__set {
    gap: var(--he-space-5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .he-clients__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    gap: var(--he-space-4);
  }

  .he-clients__set {
    flex-wrap: wrap;
    justify-content: center;
  }

  .he-clients__set[aria-hidden="true"] {
    display: none;
  }
}
