/* ==========================================================
   ICONVERTIX — HEADER
   Native WordPress version.
   No Elementor dependency.
   Minimum micro-text size: 13px.
========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

  :root {
    --ixhf-white: #ffffff;
    --ixhf-ink: #17191d;
    --ixhf-muted: #62676f;
    --ixhf-soft: #f7f7f5;
    --ixhf-line: #e2e3df;
    --ixhf-accent: #c86831;
    --ixhf-accent-soft: #f5ece6;
    --ixhf-container: 1280px;
  }

  #ix-header-final,
  #ix-header-final *,
  #ix-header-final *::before,
  #ix-header-final *::after {
    box-sizing: border-box;
  }
#ix-header-final {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999999;
    border-top: 3px solid var(--ixhf-ink);
    border-bottom: 1px solid var(--ixhf-line);
    background: rgba(255, 255, 255, .985);
    color: var(--ixhf-ink);
    font-family: "Manrope", sans-serif;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      backdrop-filter 180ms ease;
  }

  body.admin-bar #ix-header-final {
    top: 32px;
  }

  #ix-header-final.is-scrolled {
    border-bottom-color: #dadcd7;
    background: rgba(255, 255, 255, .985);
    backdrop-filter: blur(12px);
  }

  #ix-header-final a,
  #ix-header-final a:link,
  #ix-header-final a:visited,
  #ix-header-final a:hover,
  #ix-header-final a:focus,
  #ix-header-final a:active {
    text-decoration: none;
  }

  #ix-header-final button {
    appearance: none;
    -webkit-appearance: none;
    font-family: "Manrope", sans-serif;
  }

  .ixhf-spacer {
    width: 100%;
    height: 77px;
    display: block;
    margin: 0;
    padding: 0;
    pointer-events: none;
  }

  .ixhf-container {
    width: min(calc(100% - 72px), var(--ixhf-container));
    position: relative;
    margin-inline: auto;
  }

  .ixhf-nav {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
  }

  .ixhf-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }

  .ixhf-logo img {
    width: 184px;
    height: 40px;
    display: block;
    object-fit: contain;
    object-position: left center;
  }

  .ixhf-desktop {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 1.55vw, 27px);
  }

  .ixhf-dropdown {
    position: static;
  }

  .ixhf-dropdown-trigger {
    min-height: 46px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ixhf-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.015em;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease;
  }

  .ixhf-dropdown-trigger::after {
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 5px;
    background: var(--ixhf-accent);
    content: "";
    transition: width 160ms ease;
  }

  .ixhf-dropdown-trigger:hover,
  .ixhf-dropdown-trigger:focus-visible,
  .ixhf-dropdown.is-open > .ixhf-dropdown-trigger,
  .ixhf-dropdown.is-current > .ixhf-dropdown-trigger {
    color: var(--ixhf-ink);
  }

  .ixhf-dropdown-trigger:hover::after,
  .ixhf-dropdown-trigger:focus-visible::after,
  .ixhf-dropdown.is-open > .ixhf-dropdown-trigger::after,
  .ixhf-dropdown.is-current > .ixhf-dropdown-trigger::after {
    width: 22px;
  }

  .ixhf-chevron {
    width: 14px;
    height: 14px;
    transition: transform 180ms ease;
  }

  .ixhf-dropdown.is-open .ixhf-chevron {
    transform: rotate(180deg);
  }

  .ixhf-mega {
    width: min(1040px, calc(100vw - 72px));
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    overflow: hidden;
    border: 0;
    border-top: 2px solid var(--ixhf-accent);
    border-bottom: 1px solid var(--ixhf-line);
    border-radius: 0;
    background: var(--ixhf-white);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition:
      opacity 150ms ease,
      transform 150ms ease,
      visibility 150ms ease;
  }

  .ixhf-mega--medium {
    width: min(860px, calc(100vw - 72px));
  }

  .ixhf-mega--compact {
    width: min(720px, calc(100vw - 72px));
  }

  .ixhf-dropdown.is-open .ixhf-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .ixhf-mega-label {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px;
    border-bottom: 1px solid var(--ixhf-line);
    background: var(--ixhf-soft);
  }

  .ixhf-mega-label strong {
    color: var(--ixhf-ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .ixhf-mega-label span {
    color: var(--ixhf-muted);
    font-size: 13px;
  }

  .ixhf-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ixhf-item {
    min-height: 92px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 12px;
    padding: 17px 18px;
    border-bottom: 1px solid var(--ixhf-line);
    color: var(--ixhf-ink);
    transition: background-color 160ms ease;
  }

  .ixhf-item:nth-child(odd) {
    border-right: 1px solid var(--ixhf-line);
  }

  .ixhf-item:hover,
  .ixhf-item:focus-visible,
  .ixhf-item.is-current {
    background: #faf9f7;
    color: var(--ixhf-ink);
  }

  .ixhf-item-number {
    color: var(--ixhf-accent);
    font-size: 13px;
    font-weight: 800;
  }

  .ixhf-item-copy strong {
    display: block;
    color: var(--ixhf-ink);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.35;
  }

  .ixhf-item-copy span {
    display: block;
    margin-top: 4px;
    color: var(--ixhf-muted);
    font-size: 13px;
    line-height: 1.43;
  }

  .ixhf-item-arrow {
    display: grid;
    place-items: center;
    color: #9a9ea5;
  }

  .ixhf-item-arrow svg {
    width: 15px;
    height: 15px;
    transition: transform 160ms ease;
  }

  .ixhf-item:hover .ixhf-item-arrow svg,
  .ixhf-item:focus-visible .ixhf-item-arrow svg {
    transform: translate(2px, -2px);
  }

  .ixhf-mega-grid--8 .ixhf-item:nth-child(n + 7),
  .ixhf-mega-grid--6 .ixhf-item:nth-child(n + 5),
  .ixhf-mega-grid--4 .ixhf-item {
    border-bottom: 0;
  }

  .ixhf-mega-grid--4 .ixhf-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ixhf-line);
  }

  .ixhf-hub {
    min-height: 78px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-top: 1px solid var(--ixhf-line);
    background: var(--ixhf-white);
    color: var(--ixhf-ink);
  }

  .ixhf-hub:hover,
  .ixhf-hub:focus-visible {
    background: var(--ixhf-accent-soft);
  }

  .ixhf-cta {
    min-height: 46px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 18px 2px;
    border: 0;
    border-radius: 0;
    background: var(--ixhf-ink);
    color: var(--ixhf-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.01em;
    white-space: nowrap;
    clip-path: polygon(
      10px 0,
      100% 0,
      100% calc(100% - 10px),
      calc(100% - 10px) 100%,
      0 100%,
      0 10px
    );
    box-shadow: inset 0 -3px 0 var(--ixhf-accent);
    transition:
      transform 160ms ease,
      background-color 160ms ease;
  }

  .ixhf-cta::before {
    width: 5px;
    height: 5px;
    background: var(--ixhf-accent);
    content: "";
    transform: rotate(45deg);
    transition: background-color 160ms ease;
  }

  .ixhf-cta:hover,
  .ixhf-cta:focus-visible {
    transform: translateY(-2px);
    background: var(--ixhf-accent);
    color: var(--ixhf-white);
    box-shadow: inset 0 -3px 0 var(--ixhf-ink);
  }

  .ixhf-cta:hover::before,
  .ixhf-cta:focus-visible::before {
    background: var(--ixhf-white);
  }

  .ixhf-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 160ms ease;
  }

  .ixhf-cta:hover svg,
  .ixhf-cta:focus-visible svg {
    transform: translate(3px, -2px);
  }

  .ixhf-tablet-cta,
  .ixhf-toggle,
  .ixhf-mobile {
    display: none;
  }

  .ixhf-toggle {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ixhf-line);
    border-radius: 0;
    background: var(--ixhf-white);
    color: var(--ixhf-ink);
    clip-path: polygon(
      9px 0,
      100% 0,
      100% calc(100% - 9px),
      calc(100% - 9px) 100%,
      0 100%,
      0 9px
    );
    box-shadow: inset 0 -3px 0 var(--ixhf-accent);
    cursor: pointer;
    transition:
      transform 160ms ease,
      border-color 160ms ease,
      background-color 160ms ease;
  }

  .ixhf-toggle:hover,
  .ixhf-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: var(--ixhf-ink);
    background: var(--ixhf-soft);
  }

  .ixhf-burger,
  .ixhf-burger::before,
  .ixhf-burger::after {
    width: 20px;
    height: 2px;
    position: relative;
    display: block;
    border-radius: 99px;
    background: currentColor;
    transition:
      top 180ms ease,
      transform 180ms ease,
      background-color 180ms ease;
  }

  .ixhf-burger::before,
  .ixhf-burger::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .ixhf-burger::before { top: -6px; }
  .ixhf-burger::after { top: 6px; }

  .ixhf-toggle[aria-expanded="true"] .ixhf-burger {
    background: transparent;
  }

  .ixhf-toggle[aria-expanded="true"] .ixhf-burger::before {
    top: 0;
    transform: rotate(45deg);
  }

  .ixhf-toggle[aria-expanded="true"] .ixhf-burger::after {
    top: 0;
    transform: rotate(-45deg);
  }

  @media (max-width: 1100px) {
    .ixhf-container {
      width: min(calc(100% - 48px), var(--ixhf-container));
    }

    .ixhf-nav {
      min-height: 70px;
      display: flex;
      gap: 12px;
    }

    .ixhf-spacer {
      height: 73px;
    }

    .ixhf-logo img {
      width: 168px;
      height: 37px;
    }

    .ixhf-desktop,
    .ixhf-cta {
      display: none;
    }

    .ixhf-tablet-cta {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      padding: 0 17px 2px;
      border: 0;
      border-radius: 0;
      background: var(--ixhf-ink);
      color: var(--ixhf-white);
      font-size: 13px;
      font-weight: 700;
      clip-path: polygon(
        9px 0,
        100% 0,
        100% calc(100% - 9px),
        calc(100% - 9px) 100%,
        0 100%,
        0 9px
      );
      box-shadow: inset 0 -3px 0 var(--ixhf-accent);
    }

    .ixhf-toggle {
      display: inline-flex;
    }

    .ixhf-mobile {
      max-height: calc(100vh - 92px);
      position: absolute;
      top: calc(100% + 1px);
      right: 0;
      left: 0;
      overflow-y: auto;
      padding: 10px 24px 18px;
      border-top: 2px solid var(--ixhf-accent);
      border-bottom: 1px solid var(--ixhf-line);
      background: var(--ixhf-white);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-6px);
      transition:
        opacity 150ms ease,
        transform 150ms ease,
        visibility 150ms ease;
    }

    .ixhf-mobile.is-open {
      display: block;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .ixhf-mobile-link,
    .ixhf-mobile-trigger {
      width: 100%;
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 2px;
      border: 0;
      border-bottom: 1px solid var(--ixhf-line);
      background: transparent;
      color: var(--ixhf-ink);
      font-size: 15px;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
    }

    .ixhf-mobile-link:hover,
    .ixhf-mobile-link:focus-visible,
    .ixhf-mobile-trigger:hover,
    .ixhf-mobile-trigger:focus-visible,
    .ixhf-mobile-link.is-current {
      color: var(--ixhf-accent);
    }

    .ixhf-mobile-trigger[aria-expanded="true"] .ixhf-chevron {
      transform: rotate(180deg);
    }

    .ixhf-mobile-panel {
      display: none;
      padding: 6px 0 10px;
      background: var(--ixhf-soft);
    }

    .ixhf-mobile-panel.is-open {
      display: block;
    }

    .ixhf-mobile-item {
      min-height: 49px;
      display: grid;
      grid-template-columns: 30px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      padding: 0 12px;
      border-bottom: 1px solid var(--ixhf-line);
      color: var(--ixhf-ink);
      font-size: 13.5px;
      font-weight: 600;
    }

    .ixhf-mobile-item:last-child {
      border-bottom: 0;
    }

    .ixhf-mobile-item span {
      color: var(--ixhf-accent);
      font-size: 13px;
      font-weight: 800;
    }

    .ixhf-mobile-item:hover,
    .ixhf-mobile-item:focus-visible,
    .ixhf-mobile-item.is-current {
      color: var(--ixhf-accent);
    }

    .ixhf-mobile-cta {
      width: 100%;
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
      padding: 0 18px 2px;
      border: 0;
      border-radius: 0;
      background: var(--ixhf-ink);
      color: var(--ixhf-white);
      font-size: 14px;
      font-weight: 700;
      clip-path: polygon(
        10px 0,
        100% 0,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        0 100%,
        0 10px
      );
      box-shadow: inset 0 -3px 0 var(--ixhf-accent);
    }

    .ixhf-mobile-cta svg {
      width: 16px;
      height: 16px;
    }

    body.ixhf-lock {
      overflow: hidden;
    }
  }

  @media (max-width: 782px) {
    body.admin-bar #ix-header-final {
      top: 46px;
    }
  }

  @media (max-width: 640px) {
    .ixhf-container {
      width: min(calc(100% - 28px), var(--ixhf-container));
    }

    .ixhf-nav {
      min-height: 66px;
    }

    .ixhf-spacer {
      height: 69px;
    }

    .ixhf-logo img {
      width: 43px;
      height: 43px;
      object-position: center;
    }

    .ixhf-tablet-cta {
      display: none;
    }

    .ixhf-toggle {
      margin-left: auto;
    }

    .ixhf-mobile {
      max-height: calc(100vh - 84px);
      padding-right: 14px;
      padding-left: 14px;
    }
  }