
    #abm-enterprise-header,
    #abm-enterprise-header *,
    #abm-enterprise-header *::before,
    #abm-enterprise-header *::after{
      box-sizing:border-box !important;
      font-family:'Poppins',sans-serif !important;
    }

    #abm-enterprise-header{
      --abm-night:#030716;
      --abm-navy:#071233;
      --abm-navy-soft:#0b1d46;
      --abm-blue:#0078f0;
      --abm-blue-deep:#005df0;
      --abm-cyan:#18c8ff;
      --abm-text:#f6f9ff;
      --abm-soft:#b9c8e8;
      --abm-panel:rgba(5,13,34,.98);
      --abm-card:rgba(255,255,255,.055);
      --abm-card-hover:rgba(255,255,255,.085);
      --abm-line:rgba(255,255,255,.12);
      --abm-shadow:0 28px 80px rgba(0,0,0,.42);

      position:relative;
      z-index:9999;
      width:100%;
      color:var(--abm-text);
      background:
        radial-gradient(circle at 18% 0%, rgba(0,120,240,.24), transparent 34%),
        radial-gradient(circle at 88% 8%, rgba(24,200,255,.14), transparent 30%),
        linear-gradient(135deg, var(--abm-night) 0%, var(--abm-navy) 55%, #02040d 100%);
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    #abm-enterprise-header a{
      color:inherit;
      text-decoration:none !important;
    }

    #abm-enterprise-header button{
      border:0;
      background:none;
      color:inherit;
      font:inherit;
      cursor:pointer;
      appearance:none;
      -webkit-appearance:none;
    }

    #abm-enterprise-header img{
      display:block !important;
      max-width:100% !important;
      height:auto !important;
      border:0 !important;
    }

    #abm-enterprise-header .abm-wrap{
      width:min(1420px, calc(100% - 32px));
      margin:0 auto;
    }

    #abm-enterprise-header .abm-shell{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
      min-height:92px;
      padding:16px 0;
    }

    #abm-enterprise-header .abm-logo{
      display:flex;
      align-items:center;
      min-width:0;
    }

    #abm-enterprise-header .abm-logo img{
      width:auto !important;
      max-width:250px !important;
      filter:drop-shadow(0 8px 20px rgba(0,120,240,.18));
    }

    #abm-enterprise-header .abm-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex:0 0 auto;
    }

    #abm-enterprise-header .abm-icon-btn,
    #abm-enterprise-header .abm-menu-btn{
      display:inline-flex !important;
      align-items:center !important;
      justify-content:center !important;
      width:46px;
      height:46px;
      min-width:46px;
      border-radius:15px;
      color:#ffffff !important;
      background:rgba(255,255,255,.075);
      border:1px solid rgba(255,255,255,.13);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
      transition:transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    #abm-enterprise-header .abm-icon-btn:hover,
    #abm-enterprise-header .abm-menu-btn:hover,
    #abm-enterprise-header.abm-menu-open .abm-menu-btn{
      transform:translateY(-2px);
      background:rgba(0,120,240,.18);
      border-color:rgba(24,200,255,.34);
      box-shadow:
        0 12px 28px rgba(0,120,240,.24),
        inset 0 1px 0 rgba(255,255,255,.12);
    }

    #abm-enterprise-header .abm-icon-btn svg{
      width:19px;
      height:19px;
    }

    #abm-enterprise-header .abm-menu-btn{
      position:relative;
      overflow:hidden;
    }

    #abm-enterprise-header .abm-menu-lines{
      position:relative;
      width:21px;
      height:15px;
      display:block;
    }

    #abm-enterprise-header .abm-menu-lines span{
      position:absolute;
      left:0;
      width:100%;
      height:2px;
      border-radius:999px;
      background:#ffffff;
      box-shadow:0 0 14px rgba(24,200,255,.35);
      transition:top .22s ease, transform .22s ease, opacity .16s ease, width .22s ease;
    }

    #abm-enterprise-header .abm-menu-lines span:nth-child(1){
      top:0;
    }

    #abm-enterprise-header .abm-menu-lines span:nth-child(2){
      top:6.5px;
      width:78%;
      right:0;
      left:auto;
    }

    #abm-enterprise-header .abm-menu-lines span:nth-child(3){
      top:13px;
    }

    #abm-enterprise-header.abm-menu-open .abm-menu-lines span:nth-child(1){
      top:6.5px;
      transform:rotate(45deg);
    }

    #abm-enterprise-header.abm-menu-open .abm-menu-lines span:nth-child(2){
      opacity:0;
      width:0;
    }

    #abm-enterprise-header.abm-menu-open .abm-menu-lines span:nth-child(3){
      top:6.5px;
      transform:rotate(-45deg);
    }

    #abm-enterprise-header .abm-menu-panel{
      position:absolute;
      left:0;
      right:0;
      top:100%;
      z-index:99999;
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transform:translateY(-12px) scale(.985);
      transition:opacity .24s ease, transform .24s ease, visibility .24s ease;
    }

    #abm-enterprise-header.abm-menu-open .abm-menu-panel{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      transform:translateY(0) scale(1);
    }

    #abm-enterprise-header .abm-panel-wrap{
      width:min(1420px, calc(100% - 32px));
      margin:0 auto;
      padding:0 0 18px;
    }

    #abm-enterprise-header .abm-panel-inner{
      overflow:hidden;
      border-radius:24px;
      background:
        linear-gradient(180deg, rgba(12,28,68,.985), rgba(3,8,24,.985));
      border:1px solid rgba(255,255,255,.13);
      box-shadow:var(--abm-shadow);
      backdrop-filter:blur(22px);
      -webkit-backdrop-filter:blur(22px);
    }

    #abm-enterprise-header .abm-panel-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:20px 22px;
      border-bottom:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(circle at 15% 0%, rgba(0,120,240,.22), transparent 32%),
        rgba(255,255,255,.025);
    }

    #abm-enterprise-header .abm-panel-kicker{
      margin:0 0 5px;
      color:var(--abm-cyan);
      font-size:11px !important;
      font-weight:800 !important;
      line-height:1.2 !important;
      text-transform:uppercase;
      letter-spacing:.08em;
    }

    #abm-enterprise-header .abm-panel-title{
      margin:0;
      color:#ffffff;
      font-size:22px !important;
      font-weight:800 !important;
      line-height:1.15 !important;
    }

    #abm-enterprise-header .abm-panel-contact{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }

    #abm-enterprise-header .abm-panel-contact a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:42px;
      padding:0 14px;
      border-radius:999px;
      color:#ffffff !important;
      font-size:12px !important;
      font-weight:800 !important;
      line-height:1 !important;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
      transition:background .2s ease, border-color .2s ease, transform .2s ease;
    }

    #abm-enterprise-header .abm-panel-contact a:hover{
      transform:translateY(-1px);
      background:rgba(0,120,240,.18);
      border-color:rgba(24,200,255,.30);
    }

    #abm-enterprise-header .abm-panel-contact svg{
      width:16px;
      height:16px;
    }

    #abm-enterprise-header .abm-menu-grid{
      display:grid;
      grid-template-columns:1.35fr .85fr .85fr;
      gap:14px;
      padding:16px;
    }

    #abm-enterprise-header .abm-menu-section{
      min-width:0;
      border-radius:18px;
      padding:14px;
      background:var(--abm-card);
      border:1px solid rgba(255,255,255,.10);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
    }

    #abm-enterprise-header .abm-section-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
      padding-bottom:10px;
      border-bottom:1px solid rgba(255,255,255,.09);
    }

    #abm-enterprise-header .abm-section-title{
      margin:0;
      color:#ffffff;
      font-size:13px !important;
      font-weight:800 !important;
      line-height:1.2 !important;
      text-transform:uppercase;
      letter-spacing:.06em;
    }

    #abm-enterprise-header .abm-section-chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:24px;
      padding:0 9px;
      border-radius:999px;
      color:#cfeaff;
      font-size:11px !important;
      font-weight:800 !important;
      line-height:1 !important;
      background:rgba(24,200,255,.10);
      border:1px solid rgba(24,200,255,.18);
      white-space:nowrap;
    }

    #abm-enterprise-header .abm-link-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:8px;
    }

    #abm-enterprise-header .abm-link-stack{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }

    #abm-enterprise-header .abm-menu-link{
      display:flex;
      align-items:flex-start;
      gap:10px;
      min-height:50px;
      padding:12px;
      border-radius:13px;
      color:#e9f2ff !important;
      font-size:13px !important;
      font-weight:700 !important;
      line-height:1.25 !important;
      background:rgba(255,255,255,.045);
      border:1px solid transparent;
      transition:background .2s ease, border-color .2s ease, transform .2s ease;
    }

    #abm-enterprise-header .abm-menu-link::before{
      content:"";
      width:7px;
      height:7px;
      margin-top:5px;
      border-radius:999px;
      flex:0 0 auto;
      background:linear-gradient(135deg, var(--abm-cyan), var(--abm-blue));
      box-shadow:0 0 18px rgba(24,200,255,.45);
    }

    #abm-enterprise-header .abm-menu-link:hover{
      transform:translateY(-1px);
      background:var(--abm-card-hover);
      border-color:rgba(24,200,255,.24);
    }

    #abm-enterprise-header .abm-feature-link{
      min-height:64px;
      background:
        linear-gradient(135deg, rgba(0,120,240,.18), rgba(24,200,255,.08));
      border-color:rgba(24,200,255,.22);
    }

    @media (max-width:1024px){
      #abm-enterprise-header .abm-logo img{
        max-width:215px !important;
      }

      #abm-enterprise-header .abm-menu-grid{
        grid-template-columns:1fr 1fr;
      }

      #abm-enterprise-header .abm-menu-section:first-child{
        grid-column:1 / -1;
      }
    }

    @media (max-width:700px){
      #abm-enterprise-header .abm-wrap,
      #abm-enterprise-header .abm-panel-wrap{
        width:min(100% - 20px, 1420px);
      }

      #abm-enterprise-header .abm-shell{
        display:grid;
        grid-template-columns:1fr;
        justify-items:stretch;
        gap:11px;
        min-height:auto;
        padding:13px 0;
      }

      #abm-enterprise-header .abm-logo{
        justify-content:center;
      }

      #abm-enterprise-header .abm-logo img{
        max-width:184px !important;
      }

      #abm-enterprise-header .abm-actions{
        display:grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap:9px;
        width:100%;
      }

      #abm-enterprise-header .abm-icon-btn,
      #abm-enterprise-header .abm-menu-btn{
        width:100%;
        min-width:0;
        height:47px;
        border-radius:14px;
      }

      #abm-enterprise-header .abm-panel-wrap{
        padding-bottom:12px;
      }

      #abm-enterprise-header .abm-panel-inner{
        border-radius:20px;
      }

      #abm-enterprise-header .abm-panel-head{
        display:block;
        padding:16px;
      }

      #abm-enterprise-header .abm-panel-title{
        font-size:18px !important;
      }

      #abm-enterprise-header .abm-panel-contact{
        display:grid;
        grid-template-columns:1fr 1fr;
        margin-top:14px;
      }

      #abm-enterprise-header .abm-panel-contact a{
        min-height:42px;
        padding:0 10px;
      }

      #abm-enterprise-header .abm-menu-grid{
        grid-template-columns:1fr;
        gap:10px;
        padding:10px;
      }

      #abm-enterprise-header .abm-menu-section:first-child{
        grid-column:auto;
      }

      #abm-enterprise-header .abm-link-grid{
        grid-template-columns:1fr;
      }

      #abm-enterprise-header .abm-menu-section{
        border-radius:16px;
        padding:12px;
      }
    }

    @media (max-width:430px){
      #abm-enterprise-header .abm-logo img{
        max-width:168px !important;
      }

      #abm-enterprise-header .abm-actions{
        gap:7px;
      }

      #abm-enterprise-header .abm-icon-btn,
      #abm-enterprise-header .abm-menu-btn{
        height:45px;
      }

      #abm-enterprise-header .abm-section-head{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
      }
    }
  
    #abm-enterprise-header .abm-sr-only{
      position:absolute !important;
      width:1px !important;
      height:1px !important;
      padding:0 !important;
      margin:-1px !important;
      overflow:hidden !important;
      clip:rect(0,0,0,0) !important;
      white-space:nowrap !important;
      border:0 !important;
    }
