/* ============================================================
   HHC — International-Level Professional Design System
   Brand: Green #009b4e · Lime #a6ce39 · Blue #2b3990 · Red #ed1c24
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --hhc-green:      #009b4e;
  --hhc-green-dk:   #007a3e;
  --hhc-green-lt:   #00c45f;
  --hhc-lime:       #a6ce39;
  --hhc-lime-lt:    #c4e65a;
  --hhc-blue:       #2b3990;
  --hhc-blue-dk:    #1a255c;
  --hhc-blue-lt:    #3d4fa8;
  --hhc-red:        #ed1c24;
  --hhc-white:      #ffffff;
  --hhc-dark:       #0d1117;
  --hhc-dark-2:     #1a2332;
  --hhc-muted:      #6b7280;
  --hhc-muted-lt:   #9ca3af;
  --hhc-light:      #f4f6fb;
  --hhc-light-2:    #eef1f8;
  --hhc-border:     #e2e8f0;
  --hhc-border-lt:  #f1f5f9;

  --hhc-radius:     16px;
  --hhc-radius-lg:  24px;
  --hhc-radius-xl:  32px;
  --hhc-radius-full:999px;

  --hhc-shadow-sm:  0 2px 8px rgba(43,57,144,.07);
  --hhc-shadow:     0 8px 32px rgba(43,57,144,.10);
  --hhc-shadow-lg:  0 20px 60px rgba(43,57,144,.14);
  --hhc-shadow-xl:  0 32px 80px rgba(43,57,144,.18);
  --hhc-shadow-green: 0 12px 32px rgba(0,155,78,.22);
  --hhc-shadow-blue:  0 12px 32px rgba(43,57,144,.22);

  --hhc-font:       'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --hhc-font-head:  'Plus Jakarta Sans', 'Inter', sans-serif;

  --hhc-ease:       cubic-bezier(.4,0,.2,1);
  --hhc-ease-out:   cubic-bezier(0,0,.2,1);
  --hhc-ease-spring:cubic-bezier(.34,1.56,.64,1);

  --hhc-dur-fast: 150ms;
  --hhc-dur:      260ms;
  --hhc-dur-slow: 420ms;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 80px;
}

/* custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--hhc-light); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--hhc-green), var(--hhc-blue)); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--hhc-blue-dk); }

/* Scroll Progress Bar */
.hhc-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--hhc-green), var(--hhc-lime), var(--hhc-blue));
  z-index: 9999;
  transition: width .1s linear;
  border-radius: 0 4px 4px 0;
}

/* Scroll to top */
.hhc-scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 9990;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hhc-green) 0%, var(--hhc-green-lt) 100%);
  color: var(--hhc-white);
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: var(--hhc-shadow-green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity var(--hhc-dur-fast) var(--hhc-ease),
    visibility var(--hhc-dur-fast) var(--hhc-ease),
    transform var(--hhc-dur-fast) var(--hhc-ease-out),
    background var(--hhc-dur-fast) var(--hhc-ease),
    box-shadow var(--hhc-dur-fast) var(--hhc-ease);
}

.hhc-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hhc-scroll-top.is-visible:hover {
  transform: translateY(-2px);
}

.hhc-scroll-top:hover {
  background: linear-gradient(135deg, var(--hhc-green-dk) 0%, var(--hhc-green) 100%);
  color: var(--hhc-white);
  box-shadow: 0 16px 40px rgba(0, 155, 78, 0.38);
  transform: translateY(-2px);
}

.hhc-scroll-top:focus-visible {
  outline: 2px solid var(--hhc-blue);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .hhc-scroll-top {
    right: 1rem;
    bottom: 1.25rem;
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
}

/* Compact Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  text-align: center;
}

.loader-main {
  margin: 0 auto 15px;
}

/* Icon with Rings - Icon size = Ring size */
.icon-with-rings {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

/* Main Icon - Full Size */
.main-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}

.main-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo-txt {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--hhc-green), var(--hhc-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Rings on Icon Border */
.ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.ring-1 {
  border: 15px solid transparent !important;
  border-top-color: var(--hhc-blue) !important;
  border-right-color: var(--hhc-blue) !important;
  animation: spin 1.5s linear infinite;
}

.ring-2 {
  border: 15px solid transparent !important;
  border-bottom-color: var(--hhc-green) !important;
  border-left-color: var(--hhc-green) !important;
  animation: spin 1.2s linear infinite reverse;
}

.loader-info {
  margin-top: 8px;
}

.loader-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--hhc-blue);
  margin: 0 0 2px;
}

.loader-tag {
  font-size: 9px;
  font-weight: 600;
  color: var(--hhc-red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.loader-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.loader-dots span {
  width: 5px;
  height: 5px;
  background: var(--hhc-green);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.loader-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

html { scroll-behavior: smooth; }

body.hhc-body {
  font-family: var(--hhc-font);
  color: var(--hhc-dark);
  background: var(--hhc-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--hhc-blue);
  text-decoration: none;
  transition: color var(--hhc-dur) var(--hhc-ease), opacity var(--hhc-dur) var(--hhc-ease);
}
a:hover { color: var(--hhc-green); }

/* ── Layout Helpers ──────────────────────────────────────── */
.hhc-container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Ultra-wide screens: remove huge side gutters without breaking layout */
@media (min-width: 1700px) {
  .hhc-container {
    width: calc(100% - 2rem);
    max-width: none;
    margin-inline: auto;
  }
}

.hhc-main { min-height: 50vh; }

/* ── Reveal Animation (JS-driven) ───────────────────────── */
.hhc-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s var(--hhc-ease-out),
              transform 0.65s var(--hhc-ease-out);
}
.hhc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hhc-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--hhc-dur-slow) var(--hhc-ease-out),
              transform var(--hhc-dur-slow) var(--hhc-ease-out);
}
.hhc-reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.hhc-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--hhc-dur-slow) var(--hhc-ease-out),
              transform var(--hhc-dur-slow) var(--hhc-ease-out);
}
.hhc-reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* ── Messages ────────────────────────────────────────────── */
.hhc-messages { position: sticky; top: 72px; z-index: 40; }
.hhc-message {
  padding: .75rem 1rem;
  text-align: center;
  background: var(--hhc-lime);
  color: var(--hhc-blue);
  font-weight: 600;
  font-size: .9rem;
}
.hhc-message.error, .hhc-message.danger { background: #fee2e2; color: #991b1b; }
.hhc-message.success { background: #d1fae5; color: #065f46; }

/* ============================================================
   HEADER — Glassmorphism + Sticky
   ============================================================ */
.hhc-header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(226,232,240,.6);
  transition: box-shadow var(--hhc-dur) var(--hhc-ease),
              background var(--hhc-dur) var(--hhc-ease);
}
.hhc-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(43,57,144,.10);
  background: rgba(255,255,255,.97);
}

.hhc-header__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: 84px;
  overflow: hidden;
  position: relative;
}

/* Brand */
.hhc-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--hhc-dark);
  flex-shrink: 0;
  max-width: 220px;
}
.hhc-brand:hover { color: var(--hhc-green); }
.hhc-brand__logo {
  height: 66px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--hhc-dur) var(--hhc-ease-spring);
}
.hhc-brand:hover .hhc-brand__logo { transform: scale(1.04); }
.hhc-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.hhc-brand__name {
  font-family: var(--hhc-font-head);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--hhc-blue), var(--hhc-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.hhc-brand__tag {
  font-size: .56rem;
  color: var(--hhc-red);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .9;
}

/* Nav Toggle */
.hhc-nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--hhc-border);
  border-radius: 12px;
  background: var(--hhc-white);
  cursor: pointer;
  position: relative;
  transition: border-color var(--hhc-dur) var(--hhc-ease),
              box-shadow var(--hhc-dur) var(--hhc-ease);
}
.hhc-nav-toggle:hover { border-color: var(--hhc-green); box-shadow: var(--hhc-shadow-sm); }

.hhc-nav-toggle::before,
.hhc-nav-toggle::after,
.hhc-nav-toggle span {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--hhc-blue);
  border-radius: 2px;
  transition: transform var(--hhc-dur) var(--hhc-ease), opacity var(--hhc-dur) var(--hhc-ease);
}
.hhc-nav-toggle::before { top: 14px; }
.hhc-nav-toggle span { top: 21px; display: block; }
.hhc-nav-toggle::after { top: 28px; }
.hhc-nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); background: var(--hhc-green); }
.hhc-nav-toggle[aria-expanded="true"]::after  { transform: translateY(-7px) rotate(-45deg); background: var(--hhc-green); }
.hhc-nav-toggle[aria-expanded="true"] span { opacity: 0; }

/* Nav (desktop) */
.hhc-nav {
  margin-left: auto;
  min-width: 0;
  overflow: hidden;
}
.hhc-nav__list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}
.hhc-nav__link {
  display: block;
  padding: .45rem .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--hhc-dark-2);
  border-radius: 8px;
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  position: relative;
  transition: color var(--hhc-dur) var(--hhc-ease),
              background var(--hhc-dur) var(--hhc-ease);
  letter-spacing: -.01em;
}
.hhc-nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: .7rem; right: .7rem;
  height: 2px;
  background: linear-gradient(90deg, var(--hhc-green), var(--hhc-lime));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--hhc-dur) var(--hhc-ease-spring);
}
.hhc-nav__link:hover { color: var(--hhc-green); background: rgba(0,155,78,.06); }
.hhc-nav__link:hover::after { transform: scaleX(1); }
.hhc-nav__link.is-active { color: var(--hhc-blue); }
.hhc-nav__link.is-active::after { transform: scaleX(1); }

.hhc-nav__item--cta .hhc-nav__link {
  background: linear-gradient(135deg, var(--hhc-green) 0%, var(--hhc-green-lt) 100%);
  color: var(--hhc-white);
  border-radius: var(--hhc-radius-full);
  padding: .45rem .9rem;
  border-bottom: none;
  box-shadow: 0 4px 16px rgba(0,155,78,.3);
  flex-shrink: 0;
  transition: transform var(--hhc-dur) var(--hhc-ease-spring),
              box-shadow var(--hhc-dur) var(--hhc-ease);
}
.hhc-nav__item--cta .hhc-nav__link::after { display: none; }
.hhc-nav__item--cta .hhc-nav__link:hover {
  color: var(--hhc-white);
  background: linear-gradient(135deg, var(--hhc-green-dk), var(--hhc-green));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,155,78,.40);
}
.hhc-nav__item--cta .hhc-nav__link.is-active {
  box-shadow: 0 0 0 3px rgba(43,57,144,.3), 0 4px 16px rgba(0,155,78,.3);
}

/* Mobile drawer (hidden on desktop) */
.hhc-nav-backdrop,
.hhc-drawer {
  display: none;
}

@media (max-width: 1180px) {
  .hhc-nav-toggle { display: block; z-index: 620; }
  .hhc-nav--desktop { display: none !important; }

  html, body.hhc-body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  body.nav-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .hhc-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(8, 14, 30, .52);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
  }
  .hhc-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hhc-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 72vw);
    z-index: 950;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), visibility .32s;
    will-change: transform;
  }
  .hhc-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .hhc-drawer__panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: #fff;
    border-radius: 18px 0 0 18px;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .2);
    overflow: hidden;
  }

  .hhc-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-shrink: 0;
    padding: 14px 12px 10px;
  }

  .hhc-drawer__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
  }
  .hhc-drawer__logo {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain;
    flex-shrink: 0;
  }
  .hhc-drawer__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.15;
  }
  .hhc-drawer__name {
    font-family: var(--hhc-font-head);
    font-size: 13px;
    font-weight: 800;
    color: #2b3990;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hhc-drawer__tag {
    font-size: 7.5px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hhc-drawer__close {
    position: relative;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 1.5px solid rgba(0, 155, 78, .45);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    padding: 0;
  }
  .hhc-drawer__close::before,
  .hhc-drawer__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #009b4e;
    border-radius: 2px;
  }
  .hhc-drawer__close::before { transform: translate(-50%, -50%) rotate(45deg); }
  .hhc-drawer__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

  .hhc-drawer__list {
    list-style: none;
    margin: 0;
    padding: 4px 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hhc-drawer__item { margin: 0; }

  .hhc-drawer__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 10px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .07);
    border-left: 3px solid transparent;
    color: #1f2937;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
  }
  .hhc-drawer__link.is-active {
    color: #007a3e;
    border-left-color: #009b4e;
    background: linear-gradient(90deg, rgba(166, 206, 57, .35), rgba(0, 155, 78, .12));
    box-shadow: 0 4px 14px rgba(0, 155, 78, .14);
  }

  .hhc-drawer__icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 14px;
  }
  .hhc-drawer__link.is-active .hhc-drawer__icon {
    background: #009b4e;
    color: #fff;
  }

  .hhc-drawer__label { flex: 1; min-width: 0; }

  .hhc-drawer__chevron {
    color: #9ca3af;
    font-size: 11px;
    flex-shrink: 0;
  }
  .hhc-drawer__link.is-active .hhc-drawer__chevron { color: #009b4e; }

  .hhc-drawer__item--cta {
    margin-top: auto;
    padding-top: 6px;
  }
  .hhc-drawer__item--cta .hhc-drawer__link {
    color: #fff;
    font-weight: 700;
    border-left: none;
    background: linear-gradient(135deg, #00c45f 0%, #009b4e 50%, #007a3e 100%);
    box-shadow: 0 8px 20px rgba(0, 155, 78, .32);
    padding: 13px 12px;
  }
  .hhc-drawer__item--cta .hhc-drawer__icon {
    background: rgba(255, 255, 255, .22);
    color: #fff;
  }
  .hhc-drawer__item--cta .hhc-drawer__chevron { color: #fff; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hhc-hero {
  position: relative;
  /* navbar (84px) + hero = exactly one screen */
  height: calc(100vh - 84px);
  max-height: calc(100vh - 84px);
  min-height: 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-block: 0;
  background: linear-gradient(125deg, var(--hhc-blue-dk) 0%, var(--hhc-blue) 45%, var(--hhc-green-dk) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--hhc-white);
  overflow: hidden;
}

@supports (height: 100dvh) {
  .hhc-hero {
    height: calc(100dvh - 84px);
    max-height: calc(100dvh - 84px);
  }
}

/* Animated background orbs */
.hhc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(166,206,57,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(0,155,78,.28) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(43,57,144,.15) 0%, transparent 50%);
  animation: hhcOrbPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes hhcOrbPulse {
  0%   { opacity: .7; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.05); }
}

.hhc-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

.hhc-hero--noimg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(166,206,57,.4), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(0,155,78,.5), transparent 50%);
  z-index: 1;
}

.hhc-hero:not(.hhc-hero--noimg)::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(13,17,23,.82) 0%, rgba(43,57,144,.65) 55%, rgba(0,155,78,.50) 100%);
  z-index: 1;
}

.hhc-hero__inner {
  position: relative;
  z-index: 2;
  /* keep .hhc-container side gutters — do not force full bleed */
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
  padding-block: 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

/* Content block: balanced width across breakpoints */
.hhc-hero__copy {
  width: 100%;
  max-width: min(700px, 100%);
}

.hhc-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: clamp(.68rem, 1.1vw, .75rem);
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; margin: 0 0 clamp(10px, 1.4vw, 16px);
  background: rgba(255,255,255,.15); padding: 6px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}

.hhc-hero__title {
  font-family: var(--hhc-font-head);
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  font-weight: 900;
  margin: 0 0 clamp(.65rem, 1.2vw, 1rem);
  letter-spacing: -.035em;
  line-height: 1.1;
  max-width: none;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hhc-hero__title-highlight {
  background: linear-gradient(135deg, var(--hhc-lime), var(--hhc-lime-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hhc-hero__tag {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--hhc-lime);
  font-weight: 600;
  margin: 0 0 clamp(.65rem, 1.2vw, 1rem);
  letter-spacing: .01em;
}

.hhc-hero__body {
  max-width: min(650px, 100%);
  opacity: .9;
  font-size: clamp(.95rem, 1.35vw, 1.05rem);
  line-height: 1.65;
}

.hhc-hero__body p {
  margin: 0;
}

.hhc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.75rem, 1.5vw, 1rem);
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

/* hero stats strip */
.hhc-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hhc-hero__stat-val {
  font-family: var(--hhc-font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--hhc-lime);
  line-height: 1;
}
.hhc-hero__stat-lbl {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  margin-top: .2rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* Hero wave */
.hhc-hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  z-index: 3;
  overflow: hidden;
}
.hhc-hero__wave svg { width: 100%; height: 100%; display: block; }

/* Hero slider fade transition */
.hhc-hero-slider { position: relative; }
.hhc-hero--hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute; inset: 0;
  transition: opacity .8s var(--hhc-ease);
}
.hhc-hero--visible {
  opacity: 1;
  transition: opacity .8s var(--hhc-ease);
}

/* Slide dots */
.hhc-hero-dots {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.hhc-hero-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: width var(--hhc-dur) var(--hhc-ease-spring),
              background var(--hhc-dur) var(--hhc-ease);
}
.hhc-hero-dot.is-active { width: 28px; background: var(--hhc-lime); }

/* Large desktop: wider content (~50–58vw), still left-aligned */
@media (min-width: 1200px) {
  .hhc-hero__copy {
    max-width: min(780px, 54vw);
  }
}

@media (min-width: 1600px) {
  .hhc-hero__copy {
    max-width: min(900px, 58vw);
  }

  .hhc-hero__title {
    font-size: clamp(2.75rem, 3.4vw, 4rem);
  }

  .hhc-hero__body {
    max-width: min(720px, 100%);
  }
}

@media (min-width: 2000px) {
  .hhc-hero__copy {
    max-width: min(980px, 55vw);
  }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.hhc-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hhc-section--muted {
  background: var(--hhc-light);
  position: relative;
}
.hhc-section--muted::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hhc-border), transparent);
}
.hhc-section--dark {
  background: var(--hhc-dark-2);
  color: var(--hhc-white);
}

/* Eyebrow label */
.hhc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--hhc-green);
  margin: 0 0 .65rem;
  padding: .28rem .8rem;
  background: rgba(0,155,78,.09);
  border-radius: var(--hhc-radius-full);
  border: 1px solid rgba(0,155,78,.18);
}
.hhc-eyebrow--blue {
  color: var(--hhc-blue);
  background: rgba(43,57,144,.08);
  border-color: rgba(43,57,144,.15);
}
.hhc-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Headings */
.hhc-heading {
  font-family: var(--hhc-font-head);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  margin: 0 0 .85rem;
  color: var(--hhc-blue);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.hhc-heading--light { color: var(--hhc-white); }
.hhc-heading--dark  { color: var(--hhc-dark);  }

.hhc-subheading {
  color: var(--hhc-muted);
  margin: 0 0 2rem;
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Section header layout */
.hhc-section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.hhc-section-header--center { text-align: center; }
.hhc-section-header--center .hhc-subheading { margin-inline: auto; }
.hhc-section-header--center .hhc-eyebrow { margin-inline: auto; display: inline-flex; }

/* ============================================================
   BUTTONS
   ============================================================ */
.hhc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.6rem;
  border-radius: var(--hhc-radius-full);
  font-family: var(--hhc-font);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.01em;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--hhc-dur) var(--hhc-ease-spring),
              box-shadow var(--hhc-dur) var(--hhc-ease),
              background var(--hhc-dur) var(--hhc-ease),
              color var(--hhc-dur) var(--hhc-ease);
  text-decoration: none;
  white-space: nowrap;
}

/* shimmer */
.hhc-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  transition: left .5s var(--hhc-ease);
}
.hhc-btn:hover::before { left: 160%; }
.hhc-btn:hover { transform: translateY(-2px); }
.hhc-btn:active { transform: translateY(0) scale(.98); }

.hhc-btn--primary {
  background: linear-gradient(135deg, var(--hhc-green) 0%, var(--hhc-green-lt) 100%);
  color: var(--hhc-white);
  box-shadow: var(--hhc-shadow-green);
}
.hhc-btn--primary:hover {
  box-shadow: 0 16px 40px rgba(0,155,78,.38);
  color: var(--hhc-white);
}

.hhc-btn--secondary {
  background: linear-gradient(135deg, var(--hhc-blue) 0%, var(--hhc-blue-lt) 100%);
  color: var(--hhc-white);
  box-shadow: var(--hhc-shadow-blue);
}
.hhc-btn--secondary:hover {
  box-shadow: 0 16px 40px rgba(43,57,144,.38);
  color: var(--hhc-white);
}

.hhc-btn--outline {
  border-color: var(--hhc-green);
  color: var(--hhc-green);
  background: transparent;
}
.hhc-btn--outline:hover {
  background: var(--hhc-green);
  color: var(--hhc-white);
  box-shadow: var(--hhc-shadow-green);
}

.hhc-btn--outline-blue {
  border-color: var(--hhc-blue);
  color: var(--hhc-blue);
  background: transparent;
}
.hhc-btn--outline-blue:hover {
  background: var(--hhc-blue);
  color: var(--hhc-white);
  box-shadow: var(--hhc-shadow-blue);
}

.hhc-btn--ghost {
  border-color: rgba(255,255,255,.55);
  color: var(--hhc-white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.hhc-btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.8);
  color: var(--hhc-white);
}

.hhc-btn--sm  { padding: .5rem 1.1rem; font-size: .82rem; }
.hhc-btn--lg  { padding: 1rem 2rem; font-size: 1rem; }

.hhc-btn--alert {
  background: var(--hhc-red);
  color: var(--hhc-white);
  border-color: var(--hhc-red);
  box-shadow: 0 8px 24px rgba(237,28,36,.25);
}

/* ============================================================
   GRIDS
   ============================================================ */
.hhc-grid { display: grid; gap: 1.5rem; }
.hhc-grid--cats     { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.hhc-grid--products { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.hhc-grid--team     { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.hhc-cat-card {
  background: var(--hhc-white);
  border-radius: var(--hhc-radius-lg);
  padding: 1.4rem;
  box-shadow: var(--hhc-shadow);
  border: 1px solid var(--hhc-border);
  transition: transform var(--hhc-dur) var(--hhc-ease-spring),
              box-shadow var(--hhc-dur) var(--hhc-ease);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
  overflow: hidden;
}
.hhc-cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hhc-green), var(--hhc-lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--hhc-dur) var(--hhc-ease-spring);
}
.hhc-cat-card:hover { transform: translateY(-5px); box-shadow: var(--hhc-shadow-lg); }
.hhc-cat-card:hover::after { transform: scaleX(1); }
.hhc-cat-card img {
  border-radius: 12px;
  max-height: 160px;
  width: 100%;
  object-fit: cover;
  transition: transform var(--hhc-dur-slow) var(--hhc-ease);
}
.hhc-cat-card:hover img { transform: scale(1.04); }
.hhc-cat-card h3 {
  font-family: var(--hhc-font-head);
  font-weight: 700;
  color: var(--hhc-blue);
  font-size: 1rem;
  margin: 0;
}
.hhc-cat-card p { font-size: .9rem; color: var(--hhc-muted); margin: 0; }

/* ============================================================
   HOME — PRODUCT CATEGORIES (full-width banner + premium grid)
   ============================================================ */
.hhc-pcats {
  --pcb-navy: #001b45;
  --pcb-green: #00c853;
  --pcb-white: #ffffff;
  --pcb-neon-blue: #0d8bff;
  --pcb-lime: #7fff6a;
  position: relative;
  overflow: hidden;
  margin-top: clamp(10px, 1.75vw, 22px);
  padding-top: 0;
}

.hhc-pcats-banner {
  position: relative;
  width: 100%;
  min-height: max(320px, 34vh);
  height: clamp(320px, max(28vw, 34vh), 480px);
  max-height: min(500px, 88vh);
  overflow: hidden;
  background: linear-gradient(125deg, #000d1f 0%, #001229 35%, var(--pcb-navy) 55%, #043a66 85%, #062a48 100%);
  box-sizing: border-box;
  border: none;
  box-shadow: none;
}

.hhc-pcats-banner--noimg {
  background: linear-gradient(125deg, #000814 0%, #001b45 45%, #003d7a 100%);
}

.hhc-pcats-banner__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
  /* Soft side fade only — no top/bottom black strip */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-composite: unset;
  mask-composite: unset;
}

.hhc-pcats-banner__feather {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Soft side vignette only — bottom white fog removed */
  background:
    linear-gradient(to right, rgba(0, 13, 31, 0.35) 0%, rgba(0, 13, 31, 0) max(8%, 48px)),
    linear-gradient(to left, rgba(0, 13, 31, 0.2) 0%, rgba(0, 13, 31, 0) max(6%, 36px));
}

.hhc-pcats-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Dark left scrim for text readability — no white bottom fade */
  background:
    linear-gradient(90deg,
      rgba(0, 8, 28, 0.82) 0%,
      rgba(0, 14, 40, 0.45) 42%,
      rgba(0, 20, 48, 0.2) 68%,
      rgba(0, 24, 56, 0.35) 100%);
}

.hhc-pcats-banner__wrap {
  position: relative;
  z-index: 3;
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(1.15rem, 2.8vw, 2rem);
  padding-bottom: clamp(0.65rem, 2vw, 1.35rem);
}

.hhc-pcats-banner__copy {
  max-width: min(560px, 92vw);
}

.hhc-pcats-banner__label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: clamp(0.65rem, 1.6vw, 1.1rem) 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hhc-pcats-banner__label-line {
  display: inline-block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--pcb-green);
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.65);
  flex-shrink: 0;
}

.hhc-pcats-banner__heading {
  margin: 0 0 0.35rem;
  font-family: var(--hhc-font-head);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hhc-pcats-banner__h-w {
  color: var(--pcb-white);
}

.hhc-pcats-banner__h-g {
  color: var(--pcb-green);
  text-shadow: 0 0 24px rgba(0, 200, 83, 0.35);
}

.hhc-pcats-banner__rule {
  display: block;
  width: min(220px, 55vw);
  height: 4px;
  margin: 0.5rem 0 1rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pcb-neon-blue), rgba(13, 139, 255, 0.25));
  box-shadow:
    0 0 16px rgba(13, 139, 255, 0.85),
    0 0 32px rgba(13, 139, 255, 0.35);
}

.hhc-pcats-banner__desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.875rem, 1.35vw, 0.98rem);
  line-height: 1.65;
}

.hhc-pcats-banner__desc p {
  margin: 0 0 0.65em;
}

.hhc-pcats-banner__desc p:last-child {
  margin-bottom: 0;
}

.hhc-pcats__body {
  position: relative;
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3f9 100%);
}

.hhc-pcats__body::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vw, 1.5rem);
  transform: translateX(-50%);
  width: min(120px, 30vw);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 27, 69, 0.12), transparent);
  pointer-events: none;
}

.hhc-pcats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}

@media (max-width: 1000px) {
  .hhc-pcats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .hhc-pcats__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Category Card — Reference style: left text | right image ── */
.hhc-pcats-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(21, 45, 102, 0.10);
  border: 1px solid rgba(220, 230, 245, 0.95);
  background: #fff;
  transition: transform 0.30s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.30s ease;
}

.hhc-pcats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(21, 45, 102, 0.18);
}

.hhc-pcats-card--blue {
  border-top: 3px solid #0d8bff;
}

.hhc-pcats-card--green {
  border-top: 3px solid var(--pcb-green);
}

/* Left: content area */
.hhc-pcats-card__main {
  flex: 1;
  padding: 1.6rem 1.2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.hhc-pcats-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0.85rem;
}

/* Icon sits alone at top-left, title comes below it */
.hhc-pcats-card__icon-ring {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8f2fd, #d4e5f8);
  border: 1px solid rgba(13, 139, 255, 0.14);
  font-size: 1.3rem;
  color: #0d5cb5;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.hhc-pcats-card--green .hhc-pcats-card__icon-ring {
  border-color: rgba(0, 168, 81, 0.18);
  color: #008a42;
  background: linear-gradient(145deg, #e4f9ed, #d4f5e2);
}

.hhc-pcats-card__icon-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

/* Title sits below icon, full width */
.hhc-pcats-card__title-block {
  width: 100%;
  min-width: 0;
}

.hhc-pcats-card__name {
  margin: 0 0 0.4rem;
  font-family: var(--hhc-font-head);
  font-weight: 800;
  font-size: 1.22rem;
  color: #0a2d5c;
  line-height: 1.2;
}

.hhc-pcats-card__title-rule {
  display: block;
  width: 40px;
  height: 2.5px;
  margin-bottom: 0.75rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #0d8bff, rgba(13, 139, 255, 0.18));
}

.hhc-pcats-card--green .hhc-pcats-card__title-rule {
  background: linear-gradient(90deg, var(--pcb-green), rgba(0, 200, 83, 0.18));
}

.hhc-pcats-card__desc {
  margin: 0;
  font-size: 0.875rem;
  color: #5a6b82;
  line-height: 1.55;
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hhc-pcats-card__link {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0d5cb5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.hhc-pcats-card--green .hhc-pcats-card__link {
  color: #008a42;
}

.hhc-pcats-card__link:hover {
  text-decoration: underline;
}

/* Right: image area — full image visible, no crop */
.hhc-pcats-card__visual {
  flex-shrink: 0;
  position: relative;
  width: clamp(180px, 46%, 280px);
  align-self: stretch;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 17px 17px 0;
  padding: 12px 14px;
  border-left: 1px solid rgba(220, 232, 248, 0.7);
}

.hhc-pcats-card--green .hhc-pcats-card__visual {
  background: #ffffff;
  border-left-color: rgba(210, 240, 225, 0.7);
}

/* Kill shine/tint overlays — no green/blue bg on image hover */
.hhc-pcats-card__visual::before,
.hhc-pcats-card__visual.hhc-img-shine::before,
.hhc-pcats-card__visual:hover::before,
.hhc-pcats-card__visual.hhc-img-shine:hover::before,
.hhc-pcats-card:hover .hhc-pcats-card__visual::before,
.hhc-pcats-card:hover .hhc-pcats-card__visual.hhc-img-shine::before {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: none !important;
}

.hhc-pcats-card__visual::after,
.hhc-pcats-card__visual.hhc-img-shine::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.hhc-pcats-card__visual,
.hhc-pcats-card__visual.hhc-img-shine,
.hhc-pcats-card:hover .hhc-pcats-card__visual,
.hhc-pcats-card__visual:hover {
  background: #ffffff !important;
}

.hhc-pcats-card__visual img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 220px;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
  filter: none !important;
}

.hhc-pcats-card:hover .hhc-pcats-card__visual img,
.hhc-pcats-card__visual.hhc-img-shine:hover img {
  transform: scale(1.03);
  filter: none !important;
}

.hhc-pcats__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.hhc-pcats__explore {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #001b45 0%, #003d8a 50%, #0050a8 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 27, 69, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hhc-pcats__explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 27, 69, 0.35);
}

.hhc-pcats__explore-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
}

@media (max-width: 640px) {
  .hhc-pcats-banner {
    min-height: 0;
    height: 220px;
    max-height: 220px;
  }

  .hhc-pcats-banner__bg-img {
    object-position: right center;
  }

  .hhc-pcats-banner__wrap {
    padding-top: 0.85rem;
    padding-bottom: 0.75rem;
    align-items: flex-start;
  }

  .hhc-pcats-banner__copy {
    max-width: 50%;
    width: 50%;
    padding-right: 0.35rem;
  }

  .hhc-pcats-banner__label {
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    gap: 0.4rem;
  }

  .hhc-pcats-banner__label-line {
    width: 18px;
  }

  .hhc-pcats-banner__heading {
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 0.25rem;
  }

  .hhc-pcats-banner__rule {
    width: min(110px, 40vw);
    height: 3px;
    margin: 0.35rem 0 0.55rem;
  }

  .hhc-pcats-banner__desc {
    font-size: 0.72rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hhc-pcats-banner__scrim {
    background:
      linear-gradient(90deg,
        rgba(0, 8, 28, 0.88) 0%,
        rgba(0, 14, 40, 0.55) 48%,
        rgba(0, 20, 48, 0.15) 72%,
        rgba(0, 24, 56, 0.08) 100%);
  }

  /* Mobile cards: side-by-side like reference (text | larger image + color blob) */
  .hhc-pcats-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 188px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }

  .hhc-pcats-card--blue {
    border: 1.5px solid rgba(13, 139, 255, 0.28);
    border-top: 3px solid #0d8bff;
  }

  .hhc-pcats-card--green {
    border: 1.5px solid rgba(0, 155, 78, 0.28);
    border-top: 3px solid var(--pcb-green, #009b4e);
  }

  .hhc-pcats-card__main {
    flex: 1 1 52%;
    min-width: 0;
    max-width: 58%;
    padding: 1.05rem .55rem 1.05rem 1.05rem;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
  }

  .hhc-pcats-card__icon-ring {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.08rem;
    margin-bottom: .7rem;
  }

  .hhc-pcats-card__name {
    font-size: 1.05rem;
    margin-bottom: .32rem;
  }

  .hhc-pcats-card__title-rule {
    width: 36px;
    height: 3px;
    margin-bottom: .55rem;
  }

  .hhc-pcats-card__desc {
    font-size: .78rem;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .hhc-pcats-card__link {
    padding-top: .75rem;
    font-size: .8rem;
  }

  .hhc-pcats-card__visual {
    flex: 0 0 46%;
    width: 46%;
    max-width: none;
    min-height: 0;
    height: auto;
    align-self: stretch;
    border-radius: 0 18px 18px 0;
    border-left: none;
    padding: .4rem .35rem .4rem 0;
    overflow: hidden;
    background: transparent;
    position: relative;
  }

  .hhc-pcats-card--green .hhc-pcats-card__visual {
    background: transparent;
  }

  /* No color blob behind category images on mobile either */
  .hhc-pcats-card__visual::after,
  .hhc-pcats-card--green .hhc-pcats-card__visual::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  .hhc-pcats-card__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-width: 100%;
    min-height: 0;
    max-height: 170px;
    object-fit: contain;
    object-position: center;
    transform: none;
    padding: 4px;
  }

  .hhc-pcats-card:hover .hhc-pcats-card__visual img {
    transform: none;
  }

  .hhc-pcats-banner__wrap {
    min-height: max(280px, 42vh);
    align-items: flex-start;
    padding-top: clamp(1rem, 3vw, 1.65rem);
  }
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.hhc-product-card {
  background: var(--hhc-white);
  border-radius: var(--hhc-radius-xl);
  border: 1px solid var(--hhc-border);
  box-shadow: var(--hhc-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--hhc-dur) var(--hhc-ease-spring),
              box-shadow var(--hhc-dur) var(--hhc-ease);
}
.hhc-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hhc-shadow-xl);
}
.hhc-product-card__media {
  overflow: hidden;
  position: relative;
}
.hhc-product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,57,144,.08));
  transition: opacity var(--hhc-dur) var(--hhc-ease);
}
.hhc-product-card:hover .hhc-product-card__media::after { opacity: 0; }
.hhc-product-card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--hhc-dur-slow) var(--hhc-ease);
}
.hhc-product-card:hover .hhc-product-card__media img { transform: scale(1.06); }
.hhc-product-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.hhc-product-card__title {
  margin: 0;
  font-family: var(--hhc-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hhc-dark);
}
.hhc-product-card__meta  { color: var(--hhc-muted); font-size: .88rem; margin: 0; }
.hhc-product-card__line  { margin: 0; font-size: .85rem; color: var(--hhc-green); font-weight: 600; }

/* Badge */
.hhc-badge {
  display: inline-flex;
  align-items: center;
  padding: .22rem .7rem;
  border-radius: var(--hhc-radius-full);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(0,155,78,.1);
  color: var(--hhc-green);
}
.hhc-badge--blue { background: rgba(43,57,144,.1); color: var(--hhc-blue); }
.hhc-badge--lime { background: rgba(166,206,57,.15); color: #5a7000; }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.hhc-page-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--hhc-white);
  background: linear-gradient(125deg, var(--hhc-blue-dk), var(--hhc-blue) 50%, var(--hhc-green-dk));
  overflow: hidden;
}

/* Decorative orbs on plain gradient banner */
.hhc-page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(166,206,57,.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(0,155,78,.22), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Background image div */
.hhc-page-banner__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
  z-index: 0;
}
.hhc-page-banner:hover .hhc-page-banner__bg {
  transform: scale(1.04);
}

/* Background video */
.hhc-page-banner__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay — stronger when media is present */
.hhc-page-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,17,23,.72) 0%,
    rgba(43,57,144,.55) 50%,
    rgba(0,80,40,.50) 100%
  );
  z-index: 1;
}

.hhc-page-banner__content {
  position: relative;
  z-index: 2;
  padding-block: 3.5rem;
  width: 100%;
}

.hhc-page-banner__title {
  font-family: var(--hhc-font-head);
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.hhc-page-banner__sub {
  margin: .75rem auto 0;
  opacity: .9;
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
}

/* ============================================================
   ABOUT SPLIT SECTION
   ============================================================ */
.hhc-about-split__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hhc-about-split__media {
  position: relative;
}
.hhc-about-split__media img,
.hhc-about-split__video {
  border-radius: var(--hhc-radius-xl);
  box-shadow: var(--hhc-shadow-xl);
  width: 100%;
  transition: transform var(--hhc-dur-slow) var(--hhc-ease);
}
.hhc-about-split__video {
  display: block;
  object-fit: cover;
  max-height: 420px;
}
.hhc-about-split__media:hover img,
.hhc-about-split__media:hover .hhc-about-split__video { transform: scale(1.02); }
.hhc-about-split__media::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--hhc-radius-xl) + 8px);
  background: linear-gradient(135deg, rgba(166,206,57,.2), rgba(0,155,78,.1));
  z-index: -1;
}

/* ============================================================
   FEATURE CARD
   ============================================================ */
.hhc-feature-card {
  background: var(--hhc-white);
  border-radius: var(--hhc-radius-lg);
  padding: 2rem;
  border: 1px solid var(--hhc-border);
  box-shadow: var(--hhc-shadow);
  max-width: 760px;
  transition: box-shadow var(--hhc-dur) var(--hhc-ease);
  position: relative;
  overflow: hidden;
}
.hhc-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hhc-green), var(--hhc-blue), var(--hhc-lime));
}
.hhc-feature-card:hover { box-shadow: var(--hhc-shadow-lg); }
.hhc-feature-card__icon img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 1rem; }
.hhc-feature-card__title {
  font-family: var(--hhc-font-head);
  font-weight: 700;
  color: var(--hhc-blue);
  font-size: 1.15rem;
  margin: 0 0 .5rem;
}

/* ============================================================
   REG / COMPLIANCE SECTION
   ============================================================ */
.hhc-rc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: start;
}
.hhc-rc__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }

.hhc-doc-pill {
  background: var(--hhc-white);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  border: 1px solid var(--hhc-border);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  transition: border-color var(--hhc-dur) var(--hhc-ease),
              box-shadow var(--hhc-dur) var(--hhc-ease);
  font-size: .9rem;
  font-weight: 500;
}
.hhc-doc-pill::before {
  content: '';
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,155,78,.12), rgba(43,57,144,.08));
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23009b4e' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.hhc-doc-pill:hover { border-color: var(--hhc-green); box-shadow: var(--hhc-shadow-sm); }
.hhc-doc-pill a { color: var(--hhc-blue); font-weight: 600; }
.hhc-doc-pill a:hover { color: var(--hhc-green); }

/* ============================================================
   PARTNERS / AFFILIATES
   ============================================================ */
.hhc-partners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  align-items: center;
}
.hhc-partners__item {
  background: var(--hhc-white);
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid var(--hhc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--hhc-dur) var(--hhc-ease), transform var(--hhc-dur) var(--hhc-ease-spring);
}
.hhc-partners__item:hover { box-shadow: var(--hhc-shadow); transform: translateY(-2px); }
.hhc-partners__item img {
  max-height: 56px;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
  filter: grayscale(.1) contrast(1.05);
}

/* ============================================================
   CTA BANDS
   ============================================================ */
.hhc-cta-band {
  padding-block: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hhc-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255,255,255,.07), transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 50%, rgba(255,255,255,.05), transparent 55%);
  pointer-events: none;
}
.hhc-cta-band--career {
  background: linear-gradient(125deg, var(--hhc-blue-dk) 0%, var(--hhc-blue) 60%, #1a3566 100%);
  color: var(--hhc-white);
}
.hhc-cta-band--contact {
  background: linear-gradient(125deg, var(--hhc-green-dk) 0%, var(--hhc-green) 60%, #007040 100%);
  color: var(--hhc-white);
}
.hhc-cta-band__inner { position: relative; z-index: 1; }
.hhc-cta-contact p { margin: .3rem 0; font-size: 1rem; opacity: .9; }

/* ============================================================
   CONTACT SECTION (home page — hhc-cth)
   ============================================================ */
.hhc-cth { background: #f5f9fc; }

/* ── Header: Get in Touch + compact cards ── */
.hhc-cth__top {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f5f9fc 100%);
  padding: 28px 0 22px;
  min-height: 0;
}
.hhc-cth__top-img {
  position: absolute;
  top: 52px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 52px);
  object-fit: cover;
  object-position: center right;
  display: block;
  z-index: 0;
}
/* 4-side edge lighting / soft glow over background image */
.hhc-cth__top-lighting {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.92) 28%, rgba(255,255,255,.55) 48%, transparent 65%),
    linear-gradient(0deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.72) 10%, transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.55) 22%, transparent 48%),
    linear-gradient(270deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.45) 14%, transparent 38%);
  box-shadow:
    inset 0 0 70px rgba(255,255,255,.85),
    inset 0 0 110px rgba(0,166,81,.07),
    inset 0 0 110px rgba(37,99,235,.06);
}
.hhc-cth__top--has-img .hhc-cth__top-deco {
  background:
    radial-gradient(ellipse 45% 38% at 5% 88%, rgba(37,99,235,.12) 0%, transparent 50%);
}
.hhc-cth__top-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 35% at 8% 95%, rgba(37,99,235,.1) 0%, transparent 50%);
}
.hhc-cth__top-inner { position: relative; z-index: 3; }
.hhc-cth__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--hhc-green, #009b4e); margin: 0 0 10px;
  background: rgba(0,155,78,.08); padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,155,78,.2);
}
.hhc-cth__label-line { display: none; }
.hhc-cth__heading {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.12;
}
.hhc-cth__heading-blue { color: #001a3d; }
.hhc-cth__heading-green { color: #00a651; }
.hhc-cth__sub {
  font-size: .95rem;
  color: #5c6b7a;
  margin: 0 0 22px;
  max-width: 560px;
  line-height: 1.65;
}

/* info cards — single row, half screen, compact */
.hhc-cth__cards {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  width: 50%;
  max-width: 50%;
  min-width: 0;
}
.hhc-cth__card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 3px 14px rgba(0,26,61,.07);
}
.hhc-cth__card-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: #fff;
}
.hhc-cth__card-icon--green { background: #00a651; }
.hhc-cth__card-icon--blue  { background: #2563eb; }
.hhc-cth__card-icon--red   { background: #f43f5e; }
.hhc-cth__card-title {
  font-size: .72rem;
  font-weight: 700;
  color: #001a3d;
  margin: 0 0 1px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
}
.hhc-cth__card-val {
  font-size: .75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 1px;
  display: block;
  line-height: 1.25;
  word-break: break-word;
}
a.hhc-cth__card-val:hover { color: #00a651; }
.hhc-cth__card-sub {
  font-size: .65rem;
  color: #8a96a3;
  margin: 0;
  line-height: 1.25;
}

/* ── Body ── */
.hhc-cth__body { padding: 28px 0 56px; background: #f5f9fc; }

/* 3-column grid — equal column heights */
.hhc-cth__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  margin-top: 0;
  align-items: stretch;
}
.hhc-cth__col-left,
.hhc-cth__col-center,
.hhc-cth__col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

/* col left */
.hhc-cth__col-left .hhc-cth__social-box { flex-shrink: 0; }
.hhc-cth__col-left .hhc-cth__feats { flex: 1; min-height: 0; }
.hhc-cth__social-box {
  background: #fff; border: 1px solid #e8eef4;
  border-radius: 14px; padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.hhc-cth__social-title {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 700; color: #1a1a2e; margin: 0 0 4px;
}
.hhc-cth__soc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hhc-green, #009b4e); display: inline-block;
}
.hhc-cth__social-sub { font-size: .78rem; color: #888; margin: 0 0 14px; }
.hhc-cth__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.hhc-cth__soc {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem; color: #fff;
  transition: transform .2s, box-shadow .2s;
}
.hhc-cth__soc:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.2); color: #fff; }
.hhc-cth__soc--fb { background: #1877f2; }
.hhc-cth__soc--li { background: #0a66c2; }
.hhc-cth__soc--ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%,#fd5949 45%,#d6249f 60%,#285aeb 90%); }
.hhc-cth__soc--yt { background: #ff0000; }
.hhc-cth__soc--wa { background: #25d366; }
.hhc-cth__feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-auto-rows: 1fr;
  align-content: stretch;
}
.hhc-cth__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  min-height: 0;
  border: none;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0,26,61,.05);
}
.hhc-cth__feat--green  { background: #e8f8ef; }
.hhc-cth__feat--green > i  { color: #00a651; }
.hhc-cth__feat--blue   { background: #e8f1fd; }
.hhc-cth__feat--blue > i   { color: #2563eb; }
.hhc-cth__feat--purple { background: #f0ebfa; }
.hhc-cth__feat--purple > i { color: #7c3aed; }
.hhc-cth__feat--pink   { background: #fce8f0; }
.hhc-cth__feat--pink > i   { color: #ec4899; }
.hhc-cth__feat > i { font-size: 1.15rem; flex-shrink: 0; }
.hhc-cth__feat > div > p { font-size: .78rem; font-weight: 700; color: #001a3d; margin: 0 0 2px; }
.hhc-cth__feat > div > span { font-size: .68rem; color: #6b7a88; }

/* col center — form (same height as left / right columns) */
.hhc-cth__col-center { min-height: 0; }
.hhc-cth__form-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.hhc-cth__form-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #001a3d;
  text-align: center;
  margin: 0 0 4px;
  flex-shrink: 0;
}
.hhc-cth__form-title span { color: #00a651; }
.hhc-cth__form-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.hhc-cth__form-rule span {
  display: block;
  width: 36px;
  height: 1.5px;
  background: #e0e7ef;
}
.hhc-cth__form-rule i { color: #e53e3e; font-size: .75rem; }
.hhc-cth__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}
.hhc-cth__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex-shrink: 0; }
.hhc-cth__form-field {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hhc-cth__form-field--grow {
  flex: 1;
  align-items: stretch;
  min-height: 0;
}
.hhc-cth__form-field > i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: .8rem;
  pointer-events: none;
}
.hhc-cth__form-field--grow > i { top: 12px; transform: none; }
.hhc-cth__input {
  width: 100%;
  border: 1.5px solid #e0e7ef;
  border-radius: 8px;
  padding: 8px 10px 8px 30px;
  font-size: .82rem;
  color: #1a1a2e;
  background: #f8fafc;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.hhc-cth__input:focus { border-color: var(--hhc-green, #009b4e); background: #fff; }
.hhc-cth__textarea {
  flex: 1;
  min-height: 52px;
  height: 100%;
  resize: none;
  padding: 8px 10px;
}
.hhc-cth__privacy {
  font-size: .68rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  flex-shrink: 0;
}
.hhc-cth__privacy i { color: var(--hhc-green, #009b4e); }
.hhc-cth__submit {
  width: 100%;
  background: linear-gradient(90deg, #00a651 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  transition: opacity .2s, transform .2s;
}
.hhc-cth__submit:hover { opacity: .9; transform: translateY(-1px); }
.hhc-cth__form-msg {
  font-size: .75rem;
  text-align: center;
  margin: 2px 0 0;
  min-height: 0;
  flex-shrink: 0;
}
.hhc-cth__form-msg--ok  { color: #009b4e; }
.hhc-cth__form-msg--err { color: #e53e3e; }

/* col right — map + trust */
.hhc-cth__col-right .hhc-cth__trust { flex-shrink: 0; }
.hhc-cth__map-wrap {
  flex: 1;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  display: flex;
}
.hhc-cth__map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: none;
  display: block;
  flex: 1;
}
.hhc-cth__map-placeholder {
  flex: 1;
  min-height: 0;
  background: #fff;
  border: 2px dashed #ddd;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  gap: 10px;
  text-align: center;
  padding: 16px;
}
.hhc-cth__map-placeholder i { font-size: 2.5rem; }
.hhc-cth__map-placeholder p { font-size: .82rem; margin: 0; }
.hhc-cth__trust {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 10px;
}
.hhc-cth__trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; background: #fff; border: 1px solid #e8eef4;
  border-radius: 12px; padding: 12px 8px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.hhc-cth__trust-item i {
  font-size: 1.3rem; color: var(--hhc-green, #009b4e);
}
.hhc-cth__trust-item p {
  font-size: .7rem; font-weight: 700;
  color: #333; margin: 0; line-height: 1.3;
}

@media (max-width: 1100px) {
  .hhc-cth__cards { width: 62%; max-width: 62%; }
  .hhc-cth__grid { grid-template-columns: 1fr 1.2fr 1fr; }
}
@media (max-width: 900px) {
  .hhc-cth__cards {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .hhc-cth__card { flex: 1 1 calc(33.333% - 8px); min-width: 140px; }
  .hhc-cth__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .hhc-cth__cards { flex-direction: column; }
  .hhc-cth__card { flex: 1 1 auto; width: 100%; }
  .hhc-cth__form-row { grid-template-columns: 1fr; }
  .hhc-cth__trust { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.hhc-footer {
  position: relative;
  color: #fff;
  background: linear-gradient(160deg, #07122a 0%, #0d2344 40%, #07271d 100%);
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  display: block;
  width: 100%;
}

/* green glow right side */
.hhc-footer::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 420px; height: 100%;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(0,155,78,.18) 0%, transparent 55%),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 28px,
      rgba(0,155,78,.04) 28px,
      rgba(0,155,78,.04) 30px
    );
  pointer-events: none;
  z-index: 0;
}

/* ── Wave top (SVG) ── */
.hhc-footer__wave {
  position: relative;
  line-height: 0;
  margin-top: 0;
}
.hhc-footer__wave svg {
  display: block;
  width: 100%;
  height: 55px;
}

/* ── Main section ── */
.hhc-footer__main {
  padding: 18px 0 10px;
  position: relative;
  z-index: 1;
}

.hhc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 18px;
  align-items: start;
}

/* ── Brand column ── */
.hhc-footer__brand-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.hhc-footer__brand-info { min-width: 0; }
.hhc-footer__logo {
  height: 52px;
  width: 52px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  padding: 3px;
}
.hhc-footer__company {
  font-family: var(--hhc-font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 1px;
  line-height: 1.15;
}
.hhc-footer__company span.co-green { color: var(--hhc-green, #009b4e); }
.hhc-footer__tagline {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #e53e3e;
  text-transform: uppercase;
  margin: 0;
}
.hhc-footer__heartbeat {
  margin: 2px 0 4px;
  width: 140px;
}
.hhc-footer__heartbeat svg { width: 100%; height: auto; display: block; }
.hhc-footer__desc {
  font-size: .76rem;
  color: rgba(255,255,255,.62);
  line-height: 1.45;
  max-width: 250px;
  margin: 0 0 8px;
}

/* ── Newsletter ── */
.hhc-footer__newsletter { margin-bottom: 8px; }
.hhc-footer__nl-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55);
  margin: 0 0 4px;
}
.hhc-footer__nl-label i { color: var(--hhc-green, #009b4e); margin-right: 5px; }
.hhc-footer__nl-form {
  display: flex;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.hhc-footer__nl-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 6px 10px;
  font-size: .78rem;
  color: #fff;
  min-width: 0;
}
.hhc-footer__nl-input::placeholder { color: rgba(255,255,255,.35); }
.hhc-footer__nl-btn {
  flex-shrink: 0;
  background: var(--hhc-green, #009b4e);
  border: none;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  font-size: .82rem;
  transition: background .2s;
}
.hhc-footer__nl-btn:hover { background: #007a3d; }
.hhc-footer__nl-msg {
  font-size: .72rem;
  margin: 4px 0 0;
  min-height: 0;
}
.hhc-footer__nl-msg--ok  { color: #4ade80; }
.hhc-footer__nl-msg--err { color: #f87171; }

/* social icons */
.hhc-footer__social { display: flex; gap: 6px; flex-wrap: wrap; }
.hhc-footer__soc-link {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.hhc-footer__soc-link:hover {
  background: var(--hhc-green, #009b4e);
  border-color: var(--hhc-green, #009b4e);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Shared column heading ── */
.hhc-footer__col-heading {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin: 0 0 8px;
  padding-bottom: 8px;
  position: relative;
}
.hhc-footer__col-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 2.5px;
  background: #e53e3e;
  border-radius: 2px;
}

/* ── Links ── */
.hhc-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}
.hhc-footer__link-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 0;
  border-bottom: 1px dotted rgba(255,255,255,.1);
  font-size: .8rem;
  color: rgba(255,255,255,.7);
}
.hhc-footer__link-item i {
  font-size: .6rem;
  color: var(--hhc-green, #009b4e);
  flex-shrink: 0;
}
.hhc-footer__link-item a {
  color: rgba(255,255,255,.7);
  transition: color .2s, padding-left .2s;
}
.hhc-footer__link-item a:hover { color: #fff; padding-left: 4px; }

/* ── Contact list ── */
.hhc-footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}
.hhc-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: .75rem;
  color: rgba(255,255,255,.8);
  line-height: 1.25;
}
.hhc-footer__contact-item a { color: rgba(255,255,255,.8); }
.hhc-footer__contact-item a:hover { color: #fff; }
.hhc-footer__contact-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,155,78,.2);
  border: 1px solid rgba(0,155,78,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  color: var(--hhc-green, #009b4e);
}

/* ── Feature strip ── */
.hhc-footer__feat-wrap {
  padding: 4px 0;
}
.hhc-footer__feat-strip {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 6px 14px;
  gap: 0;
}
.hhc-footer__feat {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.hhc-footer__feat-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(0,155,78,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--hhc-green, #009b4e);
  background: rgba(0,155,78,.1);
}
.hhc-footer__feat-icon img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(476%) hue-rotate(96deg); }
.hhc-footer__feat-body {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}
.hhc-footer__feat-title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
.hhc-footer__feat-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.6);
  margin: 0;
  white-space: nowrap;
}
.hhc-footer__feat-sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 12px;
}
.hhc-footer__feat-sep::before,
.hhc-footer__feat-sep::after {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.15);
}
.hhc-footer__feat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #e53e3e;
  display: block;
}

/* ── Heartbeat divider ── */
.hhc-footer__hb-divider {
  padding: 2px 0 0;
}
.hhc-footer__hb-divider svg {
  width: 100%; height: 18px; display: block;
}

/* ── Copyright bar ── */
.hhc-footer__bar {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 6px 0;
}
.hhc-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.hhc-footer__copy {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}
.hhc-footer__copy-brand { color: var(--hhc-green, #009b4e); }
.hhc-footer__credit {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}
.hhc-footer__credit-passion { color: #a78bfa; }
.hhc-footer__credit-care { color: var(--hhc-green, #009b4e); }
.hhc-footer__credit-heart { color: #e53e3e; font-size: .75rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hhc-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  /* Brand full width, Quick Links | Our Products side-by-side, Contact full width */
  .hhc-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }
  .hhc-footer__brand {
    grid-column: 1 / -1;
  }
  .hhc-footer__col--links,
  .hhc-footer__col--products {
    grid-column: auto;
    min-width: 0;
  }
  .hhc-footer__col--contact {
    grid-column: 1 / -1;
  }
  .hhc-footer__col-heading {
    font-size: .78rem;
  }
  .hhc-footer__link-item {
    font-size: .78rem;
  }
  .hhc-footer__feat-strip { flex-direction: column; gap: 12px; }
  .hhc-footer__feat-sep { flex-direction: row; padding: 0; }
  .hhc-footer__feat-sep::before,
  .hhc-footer__feat-sep::after { width: 24px; height: 1px; }
  .hhc-footer__bar-inner { flex-direction: column; text-align: center; }
}

/* ── Compact mode for short viewports ── */
@media (max-height: 720px) {
  .hhc-footer__main { padding: 12px 0 8px; }
  .hhc-footer__grid { gap: 16px; }
  .hhc-footer__brand-top { margin-bottom: 2px; }
  .hhc-footer__logo { height: 44px; width: 44px; }
  .hhc-footer__company { font-size: 1rem; }
  .hhc-footer__heartbeat { width: 110px; margin: 0 0 2px; }
  .hhc-footer__desc { font-size: .72rem; margin: 0 0 6px; }
  .hhc-footer__newsletter { margin-bottom: 6px; }
  .hhc-footer__nl-label { margin: 0 0 2px; }
  .hhc-footer__link-item { padding: 1px 0; font-size: .76rem; }
  .hhc-footer__contact-item { padding: 3px 7px; font-size: .72rem; }
  .hhc-footer__feat-wrap { padding: 2px 0; }
  .hhc-footer__feat-strip { padding: 4px 12px; }
  .hhc-footer__hb-divider { padding: 0; }
  .hhc-footer__hb-divider svg { height: 14px; }
  .hhc-footer__bar { padding: 4px 0; }
}

/* ============================================================
   FORMS
   ============================================================ */
.hhc-form-card {
  background: var(--hhc-white);
  border-radius: var(--hhc-radius-xl);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border: 1px solid var(--hhc-border);
  box-shadow: var(--hhc-shadow-lg);
}

.hhc-field { margin-bottom: 1.1rem; }
.hhc-form label {
  font-weight: 600;
  font-size: .85rem;
  color: var(--hhc-blue);
  display: block;
  margin-bottom: .4rem;
}
.hhc-input, .hhc-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--hhc-border);
  font: inherit;
  font-size: .95rem;
  color: var(--hhc-dark);
  background: var(--hhc-white);
  transition: border-color var(--hhc-dur) var(--hhc-ease),
              box-shadow var(--hhc-dur) var(--hhc-ease);
}
.hhc-input:focus, .hhc-textarea:focus {
  outline: none;
  border-color: var(--hhc-green);
  box-shadow: 0 0 0 4px rgba(0,155,78,.12);
}
.hhc-field--error .hhc-input,
.hhc-field--error .hhc-textarea {
  border-color: var(--hhc-red);
  box-shadow: 0 0 0 4px rgba(237,28,36,.08);
}
.hhc-field__err {
  color: var(--hhc-red);
  font-size: .8rem;
  margin: .3rem 0 0;
  font-weight: 500;
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.hhc-product-detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: start;
}
.hhc-product-detail__img {
  border-radius: var(--hhc-radius-xl);
  box-shadow: var(--hhc-shadow-xl);
}
.hhc-spec {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: .93rem;
}
.hhc-spec th, .hhc-spec td {
  text-align: left;
  padding: .65rem .9rem;
  border-bottom: 1px solid var(--hhc-border);
  vertical-align: top;
}
.hhc-spec tr:hover td, .hhc-spec tr:hover th {
  background: rgba(43,57,144,.03);
}
.hhc-spec th {
  width: 36%;
  color: var(--hhc-blue);
  font-weight: 700;
  font-size: .88rem;
}
.hhc-disclaimer {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  font-size: .88rem;
  color: #7c2d12;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  line-height: 1.6;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.hhc-team-card {
  background: var(--hhc-white);
  border-radius: var(--hhc-radius-lg);
  border: 1px solid var(--hhc-border);
  overflow: hidden;
  box-shadow: var(--hhc-shadow);
  transition: transform var(--hhc-dur) var(--hhc-ease-spring),
              box-shadow var(--hhc-dur) var(--hhc-ease);
}
.hhc-team-card:hover { transform: translateY(-6px); box-shadow: var(--hhc-shadow-lg); }
.hhc-team-card__photo { overflow: hidden; position: relative; }
.hhc-team-card__photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--hhc-dur-slow) var(--hhc-ease);
}
.hhc-team-card:hover .hhc-team-card__photo img { transform: scale(1.06); }
.hhc-team-card__body { padding: 1.25rem 1.35rem 1.5rem; }
.hhc-team-card__name {
  margin: 0 0 .3rem;
  color: var(--hhc-blue);
  font-family: var(--hhc-font-head);
  font-weight: 800;
  font-size: 1.05rem;
}
.hhc-team-card__role { margin: 0; font-weight: 700; color: var(--hhc-green); font-size: .92rem; }
.hhc-team-card__dept { margin: .15rem 0 0; font-size: .82rem; color: var(--hhc-muted); }
.hhc-team-card__bio  { margin: .65rem 0 0; font-size: .88rem; line-height: 1.65; color: var(--hhc-muted); }

/* ============================================================
   FILTERS (Career / Products)
   ============================================================ */
.hhc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
}
.hhc-filter-btn {
  padding: .5rem 1.1rem;
  border-radius: var(--hhc-radius-full);
  border: 1.5px solid var(--hhc-border);
  background: var(--hhc-white);
  color: var(--hhc-dark);
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--hhc-dur) var(--hhc-ease);
}
.hhc-filter-btn:hover, .hhc-filter-btn.is-active {
  background: var(--hhc-blue);
  color: var(--hhc-white);
  border-color: var(--hhc-blue);
}

/* ============================================================
   JOB CARDS
   ============================================================ */
.hhc-job-card {
  padding: 1.5rem 1.75rem;
  border-radius: var(--hhc-radius-lg);
  border: 1.5px solid var(--hhc-border);
  margin-bottom: .85rem;
  background: var(--hhc-white);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  transition: border-color var(--hhc-dur) var(--hhc-ease),
              box-shadow var(--hhc-dur) var(--hhc-ease),
              transform var(--hhc-dur) var(--hhc-ease-spring);
}
.hhc-job-card:hover {
  border-color: var(--hhc-green);
  box-shadow: var(--hhc-shadow);
  transform: translateX(4px);
}
.hhc-job-card__title { font-weight: 700; color: var(--hhc-blue); font-size: 1.05rem; margin: 0 0 .3rem; }
.hhc-job-card__meta  { color: var(--hhc-muted); font-size: .88rem; }

/* ============================================================
   FLOW STEPS
   ============================================================ */
.hhc-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  counter-reset: hhc-flow;
}
.hhc-flow__step {
  flex: 1 1 160px;
  background: var(--hhc-white);
  border-radius: var(--hhc-radius-lg);
  padding: 1.25rem;
  border: 1.5px solid var(--hhc-border);
  position: relative;
  counter-increment: hhc-flow;
  transition: border-color var(--hhc-dur) var(--hhc-ease),
              box-shadow var(--hhc-dur) var(--hhc-ease),
              transform var(--hhc-dur) var(--hhc-ease-spring);
}
.hhc-flow__step:hover {
  border-color: var(--hhc-green);
  box-shadow: var(--hhc-shadow);
  transform: translateY(-3px);
}
.hhc-flow__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hhc-green), var(--hhc-lime));
  color: var(--hhc-white);
  font-size: .72rem;
  font-weight: 900;
  margin-bottom: .75rem;
}

/* ============================================================
   CONTACT GRID
   ============================================================ */
.hhc-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.hhc-map-embed { margin-top: 2rem; }
.hhc-map-embed iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--hhc-radius-lg);
  box-shadow: var(--hhc-shadow);
}

/* ============================================================
   GALLERY
   ============================================================ */
.hhc-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.hhc-gallery__item {
  overflow: hidden;
  border-radius: var(--hhc-radius);
  position: relative;
}
.hhc-gallery__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--hhc-dur-slow) var(--hhc-ease);
}
.hhc-gallery__item:hover img { transform: scale(1.08); }

/* ============================================================
   TIMELINE
   ============================================================ */
.hhc-timeline {
  border-left: 3px solid var(--hhc-green);
  margin-left: .75rem;
  padding-left: 1.5rem;
}
.hhc-timeline__item {
  margin-bottom: 1.75rem;
  position: relative;
}
.hhc-timeline__item::before {
  content: '';
  position: absolute;
  left: -1.85rem; top: .35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--hhc-white);
  border: 3px solid var(--hhc-green);
  box-shadow: 0 0 0 3px rgba(0,155,78,.15);
}
.hhc-timeline__year {
  display: inline-block;
  font-weight: 800;
  color: var(--hhc-white);
  margin-bottom: .35rem;
  background: linear-gradient(135deg, var(--hhc-blue), var(--hhc-blue-lt));
  padding: .18rem .7rem;
  border-radius: var(--hhc-radius-full);
  font-size: .82rem;
  letter-spacing: .04em;
}

/* ============================================================
   MVV (Mission / Vision / Values)
   ============================================================ */
.hhc-mvv__card {
  background: var(--hhc-white);
  border-radius: var(--hhc-radius-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--hhc-border);
  box-shadow: var(--hhc-shadow);
  max-width: 540px;
  position: relative;
  overflow: hidden;
  transition: transform var(--hhc-dur) var(--hhc-ease-spring),
              box-shadow var(--hhc-dur) var(--hhc-ease);
}
.hhc-mvv__card:hover { transform: translateY(-4px); box-shadow: var(--hhc-shadow-lg); }
.hhc-mvv__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hhc-green), var(--hhc-blue));
}

/* ============================================================
   DOCUMENTS / COMPLIANCE
   ============================================================ */
.hhc-doc-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.hhc-partner-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.hhc-partner-card {
  background: var(--hhc-white);
  border-radius: var(--hhc-radius-lg);
  padding: 1.5rem;
  border: 1.5px solid var(--hhc-border);
  box-shadow: var(--hhc-shadow);
  transition: transform var(--hhc-dur) var(--hhc-ease-spring),
              box-shadow var(--hhc-dur) var(--hhc-ease);
}
.hhc-partner-card:hover { transform: translateY(-4px); box-shadow: var(--hhc-shadow-lg); }
.hhc-partner-card img { max-height: 64px; margin-bottom: .85rem; }

.hhc-map-img img {
  border-radius: var(--hhc-radius-xl);
  margin-block: 1.25rem;
  box-shadow: var(--hhc-shadow-lg);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.hhc-prose     { max-width: 760px; }
.hhc-prose-block { max-width: 900px; }
.hhc-prose p, .hhc-prose-block p { line-height: 1.75; margin-bottom: 1em; }

.hhc-inline-img {
  border-radius: var(--hhc-radius-lg);
  margin: 1.25rem 0;
  box-shadow: var(--hhc-shadow);
}
.hhc-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.hhc-list {
  padding-left: 1.25rem;
  color: var(--hhc-dark);
}
.hhc-list li { margin-bottom: .4rem; line-height: 1.65; }
.hhc-list li::marker { color: var(--hhc-green); }

.hhc-section__cta { margin-top: 2rem; }
.hhc-text-link {
  font-weight: 700;
  color: var(--hhc-green);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.hhc-text-link::after { content: '→'; transition: transform var(--hhc-dur) var(--hhc-ease-spring); }
.hhc-text-link:hover::after { transform: translateX(4px); }
.hhc-text-link:hover { color: var(--hhc-green-dk); }

/* Stats / Counter strip */
.hhc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.hhc-stat {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--hhc-white);
  border-radius: var(--hhc-radius-lg);
  border: 1px solid var(--hhc-border);
  box-shadow: var(--hhc-shadow-sm);
  transition: transform var(--hhc-dur) var(--hhc-ease-spring),
              box-shadow var(--hhc-dur) var(--hhc-ease);
}
.hhc-stat:hover { transform: translateY(-4px); box-shadow: var(--hhc-shadow); }
.hhc-stat__val {
  font-family: var(--hhc-font-head);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--hhc-blue), var(--hhc-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .35rem;
}
.hhc-stat__lbl {
  font-size: .8rem;
  color: var(--hhc-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Divider */
.hhc-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hhc-border), transparent);
  margin-block: 2rem;
}

/* Tooltip */
[data-tooltip] {
  position: relative;
  cursor: help;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: .4rem .8rem;
  border-radius: 8px;
  background: var(--hhc-dark);
  color: var(--hhc-white);
  font-size: .78rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--hhc-dur) var(--hhc-ease);
}
[data-tooltip]:hover::after { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hhc-hero__stats { gap: 1rem 1.5rem; }
  .hhc-hero__stat-val { font-size: 1.6rem; }
  .hhc-job-card { flex-direction: column; }

  /* Mobile hero: left/right gap + full-width buttons */
  .hhc-hero__inner.hhc-container {
    width: 100%;
    max-width: none;
    padding-inline: 1.25rem;
    box-sizing: border-box;
  }
  .hhc-hero__copy {
    max-width: 100%;
  }
  .hhc-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }
  .hhc-hero__actions .hhc-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hhc-hero__inner.hhc-container {
    padding-inline: 1.15rem;
  }
  /* Keep Quick Links | Our Products side-by-side on small phones */
  .hhc-footer__grid { grid-template-columns: 1fr 1fr; }
  .hhc-footer__brand,
  .hhc-footer__col--contact { grid-column: 1 / -1; }
}

/* ============================================================
   ACCESSIBILITY — Focus Styles
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--hhc-lime);
  outline-offset: 3px;
  border-radius: 4px;
}
body:not([data-kb]) :focus { outline: none; }
body[data-kb] :focus-visible { outline: 3px solid var(--hhc-lime); outline-offset: 3px; }

.hhc-skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--hhc-blue);
  color: var(--hhc-white);
  padding: .6rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  z-index: 10000;
  transition: top var(--hhc-dur) var(--hhc-ease);
}
.hhc-skip-link:focus { top: 1rem; color: var(--hhc-white); }

/* Selection highlight */
::selection { background: rgba(0,155,78,.2); color: var(--hhc-dark); }

/* ============================================================
   FEATURED PRODUCTS SECTION  (fp-*)
   ============================================================ */
.fp-section {
  padding-top: 60px;
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(155deg, #f6f9ff 0%, #f0f5fb 55%, #eaf2f8 100%);
  position: relative;
  overflow: hidden;
}

/* ECG peak dot pulse */
@keyframes fpDotPulse {
  0%, 100% { opacity: 0.9; }
  50%       { opacity: 0.4; }
}
@keyframes fpRingPulse {
  0%, 100% { opacity: 0.35; r: 8; }
  50%       { opacity: 0.08; r: 14; }
}
@keyframes fpOuterRing {
  0%   { opacity: 0; r: 12; }
  40%  { opacity: 0.2; }
  100% { opacity: 0; r: 22; }
}
.fp-ecg-dot   { animation: fpDotPulse 2.2s ease-in-out infinite; }
.fp-ecg-ring1 { animation: fpRingPulse 2.2s ease-in-out infinite; }
.fp-ecg-ring2 { animation: fpOuterRing 2.2s ease-in-out infinite; }

/* ── Header layout ────────────────────────────────── */
.fp-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.fp-header__copy { max-width: 640px; }

.fp-header__deco {
  flex-shrink: 0;
  width: clamp(280px, 36vw, 480px);
  opacity: 0.9;
  pointer-events: none;
}

.fp-deco-svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .fp-header { grid-template-columns: 1fr; }
  .fp-header__deco { display: none; }
}

/* ── Eyebrow badge ────────────────────────────────── */
.fp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--hhc-green);
  border: 1.5px solid rgba(0,155,78,0.45);
  border-radius: 999px;
  padding: 0.32rem 0.9rem;
  margin-bottom: 0.85rem;
  background: rgba(0,155,78,0.05);
}

.fp-eyebrow i { font-size: 0.7rem; }

/* ── Heading ──────────────────────────────────────── */
.fp-heading {
  font-family: var(--hhc-font-head);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
}

.fp-heading__first {
  display: inline-block;
  color: #0a1f4e;
  position: relative;
}

.fp-heading__first::after {
  content: '';
  display: block;
  width: 65%;
  height: 4px;
  margin-top: 0.28rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--hhc-green), var(--hhc-lime));
}

.fp-heading__rest { color: var(--hhc-green); }

.fp-subheading {
  color: var(--hhc-muted);
  font-size: 1rem;
  line-height: 1.68;
  margin: 0;
  max-width: 600px;
}

/* ── Cards grid ───────────────────────────────────── */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

@media (max-width: 1100px) { .fp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .fp-grid { grid-template-columns: 1fr; } }

/* ── Card ─────────────────────────────────────────── */
.fp-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(215, 228, 248, 0.85);
  box-shadow: 0 4px 20px rgba(21, 45, 102, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.30s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.30s ease;
}

.fp-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(21, 45, 102, 0.15);
}

/* Image area — keep on top for desktop */
.fp-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  height: 240px;
  order: -1;
  background: #fff;
  text-decoration: none;
}

.fp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  box-sizing: border-box;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-card:hover .fp-card__media img { transform: scale(1.03); }

/* Placeholder when no image */
.fp-card__media-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #b8cde8;
}

/* Category icon badge — overlay top-right of image */
.fp-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--hhc-green);
  box-shadow: 0 2px 12px rgba(21, 45, 102, 0.14);
  z-index: 3;
  transition: transform 0.25s var(--hhc-ease-spring);
}

.fp-card:hover .fp-card__badge { transform: scale(1.1); }

.fp-card__title-rule { display: none; }

/* Green accent bar at bottom of image */
.fp-card__media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hhc-green), var(--hhc-lime));
  z-index: 1;
}

/* Card body */
.fp-card__body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  position: static;
}

.fp-card__name {
  margin: 0 0 0.2rem;
  font-family: var(--hhc-font-head);
  font-weight: 700;
  font-size: 1.04rem;
  color: #0a1f4e;
  line-height: 1.22;
}

.fp-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fp-card__name a:hover { color: var(--hhc-green); }

.fp-card__row {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: var(--hhc-green);
  font-weight: 500;
  line-height: 1.3;
}

.fp-card__row i {
  font-size: 0.78rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.fp-card__row--model span {
  font-weight: 700;
  color: var(--hhc-green);
}

.fp-card__desc {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: #5a6b82;
  line-height: 1.58;
  flex: 1;
}

/* View detail button */
.fp-card__btn {
  display: block;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--hhc-green);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hhc-green);
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease,
              transform 0.22s var(--hhc-ease-spring);
}

.fp-card__btn:hover {
  background: var(--hhc-green);
  color: #fff;
  transform: translateY(-1px);
}

/* ── CTA button ───────────────────────────────────── */
.fp-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4.5vw, 2.75rem);
}

.fp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a1f4e 0%, #0d3578 50%, #0a4fa8 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 36px rgba(10, 31, 78, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.fp-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(10, 31, 78, 0.40);
  color: #fff;
}

.fp-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.fp-cta__arr {
  font-size: 1.05rem;
  margin-left: 0.1rem;
}

/* Mobile: same side-by-side layout as product categories */
@media (max-width: 640px) {
  .fp-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fp-card {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    min-height: 0;
    border-radius: 20px;
    overflow: hidden;
    transform: none !important;
  }

  .fp-card--blue {
    border: 1.5px solid rgba(13, 139, 255, 0.28);
    border-top: 3px solid #0d8bff;
  }

  .fp-card--green {
    border: 1.5px solid rgba(0, 155, 78, 0.28);
    border-top: 3px solid #009b4e;
  }

  .fp-card:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(21, 45, 102, 0.07);
  }

  .fp-card__body {
    grid-column: 1;
    grid-row: 1;
    order: unset !important;
    flex: unset !important;
    max-width: none;
    width: auto;
    min-width: 0;
    padding: 1rem .45rem 1rem 1rem;
    gap: 0.28rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }

  .fp-card__badge {
    position: absolute !important;
    top: calc(1rem + 4px) !important;
    right: calc(0.4rem + 2px) !important;
    left: auto !important;
    bottom: auto !important;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin: 0;
    background: rgba(255,255,255,0.95) !important;
    color: var(--hhc-green) !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(21, 45, 102, 0.16);
    font-size: 0.82rem;
    z-index: 4;
  }

  .fp-card:hover .fp-card__badge { transform: none; }

  .fp-card__name {
    font-size: 1.02rem;
    margin: 0 0 .2rem;
  }

  .fp-card__title-rule {
    display: block;
    width: 36px;
    height: 3px;
    margin-bottom: .35rem;
    border-radius: 2px;
    background: linear-gradient(90deg, #0d8bff, rgba(13, 139, 255, 0.18));
  }

  .fp-card--green .fp-card__title-rule {
    background: linear-gradient(90deg, #009b4e, rgba(0, 200, 83, 0.18));
  }

  .fp-card__row {
    font-size: .74rem;
    margin: 0;
  }

  .fp-card__desc {
    font-size: .78rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    flex: 0 1 auto;
  }

  .fp-card__btn {
    margin-top: auto;
    padding: .55rem 0 0;
    border: none;
    border-radius: 0;
    text-align: left;
    font-size: .8rem;
    color: #0d5cb5;
    background: transparent;
  }

  .fp-card--green .fp-card__btn { color: #008a42; }

  .fp-card__btn:hover {
    background: transparent;
    color: inherit;
    text-decoration: underline;
    transform: none;
  }

  .fp-card__media {
    grid-column: 2;
    grid-row: 1;
    order: unset !important;
    flex: unset !important;
    width: auto !important;
    height: auto !important;
    min-height: 0;
    align-self: start !important;
    margin: 0 !important;
    padding: 1rem .4rem 1rem 0 !important;
    background: transparent !important;
    border-radius: 0 18px 18px 0;
    overflow: hidden;
    display: block;
    position: relative;
  }

  /* Soft blob only — never a solid green/blue bar */
  .fp-card__media::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    width: 150% !important;
    height: 150% !important;
    right: -50% !important;
    top: -30% !important;
    bottom: auto !important;
    left: auto !important;
    border-radius: 50% !important;
    background: rgba(13, 139, 255, 0.13) !important;
    pointer-events: none;
    z-index: 0;
  }

  .fp-card--green .fp-card__media::after {
    background: rgba(0, 168, 81, 0.13) !important;
  }

  .fp-card__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto !important;
    max-height: 165px;
    min-height: 0;
    object-fit: contain !important;
    object-position: center top;
    transform: none !important;
  }

  .fp-card:hover .fp-card__media img { transform: none !important; }

  .fp-card__media-ph {
    position: relative;
    z-index: 1;
    min-height: 110px;
    font-size: 2rem;
    background: transparent !important;
  }
}

/* ============================================================
   PRODUCT DETAIL PAGE  (pd-*)
   ============================================================ */
.pd-section {
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(155deg, #f6f9ff 0%, #f0f5fb 55%, #eaf2f8 100%);
}

/* ── Top two-column layout ────────────────────────── */
.pd-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

@media (max-width: 860px) {
  .pd-top { grid-template-columns: 1fr; }
}

/* ── Left: Image card ─────────────────────────────── */
.pd-img-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 44px rgba(21, 45, 102, 0.11);
  border: 1px solid rgba(215, 228, 248, 0.85);
  display: flex;
  flex-direction: column;
}

.pd-img-card__photo {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: clamp(280px, 38vw, 440px);
}

/* Decorative hex SVG behind image */
.pd-img-card__hex {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pd-img-card__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(280px, 38vw, 440px);
  object-fit: contain;
  object-position: center;
  padding: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-img-card:hover .pd-img-card__photo img { transform: scale(1.04); }

.pd-img-card__ph {
  position: relative;
  z-index: 1;
  font-size: 5rem;
  color: #b8cde8;
}

.pd-img-card__info {
  padding: 1.5rem 1.75rem 1.65rem;
  border-top: 1px solid rgba(215, 228, 248, 0.7);
}

.pd-img-card__name {
  font-family: var(--hhc-font-head);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: #0a1f4e;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pd-img-card__tagline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #5a6b82;
  margin: 0;
}

.pd-img-card__tagline::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--hhc-green);
  flex-shrink: 0;
}

.pd-img-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4a5d75;
  margin: 0.45rem 0 0;
}

.pd-img-card__meta i {
  color: var(--hhc-green);
  font-size: 0.82rem;
  width: 14px;
  flex-shrink: 0;
}

.pd-img-card__meta span {
  font-weight: 600;
  color: #1c3560;
}

.pd-img-card__desc {
  font-size: 0.88rem;
  color: #6b7d94;
  line-height: 1.6;
  margin: 0.65rem 0 0;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(200, 215, 235, 0.7);
}

/* ── Right: Form card ─────────────────────────────── */
.pd-form-card {
  background: #fff;
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2rem) 1.75rem;
  box-shadow: 0 10px 44px rgba(21, 45, 102, 0.11);
  border: 1px solid rgba(215, 228, 248, 0.85);
}

.pd-form-card__hdr {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(220, 232, 248, 0.7);
}

.pd-form-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e0f5ea, #c8edda);
  border: 1px solid rgba(0,155,78,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--hhc-green);
  flex-shrink: 0;
}

.pd-form-card__title {
  font-family: var(--hhc-font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: #0a1f4e;
  margin: 0 0 0.28rem;
  line-height: 1.2;
}

.pd-form-card__subtitle {
  font-size: 0.87rem;
  color: #5a6b82;
  margin: 0 0 0.55rem;
  line-height: 1.5;
}

.pd-form-card__line {
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--hhc-green), var(--hhc-lime));
}

/* Form inputs */
.pd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.pd-field { margin-bottom: 0.85rem; }

.pd-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.32rem;
}

.pd-field .req { color: var(--hhc-red); }

.pd-input {
  width: 100%;
  padding: 0.68rem 0.95rem;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  font: inherit;
  font-size: 0.9rem;
  color: #0a1f4e;
  background: #f8faff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pd-input::placeholder { color: #a0aec0; }

.pd-input:focus {
  outline: none;
  border-color: var(--hhc-green);
  box-shadow: 0 0 0 3px rgba(0,155,78,0.10);
  background: #fff;
}

.pd-textarea {
  resize: vertical;
  min-height: 108px;
}

.pd-err {
  color: var(--hhc-red);
  font-size: 0.78rem;
  margin: 0.25rem 0 0;
  font-weight: 500;
}

/* Submit */
.pd-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.88rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hhc-green) 0%, var(--hhc-green-lt) 100%);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0,155,78,0.30);
  transition: transform 0.22s var(--hhc-ease-spring), box-shadow 0.22s ease;
  margin-top: 0.85rem;
}

.pd-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,155,78,0.40);
}

.pd-privacy {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #718096;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.pd-privacy i { color: var(--hhc-green); font-size: 0.74rem; }

/* ── Success Popup ────────────────────────────────── */
.pd-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 55, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.pd-popup-overlay--active {
  opacity: 1;
  pointer-events: all;
}

.pd-popup {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 3rem 2.5rem 2.25rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 80, 30, 0.22), 0 4px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(28px) scale(0.94);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-popup-overlay--active .pd-popup {
  transform: translateY(0) scale(1);
}

/* outer pulsing ring */
.pd-popup__ring {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: transparent;
  border: 2.5px solid rgba(0, 155, 78, 0.18);
  animation: pdRingPulse 2s ease-in-out infinite;
}

@keyframes pdRingPulse {
  0%, 100% { transform: translateX(-50%) scale(1);   opacity: 0.7; }
  50%       { transform: translateX(-50%) scale(1.18); opacity: 0; }
}

.pd-popup__icon {
  margin: 0 auto 1.25rem;
  width: 72px;
  height: 72px;
}

.pd-popup__icon svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 6px 18px rgba(0, 155, 78, 0.28));
}

/* checkmark draw animation */
.pd-popup__check {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: pdCheckDraw 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes pdCheckDraw {
  to { stroke-dashoffset: 0; }
}

.pd-popup__title {
  font-family: var(--hhc-font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #0a1f4e;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.pd-popup__msg {
  font-size: 0.97rem;
  color: #4a5d75;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.pd-popup__product {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0faf5;
  border: 1px solid #b6e8cc;
  color: #007a3d;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.6rem;
}

.pd-popup__product i { font-size: 0.82rem; }

.pd-popup__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--hhc-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2.4rem;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0, 155, 78, 0.3);
}

.pd-popup__btn:hover {
  background: #007a3d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 155, 78, 0.38);
}

@media (max-width: 500px) {
  .pd-row { grid-template-columns: 1fr; }
}

/* ── Related products ─────────────────────────────── */
.pd-related { margin-top: clamp(2.5rem, 6vw, 4.5rem); }

.pd-related__hdr { margin-bottom: clamp(1.25rem, 3vw, 2rem); }

.pd-related__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.pd-related__title {
  font-family: var(--hhc-font-head);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #0a1f4e;
  margin: 0;
}

/* ECG line decoration */
.pd-related__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 22px;
  margin: 0;
}

.pd-related__deco svg { display: block; width: 100%; height: 22px; }

/* View all button */
.pd-related__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a1f4e 0%, #0d3578 50%, #0a4fa8 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.87rem;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(10, 31, 78, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

.pd-related__view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 31, 78, 0.34);
  color: #fff;
}

.pd-related__view-all i { font-size: 0.78rem; }

/* ============================================================
   PRODUCTS PAGE — SECTION HEADER + FILTERS  (fp-*)
   ============================================================ */

/* ── Section Header ── */
.fp-section--page .fp-header {
  display: block;
  margin-bottom: 36px;
}
.fp-header__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--hhc-green, #009b4e); margin: 0 0 14px;
  background: rgba(0,155,78,.08); padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,155,78,.2);
}
.fp-header__title {
  display: block;
  font-family: var(--hhc-font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0d1f3c;
  margin: 0 0 12px;
  line-height: 1.15;
}
.fp-header__title span { color: var(--hhc-green, #009b4e); }
.fp-header__sub {
  display: block;
  font-size: .93rem;
  color: #718096;
  max-width: 520px;
  margin: 0;
  line-height: 1.65;
}

/* ── Filters ── */
.fp-filters {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(215, 228, 248, 0.9);
  box-shadow: 0 4px 24px rgba(21, 45, 102, 0.08);
  overflow: hidden;
}
.fp-filters__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
}
.fp-filters__top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-filters__top-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(0,155,78,.1); color: var(--hhc-green, #009b4e); font-size: .85rem;
}
.fp-filters__top-title {
  font-size: .88rem; font-weight: 700; color: #0d2137; letter-spacing: .01em;
}
.fp-filters__reset {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 600; color: #e53e3e;
  text-decoration: none; padding: 5px 12px; border-radius: 8px;
  background: rgba(229,62,62,.07); border: 1px solid rgba(229,62,62,.2);
  transition: background .2s;
}
.fp-filters__reset:hover { background: rgba(229,62,62,.14); }
.fp-filters__divider {
  height: 1px; background: rgba(215,228,248,.9);
}
.fp-filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 16px 20px;
}

/* Search field */
.fp-filters__field {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 220px;
  min-width: 0;
}

.fp-filters__label {
  position: absolute;
  left: 0.9rem;
  color: var(--hhc-muted);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}

.fp-filters__input {
  width: 100%;
  padding: 0.65rem 2.4rem 0.65rem 2.4rem;
  border-radius: 10px;
  border: 1.5px solid var(--hhc-border);
  font: inherit;
  font-size: 0.9rem;
  color: var(--hhc-dark);
  background: var(--hhc-light);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.fp-filters__input:focus {
  outline: none;
  border-color: var(--hhc-green);
  box-shadow: 0 0 0 4px rgba(0,155,78,0.10);
  background: #fff;
}

.fp-filters__clear {
  position: absolute;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--hhc-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.1rem 0.2rem;
}
.fp-filters__clear:hover { color: var(--hhc-red); }

/* Select fields */
.fp-filters__field--select {
  flex: 0 1 200px;
}

.fp-filters__sel-icon {
  position: absolute;
  left: 0.9rem;
  font-size: 0.8rem;
  color: var(--hhc-muted);
  pointer-events: none;
  z-index: 1;
}

.fp-filters__select {
  width: 100%;
  padding: 0.65rem 2rem 0.65rem 2.4rem;
  border-radius: 10px;
  border: 1.5px solid var(--hhc-border);
  font: inherit;
  font-size: 0.9rem;
  color: var(--hhc-dark);
  background: var(--hhc-light);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.fp-filters__select:focus {
  outline: none;
  border-color: var(--hhc-green);
  box-shadow: 0 0 0 4px rgba(0,155,78,0.10);
  background-color: #fff;
}

/* Search button */
.fp-filters__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.3rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hhc-green), var(--hhc-green-lt));
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,155,78,0.28);
  transition: transform 0.22s var(--hhc-ease-spring), box-shadow 0.22s ease;
  flex-shrink: 0;
}

.fp-filters__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,155,78,0.36);
}

@media (max-width: 640px) {
  .fp-filters__row { flex-direction: column; align-items: stretch; }
  .fp-filters__field,
  .fp-filters__field--select { flex: 1 1 100%; }
  .fp-filters__btn { width: 100%; justify-content: center; }
  .fp-filters__top { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Empty state */
.fp-empty {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1rem;
  color: var(--hhc-muted);
}

.fp-empty i {
  font-size: 3.5rem;
  color: #c8d8ee;
  display: block;
  margin-bottom: 1rem;
}

.fp-empty p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.fp-empty .fp-card__btn {
  display: inline-block;
  width: auto;
  padding: 0.65rem 1.8rem;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .hhc-header, .hhc-footer, .hhc-scroll-progress, .hhc-scroll-top,
  .hhc-cta-band, .hhc-hero__actions { display: none !important; }
}

/* ============================================================
   WHO WE ARE PAGE
   ============================================================ */

/* ── Hero Split ─────────────────────────────────────────── */
.wwa-hero {
  padding: 56px 0 48px;
  overflow: hidden;
  background: var(--hhc-white);
}
.wwa-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 48px;
  align-items: center;
}
.wwa-hero__left {
  display: block;
  min-width: 0;
}
.wwa-hero__right--mobile {
  display: none;
}
.wwa-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hhc-green, #009b4e);
  margin-bottom: 14px;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.wwa-eyebrow-icon { display: none; }
.wwa-eyebrow-text {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--hhc-green, #009b4e);
  text-transform: uppercase;
}
.wwa-eyebrow-dot {
  order: -1;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: #e53e3e;
  display: inline-block;
  flex-shrink: 0;
}
.wwa-hero__heading {
  font-family: var(--hhc-font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--hhc-blue-dk);
  line-height: 1.12;
  margin: 0 0 12px;
}
.wwa-heading__dark { color: var(--hhc-blue-dk, #0d2750); }
.wwa-heading__green { color: var(--hhc-blue-dk, #0d2750); }
.wwa-hero__heading-line {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--hhc-green);
  border-radius: 2px;
  margin-bottom: 20px;
}
.wwa-hero__body-wrap {
  margin-bottom: 8px;
}
.wwa-hero__body {
  font-size: .95rem;
  color: var(--hhc-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* Badges — horizontal row matching reference design */
.wwa-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 18px;
  margin: 22px 0 28px;
  align-items: flex-start;
}
.wwa-badge {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.wwa-badge__icon-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.wwa-badge__icon-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.wwa-badge__fa-wrap {
  width: 36px;
  height: 36px;
  background: rgba(0,155,78,.12);
  border: 1.5px solid var(--hhc-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hhc-green);
  font-size: .85rem;
  flex-shrink: 0;
}
.wwa-badge__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.wwa-badge__title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--hhc-green);
  line-height: 1.3;
}
.wwa-badge__sub {
  font-size: .72rem;
  color: var(--hhc-muted);
  line-height: 1.5;
  word-break: break-word;
}
.wwa-badge__chevron { display: none; }
.wwa-hero__btn { margin-top: 4px; }

/* Arcs hidden */
.wwa-hero__arc,
.wwa-hero__arc--green,
.wwa-hero__arc--blue { display: none; }

.wwa-hero__right--desktop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  max-height: 340px;
  overflow: hidden;
}
.wwa-hero__right--desktop .wwa-hero__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  object-position: right center;
  display: block;
  position: relative;
  z-index: 1;
  transform: translateX(1.5%);
}
.wwa-hero__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── 6 Service Cards ────────────────────────────────────── */
.wwa-cards-section {
  padding: 20px 0 64px;
  background: var(--hhc-white);
}
.wwa-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wwa-card {
  background: #fff;
  border: 1px solid #dfe6f2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(21, 45, 102, .08);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--hhc-dur) var(--hhc-ease), transform var(--hhc-dur) var(--hhc-ease);
}
.wwa-card:hover {
  box-shadow: 0 10px 24px rgba(21, 45, 102, .14);
  transform: translateY(-3px);
}
.wwa-card__top {
  padding: 20px 16px 12px;
  flex: 1;
}
.wwa-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.wwa-card__icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--hhc-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.1rem;
}
.wwa-card:nth-child(even) .wwa-card__icon-wrap { background: var(--hhc-blue-dk); }
.wwa-card__icon-wrap img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.wwa-card__title {
  font-family: var(--hhc-font-head);
  font-size: .98rem;
  font-weight: 700;
  color: #1f3175;
  line-height: 1.2;
}
.wwa-card__divider {
  width: 36px;
  height: 2px;
  background: var(--hhc-red);
  border-radius: 2px;
  margin-left: 62px;
  margin-bottom: 10px;
}
.wwa-card__desc {
  font-size: .89rem;
  color: var(--hhc-muted);
  line-height: 1.55;
}
.wwa-card__img {
  width: calc(100% - 28px);
  margin: 0 14px 8px;
  border-radius: 8px;
  height: 260px;
  min-height: 260px;
  max-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

/* ── 4 Feature Strip ────────────────────────────────────── */
.wwa-features-section {
  padding: 56px 0;
  background: var(--hhc-light);
}
.wwa-features-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}
.wwa-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  padding: 0 20px;
}
.wwa-feature:first-child { padding-left: 0; }
.wwa-feature:last-child  { padding-right: 0; }
.wwa-feature-sep {
  width: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  flex-shrink: 0;
}
.wwa-feature-sep::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--hhc-red);
  border-radius: 50%;
  opacity: .7;
}
.wwa-feature__icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--hhc-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.35rem;
}
.wwa-feature__icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.wwa-feature__title {
  font-family: var(--hhc-font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--hhc-blue-dk);
  margin-bottom: 6px;
}
.wwa-feature__desc {
  font-size: .8rem;
  color: var(--hhc-muted);
  line-height: 1.65;
}

/* ── CTA Banner (reference: slim white strip + green button) ── */
.wwa-cta {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  padding: 8px 0 14px;
  border-top: 1px solid #e8edf6;
  border-bottom: 1px solid #e8edf6;
  overflow: hidden;
}
.wwa-cta::before,
.wwa-cta::after {
  content: "";
  position: absolute;
  bottom: -60px;
  width: 240px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .35;
}
.wwa-cta::before {
  left: -70px;
  border: 18px solid #d8f0df;
}
.wwa-cta::after {
  right: -70px;
  border: 18px solid #dce4fa;
}
.wwa-cta__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(320px, 1.6fr) auto;
  align-items: center;
  gap: 22px;
}
.wwa-cta .hhc-container {
  padding-inline: clamp(28px, 5vw, 72px);
}
.wwa-cta__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.wwa-cta__icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--hhc-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.wwa-cta__icon-wrap img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.wwa-cta__heading {
  font-family: var(--hhc-font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--hhc-blue-dk);
  line-height: 1.25;
}
.wwa-cta__mid { min-width: 0; }
.wwa-cta__desc {
  font-size: .78rem;
  color: #5f6778;
  line-height: 1.45;
}
.wwa-cta__right {
  justify-self: end;
}
.wwa-cta .hhc-btn--primary {
  padding: .58rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,155,78,.26);
  font-size: .86rem;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wwa-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .wwa-features-grid { flex-wrap: wrap; gap: 24px; }
  .wwa-feature-sep { display: none; }
  .wwa-feature { flex: 0 0 calc(50% - 12px); padding: 0; }
  .wwa-cta__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wwa-cta__right {
    justify-self: start;
  }
}
@media (max-width: 768px) {
  .wwa-hero {
    padding: 36px 0 28px;
  }

  .wwa-hero__grid {
    display: block;
  }

  /* Desktop image off; mobile floated image on */
  .wwa-hero__right--desktop {
    display: none !important;
  }
  .wwa-hero__right--mobile {
    display: block !important;
    float: right;
    width: 44%;
    max-width: 160px;
    margin: 4px 0 12px 12px;
    position: relative;
    z-index: 1;
  }
  .wwa-hero__right--mobile .wwa-hero__img {
    width: 100%;
    height: auto;
    max-height: 170px;
    object-fit: contain;
    display: block;
  }

  .wwa-hero__heading-line {
    display: none !important;
  }

  .wwa-hero__eyebrow,
  .wwa-eyebrow-wrap {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .wwa-eyebrow-icon { display: none; }

  .wwa-hero__heading {
    font-size: clamp(1.35rem, 6.2vw, 1.7rem);
    margin: 0 0 8px;
    line-height: 1.18;
  }

  .wwa-hero__body {
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 10px;
    color: #5f6778;
  }

  .wwa-badges {
    clear: both;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 16px 0 12px;
  }
  .wwa-badge {
    flex: none;
    width: 100%;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .07);
    border: 1px solid #eef2f7;
  }
  .wwa-badge__icon-wrap,
  .wwa-badge__fa-wrap {
    width: 42px;
    height: 42px;
  }
  .wwa-badge__icon-wrap img {
    width: 42px;
    height: 42px;
  }
  .wwa-badge__fa-wrap {
    background: rgba(0, 155, 78, .12);
    border: none;
    font-size: 1rem;
  }
  .wwa-badge__title { font-size: .9rem; }
  .wwa-badge__sub { font-size: .74rem; }
  .wwa-badge__chevron {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-left: auto;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0, 155, 78, .12);
    color: #009b4e;
    font-size: .7rem;
  }

  .wwa-hero__btn {
    clear: both;
    display: inline-flex;
  }

  .wwa-cards-grid { grid-template-columns: 1fr; }
  .wwa-feature { flex: 0 0 100%; }
  .wwa-cta__grid { grid-template-columns: 1fr; gap: 14px; }
  .wwa-cta::before, .wwa-cta::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION
   ═══════════════════════════════════════════════════════════ */
.wcu-section {
  padding: 60px 0 40px;
  background: var(--hhc-white);
  position: relative;
  overflow: hidden;
}

/* ── Hero grid: left text | right image ── */
.wcu-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 56px;
}

/* ── Left side ── */
.wcu-hero-left {
  padding-top: 0;
  min-width: 0;
}
.wcu-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  
  padding: 6px 14px 6px 10px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.wcu-eyebrow-icon {
  color: var(--hhc-blue-dk, #0d2750);
  font-size: .85rem;
}
.wcu-eyebrow-text {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--hhc-blue-dk, #0d2750);
  text-transform: uppercase;
}
.wcu-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e53e3e;
  display: inline-block;
}

.wcu-heading {
  font-family: var(--hhc-font-head);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 10px;
}
.wcu-heading__dark { color: var(--hhc-blue-dk, #0d2750); }
.wcu-heading__green { color: var(--hhc-green, #009b4e); }

.wcu-heading-rule {
  display: block;
  width: 52px;
  height: 3px;
  background: #e53e3e;
  border-radius: 2px;
  margin-bottom: 20px;
}

.wcu-subheading {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 10px;
}
.wcu-desc {
  font-size: .95rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 500px;
}

/* ── Right side: image (desktop size matched to Who We Are) ── */
.wcu-hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  min-width: 0;
  overflow: hidden;
  max-height: 340px;
}
.wcu-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  transform: translateX(1.5%);
}
.wcu-img-deco {
  display: none;
}
.wcu-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  object-position: right center;
  display: block;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

/* ── Feature strips (below description, left column) ── */
.wcu-feat-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.wcu-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 0 0 calc(33.333% - 22px);
  min-width: 110px;
}

.wcu-feat__icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,155,78,.1);
  border: 1.5px solid rgba(0,155,78,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--hhc-green, #009b4e);
}
.wcu-feat__icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.wcu-feat__body { min-width: 0; }
.wcu-feat__title {
  font-family: var(--hhc-font-head);
  font-size: .82rem;
  font-weight: 800;
  color: var(--hhc-green, #009b4e);
  margin: 0 0 3px;
  line-height: 1.3;
}
.wcu-feat__desc {
  font-size: .76rem;
  color: #5f6778;
  line-height: 1.45;
  margin: 0;
}
.wcu-feat__chevron { display: none; }

/* ── Cards grid: 3 columns ── */
.wcu-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.wcu-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid #edf2f7;
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.wcu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

.wcu-card__icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--hhc-green, #009b4e);
}
.wcu-card__icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.wcu-card__body { flex: 1; min-width: 0; }
.wcu-card__title {
  font-family: var(--hhc-font-head);
  font-size: .98rem;
  font-weight: 800;
  color: var(--hhc-blue-dk, #0d2750);
  margin: 0 0 8px;
  line-height: 1.3;
}
.wcu-card__desc {
  font-size: .82rem;
  color: #5f6778;
  line-height: 1.55;
  margin: 0 0 12px;
}
.wcu-card__rule {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--hhc-green, #009b4e);
  border-radius: 2px;
}

/* ── CTA (desktop keeps centered pill button look) ── */
.wcu-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.wcu-help-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 2rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--hhc-green) 0%, var(--hhc-green-lt) 100%);
  box-shadow: 0 6px 20px rgba(0,155,78,.28);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wcu-help-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,155,78,.36);
}
.wcu-help-cta__icon,
.wcu-help-cta__eyebrow,
.wcu-help-cta__chevron { display: none; }
.wcu-help-cta__copy { display: inline; }
.wcu-help-cta__title { color: inherit; }

/* ── Mobile only: match polished reference (desktop unchanged) ── */
@media (max-width: 768px) {
  .wcu-section {
    padding: 36px 0 28px;
    background: #fff;
  }

  .wcu-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(110px, 38%);
    gap: 10px 12px;
    align-items: start;
    margin-bottom: 18px;
  }

  .wcu-hero-left {
    display: contents;
  }

  .wcu-eyebrow-wrap {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    padding: 5px 12px 5px 8px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .06);
  }

  .wcu-heading {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.35rem, 6.2vw, 1.7rem);
    margin: 0 0 6px;
    line-height: 1.18;
  }
  .wcu-heading__dark,
  .wcu-heading__green {
    display: inline;
  }

  .wcu-heading-rule {
    grid-column: 1;
    grid-row: 3;
    margin-bottom: 10px;
    width: 40px;
    height: 3px;
  }

  .wcu-subheading {
    grid-column: 1 / -1;
    grid-row: 4;
    font-size: .9rem;
    margin-bottom: 8px;
  }

  .wcu-desc {
    grid-column: 1 / -1;
    grid-row: 5;
    font-size: .88rem;
    max-width: none;
    line-height: 1.6;
    color: #5f6778;
  }
  .wcu-desc p { margin: 0; }

  .wcu-hero-right {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
    justify-content: flex-end;
    overflow: visible;
    max-height: none;
  }
  .wcu-img-wrap {
    width: 100%;
    max-width: none;
  }
  .wcu-img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
  }

  .wcu-feat-strip {
    grid-column: 1 / -1;
    grid-row: 6;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 16px;
    padding-top: 0;
    border-top: none;
  }

  .wcu-feat {
    flex: none;
    width: 100%;
    min-width: 0;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .07);
    border: 1px solid #eef2f7;
  }

  .wcu-feat__icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(0, 155, 78, .12);
    border: none;
    font-size: 1rem;
  }

  .wcu-feat__title {
    font-size: .9rem;
    margin: 0 0 2px;
  }
  .wcu-feat__desc {
    font-size: .74rem;
  }

  .wcu-feat__chevron {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-left: auto;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0, 155, 78, .12);
    color: #009b4e;
    font-size: .7rem;
  }

  .wcu-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }
  .wcu-card {
    padding: 16px 14px;
    border-radius: 14px;
    gap: 12px;
  }

  .wcu-cta {
    margin-top: 4px;
  }
  .wcu-help-cta {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00c45f 0%, #009b4e 48%, #007a3e 100%);
    box-shadow: 0 10px 24px rgba(0, 155, 78, .28);
    justify-content: flex-start;
  }
  .wcu-help-cta__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    color: #fff;
    font-size: .95rem;
  }
  .wcu-help-cta__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.2;
  }
  .wcu-help-cta__eyebrow {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    opacity: .9;
  }
  .wcu-help-cta__title {
    font-size: 1.05rem;
    font-weight: 800;
  }
  .wcu-help-cta__chevron {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-left: auto;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    color: #009b4e;
    font-size: .7rem;
  }
}

/* ============================================================
   OUR TEAM PAGE (hhc-tm)
   ============================================================ */

/* ── Section 1: Intro two-column ── */
.hhc-tm { background: #f5f8ff; padding: 60px 0 24px; }
.hhc-tm__intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: flex-start;
}
.hhc-tm__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--hhc-green, #009b4e); margin: 0 0 14px;
  background: rgba(0,155,78,.08); padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,155,78,.2);
}
.hhc-tm__heading {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900; color: #0d1f3c;
  margin: 0 0 16px; line-height: 1.15;
}
.hhc-tm__heading-green { color: var(--hhc-green, #009b4e); }
.hhc-tm__desc {
  font-size: .97rem; color: #555; line-height: 1.75;
  margin: 0 0 28px; max-width: 440px;
}
.hhc-tm__divider { display: none; }

/* Feature icons below description */
.hhc-tm__features {
  display: flex; flex-direction: row; gap: 20px; margin-top: 28px; flex-wrap: nowrap;
}
.hhc-tm__feature {
  display: flex; align-items: center; gap: 10px; min-width: 0;
}
.hhc-tm__feature-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,155,78,.10);
  border: 1.5px solid rgba(0,155,78,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--hhc-green, #009b4e);
  transition: background .22s, color .22s;
}
.hhc-tm__feature:hover .hhc-tm__feature-icon {
  background: var(--hhc-green, #009b4e); color: #fff;
}
.hhc-tm__feature-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.hhc-tm__feature-title {
  margin: 0; font-size: .78rem; font-weight: 700; color: #0d2137; line-height: 1.3; white-space: nowrap;
}
.hhc-tm__feature-desc {
  margin: 0; font-size: .72rem; color: #6b7c8f; line-height: 1.3;
}

/* Right intro image */
.hhc-tm__intro-right {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hhc-tm__intro-right--mobile {
  display: none;
}
.hhc-tm__intro-deco { position: absolute; inset: 0; pointer-events: none; }
.hhc-tm__deco-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(0,155,78,.18);
}
.hhc-tm__deco-ring--1 { width: 88%; height: 88%; top: 6%; left: 6%; }
.hhc-tm__deco-ring--2 { width: 70%; height: 70%; top: 15%; left: 15%; border-style: dashed; }
.hhc-tm__deco-dot {
  position: absolute; border-radius: 50%;
  background: var(--hhc-green, #009b4e);
}
.hhc-tm__deco-dot--a { width: 10px; height: 10px; top: 28%; left: 5%; opacity: .5; }
.hhc-tm__deco-dot--b { width: 14px; height: 14px; bottom: 20%; right: 6%; opacity: .35; }
.hhc-tm__intro-img-frame {
  position: relative; z-index: 1;
  width: 100%;
}
.hhc-tm__intro-img {
  width: 100%; height: auto; display: block; object-fit: cover;
}

/* ── Section 2: Cards grid ── */
.hhc-tm__cards-section { background: #fff; padding: 20px 0 72px; }
.hhc-tm__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.hhc-tm__card {
  background: #fff; border: 1px solid #e4ecf4;
  border-radius: 18px; padding: 32px 20px 24px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.hhc-tm__card:hover {
  box-shadow: 0 10px 36px rgba(0,155,78,.13);
  transform: translateY(-5px);
}

/* Dotted corner — hidden */
.hhc-tm__card-dots { display: none; }

/* Gradient ring photo */
.hhc-tm__photo-ring {
  width: 128px; height: 128px; border-radius: 50%;
  background: linear-gradient(135deg, #009b4e 0%, #0a66c2 100%);
  padding: 3px; margin: 0 auto 18px; flex-shrink: 0;
}
.hhc-tm__photo-inner {
  width: 100%; height: 100%; border-radius: 50%;
  overflow: hidden; border: 4px solid #fff;
}
.hhc-tm__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hhc-tm__no-photo {
  width: 100%; height: 100%; background: #eef2f6;
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 2rem;
}

/* Name */
.hhc-tm__name {
  font-size: 1rem; font-weight: 800; color: #0d1f3c;
  margin: 0 0 6px; line-height: 1.3;
}

/* Title + gradient underline */
.hhc-tm__title-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 12px; }
.hhc-tm__title { font-size: .78rem; font-weight: 700; color: var(--hhc-green, #009b4e); margin: 0; }
.hhc-tm__title-line {
  width: 44px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #009b4e, #0a66c2);
}

/* Bio */
.hhc-tm__bio {
  font-size: .78rem; color: #666; line-height: 1.6;
  margin: 0 0 18px; flex: 1;
}

/* Action icon buttons */
.hhc-tm__actions {
  display: flex; gap: 10px; justify-content: center; margin-top: auto;
}
.hhc-tm__action {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.hhc-tm__action:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.18); opacity: .9; }

/* LinkedIn — brand blue */
.hhc-tm__action[aria-label="LinkedIn"] {
  background: #0a66c2; color: #fff;
  box-shadow: 0 3px 10px rgba(10,102,194,.35);
}
/* Email — green */
.hhc-tm__action[aria-label="Email"] {
  background: var(--hhc-green, #009b4e); color: #fff;
  box-shadow: 0 3px 10px rgba(0,155,78,.35);
}
/* Phone — teal */
.hhc-tm__action[aria-label="Phone"] {
  background: linear-gradient(135deg, #00b894, #00897b); color: #fff;
  box-shadow: 0 3px 10px rgba(0,137,123,.35);
}

/* ── Section 3: Quote bar ── */
.hhc-tm__quote {
  background: #eef4f0;
  padding: 24px 0;
  margin-top: -20px;
  border-top: 2px solid #d0e8da;
}
.hhc-tm__quote-inner {
  display: flex; align-items: center; gap: 36px;
  padding: 0 80px;
}
.hhc-tm__quote-left {
  display: flex; align-items: center; gap: 24px; flex: 1;
}
.hhc-tm__quote-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--hhc-green, #009b4e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  box-shadow: 0 4px 14px rgba(0,155,78,.30);
}
.hhc-tm__quote-text {
  font-size: 1rem; color: #1a2e22; line-height: 1.7; margin: 0;
  font-style: italic; font-weight: 400; letter-spacing: .015em;
  font-family: Georgia, 'Times New Roman', serif;
}
.hhc-tm__quote-sep {
  width: 2px; height: 52px;
  background: linear-gradient(to bottom, transparent, #009b4e 30%, #009b4e 70%, transparent);
  flex-shrink: 0;
}
.hhc-tm__quote-right { flex-shrink: 0; }
.hhc-tm__quote-care {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--hhc-green, #009b4e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  box-shadow: 0 4px 14px rgba(0,155,78,.30);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hhc-tm__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .hhc-tm {
    padding: 32px 0 14px;
  }

  /* Who We Are style: image floats right, text wraps under it (no empty gap) */
  .hhc-tm__intro {
    display: block;
  }

  .hhc-tm__intro-right--desktop {
    display: none !important;
  }

  .hhc-tm__intro-right--mobile {
    display: block !important;
    float: right;
    width: 44%;
    max-width: 160px;
    margin: 28px 0 12px 12px;
    position: relative;
    z-index: 1;
  }

  .hhc-tm__intro-deco {
    display: none;
  }

  .hhc-tm__intro-right--mobile .hhc-tm__intro-img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    object-position: center top;
    display: block;
  }

  .hhc-tm__eyebrow {
    margin-bottom: 8px;
    padding: 5px 12px;
    font-size: .65rem;
  }

  .hhc-tm__heading {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    margin: 0 0 8px;
    line-height: 1.18;
  }

  .hhc-tm__desc {
    max-width: none;
    font-size: .88rem;
    line-height: 1.6;
    margin: 0 0 12px;
  }

  .hhc-tm__features {
    clear: both;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
  }

  .hhc-tm__feature-title {
    white-space: normal;
    font-size: .72rem;
  }

  .hhc-tm__feature-desc {
    font-size: .68rem;
  }

  .hhc-tm__cards-section {
    padding: 12px 0 40px;
    overflow-x: hidden;
  }

  .hhc-tm__cards-section > .hhc-container {
    width: 100%;
    max-width: none;
    padding-inline: 1rem;
    box-sizing: border-box;
  }

  /* 2 members per row on mobile */
  .hhc-tm__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    min-width: 0;
  }

  .hhc-tm__card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 18px 10px 16px;
  }

  .hhc-tm__photo-ring {
    width: 88px;
    height: 88px;
    margin-bottom: 12px;
  }

  .hhc-tm__name {
    font-size: .92rem;
    word-break: break-word;
  }

  .hhc-tm__title {
    font-size: .7rem;
  }

  .hhc-tm__bio {
    max-width: 100%;
    font-size: .72rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hhc-tm__actions {
    gap: 8px;
  }

  .hhc-tm__action {
    width: 34px;
    height: 34px;
    font-size: .78rem;
  }

  .hhc-tm__quote-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0 1rem;
  }

  .hhc-tm__quote-left {
    flex-direction: column;
    gap: 14px;
  }

  .hhc-tm__quote-sep {
    width: 72px;
    height: 2px;
    background: linear-gradient(to right, transparent, #009b4e 30%, #009b4e 70%, transparent);
  }
}

@media (max-width: 480px) {
  .hhc-tm__cards-section > .hhc-container {
    padding-inline: .85rem;
  }

  .hhc-tm__intro-right--mobile {
    width: 42%;
    max-width: 140px;
    margin-top: 26px;
  }

  .hhc-tm__grid {
    gap: 10px;
  }

  .hhc-tm__card {
    padding: 16px 8px 14px;
  }

  .hhc-tm__photo-ring {
    width: 78px;
    height: 78px;
  }

  .hhc-tm__name {
    font-size: .86rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CAREER PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.cr-hero { background: #f5f8ff; padding: 60px 0 56px; }
.cr-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.cr-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--hhc-green, #009b4e); margin: 0 0 14px;
  background: rgba(0,155,78,.08); padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,155,78,.2);
}
.cr-hero__heading {
  font-size: 2.6rem; font-weight: 800; color: #0d2137; line-height: 1.15; margin: 0 0 18px;
}
.cr-hero__h-green { color: var(--hhc-green, #009b4e); }
.cr-hero__desc {
  font-size: .97rem; color: #4a5568; line-height: 1.75; margin: 0 0 28px; max-width: 480px;
}
.cr-hero__btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.cr-hero__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 8px;
  font-size: .9rem; font-weight: 600; text-decoration: none; transition: all .2s;
}
.cr-hero__btn--fill {
  background: var(--hhc-green, #009b4e); color: #fff;
  box-shadow: 0 4px 14px rgba(0,155,78,.30);
}
.cr-hero__btn--fill:hover { background: #007a3e; transform: translateY(-1px); }
.cr-hero__btn--out { background: transparent; color: #0d2137; border: 2px solid #c8d6e5; }
.cr-hero__btn--out:hover { border-color: var(--hhc-green, #009b4e); color: var(--hhc-green, #009b4e); }

/* Mini features row */
.cr-hero__feats { display: flex; align-items: center; }
.cr-hero__feat { display: flex; align-items: center; gap: 8px; padding: 0 18px; }
.cr-hero__feat:first-child { padding-left: 0; }
.cr-hero__feat-sep { width: 1px; height: 36px; background: #d1dbe8; flex-shrink: 0; }
.cr-hero__feat-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,155,78,.10); border: 1.5px solid rgba(0,155,78,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--hhc-green, #009b4e); flex-shrink: 0;
}
.cr-hero__feat-lbl { margin: 0; font-size: .8rem; font-weight: 600; color: #2d3748; line-height: 1.3; }

/* Right: Image + floating stats */
.cr-hero__right { position: relative; }
.cr-hero__img-wrap { position: relative; border-radius: 20px; padding: 8px; }
.cr-hero__img {
  width: 100%; border-radius: 16px; display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

/* Floating stat cards */
.cr-hero__stat {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.06);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  min-width: 160px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.9);
  transition: transform .25s;
}
.cr-hero__stat:hover { transform: translateY(-3px); }
.cr-hero__stat--1 { top: 12%; left: -9%; }
.cr-hero__stat--2 { top: 50%; left: -7%; }
.cr-hero__stat--3 {
  bottom: 8%; right: -4%;
  border-left: 4px solid var(--hhc-green, #009b4e);
  box-shadow: 0 12px 36px rgba(0,155,78,.18), 0 2px 8px rgba(0,0,0,.06);
}
.cr-hero__stat-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,155,78,.15) 0%, rgba(0,155,78,.05) 100%);
  border: 1px solid rgba(0,155,78,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--hhc-green, #009b4e); flex-shrink: 0;
}
.cr-hero__stat-num {
  margin: 0; font-size: 1.15rem; font-weight: 800; color: #0d2137; line-height: 1;
  letter-spacing: -.01em;
}
.cr-hero__stat-lbl { margin: 2px 0 0; font-size: .72rem; color: #6b7c8f; line-height: 1.3; }

/* ── Benefit Cards ── */
.cr-benefits { background: #fff; padding: 48px 0; }
.cr-benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cr-benefit {
  background: #fff; border: 1px solid #e8eef5; border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.cr-benefit:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.cr-benefit__icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
}
.cr-benefit--green .cr-benefit__icon-wrap { background: rgba(0,155,78,.10); color: var(--hhc-green, #009b4e); }
.cr-benefit--blue  .cr-benefit__icon-wrap { background: rgba(10,102,194,.10); color: #0a66c2; }
.cr-benefit__title { font-size: .97rem; font-weight: 700; margin: 0 0 10px; line-height: 1.3; }
.cr-benefit--green .cr-benefit__title { color: var(--hhc-green, #009b4e); }
.cr-benefit--blue  .cr-benefit__title { color: #0a66c2; }
.cr-benefit__desc { margin: 0; font-size: .82rem; color: #6b7c8f; line-height: 1.6; }

/* ── Jobs Section ── */
.cr-jobs { background: #f5f8ff; padding: 64px 0; }
.cr-jobs__head { text-align: center; margin-bottom: 40px; }
.cr-jobs__title { font-size: 1.9rem; font-weight: 800; color: #0d2137; margin: 0 0 10px; }
.cr-jobs__title span { color: var(--hhc-green, #009b4e); }
.cr-jobs__rule { width: 52px; height: 3px; background: #e53e3e; border-radius: 2px; margin: 0 auto; }
.cr-jobs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cr-job {
  background: #fff; border-radius: 14px; padding: 24px 20px;
  border: 1px solid #e8eef5; box-shadow: 0 2px 10px rgba(0,0,0,.05);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.cr-job:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.09); }
.cr-job__top { display: flex; align-items: flex-start; gap: 12px; }
.cr-job__icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: #fff;
}
.cr-job__title { margin: 0; font-size: .97rem; font-weight: 700; color: #0a66c2; line-height: 1.3; }
.cr-job__dept { margin: 3px 0 0; font-size: .75rem; color: #6b7c8f; }
.cr-job__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cr-job__tag {
  font-size: .69rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
  background: #eef4f0; color: var(--hhc-green, #009b4e); border: 1px solid rgba(0,155,78,.20);
}
.cr-job__tag--type { background: rgba(0,155,78,.10); }
.cr-job__desc { margin: 0; font-size: .8rem; color: #4a5568; line-height: 1.6; flex: 1; }
.cr-job__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--hhc-green, #009b4e);
  text-decoration: none; transition: gap .2s;
}
.cr-job__link:hover { gap: 10px; }
.cr-jobs__empty { text-align: center; color: #6b7c8f; font-size: .95rem; padding: 24px; }
.cr-job__req { background: #f5f8ff; border-radius: 8px; padding: 10px 12px; border-left: 3px solid var(--hhc-green, #009b4e); }
.cr-job__req-label { margin: 0 0 4px; font-size: .72rem; font-weight: 700; color: var(--hhc-green, #009b4e); display: flex; align-items: center; gap: 5px; }
.cr-job__req-text  { margin: 0; font-size: .78rem; color: #4a5568; line-height: 1.5; }

/* ── CTA Band ── */
.cr-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d2137 0%, #0a3d2e 55%, #009b4e 100%);
  padding: 18px 0;
  margin: 0 40px 48px;
  border-radius: 20px;
}
.cr-cta__inner { display: flex; align-items: center; gap: 28px; position: relative; z-index: 1; padding: 0 48px; }
.cr-cta__left-deco { font-size: 5rem; color: rgba(255,255,255,.06); flex-shrink: 0; line-height: 1; }
.cr-cta__body { display: flex; align-items: center; gap: 20px; flex: 1; }
.cr-cta__icon-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.cr-cta__heading { margin: 0 0 6px; font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1.2; }
.cr-cta__desc { margin: 0; font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 420px; }
.cr-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,.45);
  color: #fff; font-size: .9rem; font-weight: 700;
  text-decoration: none; flex-shrink: 0; white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.cr-cta__btn:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.cr-cta__right-deco { font-size: 3.5rem; color: rgba(255,255,255,.08); flex-shrink: 0; line-height: 1; }

/* ── Career Responsive ── */
@media (max-width: 1024px) {
  .cr-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .cr-hero__right { display: none; }
  .cr-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .cr-jobs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cr-hero__heading { font-size: 2rem; }
  .cr-benefits__grid { grid-template-columns: 1fr; }
  .cr-jobs__grid { grid-template-columns: 1fr; }
  .cr-cta__inner { flex-direction: column; text-align: center; }
  .cr-cta__left-deco, .cr-cta__right-deco { display: none; }
  .cr-cta__body { flex-direction: column; }
  .cr-hero__feats { flex-wrap: wrap; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   JOB DETAIL PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Job Header (compact) ── */
.jd-header {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f5ee 100%);
  padding: 28px 0 32px;
  border-bottom: 1px solid #e2eaf4;
}
.jd-header__inner { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.jd-back {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600; color: #6b7c8f;
  text-decoration: none; transition: color .2s; width: fit-content;
}
.jd-back:hover { color: var(--hhc-green, #009b4e); }
.jd-header__info { display: flex; align-items: center; gap: 18px; }
.jd-header__icon {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, #0d2137, #1a3a5c);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  box-shadow: 0 4px 14px rgba(13,33,55,.25);
}
.jd-header__title {
  font-size: 1.7rem; font-weight: 800; color: #0d2137; margin: 0 0 10px; line-height: 1.2;
}
.jd-header__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.jd-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 20px;
  font-size: .75rem; font-weight: 600;
  background: #fff; border: 1.5px solid #e2eaf4; color: #4a5568;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.jd-tag--dept { border-color: rgba(10,102,194,.25); color: #0a66c2; background: rgba(10,102,194,.06); }
.jd-tag--loc  { border-color: rgba(0,155,78,.25); color: var(--hhc-green, #009b4e); background: rgba(0,155,78,.06); }
.jd-tag--type { border-color: rgba(124,58,237,.25); color: #7c3aed; background: rgba(124,58,237,.06); }
.jd-tag--date { border-color: rgba(239,68,68,.25); color: #dc2626; background: rgba(239,68,68,.06); }

/* ── Body: centered form ── */
.jd-body { background: #f5f8ff; padding: 48px 0 64px; }
.jd-body__center { max-width: 680px; margin: 0 auto; }

/* Info card (description + requirements above form) */
.jd-info-card {
  background: #fff; border-radius: 16px; padding: 24px 28px;
  border: 1px solid #e8eef5; box-shadow: 0 2px 12px rgba(0,0,0,.05);
  margin-bottom: 20px; display: flex; flex-direction: column; gap: 20px;
}
.jd-info-block__title {
  font-size: .9rem; font-weight: 700; color: #0d2137; margin: 0 0 10px;
  display: flex; align-items: center; gap: 8px;
}
.jd-info-block__title i { color: var(--hhc-green, #009b4e); }
.jd-info-block__text { font-size: .85rem; color: #4a5568; line-height: 1.8; }
.jd-info-block__text p { margin: 0 0 8px; }
.jd-info-block + .jd-info-block { padding-top: 20px; border-top: 1px solid #f0f4f8; }

/* Form card */
.jd-form-card {
  background: #fff; border-radius: 20px;
  border: 1px solid #e8eef5;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  overflow: hidden;
}
.jd-form-card__header {
  background: linear-gradient(135deg, #0d2137 0%, #0a3d2e 60%, #009b4e 100%);
  padding: 22px 28px; display: flex; align-items: center; gap: 16px;
}
.jd-form-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #fff; flex-shrink: 0;
}
.jd-form-card__title { margin: 0; font-size: 1rem; font-weight: 700; color: #fff; }
.jd-form-card__sub   { margin: 3px 0 0; font-size: .74rem; color: rgba(255,255,255,.70); }
.jd-form-card__divider { height: 2px; background: linear-gradient(to right, #009b4e, transparent); }

/* Form fields */
.jd-form { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.jd-field { display: flex; flex-direction: column; gap: 5px; }
.jd-field__label { font-size: .78rem; font-weight: 700; color: #0d2137; }
.jd-field__req { color: #e53e3e; margin-left: 2px; }
.jd-field__input-wrap input,
.jd-field__input-wrap textarea,
.jd-field__input-wrap select {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid #e2eaf4; background: #f8fafc;
  font-size: .87rem; color: #0d2137; outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit; box-sizing: border-box;
}
.jd-field__input-wrap input:focus,
.jd-field__input-wrap textarea:focus,
.jd-field__input-wrap select:focus {
  border-color: var(--hhc-green, #009b4e);
  box-shadow: 0 0 0 3px rgba(0,155,78,.12);
  background: #fff;
}
.jd-field__input-wrap input[type="file"] {
  padding: 9px 12px; background: #fff;
  border: 2px dashed #c8d6e5; cursor: pointer;
}
.jd-field--error .jd-field__input-wrap input,
.jd-field--error .jd-field__input-wrap textarea { border-color: #e53e3e; }
.jd-field__err { margin: 2px 0 0; font-size: .73rem; color: #e53e3e; display: flex; align-items: center; gap: 4px; }
.jd-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; border-radius: 10px; border: none;
  background: var(--hhc-green, #009b4e); color: #fff;
  font-size: .92rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,155,78,.30);
  transition: background .2s, transform .2s; margin-top: 4px;
}
.jd-submit:hover { background: #007a3e; transform: translateY(-1px); }
.jd-form__privacy {
  margin: 8px 0 0; font-size: .73rem; color: #9aabb8;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
@media (max-width: 640px) {
  .jd-header__info { flex-direction: column; align-items: flex-start; }
  .jd-form { padding: 20px 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL AFFILIATION PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ga-hero { background: #f5f9ff; padding: 44px 0 56px; overflow: hidden; position: relative; }
.ga-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(0,155,78,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 90% 20%, rgba(43,57,144,.07) 0%, transparent 70%);
  pointer-events: none;
}
.ga-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.ga-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--hhc-green, #009b4e); margin: 0 0 14px;
  background: rgba(0,155,78,.08); padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,155,78,.2);
}
.ga-hero__heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2;
  color: #0d2137; margin: 0 0 20px; letter-spacing: -.02em;
}
.ga-hero__h-green { color: var(--hhc-green, #009b4e); }
.ga-hero__divider {
  display: flex; align-items: center; gap: 12px; margin: 0 0 20px;
}
.ga-hero__div-line {
  flex: 1; height: 2px; max-width: 60px;
  background: linear-gradient(to right, var(--hhc-green, #009b4e), transparent);
  border-radius: 2px;
}
.ga-hero__div-line:last-child { background: linear-gradient(to left, var(--hhc-green, #009b4e), transparent); }
.ga-hero__div-icon { color: var(--hhc-green, #009b4e); font-size: 1rem; flex-shrink: 0; }
.ga-hero__desc {
  font-size: 1rem; color: #4a5568; line-height: 1.75; margin: 0 0 28px; max-width: 480px;
}
.ga-hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
}
.ga-hero__trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: #2d3748;
}
.ga-hero__trust-item i { color: var(--hhc-green, #009b4e); font-size: .8rem; }

/* Right image + floating badges */
.ga-hero__right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ga-hero__img-wrap {
  position: relative;
  width: 420px; height: 420px;
  flex-shrink: 0;
}
/* Decorative rings */
.ga-hero__img-wrap::before,
.ga-hero__img-wrap::after {
  content: "";
  position: absolute; inset: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(0,155,78,.25);
  animation: ga-spin 18s linear infinite;
}
.ga-hero__img-wrap::after {
  inset: -36px;
  border-color: rgba(43,57,144,.15);
  border-style: solid;
  border-width: 1px;
  animation-duration: 28s;
  animation-direction: reverse;
}
/* Circle image */
.ga-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 10px rgba(0,155,78,.15),
    0 20px 60px rgba(0,0,0,.18);
}
@keyframes ga-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ga-hero__badge {
  position: absolute; z-index: 2;
  animation: ga-float 4s ease-in-out infinite;
}
.ga-hero__badge--1 { top: 2%;  right: 4%;  animation-delay: 0s; }
.ga-hero__badge--2 { bottom: 2%; right: 2%; animation-delay: 1s; }
.ga-hero__badge--3 { top: 38%; left: -24px; animation-delay: 2s; }
.ga-hero__badge--4 { bottom: 12%; left: 2%; animation-delay: 1.5s; }
.ga-hero__badge-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: #fff; box-shadow: 0 8px 28px rgba(0,0,0,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--hhc-green, #009b4e);
  border: 2.5px solid rgba(0,155,78,.2);
}
.ga-hero__badge--2 .ga-hero__badge-icon { color: var(--hhc-blue, #2b3990); border-color: rgba(43,57,144,.2); }
.ga-hero__badge--4 .ga-hero__badge-icon { color: #e53e3e; border-color: rgba(229,62,62,.2); }
@keyframes ga-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ── Partners Section ── */
.ga-partners { padding: 72px 0 64px; background: #fff; }
.ga-partners__head {
  display: flex; align-items: center; gap: 20px; justify-content: center;
  margin-bottom: 12px;
}
.ga-partners__head-deco {
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.ga-partners__head-deco span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--hhc-blue, #2b3990); opacity: .35;
}
.ga-partners__head-deco span:nth-child(2) { opacity: .65; }
.ga-partners__head-deco span:nth-child(3) { opacity: 1; }
.ga-partners__head-text { text-align: center; }
.ga-partners__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #0d2137;
  margin: 0 0 8px; letter-spacing: -.02em; line-height: 1.2;
}
.ga-partners__title span { color: var(--hhc-green, #009b4e); }
.ga-partners__sub {
  font-size: .92rem; color: #718096; margin: 0 auto 48px; max-width: 520px;
  line-height: 1.6; text-align: center;
}
.ga-partners__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ga-partner-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 22px;
  box-shadow: 0 4px 24px rgba(43,57,144,.08);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .28s, box-shadow .28s;
  position: relative; overflow: hidden;
  border: 1.5px solid rgba(226,232,240,.8);
}
/* Top gradient accent bar */
.ga-partner-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--hhc-green, #009b4e) 0%, var(--hhc-blue, #2b3990) 100%);
  border-radius: 20px 20px 0 0;
}
/* Soft bg glow on hover */
.ga-partner-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,155,78,.05) 0%, transparent 70%);
  opacity: 0; transition: opacity .28s;
}
.ga-partner-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(43,57,144,.14); }
.ga-partner-card:hover::after { opacity: 1; }

/* Logo circle */
.ga-partner-card__logo-wrap {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, #f0f9f4 0%, #e8f0ff 100%);
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(43,57,144,.12), 0 0 0 1px rgba(0,155,78,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; overflow: hidden; flex-shrink: 0;
  position: relative; z-index: 1;
  transition: box-shadow .28s, transform .28s;
}
.ga-partner-card:hover .ga-partner-card__logo-wrap {
  box-shadow: 0 8px 28px rgba(0,155,78,.25), 0 0 0 2px rgba(0,155,78,.3);
  transform: scale(1.05);
}
.ga-partner-card__logo { width: 80%; height: 80%; object-fit: contain; }
.ga-partner-card__logo-placeholder {
  font-size: 2.4rem; color: #cbd5e0;
}
.ga-partner-card__body { flex: 1; position: relative; z-index: 1; }
.ga-partner-card__name {
  font-size: .98rem; font-weight: 800; color: #0d2137;
  margin: 0 0 8px; line-height: 1.3;
  letter-spacing: -.01em;
}
.ga-partner-card__type {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--hhc-green, #009b4e);
  background: rgba(0,155,78,.09);
  border: 1px solid rgba(0,155,78,.22);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.ga-partner-card__desc {
  font-size: .8rem; color: #718096; line-height: 1.65; margin: 0;
}
.ga-partner-card__country {
  margin-top: 16px; font-size: .73rem; color: #b0bec8;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  position: relative; z-index: 1;
  border-top: 1px solid rgba(226,232,240,.7); padding-top: 12px; width: 100%;
}
.ga-partners__empty { text-align: center; color: #a0aec0; padding: 40px 0; font-size: .95rem; }

/* ── Stats Strip ── */
.ga-stats {
  background: linear-gradient(135deg, #0d2137 0%, #0a3d2e 55%, #009b4e 100%);
  padding: 18px 0;
  margin: 0 40px 48px;
  border-radius: 20px;
  overflow: hidden;
}
.ga-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.ga-stat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 14px 16px; position: relative;
}
.ga-stat + .ga-stat::before {
  content: ""; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: rgba(255,255,255,.15);
}
.ga-stat__icon-wrap {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; margin-bottom: 8px;
}
.ga-stat__num {
  font-size: 1.6rem; font-weight: 800; color: #fff; margin: 0 0 2px; line-height: 1;
  font-family: var(--hhc-font-head, sans-serif);
}
.ga-stat__lbl {
  font-size: .76rem; color: rgba(255,255,255,.75); margin: 0; font-weight: 500;
  letter-spacing: .03em; line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .ga-partners__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .ga-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .ga-hero__img-wrap { width: 320px; height: 320px; margin: 0 auto; }
  .ga-partners__grid { grid-template-columns: repeat(2, 1fr); }
  .ga-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ga-stat + .ga-stat::before { display: none; }
}
@media (max-width: 576px) {
  .ga-hero { padding: 40px 0 36px; }
  .ga-partners { padding: 48px 0 40px; }
  .ga-partners__grid { grid-template-columns: 1fr; }
  .ga-stats { margin: 0 16px 32px; }
  .ga-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ga-stat + .ga-stat::before { display: none; }
  .ga-partners__head { flex-direction: column; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   REGULATORY PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.rg-hero {
  background: #fff; position: relative; overflow: hidden; padding: 44px 0 0;
}
.rg-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 5% 50%, rgba(0,155,78,.05) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 95% 10%, rgba(43,57,144,.06) 0%, transparent 65%);
}
.rg-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.rg-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--hhc-green, #009b4e); margin: 0 0 16px;
  background: rgba(0,155,78,.08); padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,155,78,.2);
}
.rg-hero__heading {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 900; line-height: 1.1;
  color: #0d2137; margin: 0 0 20px; letter-spacing: -.03em;
}
.rg-hero__h-green { color: var(--hhc-green, #009b4e); }
.rg-hero__desc {
  font-size: .97rem; color: #4a5568; line-height: 1.8; margin: 0 0 32px; max-width: 500px;
}

/* Feature pill badges */
.rg-hero__feats { display: flex; flex-wrap: wrap; gap: 10px; }
.rg-feat-pill {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1.5px solid var(--hhc-border, #e2e8f0);
  border-radius: 12px; padding: 9px 16px;
  box-shadow: 0 2px 10px rgba(43,57,144,.07);
  transition: box-shadow .2s, border-color .2s;
}
.rg-feat-pill:hover { box-shadow: 0 4px 16px rgba(0,155,78,.15); border-color: rgba(0,155,78,.3); }
.rg-feat-pill__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #0d2137, #2b3990);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: #fff; flex-shrink: 0;
}
.rg-feat-pill:nth-child(2n) .rg-feat-pill__icon { background: linear-gradient(135deg, #007a3e, #009b4e); }
.rg-feat-pill__label { font-size: .8rem; font-weight: 700; color: #1a2e4a; line-height: 1.3; }

/* Hero image */
.rg-hero__right { position: relative; display: flex; align-items: center; justify-content: flex-end; }
.rg-hero__img-wrap { position: relative; width: 100%; }
.rg-hero__img {
  width: 100%; display: block; object-fit: contain; max-height: 440px;
  filter: drop-shadow(0 20px 48px rgba(43,57,144,.15));
}
.rg-hero__img-badge {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.13);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; animation: rg-float 3.5s ease-in-out infinite;
  border: 2px solid rgba(0,155,78,.2);
}
.rg-hero__img-badge--1 { top: 12%; left: 0; color: var(--hhc-green, #009b4e); animation-delay: 0s; }
.rg-hero__img-badge--2 { bottom: 20%; right: 0; color: var(--hhc-blue, #2b3990); border-color: rgba(43,57,144,.2); animation-delay: 1.2s; }
@keyframes rg-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Wave SVG separator */
.rg-hero__wave { margin-top: 24px; line-height: 0; }
.rg-hero__wave svg { width: 100%; height: 50px; display: block; }

/* ── Process Section ── */
.rg-process { background: #f0f4ff; padding: 40px 0 72px; }
.rg-process__head { text-align: center; margin-bottom: 56px; }
.rg-process__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #0d2137;
  margin: 0 0 16px; letter-spacing: -.02em;
}
.rg-process__title span { color: var(--hhc-blue, #2b3990); }
.rg-process__title-deco {
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.rg-process__deco-line {
  width: 48px; height: 2px; background: var(--hhc-border, #e2e8f0); border-radius: 2px;
}
.rg-process__deco-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--hhc-red, #ed1c24);
}
.rg-process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}

/* Step card */
.rg-step {
  background: #fff; border-radius: 18px; padding: 32px 24px 28px;
  box-shadow: 0 4px 24px rgba(43,57,144,.09);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  margin: 0 8px; position: relative;
  border: 1.5px solid rgba(226,232,240,.8);
}
.rg-step__num {
  position: absolute; top: 16px; left: 18px;
  font-size: 2.8rem; font-weight: 900; color: rgba(43,57,144,.08);
  line-height: 1; font-family: var(--hhc-font-head, sans-serif);
  user-select: none;
}
.rg-step__icon-wrap { margin-bottom: 18px; position: relative; z-index: 1; }
.rg-step__icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, #0d2137, #2b3990);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 8px 24px rgba(43,57,144,.3);
}
.rg-step__icon--green {
  background: linear-gradient(135deg, #007a3e, #009b4e);
  box-shadow: 0 8px 24px rgba(0,155,78,.3);
}
.rg-step__title {
  font-size: 1.05rem; font-weight: 800; color: var(--hhc-blue, #2b3990);
  margin: 0 0 10px; letter-spacing: -.01em;
}
.rg-step__title--green { color: var(--hhc-green, #009b4e); }
.rg-step__desc { font-size: .82rem; color: #718096; line-height: 1.65; margin: 0; }

/* Arrow between steps */
.rg-step--has-arrow::after {
  content: "";
  position: absolute; right: -28px; top: 50%; transform: translateY(-50%);
  width: 48px; height: 2px;
  border-top: 2px dashed rgba(43,57,144,.2);
  z-index: 2;
}
.rg-step__arrow { display: none; }

/* ── Documents ── */
.rg-docs { background: #fff; padding: 64px 0; }
.rg-docs__head { text-align: center; margin-bottom: 40px; }
.rg-docs__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: #0d2137; margin: 0;
}
.rg-docs__title span { color: var(--hhc-green, #009b4e); }
.rg-docs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Card */
.rg-doc-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 18px;
  border: 1.5px solid var(--hhc-border, #e2e8f0);
  box-shadow: 0 4px 20px rgba(43,57,144,.07);
  overflow: hidden; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.rg-doc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0d2137, #2b3990);
}
.rg-doc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(43,57,144,.13); }

/* Top row: icon + title + dates */
.rg-doc-card__top {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 24px 22px 16px;
}
.rg-doc-card__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #0d2137, #2b3990);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  box-shadow: 0 4px 12px rgba(43,57,144,.25);
}
.rg-doc-card__meta { flex: 1; min-width: 0; }
.rg-doc-card__title {
  font-size: .97rem; font-weight: 800; color: #0d2137;
  margin: 0 0 6px; line-height: 1.3;
}
.rg-doc-card__dates {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: .73rem; color: #a0aec0;
}
.rg-doc-card__dates span { display: flex; align-items: center; gap: 4px; }

/* Description */
.rg-doc-card__desc {
  font-size: .83rem; color: #718096; line-height: 1.65;
  margin: 0; padding: 0 22px 18px; flex: 1;
}

/* Footer: badge + download button */
.rg-doc-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; margin-top: auto;
  border-top: 1px solid rgba(226,232,240,.7);
  background: #f8faff;
}
.rg-doc-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 700; color: var(--hhc-green, #009b4e);
  background: rgba(0,155,78,.08); border: 1px solid rgba(0,155,78,.2);
  padding: 4px 10px; border-radius: 999px;
}
.rg-doc-card__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 8px;
  background: linear-gradient(135deg, #0d2137, #2b3990); color: #fff;
  font-size: .78rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 3px 10px rgba(43,57,144,.25);
  transition: opacity .2s, transform .2s;
}
.rg-doc-card__btn:hover { opacity: .9; transform: translateY(-1px); }

/* ── CTA Band ── */
.rg-cta {
  background: linear-gradient(135deg, #0d2137 0%, #1a3a6e 55%, #0a3d2e 100%);
  padding: 40px 0; margin: 0 40px 48px; border-radius: 20px;
  position: relative; overflow: hidden;
}
.rg-cta__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.rg-cta__inner {
  display: flex; align-items: center; gap: 32px; position: relative; z-index: 1;
}
.rg-cta__left { display: flex; align-items: center; gap: 24px; flex: 1; }
.rg-cta__icon-wrap {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
}
.rg-cta__text { flex: 1; }
.rg-cta__heading {
  font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0 0 6px; line-height: 1.3;
}
.rg-cta__rule {
  width: 40px; height: 3px; border-radius: 2px; margin-bottom: 8px;
  background: linear-gradient(to right, var(--hhc-red, #ed1c24), rgba(237,28,36,0));
}
.rg-cta__desc { font-size: .85rem; color: rgba(255,255,255,.7); margin: 0; line-height: 1.6; }
.rg-cta__divider {
  width: 1px; height: 80px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
}
.rg-cta__right { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.rg-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 10px;
  font-size: .85rem; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.rg-cta__btn:hover { transform: translateY(-2px); }
.rg-cta__btn--out {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.rg-cta__btn--out:hover { background: rgba(255,255,255,.1); }
.rg-cta__btn--fill {
  background: var(--hhc-green, #009b4e); color: #fff; border: 1.5px solid transparent;
  box-shadow: 0 4px 14px rgba(0,155,78,.4);
}
.rg-cta__btn--fill:hover { background: #007a3e; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .rg-process__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .rg-step--has-arrow::after { display: none; }
  .rg-docs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .rg-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .rg-hero__right { display: none; }
  .rg-cta { margin: 0 20px 36px; }
  .rg-cta__inner { flex-wrap: wrap; }
  .rg-cta__divider { display: none; }
}
@media (max-width: 600px) {
  .rg-process { padding: 48px 0 56px; }
  .rg-process__grid { grid-template-columns: 1fr; gap: 16px; }
  .rg-docs__grid { grid-template-columns: 1fr; }
  .rg-cta { margin: 0 12px 28px; }
  .rg-cta__left { flex-direction: column; text-align: center; align-items: center; }
  .rg-cta__right { width: 100%; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPLIANCE PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.cmp-hero { background: #fff; padding: 60px 0 56px; position: relative; overflow: hidden; }

.cmp-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 70% at 0% 50%, rgba(0,155,78,.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 100% 10%, rgba(43,57,144,.05) 0%, transparent 65%);
}
.cmp-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.cmp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--hhc-green, #009b4e); margin: 0 0 14px;
  background: rgba(0,155,78,.08); padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,155,78,.2);
}
.cmp-hero__heading {
  font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1;
  color: #0d2137; margin: 0 0 16px; letter-spacing: -.03em;
}
.cmp-hero__h-green { color: var(--hhc-green, #009b4e); }
.cmp-hero__rule {
  width: 48px; height: 4px; border-radius: 2px; margin-bottom: 20px;
  background: #0d2137;
}
.cmp-hero__desc {
  font-size: .95rem; color: #4a5568; line-height: 1.8; margin: 0 0 32px; max-width: 500px;
}

/* Hero feature row */
.cmp-hero__feats {
  display: flex; gap: 20px; flex-wrap: nowrap;
}
.cmp-hero__feat {
  display: flex; align-items: flex-start; gap: 9px;
  flex: 1; min-width: 0;
}
.cmp-hero__feat-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #0d2137, #2b3990);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: #fff;
}
.cmp-hero__feat-icon--green { background: linear-gradient(135deg, #007a3e, #009b4e); }
.cmp-hero__feat-title { font-size: .82rem; font-weight: 700; color: #0d2137; margin: 0 0 2px; }
.cmp-hero__feat-desc { font-size: .73rem; color: #718096; margin: 0; line-height: 1.4; }

/* Hero image */
.cmp-hero__right { display: flex; align-items: center; justify-content: flex-end; }
.cmp-hero__img-wrap { width: 100%; }
.cmp-hero__img {
  width: 100%; display: block; object-fit: contain; max-height: 460px;
  filter: drop-shadow(0 20px 48px rgba(43,57,144,.15));
}

/* ── Policy Cards (8-grid) ── */
.cmp-policies { background: #f5f8ff; padding: 56px 0; }
.cmp-policies__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.cmp-policy-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1.5px solid var(--hhc-border, #e2e8f0);
  border-radius: 14px; padding: 20px 18px;
  box-shadow: 0 2px 12px rgba(43,57,144,.06);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.cmp-policy-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(43,57,144,.12); border-color: rgba(43,57,144,.25); }
.cmp-policy-card__icon-wrap {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: rgba(43,57,144,.08); border: 1.5px solid rgba(43,57,144,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--hhc-blue, #2b3990);
  transition: background .22s;
}
.cmp-policy-card:hover .cmp-policy-card__icon-wrap {
  background: linear-gradient(135deg, #0d2137, #2b3990); color: #fff; border-color: transparent;
}
.cmp-policy-card__title {
  font-size: .88rem; font-weight: 800; color: var(--hhc-blue, #2b3990);
  margin: 0 0 5px; line-height: 1.3;
}
.cmp-policy-card__desc { font-size: .78rem; color: #718096; margin: 0; line-height: 1.55; }

/* ── Shared strip wrapper ── */
.cmp-process, .cmp-standards { background: #fff; padding: 28px 0; }
.cmp-strip-wrap {
  display: flex; align-items: stretch; gap: 0;
  border: 1.5px solid var(--hhc-border, #e2e8f0);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(43,57,144,.07);
}
.cmp-strip-label {
  flex-shrink: 0; width: 160px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 20px; text-align: center;
}
.cmp-strip-label--navy { background: #fff; }
.cmp-strip-label--navy .cmp-strip-label__text { color: var(--hhc-green, #009b4e); }
.cmp-strip-label--navy .cmp-strip-label__text span { color: var(--hhc-green, #009b4e); }
.cmp-strip-label__text {
  font-size: .8rem; font-weight: 800; color: var(--hhc-green, #009b4e);
  text-transform: uppercase; letter-spacing: .05em; line-height: 1.5; margin: 0;
}
.cmp-strip-label__text span { color: var(--hhc-green, #009b4e); display: block; }
.cmp-strip-div {
  width: 1px; background: var(--hhc-border, #e2e8f0); flex-shrink: 0;
}

/* Process steps */
.cmp-process__steps {
  display: flex; flex: 1; align-items: center; padding: 20px 24px; gap: 0;
}
.cmp-step {
  display: flex; align-items: center; gap: 12px; flex: 1; position: relative; min-width: 0;
}
.cmp-step__num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: #0d2137;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: #fff; letter-spacing: .02em;
}
.cmp-step__body { flex: 1; min-width: 0; }
.cmp-step__icon-wrap {
  font-size: .9rem; color: var(--hhc-green, #009b4e); margin-bottom: 4px;
}
.cmp-step__title {
  font-size: .82rem; font-weight: 800; color: var(--hhc-green, #009b4e);
  margin: 0 0 3px; line-height: 1.2;
}
.cmp-step__desc { font-size: .72rem; color: #718096; margin: 0; line-height: 1.5; }
.cmp-step__connector {
  flex-shrink: 0; display: flex; align-items: center; gap: 3px;
  color: rgba(43,57,144,.3); margin: 0 10px; font-size: .62rem;
}
.cmp-step__connector span {
  display: block; width: 30px; height: 1px;
  border-top: 2px dashed rgba(43,57,144,.25);
}

/* Standards items */
.cmp-standards__items {
  display: flex; flex: 1; align-items: stretch; padding: 20px 24px; gap: 0;
}
.cmp-standard {
  display: flex; align-items: flex-start; gap: 10px; flex: 1; min-width: 0;
}
.cmp-standard--sep {
  padding-right: 20px;
  border-right: 1px solid var(--hhc-border, #e2e8f0);
  margin-right: 20px;
}
.cmp-standard__icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(43,57,144,.08); border: 1px solid rgba(43,57,144,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--hhc-blue, #2b3990);
  margin-top: 2px;
}
.cmp-standard__body { flex: 1; min-width: 0; }
.cmp-standard__title {
  font-size: .82rem; font-weight: 800; color: var(--hhc-blue, #2b3990);
  margin: 0 0 4px; line-height: 1.3;
}
.cmp-standard__desc { font-size: .75rem; color: #718096; margin: 0; line-height: 1.55; }

/* ── CTA Band ── */
.cmp-cta {
  background: linear-gradient(135deg, #0d2137 0%, #1a3a6e 60%, #0a3d2e 100%);
  padding: 36px 0; margin: 8px 40px 48px; border-radius: 20px;
  position: relative; overflow: hidden;
}
.cmp-cta__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.cmp-cta__inner {
  display: flex; align-items: center; gap: 32px; position: relative; z-index: 1;
}
.cmp-cta__left { display: flex; align-items: center; gap: 24px; flex: 1; }
.cmp-cta__shield {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--hhc-green, #009b4e);
  box-shadow: 0 0 0 8px rgba(0,155,78,.1);
}
.cmp-cta__heading {
  font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0 0 6px; line-height: 1.3;
}
.cmp-cta__desc { font-size: .85rem; color: rgba(255,255,255,.7); margin: 0; line-height: 1.6; }
.cmp-cta__btns { display: flex; gap: 12px; flex-shrink: 0; }
.cmp-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-size: .84rem; font-weight: 700; text-decoration: none;
  transition: opacity .2s, transform .2s; white-space: nowrap;
}
.cmp-cta__btn:hover { transform: translateY(-2px); opacity: .92; }
.cmp-cta__btn--fill {
  background: var(--hhc-green, #009b4e); color: #fff; border: 1.5px solid transparent;
  box-shadow: 0 4px 14px rgba(0,155,78,.4);
}
.cmp-cta__btn--out {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4);
}
.cmp-cta__btn--out:hover { background: rgba(255,255,255,.08); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cmp-policies__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .cmp-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .cmp-hero__right { display: none; }
  .cmp-strip-wrap { flex-direction: column; }
  .cmp-strip-label { width: 100%; border-radius: 0; padding: 14px 20px; }
  .cmp-strip-div { width: 100%; height: 1px; }
  .cmp-process__steps, .cmp-standards__items { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .cmp-step { flex-wrap: wrap; }
  .cmp-step__connector { display: none; }
  .cmp-standard--sep { border-right: none; border-bottom: 1px solid var(--hhc-border); padding-bottom: 16px; margin-bottom: 0; }
  .cmp-cta { margin: 0 20px 36px; }
  .cmp-cta__inner { flex-direction: column; text-align: center; }
  .cmp-cta__left { flex-direction: column; }
  .cmp-cta__btns { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .cmp-hero__feats { flex-wrap: wrap; gap: 14px; }
  .cmp-hero__feat { flex: 0 0 calc(50% - 7px); }
  .cmp-policies__grid { grid-template-columns: 1fr; }
  .cmp-cta { margin: 0 12px 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPLAINTS PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.cpl-hero {
  background: #fff; padding: 60px 0 0; position: relative; overflow: hidden;
}
.cpl-hero__bg-deco {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 0% 50%, rgba(0,155,78,.04) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 100% 10%, rgba(43,57,144,.05) 0%, transparent 65%);
}
/* Inner is now a relative block — left content dictates section height */
.cpl-hero__inner {
  display: block; position: relative; z-index: 1;
}
.cpl-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--hhc-green, #009b4e); margin: 0 0 12px;
  background: rgba(0,155,78,.08); padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,155,78,.2);
}
.cpl-hero__heading {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 900; line-height: 1.1;
  color: #0d2137; margin: 0 0 20px; letter-spacing: -.03em;
}
.cpl-hero__h-green { color: var(--hhc-green, #009b4e); }
.cpl-hero__desc {
  font-size: .95rem; color: #4a5568; line-height: 1.8; margin: 0 0 28px; max-width: 480px;
}

/* Feature badges - single row of 3 */
.cpl-hero__feats { display: flex; gap: 12px; flex-wrap: nowrap; margin-bottom: 32px; }
.cpl-hero__feat {
  display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0;
  background: #fff; border: 1.5px solid #e8eef8; border-radius: 14px;
  padding: 12px 16px; box-shadow: 0 2px 10px rgba(43,57,144,.06);
}
.cpl-hero__feat-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #0d2137, #2b3990);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
}
.cpl-hero__feat-icon--green { background: linear-gradient(135deg, #007a3e, #009b4e); }
.cpl-hero__feat-label { font-size: .84rem; font-weight: 700; color: #0d2137; line-height: 1.3; }

/* CTA Buttons */
.cpl-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cpl-hero__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-size: .87rem; font-weight: 700;
  text-decoration: none; transition: all .22s;
}
.cpl-hero__btn--fill {
  background: var(--hhc-green, #009b4e); color: #fff; border: 1.5px solid transparent;
  box-shadow: 0 4px 16px rgba(0,155,78,.35);
}
.cpl-hero__btn--fill:hover { background: #007a3e; transform: translateY(-2px); }
.cpl-hero__btn--out {
  background: transparent; color: #0d2137; border: 1.5px solid #d1d9e4;
}
.cpl-hero__btn--out:hover { border-color: var(--hhc-blue, #2b3990); color: var(--hhc-blue, #2b3990); }

/* Left column — half width, its height = section height */
.cpl-hero__left {
  width: 50%; padding-bottom: 52px; position: relative; z-index: 1;
}

/* Right column — absolutely positioned so it does NOT affect section height */
.cpl-hero__right {
  position: absolute;
  right: 0;
  top: -56px;                      /* rise to the very top of the section */
  width: 50%;
  height: calc(100% + 56px);       /* full section height including top padding */
  display: flex; align-items: flex-end; justify-content: flex-end;
  pointer-events: none;
}
.cpl-hero--no-img .cpl-hero__left { width: 65%; }
.cpl-hero--no-img .cpl-hero__right { display: none; }
.cpl-hero__img {
  width: 100%; max-height: 520px; object-fit: contain; display: block;
  filter: drop-shadow(0 24px 56px rgba(43,57,144,.14));
}

/* ── Alert Message ── */
.cpl-alert {
  padding: 14px 20px; border-radius: 10px; font-size: .88rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
  background: rgba(0,155,78,.08); color: var(--hhc-green, #009b4e);
  border: 1px solid rgba(0,155,78,.2);
}

/* ── Main Grid: Form (left) + Right ── */
.cpl-main { background: #f4f6fb; padding: 48px 0 24px; }
.cpl-main__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}

/* ── Form Card ── */
.cpl-form-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 4px 24px rgba(43,57,144,.08);
  padding: 26px 24px; border: 1px solid rgba(226,232,240,.8);
}
.cpl-form-card__title {
  font-size: 1.1rem; font-weight: 800; color: #0d2137; margin: 0 0 16px;
  display: flex; align-items: center; gap: 10px;
}
.cpl-form-card__title-bar {
  display: block; width: 4px; height: 22px; background: var(--hhc-green, #009b4e);
  border-radius: 3px; flex-shrink: 0;
}
.cpl-form { display: flex; flex-direction: column; gap: 12px; }
.cpl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Fields */
.cpl-field { display: flex; flex-direction: column; gap: 4px; }
.cpl-field--full { grid-column: 1 / -1; }
.cpl-label { font-size: .74rem; font-weight: 600; color: #374151; }
.cpl-req { color: var(--hhc-red, #ed1c24); }

.cpl-input-wrap {
  position: relative; display: flex; align-items: center;
}
.cpl-input-icon {
  position: absolute; left: 12px; font-size: .85rem; color: #a0aec0; pointer-events: none;
}
.cpl-input-wrap--select .cpl-select-arrow {
  position: absolute; right: 12px; font-size: .7rem; color: #a0aec0; pointer-events: none;
}
.cpl-input {
  width: 100%; border: 1.5px solid #e2e8f0; border-radius: 8px;
  padding: 8px 12px 8px 34px; font-size: .82rem; color: #1a202c;
  background: #fff; outline: none; transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.cpl-input:focus { border-color: var(--hhc-blue, #2b3990); box-shadow: 0 0 0 3px rgba(43,57,144,.08); }
.cpl-select { appearance: none; padding-right: 32px; padding-left: 12px; cursor: pointer; }
.cpl-textarea { padding: 8px 12px; resize: vertical; min-height: 98px; line-height: 1.6; }
.cpl-char-count { font-size: .7rem; color: #a0aec0; text-align: right; margin-top: 3px; }
.cpl-field__err { font-size: .72rem; color: var(--hhc-red, #ed1c24); margin: 2px 0 0; }

/* Upload zone — compact single row */
.cpl-upload-zone {
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 10px;
  border: 2px dashed #d1d9e4; border-radius: 10px; padding: 15px 16px;
  cursor: pointer; transition: border-color .2s, background .2s;
  background: #fafbff;
}
.cpl-upload-zone:hover { border-color: var(--hhc-green, #009b4e); background: rgba(0,155,78,.03); }
.cpl-upload-icon { font-size: 1.15rem; color: var(--hhc-green, #009b4e); margin-bottom: 0; flex-shrink: 0; }
.cpl-upload-text { font-size: .78rem; font-weight: 600; color: #374151; }
.cpl-upload-hint { font-size: .68rem; color: #a0aec0; margin-top: 0; }
.cpl-file-input { display: none; }
.cpl-upload-name { font-size: .75rem; color: var(--hhc-green, #009b4e); margin: 4px 0 0; min-height: 16px; }

/* Submit button */
.cpl-submit-btn {
  width: 100%; padding: 11px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--hhc-green, #009b4e); color: #fff; font-size: .88rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 4px 16px rgba(0,155,78,.35); transition: background .22s, transform .22s;
  font-family: inherit;
}
.cpl-submit-btn:hover { background: #007a3e; transform: translateY(-2px); }

.cpl-form__note {
  font-size: .73rem; color: #a0aec0; text-align: center; margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* ── Right Column ── */
.cpl-right-col { display: flex; flex-direction: column; gap: 16px; }

/* Contact & Help card */
.cpl-contact-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(43,57,144,.08);
  border: 1.5px solid rgba(226,232,240,.9);
  display: flex; gap: 0;
}
.cpl-contact-main { flex: 1; padding: 14px 16px; min-width: 0; }
.cpl-section-title {
  font-size: .95rem; font-weight: 800; color: #0d2137; margin: 0 0 10px;
}

.cpl-contact-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.cpl-ci { display: flex; align-items: center; gap: 10px; }
.cpl-ci__icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: #fff;
}
.cpl-ci__icon--navy  { background: #0d2137; }
.cpl-ci__icon--green { background: var(--hhc-green, #009b4e); }
.cpl-ci__icon--wa    { background: #25d366; }
.cpl-ci__icon--clock { background: #2b3990; }
.cpl-ci__body { display: flex; flex-direction: column; min-width: 0; }
.cpl-ci__label {
  font-size: .58rem; font-weight: 700; color: #a0aec0;
  margin: 0 0 1px; text-transform: uppercase; letter-spacing: .08em;
}
.cpl-ci__val {
  font-size: .82rem; color: #0d2137; font-weight: 700;
  text-decoration: none; margin: 0; display: block; line-height: 1.3;
}
.cpl-ci__val:hover { color: var(--hhc-green, #009b4e); }

/* Socials */
.cpl-socials { border-top: 1px solid #f0f4f8; padding-top: 8px; }
.cpl-socials__label { font-size: .68rem; font-weight: 700; color: #374151; margin: 0 0 6px; }
.cpl-socials__row { display: flex; gap: 6px; flex-wrap: wrap; }
.cpl-soc {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: .78rem; color: #fff; text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.cpl-soc:hover { transform: translateY(-2px); opacity: .88; }
.cpl-soc--fb  { background: #1877f2; }
.cpl-soc--li  { background: #0a66c2; }
.cpl-soc--ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.cpl-soc--yt  { background: #ff0000; }
.cpl-soc--wa  { background: #25d366; }

/* Urgent column: wraps urgent box + trust note */
.cpl-urgent-col {
  flex-shrink: 0; width: 220px; display: flex; flex-direction: column;
  border-left: 1.5px solid rgba(226,232,240,.9);
}

/* Urgent box */
.cpl-urgent {
  flex: 0 0 auto;
  padding: 20px 16px; display: flex; flex-direction: column; align-items: center;
  text-align: center;
  border: 1.5px solid rgba(237,28,36,.22);
  border-left: none; border-bottom: none;
  border-radius: 0 16px 0 0;
  background: rgba(255,245,245,.6);
}
.cpl-urgent__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(237,28,36,.1); border: 2px solid rgba(237,28,36,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--hhc-red, #ed1c24); margin-bottom: 10px;
}
.cpl-urgent__title { font-size: .88rem; font-weight: 800; color: var(--hhc-red, #ed1c24); margin: 0 0 8px; }
.cpl-urgent__desc { font-size: .74rem; color: #718096; line-height: 1.55; margin: 0 0 14px; }
.cpl-urgent__btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--hhc-red, #ed1c24); color: #fff; border-radius: 8px;
  padding: 10px 16px; font-size: .78rem; font-weight: 700; text-decoration: none;
  width: 100%; justify-content: center;
  transition: opacity .2s;
}
.cpl-urgent__btn:hover { opacity: .88; }

/* Trust note — inside urgent column, below urgent box */
.cpl-trust {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff; padding: 14px 14px;
  border-radius: 0 0 16px 0;
  border-top: 1px solid rgba(226,232,240,.8);
  flex-shrink: 0;
}
.cpl-trust__icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,155,78,.09); border: 1px solid rgba(0,155,78,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: var(--hhc-green, #009b4e);
}
.cpl-trust__text { font-size: .72rem; color: #4a5568; line-height: 1.55; margin: 2px 0 0; }

/* ── Complaint Handling Process card ── */
.cpl-process-card {
  background: #fff; border-radius: 16px; padding: 18px 16px 18px;
  border: 1px solid rgba(226,232,240,.8);
  box-shadow: 0 4px 20px rgba(43,57,144,.07);
  margin-top: 18px;
}
/* 2×2 grid so 4 steps fit in the right column without cramping */
.cpl-proc-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 10px;
  margin-top: 14px;
}

/* Each step: horizontal mini-card — icon+num LEFT, text RIGHT */
.cpl-proc-step {
  display: flex; flex-direction: row; align-items: flex-start;
  gap: 9px; position: relative;
  background: #f8faff; border-radius: 10px;
  padding: 10px 10px;
  border: 1px solid rgba(226,232,240,.7);
}

/* Left column: number stacked above icon */
.cpl-proc-step__lhs {
  display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0;
}
.cpl-proc-step__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--hhc-green, #009b4e);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800; color: #fff; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,155,78,.28);
}
.cpl-proc-step__icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,155,78,.08); border: 1.5px solid rgba(0,155,78,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--hhc-green, #009b4e);
}

/* Right column: title + description */
.cpl-proc-step__rhs { flex: 1; min-width: 0; padding-top: 2px; }
.cpl-proc-step__title {
  font-size: .72rem; font-weight: 800; color: #0d2137;
  margin: 0 0 4px; line-height: 1.3; text-align: left;
}
.cpl-proc-step__desc {
  font-size: .63rem; color: #718096; margin: 0; line-height: 1.6; text-align: left;
}

/* No arrows needed in grid layout */
.cpl-proc-step--arr::after { display: none; }

/* ── Value Cards ── */
.cpl-values { background: #fff; padding: 16px 0 40px; }
.cpl-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cpl-val-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #f8faff; border: 1.5px solid #e8eef8; border-radius: 16px; padding: 22px 20px;
  transition: box-shadow .22s, transform .22s;
}
.cpl-val-card:hover { box-shadow: 0 8px 28px rgba(43,57,144,.1); transform: translateY(-3px); }
.cpl-val-card__icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: rgba(43,57,144,.07); border: 1.5px solid rgba(43,57,144,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--hhc-blue, #2b3990);
}
.cpl-val-card__title { font-size: .9rem; font-weight: 800; color: var(--hhc-green, #009b4e); margin: 0 0 7px; }
.cpl-val-card__desc { font-size: .78rem; color: #4a5568; line-height: 1.65; margin: 0; text-align: left; }

/* ── CTA Band ── */
.cpl-cta {
  background: transparent;
  padding: 0 0 36px; position: relative; overflow: hidden;
}
.cpl-cta__inner {
  display: flex; align-items: center; gap: 32px; position: relative; z-index: 1;
  background: linear-gradient(90deg, #0d2137 0%, #1a3a6e 55%, #0d2137 100%);
  border-radius: 16px; padding: 22px 32px; overflow: hidden;
}
.cpl-cta__left { display: flex; align-items: center; gap: 18px; flex: 1; }
.cpl-cta__avatar {
  flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
}
.cpl-cta__heading { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0 0 4px; }
.cpl-cta__desc { font-size: .82rem; color: rgba(255,255,255,.7); margin: 0; }
.cpl-cta__right {
  display: flex; align-items: center; gap: 20px; flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,.15); padding-left: 32px;
}
.cpl-cta__right-text { font-size: .82rem; color: rgba(255,255,255,.8); margin: 0; max-width: 200px; }
.cpl-cta__btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--hhc-green, #009b4e); color: #fff; border-radius: 10px;
  padding: 12px 22px; font-size: .86rem; font-weight: 700; text-decoration: none;
  white-space: nowrap; box-shadow: 0 4px 14px rgba(0,155,78,.4);
  transition: background .2s, transform .2s;
}
.cpl-cta__btn:hover { background: #007a3e; transform: translateY(-2px); }
.cpl-cta__hands {
  position: absolute; right: 20px; bottom: -10px;
  font-size: 5rem; color: rgba(255,255,255,.06); pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cpl-urgent-col { width: 200px; }
}
@media (max-width: 900px) {
  .cpl-hero__left { width: 100%; padding-bottom: 36px; }
  .cpl-hero__right { display: none; }
  .cpl-main__grid { grid-template-columns: 1fr; }
  .cpl-values__grid { grid-template-columns: 1fr; }
  .cpl-cta__inner { flex-direction: column; text-align: center; }
  .cpl-cta__right { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; flex-direction: column; align-items: center; }
}
@media (max-width: 700px) {
  .cpl-hero__feats { flex-wrap: wrap; gap: 10px; }
  .cpl-hero__feat { flex: 0 0 calc(50% - 5px); }
}
@media (max-width: 600px) {
  .cpl-form__row { grid-template-columns: 1fr; }
  .cpl-contact-card { flex-direction: column; }
  .cpl-urgent-col { width: 100%; border-left: none; border-top: 1px solid rgba(226,232,240,.9); flex-direction: row; }
  .cpl-urgent { border-radius: 0; border: none; border-right: 1px solid rgba(226,232,240,.8); flex: 1; }
  .cpl-trust { border-radius: 0 0 16px 16px; flex: 1; }
  .cpl-proc-steps { flex-wrap: wrap; gap: 12px; }
  .cpl-proc-step--arr::after { display: none; }
  .cpl-hero__feat { flex: 0 0 100%; }
}

/* ── Global: justify all description / body text across the site ── */
[class*="__desc"]:not(.hhc-pcats-card__desc),
[class*="__body"]:not([class*="card__body"]):not([class*="feat__body"]):not([class*="ci__body"]):not([class*="badge__body"]):not([class*="cta__body"]):not([class*="standard__body"]):not([class*="step__body"]):not([class*="brand__text"]),
.hhc-hero__body,
.wwa-hero__body,
.hhc-cth__sub,
.cmp-hero__desc,
.cpl-hero__desc,
.ga-hero__desc,
.rg-hero__desc,
.cr-hero__desc,
.hhc-tm__desc,
.hhc-pcats-banner__desc,
.ga-partners__sub,
.jd-info-block__text {
  text-align: justify;
}

/* ── Success / error popup ─────────────────────────────── */
.hhc-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.hhc-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.hhc-popup[hidden] { display: none; }
.hhc-popup:not([hidden]) { display: flex; }

.hhc-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 61, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hhc-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow:
    0 24px 60px rgba(0, 26, 61, .22),
    0 0 0 1px rgba(0, 155, 78, .08);
  transform: scale(.88) translateY(20px);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.hhc-popup.is-open .hhc-popup__dialog {
  transform: scale(1) translateY(0);
}

.hhc-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: background .2s, color .2s, transform .2s;
}
.hhc-popup__close:hover {
  background: #e2e8f0;
  color: #001a3d;
  transform: rotate(90deg);
}

.hhc-popup__icon-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
}
.hhc-popup__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 155, 78, .25);
  animation: hhcPopupRing 2s ease-out infinite;
}
.hhc-popup__ring--2 {
  inset: -10px;
  border-color: rgba(0, 155, 78, .12);
  animation-delay: .4s;
}
@keyframes hhcPopupRing {
  0%   { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

.hhc-popup__icon {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a651 0%, #009b4e 45%, #007a3d 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 28px rgba(0, 155, 78, .35);
  animation: hhcPopupPop .5s cubic-bezier(.34, 1.56, .64, 1) .15s both;
}
.hhc-popup__icon--err {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 50%, #dc2626 100%);
  box-shadow: 0 10px 28px rgba(239, 68, 68, .3);
  font-size: 1.75rem;
}
@keyframes hhcPopupPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.hhc-popup__title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #001a3d;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.hhc-popup__text {
  font-size: .92rem;
  line-height: 1.65;
  color: #5a6a78;
  margin: 0 0 24px;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.hhc-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #00a651 0%, #009b4e 40%, #2563eb 100%);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 155, 78, .28);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.hhc-popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 155, 78, .35);
  opacity: .96;
}

.hhc-popup--error .hhc-popup__btn {
  background: linear-gradient(90deg, #64748b 0%, #475569 100%);
  box-shadow: 0 8px 24px rgba(71, 85, 105, .25);
}

.hhc-cth__submit.is-loading {
  opacity: .75;
  pointer-events: none;
}
.hhc-cth__submit.is-loading i,
.cpl-submit-btn.is-loading i {
  animation: hhcSpin .8s linear infinite;
}
.cpl-submit-btn.is-loading {
  opacity: .75;
  pointer-events: none;
}
@keyframes hhcSpin {
  to { transform: rotate(360deg); }
}
