    :root{
      --navy:#071321;
      --navy-2:#0d1e31;
      --navy-3:#132942;
      --gold:#d6b45a;
      --gold-2:#e6cb83;
      --white:#ffffff;
      --text:#e8eef6;
      --muted:#b8c4d5;
      --line:rgba(214,180,90,0.18);
      --line-strong:rgba(214,180,90,0.34);
      --card:rgba(255,255,255,0.03);
      --card-2:rgba(255,255,255,0.05);
      --shadow:0 22px 55px rgba(0,0,0,0.28);
      --radius:20px;
      --max:1240px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}

    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top right, rgba(214,180,90,0.08), transparent 25%),
        linear-gradient(180deg, #071321 0%, #0a1727 30%, #071321 100%);
      color:var(--text);
    }

    a{
      color:var(--gold);
      text-decoration:none;
    }

    a:hover{
      color:var(--gold-2);
    }

    .page{
      width:100%;
      overflow:hidden;
    }

    .wrap{
      width:min(var(--max), calc(100% - 34px));
      margin:auto;
    }

    section{
      padding:78px 0;
      border-top:1px solid rgba(255,255,255,0.03);
    }

    .hero{
      padding:94px 0 78px;
      border-top:none;
      border-bottom:1px solid rgba(214,180,90,0.14);
      background:
        radial-gradient(circle at 84% 10%, rgba(214,180,90,0.09), transparent 18%);
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.08fr 0.92fr;
      gap:34px;
      align-items:center;
    }

    .eyebrow{
      display:inline-block;
      margin-bottom:16px;
      padding:8px 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,0.02);
      color:var(--gold-2);
      font-size:13px;
      letter-spacing:0.7px;
      text-transform:uppercase;
    }

    h1,h2,h3{
      margin:0 0 14px;
      color:var(--white);
      line-height:1.12;
    }

    h1{
      font-size:58px;
      letter-spacing:-1.4px;
    }

    h2{
      font-size:40px;
      color:var(--gold);
      letter-spacing:-0.5px;
    }

    h3{
      font-size:24px;
    }

    .gold{
      color:var(--gold);
    }

    .hero .lead{
      max-width:820px;
      font-size:21px;
      line-height:1.65;
      color:var(--muted);
      margin:0 0 24px;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin:28px 0 20px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:54px;
      padding:0 24px;
      border-radius:12px;
      font-weight:700;
      border:1px solid var(--line);
      transition:0.25s ease;
    }

    .btn-primary{
      background:linear-gradient(180deg, #e2c874, #cda649);
      color:#071321 !important;
      border-color:#e7d295;
      box-shadow:0 10px 24px rgba(214,180,90,0.18);
    }

    .btn-primary:hover{
      color:#071321 !important;
      transform:translateY(-1px);
      box-shadow:0 14px 28px rgba(214,180,90,0.22);
    }

    .btn-secondary{
      background:rgba(255,255,255,0.02);
      color:var(--gold);
    }

    .btn-secondary:hover{
      background:rgba(255,255,255,0.05);
    }

    .hero-note{
      font-size:14px;
      color:var(--muted);
      max-width:860px;
      margin:0;
    }

    .anchor-links{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:20px;
    }

    .anchor-links a{
      padding:10px 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,0.02);
      color:var(--gold-2);
      font-size:14px;
    }

    .anchor-links a:hover{
      background:rgba(255,255,255,0.05);
    }

    .hero-panel{
      border:1px solid var(--line);
      border-radius:24px;
      background:linear-gradient(180deg, rgba(19,41,66,0.88), rgba(8,19,33,0.98));
      box-shadow:var(--shadow);
      overflow:hidden;
      min-height:540px;
    }

    .hero-panel-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding:18px 20px;
      border-bottom:1px solid rgba(214,180,90,0.12);
    }

    .hero-panel-top .tag{
      font-size:13px;
      color:var(--gold-2);
      text-transform:uppercase;
      letter-spacing:0.6px;
    }

    .pills{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }

    .pill{
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.08);
      color:#dce5f0;
    }

    .pill.green{background:rgba(76,175,80,0.14);color:#a7ebaa}
    .pill.yellow{background:rgba(255,193,7,0.14);color:#ffe596}
    .pill.red{background:rgba(244,67,54,0.14);color:#ffb0aa}

    .hero-panel-body{
      display:grid;
      gap:18px;
      padding:22px;
    }

    .mini-box{
      border:1px solid rgba(214,180,90,0.14);
      background:rgba(255,255,255,0.03);
      border-radius:16px;
      padding:18px;
    }

    .mini-box h3{
      margin-bottom:8px;
      font-size:18px;
    }

    .mini-box p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
    }

    .mini-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:10px;
    }

    .mini-grid div{
      min-height:96px;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:14px 12px;
      border-radius:14px;
      border:1px solid rgba(214,180,90,0.12);
      background:rgba(0,0,0,0.14);
      color:#dce4ef;
      font-size:13px;
    }

    .nav-system{
      padding:40px 0;
      border-top:none;
      border-bottom:1px solid rgba(214,180,90,0.14);
      background:rgba(255,255,255,0.01);
    }

    .nav-system h3{
      font-size:22px;
      color:var(--gold);
      margin-bottom:16px;
    }

    .nav-pills{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .nav-pills a{
      padding:10px 14px;
      border:1px solid rgba(214,180,90,0.30);
      border-radius:999px;
      background:rgba(255,255,255,0.03);
      color:var(--gold);
      font-size:14px;
    }

    .nav-pills a:hover{
      background:rgba(255,255,255,0.05);
    }

    .nav-pills .active{
      background:linear-gradient(180deg, #e2c874, #cda649);
      color:#071321 !important;
      border-color:#e7d295;
      font-weight:700;
    }

    .section-head{
      max-width:960px;
      margin-bottom:30px;
    }

    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:18px;
      line-height:1.68;
    }

    .grid-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:26px;
    }

    .grid-3{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }

    .grid-4{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
    }

    .card{
      border:1px solid var(--line);
      background:var(--card);
      border-radius:18px;
      padding:24px;
      box-shadow:0 8px 22px rgba(0,0,0,0.08);
      height:100%;
    }

    .card p{
      margin:0 0 12px;
      color:var(--muted);
    }

    .list{
      list-style:none;
      margin:12px 0 0;
      padding:0;
    }

    .list li{
      position:relative;
      padding-left:18px;
      margin:10px 0;
      color:#d6e0ed;
    }

    .list li::before{
      content:"";
      position:absolute;
      left:0;
      top:10px;
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 0 4px rgba(214,180,90,0.12);
    }

    .step{
      border:1px solid var(--line);
      background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
      border-radius:18px;
      padding:22px;
      height:100%;
    }

    .step-num{
      width:42px;
      height:42px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:12px;
      margin-bottom:14px;
      font-weight:700;
      color:var(--gold-2);
      background:rgba(214,180,90,0.12);
      border:1px solid rgba(214,180,90,0.2);
    }

    .step p{
      margin:0;
      color:var(--muted);
    }

    .highlight{
      border:1px solid rgba(214,180,90,0.22);
      background:linear-gradient(180deg, rgba(214,180,90,0.08), rgba(255,255,255,0.02));
      border-radius:22px;
      padding:28px;
    }

    .highlight p{
      margin:0 0 12px;
      color:var(--muted);
    }

    .spec-table{
      width:100%;
      border-collapse:collapse;
      border:1px solid var(--line);
      border-radius:16px;
      overflow:hidden;
      background:rgba(255,255,255,0.03);
    }

    .spec-table th,
    .spec-table td{
      padding:16px 18px;
      border-bottom:1px solid rgba(214,180,90,0.12);
      text-align:left;
      vertical-align:top;
    }

    .spec-table th{
      width:28%;
      color:var(--gold-2);
      background:rgba(255,255,255,0.02);
      font-size:15px;
      font-weight:700;
    }

    .spec-table td{
      color:#d8e2ee;
    }

    .spec-table strong{
      color:var(--white);
    }

    .cta{
      border:1px solid rgba(214,180,90,0.22);
      border-radius:24px;
      padding:36px;
      background:
        radial-gradient(circle at top left, rgba(214,180,90,0.11), transparent 28%),
        linear-gradient(180deg, rgba(19,41,66,0.88), rgba(7,19,33,0.97));
      box-shadow:var(--shadow);
    }

    .cta p{
      max-width:920px;
      margin:0 0 20px;
      color:var(--muted);
      font-size:18px;
    }

    @media (max-width:1080px){
      .hero-grid,
      .grid-2,
      .grid-3,
      .grid-4{
        grid-template-columns:1fr;
      }

      h1{font-size:44px}
      h2{font-size:34px}
    }

    @media (max-width:680px){
      .wrap{width:min(var(--max), calc(100% - 22px))}
      .hero{padding:72px 0 58px}
      h1{font-size:36px}
      .hero .lead{font-size:18px}
      h2{font-size:30px}
      .hero-panel{min-height:auto}
      .mini-grid{grid-template-columns:1fr}
      .spec-table th,
      .spec-table td{
        display:block;
        width:100%;
      }
      .spec-table tr{display:block}
    }
  html, body, #container
{
   width: 100%;
   height: 100%;
}
body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
#wb_Text1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text1 div
{
   text-align: left;
}
#wb_Text3 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text3 div
{
   text-align: left;
}
#wb_Image1
{
   vertical-align: top;
}
#Image1
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#wb_Text4 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text4 div
{
   text-align: left;
}
#wb_Text5 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text5 div
{
   text-align: left;
}
#wb_Image4
{
   vertical-align: top;
}
#Image4
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#wb_Text6 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text6 div
{
   text-align: left;
}
#wb_Line1
{
   font-size: 0;
}
#Line1
{
   border-width: 0;
   height: 10px;
   width: 1355px;
}
#MegaMenu1
{
   font-size: 0;
   list-style: none;
   margin: 0;
   padding: 0;
   width: 100%;
   margin: 0;
   text-align: left;
   font-family: Arial;
   font-weight: normal;
}
#MegaMenu1 li
{
   display: inline-block;
   font-size: 12px;
   margin: 0;
   padding: 0;
   position: relative;
}
#MegaMenu1 li a
{
   float: left;
}
#MegaMenu1 li .submenu
{
   position: absolute;
   right: 0;
   display: none;
   padding: 15px 15px 15px 15px;
   text-align: left;
   top: 0;
   z-index: 9999;
}
#MegaMenu1 li .submenu.show
{
   display: grid;
}
#MegaMenu1 li .submenu ul
{
   list-style: none;
   margin: 0;
   padding: 0;
}
#MegaMenu1 .submenu ul li
{
   width: 100%;
}
#MegaMenu1 .submenu ul li .heading
{
   display: block;
   color: #3588F0;
   font-weight: normal;
   font-size: 8px;
   font-style: normal;
   margin: 0;
   padding: 8px 0;
   text-decoration: none;
   text-transform: none;
   white-space: nowrap;
}
#MegaMenu1 .submenu ul li a
{
   display: block;
   float: none;
   height: auto;
   border: 1px solid transparent;
   border-radius: 0px;
   color: inherit;
   font-weight: normal;
   font-style: normal;
   padding: 8px 4px 8px 20px;
   text-decoration: none;
   text-transform: none;
   text-indent: 0;
   white-space: nowrap;
}
#MegaMenu1 .button
{
   cursor: pointer;
   position: relative;
   text-align: center;
   margin: 0 1px 0 0;
   outline: 0;
   padding: 6px 20px 6px 10px;
   color: #FFFFFF;
   background-color: #192635;
   background-image: none;
   border: 0px solid #192635;
   border-radius: 0px;
   font-weight: normal;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
}
#MegaMenu1 .button:hover, #MegaMenu1 .button.active
{
   background-color: #DAA520;
   background-image: none;
   border-color: #DAA520;
   color: #FFFFFF;
}
#MegaMenu1 .submenu
{
   background-color: #000000;
   background-image: none;
   border: 1px solid #000000;
   border-radius: 0px;
   color: #FFFFFF;
}
#MegaMenu1 .submenu a:hover, #MegaMenu1 .submenu a.active
{
   background-color: #000000;
   background-image: none;
   border: 1px solid #000000;
   color: #FFFFFF;
}
#MegaMenu1 li:nth-child(2) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(3) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(4) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(5) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(6) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(7) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(8) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(9) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(10) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li i
{
   font-size: 16px;
   width: 18px;
}
#MegaMenu1 .arrow
{
   margin-top: -8px;
   margin-left: 0;
   position: absolute;
   right: 1px;
   top: 50%;
   display: block;
   overflow: hidden;
   width: 16px;
   height: 16px;
}
#MegaMenu1 .bullet, #MegaMenu1 .icon
{
   left: 0px;
   margin-top: -8px;
   position: absolute;
   top: 50%;
   display: block;
   overflow: hidden;
   width: 16px;
   height: 16px;
}
#MegaMenu1-hamburger
{
   cursor: pointer;
   display: none;
   background-color: #192635;
   border: 0px solid #192635;
   padding: 9px 12px 9px 12px;
}
#MegaMenu1-hamburger .line
{
   width: 9px;
   height: 1px;
   background: #FFFFFF;
   display: block;
   margin: 1px auto;
}
#MegaMenu1-close
{
   display: none;
}
@media all and (max-width:300px) 
{
#MegaMenu1-hamburger
{
   display: inline-block;
}
#MegaMenu1 > li
{
   width: 100%;
}
#MegaMenu1 > li > a
{
   display: none;
}
#MegaMenu1-nav
{
   display: none;
   height: 100% !important;
   left: 0 !important;
   overflow-y: auto;
   position: fixed !important;
   top: 0 !important;
   width: 100% !important;
   z-index: 9998;
}
#MegaMenu1
{
   height: 100% !important;
   width: 100% !important;
}
#MegaMenu1 > li > div
{
   box-sizing: border-box;
   border-width: 0 0 1px 0 !important;
   display: inline-block !important;
   float: none;
   position: static !important;
   width: 100% !important;
}
#MegaMenu1 li .submenu ul, #MegaMenu1 li .submenu ul li
{
   width: 100% !important;
}
##MegaMenu1 .nav-link
{
   box-sizing: border-box;
   display: inline-block !important;
   float: none;
   position: static !important;
   width: 100% !important;
   padding: 9px 5px 9px 21px;
   text-align: left;
}
#MegaMenu1-close
{
   display: block;
   left: 0;
   pointer-events: none;
   position: fixed;
   text-align: right;
   top: 0;
   width: 100%;
   z-index: 9999;
}
#MegaMenu1-close a
{
   color: #FFFFFF;
   display: inline-block;
   font-size: 24px;
   font-weight: bold;
   padding: 10px 40px 10px 10px;
   pointer-events: all;
   text-decoration: none;
}
#wb_MegaMenu1.open
{
   z-index: 9998 !important
}
#wb_MegaMenu1.open #MegaMenu1-nav
{
   display: block !important;
}
.overflow-no-scroll
{
   overflow: hidden !important;
}
}
#wb_Image2
{
   vertical-align: top;
}
#Image2
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
