﻿
      /* -------------------------------------------------------
   DESIGN TOKENS
   ------------------------------------------------------- */
      :root {
        --blue: #0e3baa;
        --blue-dk: #0a2e87;
        --blue-xdk: #060e38;
        --blue-lt: #e6eaf2;
        --orange: #f7612a;
        --orange-dk: #d94e1a;
        --black: #0a0a0a;
        --gray-bg: #f7f8fa;
        --g1: #e6eaf2;
        --g2: #d9dee8;
        --g3: #6b7280;
        --white: #ffffff;
        --fh: "Manrope", sans-serif;
        --fb: "IBM Plex Sans", sans-serif;
        --mw: 1180px;
        --r: 10px;
        --spy: 96px;
      }

      /* -------------------------------------------------------
   RESET
   ------------------------------------------------------- */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--fb);
        font-size: 17px;
        line-height: 1.75;
        color: var(--black);
        background: var(--white);
        -webkit-font-smoothing: antialiased;
        padding-top: 104px;
      }
      img {
        display: block;
        max-width: 100%;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      button {
        cursor: pointer;
        font-family: inherit;
        border: none;
        background: none;
        padding: 0;
      }

      .wrap {
        width: 100%;
        max-width: var(--mw);
        margin: 0 auto;
        padding: 0 40px;
      }

      /* -------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------- */
      .fu {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .fu.on {
        opacity: 1;
        transform: none;
      }
      .fu:nth-child(2) {
        transition-delay: 0.08s;
      }
      .fu:nth-child(3) {
        transition-delay: 0.15s;
      }
      .fu:nth-child(4) {
        transition-delay: 0.22s;
      }
      .fu:nth-child(5) {
        transition-delay: 0.29s;
      }
      .fu:nth-child(6) {
        transition-delay: 0.36s;
      }
      .fu:nth-child(7) {
        transition-delay: 0.43s;
      }

      /* -------------------------------------------------------
   BUTTONS
   ------------------------------------------------------- */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-family: var(--fh);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.03em;
        padding: 13px 26px;
        border-radius: 7px;
        border: 2px solid transparent;
        transition:
          background 0.2s,
          border-color 0.2s,
          box-shadow 0.2s,
          transform 0.15s;
        cursor: pointer;
        white-space: nowrap;
      }
      .btn:hover {
        transform: translateY(-1px);
      }
      .btn-orange {
        background: var(--orange);
        color: #fff;
        border-color: var(--orange-dk);
      }
      .btn-orange:hover {
        background: var(--orange-dk);
        box-shadow: 0 4px 16px rgba(247, 97, 42, 0.3);
      }
      .btn-ghost-w {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.65);
      }
      .btn-ghost-w:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.9);
      }
      .btn-blue {
        background: var(--blue);
        color: #fff;
        border-color: var(--blue-dk);
      }
      .btn-blue:hover {
        background: var(--blue-dk);
        box-shadow: 0 4px 16px rgba(14, 59, 170, 0.3);
      }
      .btn-ghost-b {
        background: transparent;
        color: var(--blue);
        border: 2px solid var(--blue);
      }
      .btn-ghost-b:hover {
        background: var(--blue);
        color: #fff;
      }
      .btn-sm {
        padding: 9px 18px;
        font-size: 13px;
      }

      /* -------------------------------------------------------
   SECTION LABELS
   ------------------------------------------------------- */
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--fh);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 14px;
      }
      .eyebrow::before {
        content: "";
        display: block;
        width: 16px;
        height: 2px;
        background: var(--orange);
        border-radius: 2px;
        flex-shrink: 0;
      }
      .eyebrow-c {
        display: flex;
        justify-content: center;
        width: 100%;
      }
      .eyebrow-c::before {
        display: none;
      }
      .eyebrow-lt {
        color: rgba(255, 255, 255, 0.7);
      }
      .sec-title {
        font-family: var(--fh);
        font-size: clamp(30px, 3.2vw, 46px);
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.4px;
        color: var(--black);
      }
      .sec-title-lt {
        color: #fff;
      }
      .sec-intro {
        font-size: 19px;
        font-weight: 500;
        line-height: 1.7;
        color: #4b5563;
        max-width: 680px;
        margin-top: 12px;
      }

      /* TOP INFO BAR */
      .top-bar {
        background: var(--blue-xdk);
        height: 36px;
        flex-shrink: 0;
      }
      .top-bar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 36px;
        gap: 16px;
      }
      .tb-contact {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .tb-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: var(--fh);
        font-size: 11.5px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.58);
        transition: color 0.2s;
        white-space: nowrap;
      }
      .tb-link:hover {
        color: #fff;
      }
      .tb-sep {
        width: 1px;
        height: 11px;
        background: rgba(255, 255, 255, 0.16);
        flex-shrink: 0;
      }
      .tb-right {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .tb-social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 4px;
        color: rgba(255, 255, 255, 0.4);
        transition:
          color 0.2s,
          background 0.2s;
      }
      .tb-social:hover {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.08);
      }

      /* HEADER & NAV */
      #hdr {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
      }
      .main-bar {
        background: #fff;
        border-bottom: 1px solid var(--g2);
      }
      .hdr-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 88px;
      }
      .logo {
        display: inline-flex;
        align-items: center;
        padding: 4px 0;
        flex-shrink: 0;
        transition: opacity 0.2s;
      }
      .logo:hover {
        opacity: 0.82;
      }
      .logo-img,
      .custom-logo {
        height: 56px;
        width: auto;
        max-width: none;
        display: block;
      }
      .custom-logo-link {
        display: inline-flex;
        align-items: center;
        padding: 4px 0;
        transition: opacity 0.2s;
      }
      .custom-logo-link:hover { opacity: 0.82; }
      .hdr-nav {
        display: flex;
        align-items: center;
        gap: 4px;
      }
      .hdr-actions {
        display: flex;
        align-items: center;
        gap: 4px;
      }
      .nav-item {
        position: relative;
      }
      .nav-link {
        display: flex;
        align-items: center;
        gap: 4px;
        font-family: var(--fh);
        font-size: 13.5px;
        font-weight: 500;
        color: var(--g3);
        padding: 8px 12px;
        border-radius: 6px;
        transition:
          color 0.2s,
          background 0.2s;
        letter-spacing: 0.02em;
        cursor: pointer;
        white-space: nowrap;
      }
      .nav-link svg {
        flex-shrink: 0;
        opacity: 0.6;
        transition: transform 0.2s;
      }
      .nav-link:hover,
      .nav-link.active {
        color: var(--blue);
        background: var(--gray-bg);
      }
      .nav-item:hover .nav-link svg {
        transform: rotate(180deg);
      }
      .subnav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        background: #fff;
        border: 1px solid var(--g1);
        border-radius: 10px;
        padding: 8px 0;
        min-width: 210px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition:
          opacity 0.2s ease 0.18s,
          transform 0.2s ease 0.18s;
        z-index: 300;
      }
      .subnav::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
      }
      .nav-item:hover .subnav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
      }
      .subnav a {
        display: block;
        padding: 9px 18px;
        font-size: 13.5px;
        color: var(--g3);
        transition:
          color 0.15s,
          background 0.15s;
        font-family: var(--fb);
      }
      .subnav a:hover {
        color: var(--blue);
        background: var(--gray-bg);
      }
      .subnav-svc {
        min-width: 440px;
        padding: 16px 12px 12px;
      }
      .svc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
      }
      .svc-card {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 8px;
        transition: background 0.15s;
        text-decoration: none;
      }
      .svc-card:hover {
        background: var(--gray-bg);
      }
      .svc-card:hover .svc-name {
        color: var(--blue);
      }
      .svc-body {
        display: flex;
        flex-direction: column;
        gap: 1px;
      }
      .svc-name {
        font-family: var(--fh);
        font-size: 12.5px;
        font-weight: 600;
        color: var(--black);
        line-height: 1.3;
        transition: color 0.15s;
      }
      .svc-desc {
        font-size: 11px;
        font-weight: 500;
        color: var(--g3);
        line-height: 1.4;
      }
      .svc-footer {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--g1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }
      .svc-footer-text {
        font-size: 12px;
        font-weight: 500;
        color: var(--g3);
      }
      .svc-footer-link {
        font-family: var(--fh);
        font-size: 12px;
        font-weight: 600;
        color: var(--blue);
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: gap 0.18s;
      }
      .svc-footer-link:hover {
        gap: 7px;
      }
      .hdr-cta {
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding: 9px 20px;
        background: var(--orange);
        color: #fff;
        border-radius: 6px;
        transition: background 0.2s;
        margin-left: 8px;
        white-space: nowrap;
      }
      .hdr-cta:hover {
        background: var(--orange-dk);
      }
      .cart-icon-wrap {
        position: relative;
        display: inline-flex;
        align-items: center;
        margin-left: 4px;
      }
      .cart-icon-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 6px;
        color: var(--g3);
        transition:
          color 0.2s,
          background 0.2s;
      }
      .cart-icon-btn:hover {
        color: var(--blue);
        background: var(--gray-bg);
      }
      .nav-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 6px;
        color: var(--g3);
        border: none;
        background: none;
        cursor: pointer;
        transition:
          color 0.2s,
          background 0.2s;
        margin-left: 4px;
        flex-shrink: 0;
      }
      .nav-search-btn:hover {
        color: var(--blue);
        background: var(--gray-bg);
      }

      /* HAMBURGER */
      .nav-tog {
        display: none;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 6px;
        position: relative;
        flex-shrink: 0;
        transition: background 0.2s;
      }
      .nav-tog:hover {
        background: var(--gray-bg);
      }
      .nav-tog-bar {
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -11px;
        margin-top: -1px;
        width: 22px;
        height: 2px;
        border-radius: 2px;
        background: var(--black);
        transition:
          transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
          opacity 200ms ease;
      }
      .nav-tog-bar:nth-child(1) {
        transform: translateY(-6px);
      }
      .nav-tog-bar:nth-child(2) {
        transform: translateY(0);
      }
      .nav-tog-bar:nth-child(3) {
        transform: translateY(6px);
      }
      .nav-tog.is-open .nav-tog-bar:nth-child(1) {
        transform: translateY(0) rotate(45deg);
      }
      .nav-tog.is-open .nav-tog-bar:nth-child(2) {
        transform: translateY(0) scaleX(0);
        opacity: 0;
      }
      .nav-tog.is-open .nav-tog-bar:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
      }
      .mnav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.3);
        z-index: 185;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition:
          opacity 300ms ease,
          visibility 0s linear 300ms;
      }
      .mnav-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transition:
          opacity 300ms ease,
          visibility 0s linear 0s;
      }
      .mobile-nav {
        position: fixed;
        top: 124px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 190;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 20px 0 56px;
        opacity: 0;
        transform: translateY(-14px);
        pointer-events: none;
        visibility: hidden;
        transition:
          opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1),
          transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1),
          visibility 0s linear 300ms;
      }
      .mobile-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
        transition:
          opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1),
          transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1),
          visibility 0s linear 0s;
      }
      .mnav-item {
        border-bottom: 1px solid var(--g1);
      }
      .mnav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 24px;
        min-height: 54px;
        font-family: var(--fh);
        font-size: 15px;
        font-weight: 600;
        color: var(--black);
        cursor: pointer;
        transition: color 0.18s;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
      }
      .mnav-link:hover {
        color: var(--blue);
      }
      a.mnav-link {
        display: flex;
      }
      .mnav-chevron {
        flex-shrink: 0;
        opacity: 0.38;
        transition:
          transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
          opacity 200ms ease;
      }
      .mnav-link.is-open .mnav-chevron {
        transform: rotate(180deg);
        opacity: 0.6;
      }
      .mnav-sub {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 280ms cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--gray-bg);
      }
      .mnav-sub.is-open {
        grid-template-rows: 1fr;
      }
      .mnav-sub-inner {
        overflow: hidden;
        min-height: 0;
      }
      .mnav-sub a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0 24px 0 34px;
        font-size: 13.5px;
        font-family: var(--fb);
        color: var(--g3);
        border-bottom: 1px solid rgba(230, 234, 242, 0.7);
        transition:
          color 0.18s,
          background 0.18s;
      }
      .mnav-sub a:last-child {
        border-bottom: none;
      }
      .mnav-sub a:hover {
        color: var(--blue);
        background: rgba(14, 59, 170, 0.04);
      }
      .mnav-sub a.mnav-svc-row {
        align-items: flex-start;
        min-height: auto;
        padding: 10px 24px;
        gap: 10px;
      }
      .mnav-svc-body {
        display: flex;
        flex-direction: column;
        gap: 1px;
      }
      .mnav-svc-name {
        font-family: var(--fh);
        font-size: 13.5px;
        font-weight: 600;
        color: var(--black);
        line-height: 1.3;
        transition: color 0.18s;
      }
      .mnav-svc-desc {
        font-size: 11.5px;
        font-weight: 500;
        color: var(--g3);
        line-height: 1.4;
      }
      .mnav-sub a.mnav-svc-row:hover .mnav-svc-name {
        color: var(--blue);
      }
      .mnav-sub-head {
        padding: 6px 24px 4px;
        font-family: var(--fh);
        font-size: 10.5px;
        font-weight: 700;
        color: var(--g3);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(230, 234, 242, 0.5);
      }
      .mnav-sub-divider {
        height: 1px;
        background: var(--g2);
        margin: 2px 0;
      }
      .mnav-sub a.mnav-cat-row {
        min-height: auto;
        padding: 7px 24px;
        gap: 10px;
      }
      .mnav-sub a.mnav-all-link {
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 700;
        color: var(--blue);
        justify-content: center;
        border-bottom: none;
        padding: 10px 24px;
      }
      .mnav-search {
        padding: 16px 24px;
      }
      .mnav-search-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--gray-bg);
        border-radius: 8px;
        padding: 10px 14px;
      }
      .mnav-search-input {
        flex: 1;
        font-family: var(--fh);
        font-size: 14px;
        color: var(--black);
        border: none;
        background: transparent;
        outline: none;
      }
      .mnav-search-input::placeholder {
        color: var(--g3);
      }
      .mnav-cta {
        padding: 22px 24px 0;
      }
      .mnav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
        font-size: 14px;
        border-radius: 8px;
        transition:
          background 0.2s,
          transform 0.12s;
        -webkit-tap-highlight-color: transparent;
      }
      .mnav-cta .btn:active {
        transform: scale(0.98);
      }

      /* CART BADGE */
      .cart-badge {
        position: absolute;
        top: 4px;
        right: 4px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-radius: 8px;
        background: var(--orange);
        color: #fff;
        font-family: var(--fh);
        font-size: 10px;
        font-weight: 700;
        line-height: 16px;
        text-align: center;
        display: none;
        pointer-events: none;
      }
      .cart-badge.has-items {
        display: block;
      }

      /* SEARCH OVERLAY */
      .search-overlay {
        position: fixed;
        inset: 0;
        z-index: 600;
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
      }
      .search-overlay.so-open {
        opacity: 1;
        pointer-events: auto;
      }
      .so-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(4, 10, 40, 0.72);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
      }
      .so-panel {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 780px;
        padding: 0 24px;
        margin-top: 108px;
        transform: translateY(-12px);
        transition: transform 0.22s ease;
      }
      .search-overlay.so-open .so-panel {
        transform: translateY(0);
      }
      .so-wrap {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 14px;
        padding: 0 16px 0 22px;
        box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
        gap: 14px;
      }
      .so-search-icon {
        color: var(--blue);
        flex-shrink: 0;
      }
      .so-input {
        flex: 1;
        height: 66px;
        font-family: var(--fh);
        font-size: 18px;
        font-weight: 500;
        color: var(--black);
        border: none;
        outline: none;
        background: transparent;
      }
      .so-input::placeholder {
        color: var(--g3);
        font-weight: 400;
      }
      .so-close-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1.5px solid var(--g2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--g3);
        flex-shrink: 0;
        cursor: pointer;
        background: none;
        transition:
          border-color 0.15s,
          color 0.15s;
      }
      .so-close-btn:hover {
        border-color: var(--blue);
        color: var(--blue);
      }
      .so-hint {
        text-align: center;
        margin-top: 16px;
        font-family: var(--fh);
        font-size: 12px;
        color: rgba(255, 255, 255, 0.42);
        letter-spacing: 0.03em;
      }

      /* CATALOG MEGA MENU */
      .subnav-divider {
        height: 1px;
        background: var(--g1);
        margin: 6px 0;
      }
      .cat-mega {
        position: fixed;
        top: 124px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: calc(100vh - 130px);
        border-radius: 0 0 14px 14px;
        background: #fff;
        border: 1px solid var(--g1);
        border-top: none;
        box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.1),
          0 2px 8px rgba(0, 0, 0, 0.06);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition:
          opacity 0.2s ease 0.18s,
          transform 0.2s ease 0.18s;
        z-index: 300;
      }
      .cat-mega::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
      }
      .nav-item.mega-open .cat-mega {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
      }
      .cat-mega-body {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        padding: 16px 48px 12px;
        gap: 0;
      }
      .cat-mega-sec-head {
        font-family: var(--fh);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--g3);
        margin-bottom: 8px;
        padding: 0 4px;
      }
      .cat-mega-cat-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2px;
      }
      .cat-mega-brand-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2px;
      }
      .cat-mega-item {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        padding: 8px 9px;
        border-radius: 7px;
        transition: background 0.15s;
        text-decoration: none;
      }
      .cat-mega-item:hover {
        background: var(--gray-bg);
      }
      .cat-mega-item:hover .cat-mega-item-name {
        color: var(--blue);
      }
      .cat-mega-item--brand {
        align-items: center;
        padding: 6px 8px;
      }
      .cat-mega-item-body {
        display: flex;
        flex-direction: column;
        gap: 1px;
        min-width: 0;
      }
      .cat-mega-item-name {
        font-family: var(--fh);
        font-size: 12.5px;
        font-weight: 600;
        color: var(--black);
        line-height: 1.3;
        transition: color 0.15s;
      }
      .cat-mega-item-sub {
        font-size: 11px;
        font-weight: 500;
        color: var(--g3);
        line-height: 1.3;
        margin-top: 1px;
      }
      .cat-mega-vsep {
        width: 1px;
        background: var(--g1);
        margin: 0 16px;
      }
      .cat-mega-footer {
        border-top: 1px solid var(--g1);
        margin-top: 4px;
        padding: 12px 48px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
      }
      .cat-mega-footer-text {
        font-size: 12px;
        font-weight: 500;
        color: var(--g3);
      }
      .cat-mega-footer-link {
        font-family: var(--fh);
        font-size: 12.5px;
        font-weight: 600;
        color: var(--blue);
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: gap 0.18s;
      }
      .cat-mega-footer-link:hover {
        gap: 8px;
      }

      /* CTA */
      .hdr-cta {
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding: 9px 20px;
        background: var(--orange);
        color: #fff;
        border-radius: 6px;
        transition: background 0.2s;
        margin-left: 8px;
        white-space: nowrap;
      }
      .hdr-cta:hover {
        background: var(--orange-dk);
      }

      /* -- HAMBURGER BUTTON ------------------------------------- */
      .nav-tog {
        display: none;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 6px;
        position: relative;
        flex-shrink: 0;
        transition: background 0.2s;
      }
      .nav-tog:hover {
        background: var(--gray-bg);
      }

      .nav-tog-bar {
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -11px;
        margin-top: -1px;
        width: 22px;
        height: 2px;
        border-radius: 2px;
        background: var(--black);
        transition:
          transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
          opacity 200ms ease;
      }
      .nav-tog-bar:nth-child(1) {
        transform: translateY(-6px);
      }
      .nav-tog-bar:nth-child(2) {
        transform: translateY(0);
      }
      .nav-tog-bar:nth-child(3) {
        transform: translateY(6px);
      }
      .nav-tog.is-open .nav-tog-bar:nth-child(1) {
        transform: translateY(0) rotate(45deg);
      }
      .nav-tog.is-open .nav-tog-bar:nth-child(2) {
        transform: translateY(0) scaleX(0);
        opacity: 0;
      }
      .nav-tog.is-open .nav-tog-bar:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
      }

      /* -- MOBILE BACKDROP -------------------------------------- */
      .mnav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.3);
        z-index: 185;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition:
          opacity 300ms ease,
          visibility 0s linear 300ms;
      }
      .mnav-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transition:
          opacity 300ms ease,
          visibility 0s linear 0s;
      }

      /* -- MOBILE NAV PANEL ------------------------------------- */
      .mobile-nav {
        position: fixed;
        top: 104px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 190;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 20px 0 56px;
        opacity: 0;
        transform: translateY(-14px);
        pointer-events: none;
        visibility: hidden;
        transition:
          opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1),
          transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1),
          visibility 0s linear 300ms;
      }
      .mobile-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
        transition:
          opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1),
          transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1),
          visibility 0s linear 0s;
      }

      /* -- MOBILE NAV ITEMS ------------------------------------- */
      .mnav-item {
        border-bottom: 1px solid var(--g1);
      }

      .mnav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 24px;
        min-height: 54px;
        font-family: var(--fh);
        font-size: 15px;
        font-weight: 600;
        color: var(--black);
        cursor: pointer;
        transition: color 0.18s;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
      }
      .mnav-link:hover {
        color: var(--blue);
      }
      a.mnav-link {
        display: flex;
      }

      .mnav-chevron {
        flex-shrink: 0;
        opacity: 0.38;
        transition:
          transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
          opacity 200ms ease;
      }
      .mnav-link.is-open .mnav-chevron {
        transform: rotate(180deg);
        opacity: 0.6;
      }

      /* -- ACCORDION SUBMENU ------------------------------------ */
      .mnav-sub {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 280ms cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--gray-bg);
      }
      .mnav-sub.is-open {
        grid-template-rows: 1fr;
      }
      .mnav-sub-inner {
        overflow: hidden;
        min-height: 0;
      }

      .mnav-sub a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0 24px 0 34px;
        font-size: 13.5px;
        font-family: var(--fb);
        color: var(--g3);
        border-bottom: 1px solid rgba(230, 234, 242, 0.7);
        transition:
          color 0.18s,
          background 0.18s;
      }
      .mnav-sub a:last-child {
        border-bottom: none;
      }
      .mnav-sub a:hover {
        color: var(--blue);
        background: rgba(14, 59, 170, 0.04);
      }
      /* Mobile: service rows */
      .mnav-sub a.mnav-svc-row {
        align-items: flex-start;
        min-height: auto;
        padding: 10px 24px;
        gap: 10px;
      }
      .mnav-svc-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        background: var(--blue-lt);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
        transition: background 0.18s;
      }
      .mnav-svc-icon svg {
        color: var(--blue);
        transition: color 0.18s;
      }
      .mnav-svc-body {
        display: flex;
        flex-direction: column;
        gap: 1px;
      }
      .mnav-svc-name {
        font-family: var(--fh);
        font-size: 13.5px;
        font-weight: 600;
        color: var(--black);
        line-height: 1.3;
        transition: color 0.18s;
      }
      .mnav-svc-desc {
        font-size: 11.5px;
        font-weight: 500;
        color: var(--g3);
        line-height: 1.4;
      }
      .mnav-sub a.mnav-svc-row:hover .mnav-svc-icon {
        background: var(--blue);
      }
      .mnav-sub a.mnav-svc-row:hover .mnav-svc-icon svg {
        color: #fff;
      }
      .mnav-sub a.mnav-svc-row:hover .mnav-svc-name {
        color: var(--blue);
      }
      /* Mobile: catalog section labels */
      .mnav-sub-head {
        padding: 6px 24px 4px;
        font-family: var(--fh);
        font-size: 10.5px;
        font-weight: 700;
        color: var(--g3);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(230, 234, 242, 0.5);
      }
      .mnav-sub-divider {
        height: 1px;
        background: var(--g2);
        margin: 2px 0;
      }
      /* Mobile: catalog brand/category rows */
      .mnav-sub a.mnav-cat-row {
        min-height: auto;
        padding: 7px 24px;
        gap: 10px;
      }
      .mnav-cat-icon {
        width: 24px;
        height: 24px;
        border-radius: 5px;
        background: var(--blue-lt);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.18s;
      }
      .mnav-cat-icon svg {
        color: var(--blue);
        transition: color 0.18s;
      }
      .mnav-sub a.mnav-cat-row:hover .mnav-cat-icon {
        background: var(--blue);
      }
      .mnav-sub a.mnav-cat-row:hover .mnav-cat-icon svg {
        color: #fff;
      }
      .mnav-sub a.mnav-all-link {
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 700;
        color: var(--blue);
        justify-content: center;
        border-bottom: none;
        padding: 10px 24px;
      }

      /* -- MOBILE CTA ------------------------------------------- */
      .mnav-cta {
        padding: 22px 24px 0;
      }
      .mnav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
        font-size: 14px;
        border-radius: 8px;
        transition:
          background 0.2s,
          transform 0.12s;
        -webkit-tap-highlight-color: transparent;
      }
      .mnav-cta .btn:active {
        transform: scale(0.98);
      }

      /* -------------------------------------------------------
   HERO â€” FULL-BLEED BANNER + INDEPENDENT TEXT ANIMATION
   ------------------------------------------------------- */
      #home {
        position: relative;
        background: var(--blue-xdk);
      }

      .hero-wrap {
        position: relative;
        height: calc(100vh - 104px);
        min-height: 620px;
        max-height: 860px;
        overflow: hidden;
      }

      /* Image track â€” slides only */
      .hero-track {
        display: flex;
        height: 100%;
        transition: transform 0.82s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
      }
      .hero-slide {
        flex: 0 0 100%;
        min-width: 100%;
        height: 100%;
        position: relative;
      }
      .hero-slide img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
      .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          100deg,
          rgba(4, 10, 38, 0.93) 0%,
          rgba(5, 14, 52, 0.86) 32%,
          rgba(5, 14, 52, 0.64) 56%,
          rgba(5, 14, 52, 0.26) 80%,
          rgba(5, 14, 52, 0.08) 100%
        );
      }

      /* Text layer â€” SEPARATE from track, never moves horizontally */
      .hero-text-layer {
        position: absolute;
        inset: 0;
        z-index: 3;
        display: flex;
        align-items: center;
        pointer-events: auto;
      }
      .hero-text-wrap {
        width: 100%;
        max-width: var(--mw);
        margin: 0 auto;
        padding: 0 40px 100px;
      }
      .hero-text-inner {
        max-width: 600px;
      }

      /* Text animation states */
      .hero-text-layer.htx-out {
        animation: htOut 220ms ease forwards;
      }
      .hero-text-layer.htx-in {
        animation: htIn 420ms cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
      }
      @keyframes htOut {
        from {
          opacity: 1;
          transform: translateY(0);
        }
        to {
          opacity: 0;
          transform: translateY(-14px);
        }
      }
      @keyframes htIn {
        from {
          opacity: 0;
          transform: translateY(16px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Hero typography */
      .hero-ey {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--fh);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 20px;
      }
      .hero-ey::before {
        content: "";
        display: block;
        width: 14px;
        height: 2px;
        background: var(--orange);
        border-radius: 2px;
      }
      .hero-h1 {
        font-family: var(--fh);
        font-size: clamp(34px, 4.8vw, 58px);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -1.2px;
        color: #fff;
        margin-bottom: 18px;
        text-wrap: balance;
      }
      .hero-p {
        font-size: 19px;
        font-weight: 500;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.88);
        max-width: 490px;
        margin-bottom: 34px;
      }
      .hero-ctas {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      /* Controls */
      .hero-ctrl {
        position: absolute;
        bottom: 28px;
        right: 40px;
        z-index: 4;
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .hero-arr {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, 0.32);
        color: #fff;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
          background 0.2s,
          border-color 0.2s;
        cursor: pointer;
      }
      .hero-arr:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.7);
      }
      .hero-dots {
        display: flex;
        gap: 7px;
      }
      .hero-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        border: none;
        transition:
          background 0.3s,
          transform 0.3s;
      }
      .hero-dot.on {
        background: var(--orange);
        transform: scale(1.4);
      }
      /* Counter â€” centered column, aligned with text content */
      .hero-bottom-bar {
        position: absolute;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: var(--mw);
        padding: 0 40px;
        z-index: 4;
      }
      .hero-slide-n {
        font-family: var(--fh);
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 0.08em;
        white-space: nowrap;
      }
      .hero-slide-n strong {
        color: rgba(255, 255, 255, 0.75);
      }

      /* Stats strip */
      .hero-stats {
        background: var(--blue-xdk);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
      .hero-stats-inner {
        display: flex;
        max-width: var(--mw);
        margin: 0 auto;
        padding: 0 40px;
      }
      .hstat {
        flex: 1;
        padding: 22px 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
      }
      .hstat:first-child {
        padding-left: 0;
      }
      .hstat:last-child {
        border-right: none;
      }
      .hstat-num {
        font-family: var(--fh);
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.4px;
        line-height: 1;
        margin-bottom: 4px;
      }
      .hstat-lbl {
        font-size: 18px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.7;
      }

      /* Trust bar */
      .hero-trust {
        background: #fff;
        border-bottom: 1px solid var(--g1);
      }
      .hero-trust-inner {
        display: flex;
        justify-content: center;
        gap: 56px;
        max-width: var(--mw);
        margin: 0 auto;
        padding: 18px 40px;
      }
      .htrust-item {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .htrust-check {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .htrust-label {
        font-family: var(--fh);
        font-size: 14px;
        font-weight: 700;
        color: var(--black);
        line-height: 1.2;
      }
      .htrust-sub {
        font-size: 19px;
        font-weight: 500;
        color: #4b5563;
        margin-top: 2px;
        line-height: 1.55;
      }
      @media (max-width: 680px) {
        .hero-trust-inner {
          gap: 28px;
          flex-wrap: wrap;
          padding: 16px 22px;
        }
        .htrust-item {
          flex: 1;
          min-width: 120px;
        }
        .htrust-sub { font-size: 17px; line-height: 1.65; }
        .ah-body { font-size: 17px; line-height: 1.65; }
        .about-who p { font-size: 17px; line-height: 1.65; }
        .about-list li { font-size: 17px; line-height: 1.65; }
        .about-steps li { font-size: 17px; line-height: 1.65; }
        .about-vm-card p { font-size: 17px; line-height: 1.65; }
        .sup-item { font-size: 17px; line-height: 1.5; }
        .proc-text { font-size: 17px; line-height: 1.65; }
        .about-why-card p { font-size: 17px; line-height: 1.65; }
        .ct-desc { font-size: 17px; line-height: 1.65; }
        .wr-title { font-size: 17px; line-height: 1.65; }
        .section-blue .cap-body { font-size: 17px; line-height: 1.65; }
        .section-blue .step-body { font-size: 17px; line-height: 1.65; }
      }

      /* -------------------------------------------------------
   SECTION BASE
   ------------------------------------------------------- */
      .section {
        padding: var(--spy) 0;
      }
      .section-gray {
        background: #e9edf7;
        background-image:
          linear-gradient(rgba(14, 59, 170, 0.022) 1px, transparent 1px),
          linear-gradient(90deg, rgba(14, 59, 170, 0.022) 1px, transparent 1px);
        background-size: 52px 52px;
      }
      .section-blue {
        background: var(--blue);
        position: relative;
        overflow: hidden;
      }
      .section-dark {
        background: var(--black);
      }
      .section-bt {
        border-top: 1px solid var(--g1);
      }
      .section-dark.section-bt {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
      }
      .section-blue.section-bt {
        border-top: none;
      }

      .section-blue::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
      }

      /* -- DARK / BLUE SECTION â€” UNIVERSAL TEXT OVERRIDES ------- */
      .section-dark .sec-title,
      .section-blue .sec-title {
        color: #fff;
      }
      .section-dark .sec-intro,
      .section-blue .sec-intro {
        color: rgba(255, 255, 255, 0.88);
      }
      .section-dark .eyebrow,
      .section-blue .eyebrow {
        color: var(--orange);
      }
      .section-dark .eyebrow::before,
      .section-blue .eyebrow::before {
        background: var(--orange);
      }

      /* Services / cap-cards on blue bg */
      .section-blue .cap-card {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.13);
      }
      .section-blue .cap-card:hover {
        background: rgba(255, 255, 255, 0.13);
        border-color: rgba(255, 255, 255, 0.28);
        box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
        transform: translateY(-3px);
      }
      .section-blue .cap-ico {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
      }
      .section-blue .cap-title {
        color: #fff;
      }
      .section-blue .cap-body {
        color: rgba(255, 255, 255, 0.88);
        font-size: 19px;
        line-height: 1.7;
      }
      .section-blue .cap-link {
        color: var(--orange);
        border-color: var(--orange);
      }


      /* Brands / brand-chips on dark bg */
      .section-dark .brand-chip {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.88);
      }
      .section-dark .brand-chip:hover {
        border-color: var(--orange);
        color: #fff;
        box-shadow: 0 2px 16px rgba(247, 97, 42, 0.18);
      }
      .section-dark .brands-note {
        color: rgba(255, 255, 255, 0.26);
      }

      /* Process / proc-steps on blue bg */
      .section-blue .proc-steps::before {
        background: rgba(255, 255, 255, 0.18);
      }
      .section-blue .step-ring {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.18);
        color: var(--orange);
      }
      .section-blue .step-n {
        color: #fff;
      }
      .section-blue .step-title {
        color: #fff;
      }
      .section-blue .step-body {
        color: rgba(255, 255, 255, 0.88);
        font-size: 19px;
        line-height: 1.7;
      }
      .section-blue .proc-step:hover .step-ring {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.5);
      }
      .section-blue .proc-step:hover .step-n {
        color: #fff;
      }

      /* About metrics â€” blue left accent */
      .am {
        background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
        border-left: 3px solid var(--blue);
      }
      .am:hover {
        border-color: var(--blue);
        border-left-color: var(--orange);
      }

      /* -------------------------------------------------------
   ABOUT / COMPANY SNAPSHOT
   ------------------------------------------------------- */
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start;
      }
      .about-highlights {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--g1);
        border-radius: var(--r);
        overflow: hidden;
        margin-top: 32px;
      }
      .ah {
        display: flex;
        gap: 14px;
        padding: 18px 22px;
        border-bottom: 1px solid var(--g1);
        align-items: flex-start;
        transition: background 0.2s;
      }
      .ah:last-child {
        border-bottom: none;
      }
      .ah:hover {
        background: var(--gray-bg);
      }
      .ah-ico {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        color: var(--orange);
        margin-top: 2px;
      }
      .ah-title {
        font-family: var(--fh);
        font-size: 14px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 2px;
      }
      .ah-body {
        font-size: 19px;
        font-weight: 500;
        color: #4b5563;
        line-height: 1.65;
      }
      .about-cta-row {
        margin-top: 28px;
      }
      .about-right {
        display: flex;
        flex-direction: column;
      }
      .about-img {
        width: 100%;
        aspect-ratio: 4/3;
        border-radius: var(--r);
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      }
      .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .about-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid var(--g1);
      }
      .am {
        border: 1px solid var(--g1);
        border-radius: 8px;
        padding: 18px 20px;
        transition: border-color 0.2s;
      }
      .am:hover {
        border-color: var(--blue);
      }
      .am-ico {
        width: 22px;
        height: 22px;
        color: var(--orange);
        margin-bottom: 10px;
        opacity: 0.9;
      }
      .am-num {
        font-family: var(--fh);
        font-size: 26px;
        font-weight: 700;
        color: var(--blue);
        letter-spacing: -0.4px;
        margin-bottom: 3px;
      }
      .am-lbl {
        font-size: 13.5px;
        font-weight: 500;
        color: #4b5563;
        line-height: 1.4;
      }
      .about-who {
        margin-top: 28px;
        border-top: 1px solid var(--g1);
        padding-top: 24px;
      }
      .about-who-title {
        font-family: var(--fh);
        font-size: 15px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .about-who p {
        font-size: 19px;
        color: #4b5563;
        line-height: 1.7;
        margin-bottom: 12px;
      }
      .about-who p:last-child {
        margin-bottom: 0;
      }
      .about-divider {
        height: 1px;
        background: var(--g1);
        margin: 56px 0;
      }
      .about-sub-h {
        font-family: var(--fh);
        font-size: 22px;
        font-weight: 700;
        color: var(--black);
        letter-spacing: -0.3px;
        margin-top: 10px;
        margin-bottom: 28px;
      }
      .about-supports-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
      }
      .about-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .about-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 19px;
        color: #4b5563;
        line-height: 1.65;
      }
      .about-list li::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--orange);
        flex-shrink: 0;
        margin-top: 7px;
      }
      .about-steps-title {
        font-family: var(--fh);
        font-size: 12px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .about-steps {
        list-style: none;
        counter-reset: steps;
        display: flex;
        flex-direction: column;
      }
      .about-steps li {
        counter-increment: steps;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
        border-bottom: 1px solid var(--g1);
        font-size: 19px;
        color: #4b5563;
        line-height: 1.65;
      }
      .about-steps li:last-child {
        border-bottom: none;
      }
      .about-steps li::before {
        content: counter(steps);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--blue);
        color: var(--white);
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .about-vm-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .about-vm-card {
        background: var(--gray-bg);
        border: 1px solid var(--g1);
        border-radius: var(--r);
        padding: 32px;
      }
      .about-vm-ico {
        width: 40px;
        height: 40px;
        background: var(--blue);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        margin-bottom: 18px;
      }
      .about-vm-card h3 {
        font-family: var(--fh);
        font-size: 18px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 12px;
        letter-spacing: -0.2px;
      }
      .about-vm-card p {
        font-size: 19px;
        color: #4b5563;
        line-height: 1.7;
      }
      .sup-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--r);
        overflow: hidden;
        margin-top: 48px;
      }
      .sup-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 19px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.55;
        transition: background 0.2s;
      }
      .sup-item:hover {
        background: rgba(255, 255, 255, 0.05);
      }
      .sup-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }
      .sup-item:nth-last-child(-n+2) {
        border-bottom: none;
      }
      .sup-ico {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        color: var(--orange);
        margin-top: 2px;
      }
      .proc-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .proc-item {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--r);
        padding: 28px 24px;
      }
      .proc-num {
        font-size: 32px;
        font-weight: 800;
        color: var(--orange);
        line-height: 1;
        margin-bottom: 16px;
        font-family: var(--ff);
      }
      .proc-text {
        font-size: 19px;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.65;
        margin: 0;
        font-weight: 500;
      }
      .about-why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 28px;
      }
      .about-why-card {
        border: 1px solid var(--g1);
        border-radius: var(--r);
        padding: 24px;
        transition: border-color 0.2s, box-shadow 0.2s;
      }
      .about-why-card:hover {
        border-color: var(--blue);
        box-shadow: 0 4px 16px rgba(14, 59, 170, 0.08);
      }
      .awc-ico {
        width: 40px;
        height: 40px;
        background: var(--blue-lt);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blue);
        margin-bottom: 16px;
      }
      .about-why-card h4 {
        font-family: var(--fh);
        font-size: 12px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .about-why-card p {
        font-size: 19px;
        color: #4b5563;
        line-height: 1.65;
      }

      /* -------------------------------------------------------
   CAPABILITIES
   ------------------------------------------------------- */
      .cap-hdr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: end;
        margin-bottom: 48px;
      }
      .cap-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }
      .cap-card {
        background: var(--white);
        border: 1px solid var(--g1);
        border-radius: var(--r);
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        transition:
          border-color 0.25s,
          box-shadow 0.25s,
          transform 0.25s;
      }
      .cap-card:hover {
        border-color: var(--blue);
        box-shadow: 0 4px 24px rgba(14, 59, 170, 0.08);
        transform: translateY(-3px);
      }
      .cap-ico {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(14, 59, 170, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blue);
        flex-shrink: 0;
      }
      .section-blue .cap-ico {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
      }
      .cap-title {
        font-family: var(--fh);
        font-size: 20px;
        font-weight: 700;
        color: var(--black);
        line-height: 1.3;
      }
      .cap-body {
        font-size: 19px;
        font-weight: 500;
        line-height: 1.7;
        color: #4b5563;
        flex: 1;
      }
      .cap-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 600;
        color: var(--blue);
        border: 1.5px solid var(--blue);
        border-radius: 6px;
        padding: 6px 12px;
        margin-top: 8px;
        transition: gap 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
      }
      .cap-link:hover { background: var(--blue); color: #fff; gap: 8px; }
      .cap-card:hover .cap-link {
        gap: 8px;
      }

      /* -------------------------------------------------------
   FEATURED SUPPLY CATEGORIES â€” IMAGE-LED
   ------------------------------------------------------- */
      .cat-hdr {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 40px;
      }
      .cat-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
      }

      /* Image-led card */
      .cat-tile {
        position: relative;
        border-radius: var(--r);
        overflow: hidden;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
      }
      .cat-tile--wide {
        grid-column: span 2;
        min-height: 240px;
      }

      .cat-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s ease;
      }
      .cat-tile:hover .cat-bg {
        transform: scale(1.05);
      }

      .cat-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(4, 10, 40, 0.88) 0%,
          rgba(4, 10, 40, 0.5) 50%,
          rgba(4, 10, 40, 0.1) 100%
        );
        transition: background 0.35s ease;
      }
      .cat-tile:hover .cat-overlay {
        background: linear-gradient(
          to top,
          rgba(14, 59, 170, 0.9) 0%,
          rgba(14, 59, 170, 0.55) 55%,
          rgba(14, 59, 170, 0.12) 100%
        );
      }

      .cat-content {
        position: relative;
        z-index: 2;
        padding: 22px 20px 20px;
      }
      .ct-label {
        position: relative;
        z-index: 2;
        align-self: flex-start;
        margin: 20px 0 0 20px;
        font-family: var(--fh);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: var(--orange);
        background: rgba(0, 0, 0, 0.42);
        padding: 3px 8px;
        border-radius: 4px;
      }
      .ct-title {
        font-family: var(--fh);
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        line-height: 1.25;
        margin-bottom: 6px;
      }
      .ct-title-lg {
        font-size: 20px;
      }
      .ct-desc {
        font-size: 19px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
        margin-bottom: 14px;
        line-height: 1.55;
      }
      .ct-cta {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        border: 1.5px solid rgba(255, 255, 255, 0.55);
        border-radius: 6px;
        padding: 6px 12px;
        opacity: 0.85;
        transform: translateY(0);
        transition:
          opacity 0.2s,
          border-color 0.2s,
          background 0.2s,
          gap 0.2s;
      }
      .cat-tile:hover .ct-cta {
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.1);
      }
      .cat-tile:hover .ct-cta:hover {
        gap: 8px;
      }

      /* -------------------------------------------------------
   TRUSTED BRANDS
   ------------------------------------------------------- */
      .brands-hdr {
        text-align: center;
        margin-bottom: 44px;
      }
      .brands-hdr .sec-intro {
        margin: 12px auto 0;
        text-align: center;
      }
      .brands-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
      }
      .brand-chip {
        padding: 13px 26px;
        background: var(--white);
        border: 1px solid var(--g1);
        border-radius: 8px;
        font-family: var(--fh);
        font-size: 15px;
        font-weight: 700;
        color: var(--g3);
        letter-spacing: 0.04em;
        transition:
          border-color 0.2s,
          color 0.2s,
          box-shadow 0.2s;
        min-width: 100px;
        text-align: center;
      }
      .brand-chip:hover {
        border-color: var(--blue);
        color: var(--blue);
        box-shadow: 0 2px 12px rgba(14, 59, 170, 0.07);
      }
      .brand-chip-img {
        padding: 10px 18px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .brand-chip-img img {
        height: 36px;
        max-width: 120px;
        object-fit: contain;
        display: block;
      }
      .brand-chip-img:hover {
        border-color: var(--blue);
        box-shadow: 0 2px 12px rgba(14, 59, 170, 0.07);
      }
      .brands-note {
        text-align: center;
        margin-top: 20px;
        font-size: 13px;
        font-weight: 500;
        color: #6b7280;
      }

      /* -------------------------------------------------------
   WHY FORTIS
   ------------------------------------------------------- */
      .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: stretch;
      }
      .why-reasons {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--g1);
        border-radius: var(--r);
        overflow: hidden;
        margin-top: 32px;
      }
      .wr {
        display: flex;
        gap: 18px;
        padding: 20px 24px;
        border-bottom: 1px solid var(--g1);
        align-items: flex-start;
        transition: background 0.2s;
      }
      .wr:last-child {
        border-bottom: none;
      }
      .wr:hover {
        background: var(--gray-bg);
      }
      .wr-ico {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        color: var(--orange);
        min-width: 22px;
        padding-top: 2px;
      }
      .wr-title {
        font-family: var(--fh);
        font-size: 19px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 3px;
      }
      .wr-body {
        font-size: 19px;
        font-weight: 500;
        color: #4b5563;
        line-height: 1.7;
        text-align: justify;
      }
      .why-panel {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 8px;
        height: 100%;
      }
      .why-blue {
        background: var(--blue);
        border-radius: var(--r);
        padding: 36px 32px;
        position: relative;
        overflow: hidden;
        min-height: 230px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .why-blue::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 40px 40px;
      }
      .wb-top {
        position: relative;
        z-index: 1;
      }
      .wb-stat {
        font-family: var(--fh);
        font-size: 48px;
        font-weight: 800;
        color: #fff;
        letter-spacing: -2px;
        line-height: 1;
      }
      .wb-lbl {
        font-size: 19px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
        margin-top: 6px;
        line-height: 1.55;
      }
      .wb-tag {
        position: relative;
        z-index: 1;
        font-family: var(--fh);
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        line-height: 1.4;
        max-width: 210px;
      }
      .why-img {
        border-radius: var(--r);
        overflow: hidden;
        flex: 1;
        min-height: 220px;
        max-height: clamp(280px, 50vh, 480px);
        border: 1px solid var(--g1);
        position: relative;
      }
      .why-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .why-img-cap {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: linear-gradient(transparent, rgba(10, 10, 10, 0.55));
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        font-family: var(--fh);
        font-weight: 500;
      }

      /* -------------------------------------------------------
   PROCESS
   ------------------------------------------------------- */
      .proc-hdr {
        text-align: center;
        margin-bottom: 60px;
      }
      .proc-hdr .sec-intro {
        margin: 12px auto 0;
        text-align: center;
      }
      .proc-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        position: relative;
      }
      .proc-steps::before {
        content: "";
        position: absolute;
        top: 36px;
        left: calc(12.5% + 2px);
        right: calc(12.5% + 2px);
        height: 1px;
        background: var(--g2);
      }
      .proc-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        position: relative;
        z-index: 1;
      }
      .step-ring {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        border: 1.5px solid rgba(255,255,255,0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        flex-shrink: 0;
        color: var(--orange);
        transition:
          border-color 0.3s,
          background 0.3s;
      }
      .proc-step:hover .step-ring {
        border-color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.15);
      }
      .step-n {
        font-family: var(--fh);
        font-size: 20px;
        font-weight: 700;
        color: var(--blue);
        transition: color 0.3s;
      }
      .proc-step:hover .step-n {
        color: #fff;
      }
      .step-n-label {
        font-family: var(--fh);
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: rgba(255,255,255,0.35);
        margin-bottom: 10px;
      }
      .step-title {
        font-family: var(--fh);
        font-size: 16px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 10px;
        line-height: 1.3;
      }
      .step-body {
        font-size: 19px;
        font-weight: 500;
        color: #4b5563;
        line-height: 1.7;
      }

      /* -------------------------------------------------------
   BLOG
   ------------------------------------------------------- */
      .blog-hdr {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 44px;
      }
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .blog-card {
        border: 1px solid var(--g1);
        border-radius: var(--r);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition:
          border-color 0.25s,
          box-shadow 0.25s,
          transform 0.25s;
      }
      .blog-card:hover {
        border-color: var(--blue);
        box-shadow: 0 6px 28px rgba(14, 59, 170, 0.08);
        transform: translateY(-3px);
      }
      .blog-img {
        height: 190px;
        overflow: hidden;
        background: var(--g1);
        position: relative;
      }
      .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
      }
      .blog-card:hover .blog-img img {
        transform: scale(1.04);
      }
      .blog-body {
        padding: 22px 20px;
        display: flex;
        flex-direction: column;
        gap: 9px;
        flex: 1;
      }
      .blog-cat {
        font-family: var(--fh);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: var(--orange);
      }
      .blog-title {
        font-family: var(--fh);
        font-size: 20px;
        font-weight: 700;
        color: var(--black);
        line-height: 1.4;
      }
      .blog-exc {
        font-size: 19px;
        font-weight: 500;
        color: #4b5563;
        line-height: 1.7;
        flex: 1;
      }
      .blog-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: var(--fh);
        font-size: 16px;
        font-weight: 600;
        color: var(--blue);
        border: 1.5px solid var(--blue);
        border-radius: 6px;
        padding: 6px 12px;
        margin-top: 8px;
        transition: gap 0.2s, background 0.2s, color 0.2s;
      }
      .blog-link:hover { background: var(--blue); color: #fff; gap: 9px; }
      .blog-card:hover .blog-link { gap: 9px; }
      .blog-meta {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .blog-cat {
        font-family: var(--fh);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .13em;
        text-transform: uppercase;
        color: var(--orange);
      }
      .blog-date {
        font-size: 11.5px;
        font-weight: 500;
        color: #4b5563;
      }
      .blog-meta-sep {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: var(--g2);
        flex-shrink: 0;
      }

      /* FEATURED POST */
      .blog-card--featured {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 0;
        min-height: 340px;
      }
      .blog-card--featured .blog-img {
        height: auto;
        min-height: 340px;
      }
      .blog-card--featured .blog-body {
        padding: 36px 40px;
        justify-content: center;
        gap: 14px;
      }
      .blog-card--featured .blog-title {
        font-size: clamp(20px, 2.4vw, 28px);
        line-height: 1.25;
        max-width: 420px;
      }
      .blog-card--featured .blog-exc {
        font-size: 16px;
        max-width: 420px;
      }

      /* BLOG FILTER BAR */
      .blog-filter-wrap { padding: 36px 0 0; }
      .blog-filter {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
      }
      .bf-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: var(--fh);
        font-size: 12.5px;
        font-weight: 600;
        padding: 7px 16px;
        border-radius: 20px;
        border: 1.5px solid var(--g2);
        color: var(--g3);
        cursor: pointer;
        background: #fff;
        transition: border-color .18s, color .18s, background .18s;
        letter-spacing: .01em;
      }
      .bf-pill:hover { border-color: var(--blue); color: var(--blue); }
      .bf-pill.active { background: var(--blue); color: #fff; border-color: var(--blue); }
      .bf-count {
        font-size: 10.5px;
        font-weight: 700;
        background: rgba(14,59,170,.1);
        color: var(--blue);
        padding: 1px 6px;
        border-radius: 10px;
        line-height: 1.4;
      }
      .bf-pill.active .bf-count { background: rgba(255,255,255,.2); color: #fff; }

      /* BLOG TOOLBAR */
      .blog-toolbar {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        flex-wrap: wrap;
      }
      .blog-search-wrap {
        flex: 1;
        min-width: 220px;
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--gray-bg);
        border: 1.5px solid var(--g2);
        border-radius: 8px;
        padding: 0 14px;
        height: 44px;
        transition: border-color .18s, background .18s, box-shadow .18s;
      }
      .blog-search-wrap:focus-within { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(14,59,170,.07); }
      .blog-search-icon { color: var(--g3); flex-shrink: 0; transition: color .18s; }
      .blog-search-wrap:focus-within .blog-search-icon { color: var(--blue); }
      .blog-search-input {
        flex: 1;
        height: 44px;
        font-family: var(--fh);
        font-size: 14px;
        color: var(--black);
        border: none;
        background: transparent;
        outline: none;
      }
      .blog-search-input::placeholder { color: var(--g3); }
      .blog-search-clear {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--g2);
        color: var(--g3);
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        transition: background .15s, color .15s;
        border: none;
      }
      .blog-search-clear:hover { background: var(--g3); color: #fff; }
      .blog-search-clear.visible { display: flex; }
      .blog-controls { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
      .blog-show-wrap { display: flex; align-items: center; gap: 8px; }
      .blog-show-label { font-family: var(--fh); font-size: 12.5px; font-weight: 600; color: var(--g3); white-space: nowrap; }
      .blog-show-select {
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 600;
        color: var(--black);
        border: 1.5px solid var(--g2);
        border-radius: 7px;
        background: #fff;
        padding: 8px 32px 8px 12px;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        outline: none;
        transition: border-color .18s, box-shadow .18s;
        background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
      }
      .blog-show-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,59,170,.07); }
      .blog-result-count { font-family: var(--fh); font-size: 13px; font-weight: 500; color: var(--g3); white-space: nowrap; min-width: 52px; text-align: right; }

      /* BLOG PAGINATION */
      .blog-pagination {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-top: 48px;
        padding-top: 28px;
        border-top: 1px solid var(--g1);
        flex-wrap: wrap;
      }
      .pg-info { font-size: 13px; font-weight: 500; color: var(--g3); }
      .pg-pages { display: flex; align-items: center; gap: 4px; }
      .pg-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        border-radius: 7px;
        font-family: var(--fh);
        font-size: 13.5px;
        font-weight: 600;
        color: var(--g3);
        border: 1.5px solid var(--g1);
        background: #fff;
        transition: border-color .18s, color .18s, background .18s;
        cursor: pointer;
        line-height: 1;
      }
      .pg-btn:hover:not(:disabled):not(.active) { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }
      .pg-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); font-weight: 700; box-shadow: 0 2px 8px rgba(247,97,42,.35); cursor: default; }
      .pg-btn:disabled:not(.active) { opacity: .32; cursor: default; }
      .pg-ellipsis { font-family: var(--fh); font-size: 13.5px; color: var(--g3); padding: 0 4px; line-height: 36px; }

      /* BLOG EMPTY STATE */
      .blog-empty {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 80px 40px;
        gap: 14px;
      }
      .blog-empty-icon {
        width: 54px;
        height: 54px;
        border-radius: 12px;
        background: var(--blue-lt);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 4px;
        color: var(--blue);
      }
      .blog-empty-title { font-family: var(--fh); font-size: 17px; font-weight: 700; color: var(--black); }
      .blog-empty-sub { font-size: 14px; font-weight: 500; color: #4b5563; max-width: 300px; line-height: 1.7; }
      .blog-empty-reset {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: var(--fh);
        font-size: 13.5px;
        font-weight: 600;
        color: var(--blue);
        margin-top: 4px;
        cursor: pointer;
        border: none;
        background: none;
        transition: color .18s;
      }
      .blog-empty-reset:hover { color: var(--blue-dk); }

      /* NEWSLETTER CTA */
      .nl-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: center;
        position: relative;
        z-index: 1;
      }
      .nl-title { font-family: var(--fh); font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; }
      .nl-sub { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.82); line-height: 1.65; max-width: 480px; }
      .nl-form { display: flex; gap: 10px; flex-shrink: 0; }
      .nl-input {
        height: 48px;
        padding: 0 18px;
        border: 1.5px solid rgba(255,255,255,.2);
        border-radius: 8px;
        background: rgba(255,255,255,.08);
        font-family: var(--fh);
        font-size: 14px;
        color: #fff;
        outline: none;
        transition: border-color .18s;
        min-width: 260px;
      }
      .nl-input::placeholder { color: rgba(255,255,255,.38); }
      .nl-input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }

      /* -------------------------------------------------------
   FOOTER
   ------------------------------------------------------- */
      #contact {
        background: #071a4f;
        padding: 72px 0 0;
      }
      .ft-top {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .ft-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
      }
      .ft-logo-img {
        height: 34px;
        width: auto;
        display: block;
        border-radius: 6px;
        padding: 5px 10px;
        background: #ffffff;
      }
      .ft-desc {
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.42);
        line-height: 1.75;
        max-width: 240px;
        margin-bottom: 18px;
      }
      .ft-addr {
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.38);
        line-height: 1.7;
      }
      .ft-col-ttl {
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 18px;
      }
      .ft-links {
        display: flex;
        flex-direction: column;
        gap: 11px;
      }
      .ft-links a {
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.52);
        transition: color 0.2s;
      }
      .ft-links a:hover {
        color: #fff;
      }
      .ft-ci {
        margin-bottom: 14px;
      }
      .ft-ci-lbl {
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 3px;
      }
      .ft-ci-val {
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.55;
      }
      .ft-ci-val a {
        color: var(--orange);
        transition: color 0.2s;
      }
      .ft-ci-val a:hover {
        color: #ff7a4a;
      }
      .ft-inquiry {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 600;
        color: var(--orange);
        margin-top: 8px;
        transition: gap 0.2s;
      }
      .ft-inquiry:hover {
        gap: 8px;
      }
      .ft-bot {
        padding: 24px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin-top: 0;
      }
      .ft-copy {
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.2);
      }
      .ft-legal {
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.18);
      }

      /* -------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------- */
      @media (max-width: 1100px) {
        .cap-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .cat-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .cat-tile--wide {
          grid-column: span 2;
        }
        .blog-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .ft-top {
          grid-template-columns: 1fr 1fr;
          gap: 36px;
        }
      }
      @media (max-width: 960px) {
        :root {
          --spy: 68px;
        }
        body {
          padding-top: 104px;
        }
        .tb-right {
          display: none;
        }
        .top-bar-inner {
          justify-content: center;
        }
        .mobile-nav {
          top: 104px;
        }
        .about-grid,
        .why-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .cap-hdr {
          grid-template-columns: 1fr;
        }
        .cat-hdr {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
        }
        .blog-hdr {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
        }
        .cta-inner {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .proc-steps {
          grid-template-columns: repeat(2, 1fr);
          gap: 40px;
        }
        .proc-steps::before {
          display: none;
        }
        .hero-h1 {
          font-size: 38px;
        }
        .hdr-nav {
          display: none;
        }
        .nav-tog {
          display: flex;
        }
        .hdr-cta {
          display: none;
        }
      }
      @media (max-width: 680px) {
        .wrap {
          padding: 0 22px;
        }
        .hero-wrap { height: 580px; min-height: 0; max-height: none; }
        .hero-text-layer { align-items: flex-start; }
        .hero-text-wrap {
          padding: 40px 22px 80px;
        }
        .hero-h1 {
          font-size: 22px;
          letter-spacing: -1px;
        }
        .hero-p {
          font-size: 17px;
        }
        .hero-stats-inner {
          padding: 0 22px;
          flex-wrap: wrap;
        }
        .hstat {
          flex: 0 0 50%;
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .hstat:nth-child(odd) {
          border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        .hstat:last-child {
          flex: 0 0 100%;
          border-bottom: none;
        }
        .hero-ctrl {
          right: 22px;
          bottom: 20px;
        }
        .hero-bottom-bar {
          padding: 0 22px;
          bottom: 20px;
        }
        .cap-grid {
          grid-template-columns: 1fr;
        }
        .cat-grid {
          grid-template-columns: 1fr;
        }
        .cat-tile--wide {
          grid-column: span 1;
        }
        .blog-grid {
          grid-template-columns: 1fr;
        }
        .about-stats {
          grid-template-columns: 1fr 1fr;
        }
        .about-supports-grid,
        .about-vm-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .about-why-grid {
          grid-template-columns: 1fr 1fr;
        }
        .sup-grid {
          grid-template-columns: 1fr;
        }
        .proc-grid {
          grid-template-columns: 1fr 1fr;
        }
        .sup-item:nth-child(odd) {
          border-right: none;
        }
        .sup-item:nth-last-child(-n+2) {
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .sup-item:last-child {
          border-bottom: none;
        }
        .ft-top {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .ft-bot {
          flex-direction: column;
          text-align: center;
        }
        .proc-steps {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .proc-grid {
          grid-template-columns: 1fr;
        }
      
        /* Mobile text size overrides */
        body { font-size: 15px; }
        .sec-title { font-size: 22px; }
        .sec-intro { font-size: 17px; line-height: 1.65; }
        .story-body { font-size: 17px; line-height: 1.55; }
        .story-lead { font-size: 17px; }
        .commit-title { font-size: 17px; line-height: 1.5; }
        .commit-body { font-size: 17px; line-height: 1.5; }
        .step-body { font-size: 17px; line-height: 1.5; }
        .cap-tile-title { font-size: 17px; line-height: 1.5; }
        .cap-tile-body { font-size: 17px; line-height: 1.5; }
        .mro-cat-title { font-size: 17px; line-height: 1.5; }
        .mro-cat-body { font-size: 17px; line-height: 1.5; }
        .vm-title { font-size: 17px; }
        .vm-body { font-size: 17px; line-height: 1.5; }
        .vm-tag { font-size: 12px; }
        .astat-num { font-size: 22px; }
        .astat-lbl { font-size: 13px; line-height: 1.5; }
        .sm-num { font-size: 22px; }
        .story-pull p { font-size: 17px; }
        .commit-n { font-size: 24px; }
        .brand-chip { font-size: 13px; }
        .eyebrow { font-size: 11px; }
        .cap-title { font-size: 17px; line-height: 1.5; }
        .cap-body { font-size: 17px; line-height: 1.5; }
        .blog-title { font-size: 17px; line-height: 1.5; }
        .blog-exc { font-size: 17px; line-height: 1.35; }
        .blog-link { font-size: 13px; }
        .blog-cat { font-size: 12px; }
        .wb-lbl { font-size: 17px; }
        .wb-tag { font-size: 15px; }
        .ct-title { font-size: 17px; line-height: 1.5; }
        .ct-label { font-size: 12px; }
        .wr-title { font-size: 17px; line-height: 1.5; }
        .wr-body { font-size: 17px; }
        .ft-links a { font-size: 14px; }
        .ft-addr { font-size: 14px; }
        .ft-ci-val { font-size: 14px; }
        .ft-col-ttl { font-size: 12px; }
        .ft-copy, .ft-legal { font-size: 13px; }
        .step-n-label { font-size: 13px; }
      }

      /* -------------------------------------------------------
   FAQ
   ------------------------------------------------------- */
      .faq-wrap {
        max-width: 740px;
        margin: 0 auto;
      }
      .faq-hdr {
        text-align: center;
        margin-bottom: 52px;
      }
      .faq-hdr .sec-intro {
        margin: 12px auto 0;
        text-align: center;
        max-width: 480px;
      }
      .faq-item {
        border-bottom: 1px solid var(--g1);
      }
      .faq-item:first-child {
        border-top: 1px solid var(--g1);
      }
      .faq-q {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 0;
        width: 100%;
        cursor: pointer;
        font-family: var(--fh);
        font-size: 19px;
        font-weight: 600;
        color: var(--black);
        text-align: left;
        background: none;
        border: none;
        transition: color 0.18s;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
      }
      .faq-q:hover {
        color: var(--blue);
      }
      .faq-icon {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1.5px solid var(--g2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
          border-color 0.22s,
          background 0.22s,
          transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .faq-item.is-open .faq-icon {
        border-color: var(--blue);
        background: var(--blue);
        transform: rotate(45deg);
      }
      .faq-icon svg {
        transition: stroke 0.2s;
      }
      .faq-item.is-open .faq-icon svg {
        stroke: #fff;
      }
      .faq-body {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 280ms cubic-bezier(0.4, 0, 0.2, 1);
      }
      .faq-item.is-open .faq-body {
        grid-template-rows: 1fr;
      }
      .faq-body-inner {
        overflow: hidden;
        min-height: 0;
      }
      .faq-a {
        padding: 0 44px 20px 0;
        font-size: 19px;
        font-weight: 500;
        color: #4b5563;
        line-height: 1.7;
      }

      /* -------------------------------------------------------
   CONTACT FORM
   ------------------------------------------------------- */
      .cf-grid {
        display: grid;
        grid-template-columns: 1fr 1.55fr;
        gap: 80px;
        align-items: start;
      }
      .cf-info .sec-intro {
        margin-top: 12px;
      }
      .cf-details {
        margin-top: 36px;
        display: flex;
        flex-direction: column;
        gap: 22px;
      }
      .cf-detail {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .cf-detail-lbl {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: var(--g3);
      }
      .cf-detail-val {
        font-size: 17px;
        color: var(--black);
        font-family: var(--fh);
        font-weight: 500;
        line-height: 1.55;
      }
      .cf-detail-val a {
        color: var(--blue);
        transition: color 0.2s;
      }
      .cf-detail-val a:hover {
        color: var(--blue-dk);
      }
      .cf-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .cf-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .cf-group {
        display: flex;
        flex-direction: column;
        gap: 7px;
      }
      .cf-group label {
        font-family: var(--fh);
        font-size: 16px;
        font-weight: 600;
        color: var(--black);
        letter-spacing: 0.01em;
      }
      .cf-group label .req {
        color: var(--orange);
        margin-left: 2px;
      }
      .cf-group input,
      .cf-group select,
      .cf-group textarea {
        width: 100%;
        padding: 11px 14px;
        border: 1.5px solid var(--g2);
        border-radius: 7px;
        font-family: var(--fb);
        font-size: 17px;
        color: var(--black);
        background: #fff;
        transition:
          border-color 0.18s,
          box-shadow 0.18s;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
      }
      .cf-group input:focus,
      .cf-group select:focus,
      .cf-group textarea:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(14, 59, 170, 0.08);
      }
      .cf-group input::placeholder,
      .cf-group textarea::placeholder {
        color: var(--g3);
        opacity: 0.65;
      }
      .cf-group select {
        background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 38px;
        cursor: pointer;
      }
      .cf-group textarea {
        min-height: 120px;
        resize: vertical;
        line-height: 1.6;
      }
      .cf-footer {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 4px;
      }
      .cf-note {
        font-size: 12.5px;
        color: var(--g3);
        line-height: 1.5;
      }
      .cf-success {
        display: none;
        padding: 20px 24px;
        background: rgba(14, 59, 170, 0.05);
        border: 1px solid rgba(14, 59, 170, 0.14);
        border-radius: 8px;
        font-family: var(--fh);
        font-size: 14.5px;
        font-weight: 600;
        color: var(--blue);
        line-height: 1.6;
      }
      .cf-success.show {
        display: block;
      }

      @media (max-width: 960px) {
        .cf-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }
      }
      @media (max-width: 680px) {
        .cf-row {
          grid-template-columns: 1fr;
        }
        .faq-q {
          font-size: 17px;
        }
        .faq-a {
          padding-right: 12px;
          font-size: 17px;
        }
      }

      /* -------------------------------------------------------
   CART ICON
   ------------------------------------------------------- */
      .cart-icon-wrap {
        position: relative;
        display: inline-flex;
        align-items: center;
        margin-left: 4px;
      }
      .cart-icon-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 6px;
        color: var(--g3);
        transition:
          color 0.2s,
          background 0.2s;
      }
      .cart-icon-btn:hover {
        color: var(--blue);
        background: var(--gray-bg);
      }
      .cart-badge {
        position: absolute;
        top: 4px;
        right: 4px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-radius: 8px;
        background: var(--orange);
        color: #fff;
        font-family: var(--fh);
        font-size: 10px;
        font-weight: 700;
        line-height: 16px;
        text-align: center;
        display: none;
        pointer-events: none;
      }
      .cart-badge.has-items {
        display: block;
      }

      /* -------------------------------------------------------
   CATALOG PREVIEW
   ------------------------------------------------------- */
      .cp-hdr {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 44px;
      }
      .cp-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }
      .cp-card {
        background: #fff;
        border: 1px solid var(--g1);
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition:
          border-color 0.2s,
          box-shadow 0.25s,
          transform 0.2s;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
      }
      .cp-card:hover {
        border-color: var(--blue);
        box-shadow: 0 10px 36px rgba(14, 59, 170, 0.12);
        transform: translateY(-2px);
      }
      .cp-img {
        aspect-ratio: 4/3;
        overflow: hidden;
        background: #f4f6f8;
        position: relative;
        flex-shrink: 0;
      }
      .cp-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
        display: block;
      }
      .cp-card:hover .cp-img img {
        transform: scale(1.06);
      }
      .cp-body {
        padding: 14px 16px 16px;
        display: flex;
        flex-direction: column;
        flex: 1;
        border-top: 1px solid var(--g1);
      }
      .cp-meta-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 10px;
      }
      .cp-cat-label {
        display: inline-flex;
        align-items: center;
        font-family: var(--fh);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--blue);
        background: var(--blue-lt);
        padding: 2px 8px;
        border-radius: 20px;
        width: fit-content;
      }
      .cp-title {
        font-family: var(--fh);
        font-size: 14.5px;
        font-weight: 700;
        color: var(--black);
        line-height: 1.35;
        flex: 1;
        margin-bottom: 14px;
      }
      .cp-brand-tag {
        font-family: var(--fh);
        font-size: 11px;
        font-weight: 500;
        color: var(--g3);
      }
      .cp-add {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        padding: 11px 14px;
        border-radius: 8px;
        background: var(--blue);
        color: #fff;
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        transition: background 0.18s;
        -webkit-tap-highlight-color: transparent;
        margin-bottom: 8px;
      }
      .cp-add:hover {
        background: var(--blue-dk);
      }
      .cp-add.added {
        background: #16a34a;
      }
      .cp-view {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-family: var(--fh);
        font-size: 12.5px;
        font-weight: 600;
        color: var(--g3);
        padding: 4px 0;
        transition: color 0.18s;
      }
      .cp-view:hover {
        color: var(--blue);
      }
      .cp-cta-row {
        text-align: center;
        margin-top: 44px;
      }
      @media (max-width: 1100px) {
        .cp-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 680px) {
        .cp-hdr {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
        }
      }
      @media (max-width: 480px) {
        .cp-grid {
          grid-template-columns: 1fr;
        }
        .about-why-grid {
          grid-template-columns: 1fr;
        }
      }

      .mnav-search {
        padding: 16px 24px 0;
      }
      .mnav-search-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--gray-bg);
        border: 1.5px solid var(--g2);
        border-radius: 9px;
        padding: 0 14px;
        height: 42px;
      }
      .mnav-search-wrap svg {
        color: var(--g3);
        flex-shrink: 0;
      }
      .mnav-search-input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-family: var(--fh);
        font-size: 13.5px;
        color: var(--black);
      }
      .mnav-search-input::placeholder {
        color: var(--g3);
      }
    

/* -------------------------------------------------------
   WOOCOMMERCE OVERRIDES — match Fortis design
   ------------------------------------------------------- */
.woocommerce-page .wrap { max-width: var(--mw); margin: 0 auto; padding: 0 40px; }
.site-main.woo-main { min-height: 60vh; }

/* Shop / Archive page */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
@media (max-width: 900px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .woocommerce ul.products { grid-template-columns: 1fr; } }
.woocommerce ul.products li.product { border: 1px solid var(--g1); border-radius: var(--r); overflow: hidden; background: #fff; transition: box-shadow 0.2s; }
.woocommerce ul.products li.product:hover { box-shadow: 0 4px 24px rgba(14,59,170,0.1); }
.woocommerce ul.products li.product a img { width: 100%; height: 220px; object-fit: cover; display: block; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--fh); font-size: 15px; font-weight: 600; color: var(--black); padding: 12px 16px 4px; }
.woocommerce ul.products li.product .price { font-family: var(--fh); font-size: 14px; color: var(--blue); padding: 0 16px 12px; display: block; }
.woocommerce ul.products li.product .button { display: block; margin: 0 16px 16px; background: var(--blue); color: #fff; border: none; border-radius: 6px; padding: 10px 16px; font-family: var(--fh); font-size: 13px; font-weight: 600; text-align: center; cursor: pointer; transition: background 0.2s; }
.woocommerce ul.products li.product .button:hover { background: var(--blue-dk); }
.woocommerce .woocommerce-ordering select { border: 1px solid var(--g2); border-radius: 6px; padding: 8px 12px; font-family: var(--fb); font-size: 14px; }
.woocommerce-result-count { font-family: var(--fb); font-size: 14px; color: var(--g3); }

/* Single product */
.woocommerce div.product .product_title { font-family: var(--fh); font-size: 28px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.woocommerce div.product .price { font-family: var(--fh); font-size: 22px; color: var(--blue); font-weight: 700; }
.woocommerce div.product .woocommerce-product-details__short-description { font-family: var(--fb); font-size: 15px; line-height: 1.75; color: var(--g3); margin: 16px 0; }
.woocommerce div.product form.cart .button, .woocommerce div.product .single_add_to_cart_button { background: var(--orange); color: #fff; border: none; border-radius: 7px; padding: 14px 32px; font-family: var(--fh); font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.woocommerce div.product form.cart .button:hover { background: var(--orange-dk); }
.woocommerce .quantity .qty { border: 1px solid var(--g2); border-radius: 6px; padding: 8px 12px; font-family: var(--fb); font-size: 15px; width: 70px; }
.woocommerce-tabs .tabs { border-bottom: 1px solid var(--g1); display: flex; gap: 4px; list-style: none; padding: 0; margin: 0 0 24px; }
.woocommerce-tabs .tabs li a { font-family: var(--fh); font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 6px 6px 0 0; color: var(--g3); transition: color 0.2s, background 0.2s; }
.woocommerce-tabs .tabs li.active a { color: var(--blue); background: var(--gray-bg); }

/* Header fix for WooCommerce pages */
.woocommerce-cart .custom-logo,
.woocommerce-checkout .custom-logo,
.woocommerce .custom-logo { height: 56px !important; width: auto !important; display: block !important; }
.woocommerce-cart .hdr-cta,
.woocommerce-checkout .hdr-cta { white-space: nowrap !important; }

/* Cart / Checkout */
.woocommerce table.cart, .woocommerce table.shop_table { border-collapse: collapse; width: 100%; }
.woocommerce table.cart th, .woocommerce table.shop_table th { font-family: var(--fh); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--g3); padding: 12px 16px; border-bottom: 2px solid var(--g1); }
.woocommerce table.cart td, .woocommerce table.shop_table td { padding: 16px; border-bottom: 1px solid var(--g1); vertical-align: middle; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button, .woocommerce #payment #place_order { background: var(--orange); color: #fff; border: none; border-radius: 7px; padding: 14px 32px; font-family: var(--fh); font-size: 15px; font-weight: 600; cursor: pointer; width: 100%; transition: background 0.2s; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover { background: var(--orange-dk); }
.woocommerce input[type="text"], .woocommerce input[type="email"], .woocommerce input[type="tel"], .woocommerce textarea, .woocommerce select { border: 1px solid var(--g2); border-radius: 6px; padding: 10px 14px; font-family: var(--fb); font-size: 15px; width: 100%; transition: border-color 0.2s; }
.woocommerce input:focus, .woocommerce textarea:focus, .woocommerce select:focus { outline: none; border-color: var(--blue); }
.woocommerce-error, .woocommerce-info, .woocommerce-message { border-radius: var(--r); padding: 14px 20px; margin: 0 0 20px; font-family: var(--fb); font-size: 15px; }
.woocommerce-message { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.woocommerce-error { background: #ffebee; color: #c62828; border-left: 4px solid #f44336; }
.woocommerce-info { background: var(--blue-lt); color: var(--blue); border-left: 4px solid var(--blue); }

/* Breadcrumb */
.woocommerce-breadcrumb { font-family: var(--fb); font-size: 13px; color: var(--g3); margin-bottom: 24px; padding: 16px 0 0; }
.woocommerce-breadcrumb a { color: var(--g3); transition: color 0.15s; }
.woocommerce-breadcrumb a:hover { color: var(--blue); }

/* WA float button */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 9000; }
.wa-ftt {
  background: #060e38;
  color: #fff;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 9px;
  white-space: nowrap;
  line-height: 1.5;
  box-shadow: 0 6px 24px rgba(0,0,0,0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 0.22s, transform 0.22s;
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
}
.wa-ftt b { display: block; font-size: 13px; color: #fff; margin-bottom: 2px; }
.wa-ftt span { color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 500; }
.wa-ftt::after { content: ""; position: absolute; bottom: -5px; right: 20px; width: 10px; height: 10px; background: #060e38; transform: rotate(45deg); border-radius: 2px; }
.wa-float:hover .wa-ftt { opacity: 1; transform: translateY(0); }
.wa-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.28);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float { bottom: 18px; right: 14px; }
  .wa-fab { width: 50px; height: 50px; }
}

/* -------------------------------------------------------
   CATALOG LAYOUT (WooCommerce Product Archive)
   ------------------------------------------------------- */
.catalog-main { min-height: 80vh; }
.catalog-layout { padding: 32px 0 64px; }
.catalog-inner { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
@media (max-width: 880px) { .catalog-inner { grid-template-columns: 1fr; } }

/* Sidebar */
.catalog-sidebar { }
.filter-block { margin-bottom: 28px; }
.filter-title { font-family: var(--fh); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g3); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--g1); }
.filter-item { display: block; padding: 7px 12px; border-radius: 6px; font-family: var(--fb); font-size: 13.5px; color: var(--g3); transition: background 0.15s, color 0.15s; }
.filter-item:hover, .filter-item.is-active { background: var(--blue-lt); color: var(--blue); }

/* Toolbar */
.catalog-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.cat-search-wrap { display: flex; align-items: center; gap: 8px; background: var(--gray-bg); border: 1px solid var(--g1); border-radius: 8px; padding: 8px 14px; flex: 1; min-width: 200px; }
.cat-search-input { flex: 1; font-family: var(--fb); font-size: 14px; border: none; background: transparent; outline: none; color: var(--black); }
.cat-search-input::placeholder { color: var(--g3); }

/* -------------------------------------------------------
   BLOG EXTRA STYLES
   ------------------------------------------------------- */
.blog-grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .blog-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid--3 { grid-template-columns: 1fr; } }

/* POST HERO META (inside page-hero--full) */
.post-hero-h1 { font-family: var(--fh); font-size: clamp(26px, 3.4vw, 42px); font-weight: 700; line-height: 1.12; letter-spacing: -.8px; color: #fff; margin-bottom: 0; max-width: 780px; }
.post-hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.post-cat-badge { display: inline-block; font-family: var(--fh); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); background: rgba(247,97,42,.14); border: 1px solid rgba(247,97,42,.3); padding: 4px 10px; border-radius: 4px; }
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
.post-meta-item { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.5); }

/* POST LAYOUT — 2-col with sidebar */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding: 72px 0 80px; align-items: start; }
.post-body { min-width: 0; }
.post-body h2 { font-family: var(--fh); font-size: clamp(19px, 2vw, 24px); font-weight: 700; color: var(--black); margin: 48px 0 16px; line-height: 1.25; letter-spacing: -.3px; }
.post-body h2:first-child { margin-top: 0; }
.post-body h3 { font-family: var(--fh); font-size: 18px; font-weight: 600; color: var(--black); margin: 32px 0 12px; line-height: 1.3; }
.post-body p { font-size: 17px; line-height: 1.8; color: #374151; margin-bottom: 20px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 24px; }
.post-body li { font-size: 17px; line-height: 1.8; color: #374151; margin-bottom: 10px; }
.post-body li strong { color: var(--black); }
.post-body strong { font-weight: 600; color: var(--black); }
.post-body blockquote { border-left: 4px solid var(--blue); padding: 16px 20px; background: var(--blue-lt); border-radius: 0 var(--r) var(--r) 0; margin: 28px 0; font-style: italic; color: var(--g3); }

/* SIDEBAR */
.post-sidebar { position: sticky; top: 140px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--gray-bg); border: 1px solid var(--g1); border-radius: 10px; padding: 22px 20px; }
.sidebar-card-title { font-family: var(--fh); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--g3); margin-bottom: 14px; }
.toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.toc-list a { display: block; font-size: 13.5px; font-weight: 500; color: var(--g3); padding: 6px 10px; border-radius: 6px; border-left: 2px solid transparent; transition: color .18s, background .18s, border-color .18s; line-height: 1.45; }
.toc-list a:hover { color: var(--blue); background: rgba(14,59,170,.04); }
.toc-list a.active { color: var(--blue); border-left-color: var(--blue); background: rgba(14,59,170,.06); font-weight: 600; }
.sidebar-cta { background: var(--blue-xdk); border-radius: 10px; padding: 24px 20px; }
.sidebar-cta-title { font-family: var(--fh); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.35; }
.sidebar-cta-text { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 18px; }
.sidebar-cta .btn { width: 100%; justify-content: center; font-size: 13px; }

/* RELATED ARTICLES */
.related { padding: 60px 0 80px; border-top: 1px solid var(--g1); }
.related-title { font-family: var(--fh); font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card { display: flex; flex-direction: column; border: 1px solid var(--g1); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s, transform .2s; text-decoration: none; }
.rel-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-2px); }
.rel-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--g1); }
.rel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.rel-card:hover .rel-card-img img { transform: scale(1.04); }
.rel-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.rel-cat { font-family: var(--fh); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.rel-title { font-family: var(--fh); font-size: 15px; font-weight: 600; color: var(--black); line-height: 1.4; margin-bottom: 14px; flex: 1; }
.rel-link { display: inline-flex; align-items: center; font-family: var(--fh); font-size: 12.5px; font-weight: 600; color: var(--blue); border: 1.5px solid var(--blue); border-radius: 6px; padding: 7px 14px; align-self: flex-start; transition: background .18s, color .18s; }
.rel-link:hover { background: var(--blue); color: #fff; }

/* POST TAGS */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--g1); }
.post-tag { font-family: var(--fh); font-size: 12px; font-weight: 600; padding: 5px 12px; background: var(--blue-lt); color: var(--blue); border-radius: 99px; transition: background .15s; }
.post-tag:hover { background: var(--blue); color: #fff; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--g1); }
.post-tag { font-family: var(--fh); font-size: 12px; font-weight: 600; padding: 5px 12px; background: var(--blue-lt); color: var(--blue); border-radius: 99px; transition: background 0.15s; }
.post-tag:hover { background: var(--blue); color: #fff; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--g1); }
@media (max-width: 560px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav-link { display: flex; flex-direction: column; gap: 4px; padding: 16px; background: var(--gray-bg); border-radius: var(--r); border: 1px solid var(--g1); transition: border-color 0.2s; }
.post-nav-link:hover { border-color: var(--blue); }
.post-nav-next { text-align: right; }
.post-nav-label { font-family: var(--fh); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--g3); }
.post-nav-title { font-family: var(--fh); font-size: 14px; font-weight: 600; color: var(--black); }

/* -------------------------------------------------------
   SINGLE PRODUCT PAGE
   ------------------------------------------------------- */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 32px 0; }
@media (max-width: 860px) { .product-layout { grid-template-columns: 1fr; } }
.prod-cat-badge { display: inline-block; background: var(--blue-lt); color: var(--blue); font-family: var(--fh); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 99px; margin-bottom: 12px; }
.product-title { font-family: var(--fh); font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--black); margin-bottom: 8px; }
.prod-brand { font-family: var(--fb); font-size: 14px; color: var(--g3); margin-bottom: 16px; }
.prod-description { color: var(--g3); line-height: 1.75; margin-bottom: 20px; }
.prod-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.prod-moq-badge { background: var(--gray-bg); border: 1px solid var(--g1); font-family: var(--fh); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 99px; color: var(--g3); }
.prod-actions { margin-bottom: 16px; }
.prod-wa-inquiry { margin-bottom: 20px; }
.prod-trust-row { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 20px; border-top: 1px solid var(--g1); }
.prod-trust-item { display: flex; align-items: center; gap: 6px; font-family: var(--fh); font-size: 12px; font-weight: 600; color: var(--g3); }

/* -------------------------------------------------------
   PAGE HERO (generic)
   ------------------------------------------------------- */
.page-hero { position: relative; padding: 48px 0 36px; background: var(--gray-bg); border-bottom: 1px solid var(--g1); }
.page-hero-title { font-family: var(--fh); font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--black); margin: 12px 0 10px; }
.page-hero-lead { font-size: 16px; color: var(--g3); max-width: 600px; line-height: 1.7; }
.page-hero--insights { background: linear-gradient(135deg, var(--blue-xdk) 0%, var(--blue) 100%); padding: 72px 0 56px; }
.page-hero--insights .eyebrow, .page-hero--insights .sec-title { color: #fff; }
.page-hero--insights .sec-intro { color: rgba(255,255,255,0.75); }
.page-content { padding: var(--spy) 0; }
.page-content .entry-content h2 { font-family: var(--fh); font-size: 24px; font-weight: 700; margin: 32px 0 12px; }
.page-content .entry-content p { margin-bottom: 18px; line-height: 1.8; }

/* -------------------------------------------------------
   404 PAGE
   ------------------------------------------------------- */
.error-badge { font-family: var(--fh); font-size: 120px; font-weight: 800; color: var(--g1); line-height: 1; margin-bottom: 8px; }
.error-title { font-family: var(--fh); font-size: 32px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.error-msg { font-size: 16px; color: var(--g3); margin-bottom: 32px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------
   BREADCRUMB
   ------------------------------------------------------- */
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-family: var(--fb); font-size: 13px; color: var(--g3); margin-bottom: 16px; }
.breadcrumb a { color: var(--g3); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--blue); }
.bc-sep { color: var(--g2); }

/* -------------------------------------------------------
   RESPONSIVE TWEAKS
   ------------------------------------------------------- */
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .page-hero { padding: 32px 0 24px; }
  .product-layout { gap: 24px; }
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO — full-bleed image (service / about / contact pages)
   ═══════════════════════════════════════════════════════ */
.page-hero--full,
.page-hero:has(.page-hero-bg) {
  background: var(--blue-xdk);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4,10,38,.95) 0%, rgba(5,14,52,.88) 38%, rgba(5,14,52,.62) 62%, rgba(5,14,52,.22) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 72px 40px 80px;
}
.page-hero-inner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.page-hero-inner .breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.page-hero-inner .breadcrumb a:hover { color: rgba(255,255,255,.75); }
.page-hero-inner .breadcrumb-sep { color: rgba(255,255,255,.2); }
.page-hero-inner .hero-ey { display: flex; margin-bottom: 20px; }
.page-hero-inner .hero-h1 { font-size: clamp(26px, 3.2vw, 38px); max-width: 640px; margin-bottom: 20px; }
.page-hero-inner .hero-p { font-size: 19px; max-width: 520px; color: rgba(255,255,255,.68); }

/* ═══════════════════════════════════════════════════════
   STATS STRIP — dark bar that follows .page-hero on service/about pages
   ═══════════════════════════════════════════════════════ */
.page-hero + .about-stats {
  display: block;
  background: var(--blue-xdk);
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 0;
  padding: 0;
  gap: 0;
}
.about-stats-inner {
  display: flex;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 40px;
}
.astat {
  flex: 1;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.astat:last-child { border-right: none; }
.astat-ico {
  width: 22px;
  height: 22px;
  color: var(--orange);
  margin-bottom: 8px;
  opacity: .9;
  flex-shrink: 0;
}
.astat-num {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1;
  margin-bottom: 5px;
}
.astat-num span { color: var(--orange); }
.astat-lbl {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   STORY / OVERVIEW SECTION
   ═══════════════════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-lead {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}
.story-body {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
}
.story-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.story-img {
  width: 100%;
  flex: 1;
  min-height: 280px;
  max-height: clamp(300px,52vh,520px);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.story-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-pull {
  margin: 8px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--orange);
  background: var(--blue-lt);
  border-radius: 0 var(--r) var(--r) 0;
}
.story-pull p {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.65;
  font-style: italic;
}
.story-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sm-card {
  background: #fff;
  border: 1px solid var(--g1);
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.sm-card:hover { border-color: var(--g2); box-shadow: 0 4px 16px rgba(14,59,170,.07); }
.sm-num {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -.5px;
  line-height: 1;
  margin-bottom: 4px;
}
.sm-lbl {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   COMMITMENT LIST (Why Fortis / Our Commitment)
   ═══════════════════════════════════════════════════════ */
.commit-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.commit-list { display: flex; flex-direction: column; }
.commit-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--g1);
}
.commit-row:first-child { border-top: 1px solid var(--g1); }
.commit-n {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--g2);
  letter-spacing: .05em;
  line-height: 1;
  transition: color .2s;
}
.commit-row:hover .commit-n { color: var(--orange); }
.commit-title {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 16px;
}
.commit-ico {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--orange);
  flex-shrink: 0;
}
.commit-body {
  font-size: 19px;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   VISION & MISSION CARDS
   ═══════════════════════════════════════════════════════ */
.vm-hdr {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.vm-hdr .sec-intro { margin: 10px auto 0; text-align: center; }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.vm-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 40px 36px;
}
.vm-tag {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.vm-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.vm-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vm-icon svg { color: #fff; }
.vm-title {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.vm-body {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
}
.vm-divider {
  width: 36px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin: 20px 0;
}

/* ═══════════════════════════════════════════════════════
   BRAND GRID (MRO / PPE pages)
   ═══════════════════════════════════════════════════════ */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.brand-chip {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(14,59,170,.25);
  background: transparent;
  color: var(--blue);
  transition: border-color .2s, box-shadow .2s, background .2s;
  min-width: 80px;
  text-align: center;
}
.brand-chip:hover { border-color: var(--orange); background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.brand-chip-img {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.brand-chip-img img {
  height: 34px;
  max-width: 110px;
  object-fit: contain;
  display: block;
}
.brand-chip-img:hover { border-color: var(--orange); box-shadow: 0 2px 8px rgba(0,0,0,.08); }

/* ═══════════════════════════════════════════════════════
   GALLERY (container page)
   ═══════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-height: 440px;
}
.gallery-grid .gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: var(--g1);
  min-height: 180px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25,.1,.25,1);
  display: block;
  position: absolute;
  inset: 0;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,14,56,0);
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(6,14,56,.38); }
.gallery-zoom-ico {
  opacity: 0;
  color: #fff;
  transform: scale(.7);
  transition: opacity .25s, transform .25s;
}
.gallery-item:hover .gallery-zoom-ico { opacity: 1; transform: scale(1); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(6,14,56,.72) 0%, transparent 100%);
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
  opacity: 0;
  transition: opacity .25s;
  z-index: 2;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-count {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--blue);
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  pointer-events: none;
  z-index: 3;
}

/* ═══════════════════════════════════════════════════════
   CONTACT CHANNEL CARDS
   ═══════════════════════════════════════════════════════ */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ch-card {
  background: #fff;
  border: 1px solid var(--g1);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.ch-card:hover { border-color: var(--g2); box-shadow: 0 6px 28px rgba(14,59,170,.09); transform: translateY(-2px); }
.ch-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ch-icon svg { color: var(--blue); }
.ch-label {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: -4px;
}
.ch-title {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.ch-value {
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.65;
  flex: 1;
}
.ch-action {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 6px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .18s, background .18s, color .18s;
  margin-top: auto;
  align-self: flex-start;
}
.ch-action:hover { gap: 8px; background: var(--orange); color: #fff; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE LAYOUT + OFFICE INFO
   ═══════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.office-detail-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.office-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.office-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.office-row-icon svg { color: var(--blue); }
.office-row-body { display: flex; flex-direction: column; gap: 2px; }
.office-row-lbl {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4b5563;
}
.office-row-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
}
.office-row-val a { color: var(--blue); transition: color .2s; }
.office-row-val a:hover { color: var(--blue-dk); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin-bottom: 20px;
}
.hours-table tr td { padding: 7px 0; border-bottom: 1px solid var(--g1); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: var(--black); font-family: var(--fh); font-weight: 600; width: 48%; }
.hours-table td:last-child { color: var(--g3); font-weight: 500; }
.hours-closed { color: var(--g3) !important; font-style: italic; }
.office-note {
  font-size: 13px;
  font-weight: 500;
  color: var(--g3);
  line-height: 1.7;
  margin-bottom: 20px;
}
.procurement-card {
  background: var(--blue-lt);
  border: 1px solid rgba(14,59,170,.15);
  border-radius: 10px;
  padding: 20px 22px;
}
.procurement-card-title {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.procurement-card-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.7;
}
.procurement-card-body a { color: var(--blue); font-weight: 600; transition: color .2s; }
.procurement-card-body a:hover { color: var(--blue-dk); }
.cf-form-wrap {
  background: #fff;
  border: 1px solid var(--g1);
  border-radius: 14px;
  padding: 36px;
}
.cf-form-title {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.cf-form-sub {
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════
   REQUIRED FIELD MARK
   ═══════════════════════════════════════════════════════ */
.req { color: var(--orange); margin-left: 2px; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — service / about / contact pages
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .blog-card--featured { grid-template-columns: 1fr 1fr; }
  .nl-inner { grid-template-columns: 1fr; gap: 28px; }
  .nl-form { flex-direction: column; }
  .nl-input { min-width: auto; width: 100%; }
}
@media (max-width: 960px) {
  .blog-card--featured { grid-column: auto; grid-template-columns: 1fr; min-height: auto; }
  .blog-card--featured .blog-img { height: 220px; min-height: 220px; }
  .blog-card--featured .blog-body { padding: 24px 22px; }
}
@media (max-width: 1024px) {
  .story-grid { gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .ch-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: auto; grid-row: auto; }
}
@media (max-width: 1060px) {
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .related-grid { grid-template-columns: 1fr; }
  .post-layout { padding: 48px 0 56px; }
}
@media (max-width: 768px) {
  .page-hero--full,
  .page-hero:has(.page-hero-bg) { min-height: 420px; }
  .page-hero-inner { padding: 52px 24px 60px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .commit-row { grid-template-columns: 40px 1fr; gap: 0 16px; }
  .ch-grid { grid-template-columns: 1fr; }
  .about-stats-inner { flex-wrap: wrap; }
  .astat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .astat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .gallery-grid { grid-template-columns: 1fr; }
  .commit-hdr { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .vm-card { padding: 28px 22px; }
  .astat { flex: 0 0 100%; border-right: none; }
  .astat:nth-child(odd) { border-right: none; }
}
