.bbb-site-header{
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(22,38,60,.08);
  box-shadow:0 12px 34px rgba(18,38,63,.06);
}

.bbb-site-header::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(79,136,183,.035), rgba(240,180,87,.025) 46%, rgba(217,76,76,.025));
  pointer-events:none;
}

.bbb-site-header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg, rgba(79,136,183,.12), rgba(27,45,71,.08), rgba(240,180,87,.10));
  opacity:.7;
  pointer-events:none;
}

.bbb-header-inner{
  position:relative;
  z-index:2;
  width:min(1280px, calc(100% - 40px));
  margin:0 auto;
  min-height:86px;
  display:flex;
  align-items:center;
  gap:22px;
}

.bbb-brand{
  display:flex;
  align-items:center;
  gap:15px;
  min-width:0;
  text-decoration:none;
  flex:0 1 auto;
}

.bbb-brand-mark{
  position:relative;
  width:54px;
  height:54px;
  border-radius:14px;
  flex:0 0 54px;
  background:linear-gradient(145deg,#ffffff,#eef4f8);
  border:1px solid rgba(22,38,60,.08);
  box-shadow:0 10px 22px rgba(18,38,63,.07);
  overflow:hidden;
}

.bbb-brand-mark::before{
  content:"";
  position:absolute;
  top:-1px;
  left:-1px;
  width:28px;
  height:12px;
  border-radius:10px 10px 0 0;
  background:linear-gradient(180deg,#f9fcfe 0%, #edf4f8 100%);
  border:1px solid rgba(22,38,60,.08);
  border-bottom:none;
  z-index:2;
}

.bbb-brand-mark img{
  position:absolute;
  inset:8px;
  width:calc(100% - 16px);
  height:calc(100% - 16px);
  object-fit:contain;
  display:block;
  z-index:1;
}

.bbb-brand-text{
  min-width:0;
}

.bbb-brand-text strong{
  display:block;
  font-size:17px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:650;
  color:#17283f;
}

.bbb-brand-text span{
  display:block;
  margin-top:5px;
  font-size:10px;
  line-height:1.3;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:600;
  color:#607287;
}

.bbb-nav-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:auto;
  min-width:0;
  flex:1 1 auto;
  justify-content:flex-end;
}

.bbb-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
  min-width:0;
  flex:1 1 auto;
  flex-wrap:nowrap;
}

.bbb-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  text-decoration:none;
  font-size:13px;
  line-height:1;
  font-weight:600;
  letter-spacing:-.01em;
  color:#23354b;
  white-space:nowrap;
  border-radius:12px;
  transition:
    color .22s ease,
    background .22s ease,
    transform .22s ease;
}

.bbb-nav a::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:8px;
  height:1px;
  background:linear-gradient(90deg, rgba(79,136,183,.55), rgba(240,180,87,.45));
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .22s ease;
  opacity:.9;
}

.bbb-nav a:hover{
  color:#17283f;
  background:rgba(79,136,183,.06);
}

.bbb-nav a:hover::after,
.bbb-nav a.current-menu-item::after,
.bbb-nav a.current_page_item::after,
.bbb-nav a[aria-current="page"]::after{
  transform:scaleX(1);
}

.bbb-nav a.current-menu-item,
.bbb-nav a.current_page_item,
.bbb-nav a[aria-current="page"]{
  color:#17283f;
  background:rgba(27,45,71,.06);
}

.bbb-header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:13px;
  text-decoration:none;
  font-size:13px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.01em;
  color:#fff;
  background:linear-gradient(135deg,#1b2d47,#31547b);
  box-shadow:0 14px 28px rgba(27,45,71,.14);
  white-space:nowrap;
  flex:0 0 auto;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}

.bbb-header-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(27,45,71,.18);
  filter:saturate(1.04);
}

.bbb-menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  padding:0;
  border:1px solid rgba(22,38,60,.08);
  border-radius:14px;
  background:rgba(255,255,255,.9);
  box-shadow:0 10px 20px rgba(18,38,63,.06);
  cursor:pointer;
}

.bbb-menu-toggle span,
.bbb-menu-toggle::before,
.bbb-menu-toggle::after{
  content:"";
  position:absolute;
  width:20px;
  height:2px;
  border-radius:999px;
  background:#1b2d47;
  transition:transform .22s ease, opacity .22s ease;
}

.bbb-menu-toggle span{ transform:translateY(0); }
.bbb-menu-toggle::before{ transform:translateY(-6px); }
.bbb-menu-toggle::after{ transform:translateY(6px); }

.bbb-menu-toggle.active span{ opacity:0; }
.bbb-menu-toggle.active::before{ transform:rotate(45deg); }
.bbb-menu-toggle.active::after{ transform:rotate(-45deg); }

@media (max-width: 1180px){
  .bbb-brand-text strong{
    font-size:16px;
  }

  .bbb-nav a{
    padding:0 12px;
    font-size:12px;
  }

  .bbb-header-cta{
    padding:0 16px;
    font-size:12px;
  }
}

@media (max-width: 1080px){
  .bbb-menu-toggle{
    display:inline-flex;
    position:relative;
    flex:0 0 48px;
    margin-left:auto;
  }

  .bbb-nav-wrap{
    position:absolute;
    top:calc(100% + 10px);
    left:12px;
    right:12px;
    display:none;
    padding:14px;
    border-radius:20px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(22,38,60,.08);
    box-shadow:0 24px 50px rgba(18,38,63,.12);
    backdrop-filter:blur(18px);
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .bbb-nav-wrap.open{
    display:flex;
  }

  .bbb-nav{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }

  .bbb-nav a,
  .bbb-header-cta{
    width:100%;
    justify-content:flex-start;
  }

  .bbb-nav a{
    min-height:44px;
    padding:0 14px;
    border-radius:12px;
  }

  .bbb-nav a::after{
    left:14px;
    right:auto;
    width:36px;
    bottom:9px;
  }
}

@media (max-width: 767px){
  .bbb-header-inner{
    width:min(1280px, calc(100% - 24px));
    min-height:78px;
  }

  .bbb-brand-mark{
    width:50px;
    height:50px;
    flex-basis:50px;
  }

  .bbb-brand-mark img{
    inset:7px;
    width:calc(100% - 14px);
    height:calc(100% - 14px);
  }

  .bbb-brand-text strong{
    font-size:15px;
  }

  .bbb-brand-text span{
    font-size:9px;
  }
}.bbb-footer-v2{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(79,136,183,.16) 0, rgba(79,136,183,0) 24%),
    radial-gradient(circle at 84% 16%, rgba(240,180,87,.10) 0, rgba(240,180,87,0) 20%),
    radial-gradient(circle at 80% 82%, rgba(217,76,76,.09) 0, rgba(217,76,76,0) 22%),
    linear-gradient(135deg, #0f1b2d 0%, #17283f 44%, #213755 100%);
}

.bbb-footer-v2::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:72px 72px;
  opacity:.12;
  pointer-events:none;
}

.bbb-footer-v2::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 74%, rgba(255,255,255,.14) 0 2px, transparent 3px) 0 0/34px 34px,
    linear-gradient(115deg, rgba(255,255,255,.05), rgba(255,255,255,0) 48%);
  opacity:.24;
  pointer-events:none;
}

.bbb-footer-v2__inner{
  position:relative;
  z-index:1;
  width:min(1280px, calc(100% - 40px));
  margin:0 auto;
  padding:56px 0 26px;
}

.bbb-footer-v2__top{
  display:grid;
  grid-template-columns:minmax(320px, 1.2fr) repeat(3, minmax(160px, .6fr));
  gap:44px;
  align-items:start;
}

.bbb-footer-v2__brand{
  max-width:560px;
}

.bbb-footer-v2__brand-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}

.bbb-footer-v2__logo{
  position:relative;
  width:68px;
  height:68px;
  border-radius:18px;
  flex:0 0 68px;
  background:linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 32px rgba(0,0,0,.18);
  overflow:hidden;
}

.bbb-footer-v2__logo::before{
  content:"";
  position:absolute;
  top:-1px;
  left:-1px;
  width:34px;
  height:14px;
  border-radius:10px 10px 0 0;
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border:1px solid rgba(255,255,255,.10);
  border-bottom:none;
  z-index:2;
}

.bbb-footer-v2__logo img{
  position:absolute;
  inset:10px;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  object-fit:contain;
  display:block;
  z-index:1;
}

.bbb-footer-v2__brand-text strong{
  display:block;
  font-size:23px;
  line-height:1.02;
  letter-spacing:-.04em;
  font-weight:650;
  color:#fff;
}

.bbb-footer-v2__brand-text span{
  display:block;
  margin-top:5px;
  font-size:10px;
  line-height:1.35;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:600;
  color:rgba(255,255,255,.64);
}

.bbb-footer-v2__brand p{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:rgba(255,255,255,.78);
}

.bbb-footer-v2__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.bbb-footer-v2__badges span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  font-size:11px;
  font-weight:700;
  letter-spacing:.02em;
  color:#fff;
}

.bbb-footer-v2__badges span::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg,#f0b457,#d94c4c);
}

.bbb-footer-v2__col h3{
  margin:0 0 16px;
  font-size:16px;
  line-height:1.1;
  letter-spacing:-.02em;
  font-weight:650;
  color:#fff;
}

.bbb-footer-v2__links,
.bbb-footer-v2__contact{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.bbb-footer-v2__links a,
.bbb-footer-v2__contact-item{
  font-size:14px;
  line-height:1.72;
  font-weight:500;
  color:rgba(255,255,255,.76);
}

.bbb-footer-v2__links a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  transition:all .22s ease;
}

.bbb-footer-v2__links a::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  flex:0 0 7px;
  background:linear-gradient(135deg,#4f88b7,#8fb7d6);
  opacity:.95;
}

.bbb-footer-v2__links a:hover{
  color:#fff;
  transform:translateX(3px);
}

.bbb-footer-v2__contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.bbb-footer-v2__contact-item i{
  width:7px;
  height:7px;
  margin-top:8px;
  border-radius:50%;
  flex:0 0 7px;
  background:linear-gradient(135deg,#f0b457,#d94c4c);
}

.bbb-footer-v2__contact-item a{
  color:rgba(255,255,255,.76);
  text-decoration:none;
}

.bbb-footer-v2__contact-item a:hover{
  color:#fff;
}

.bbb-footer-v2__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
}

.bbb-footer-v2__copy{
  font-size:12px;
  line-height:1.7;
  font-weight:500;
  color:rgba(255,255,255,.58);
}

.bbb-footer-v2__bottom-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px 16px;
}

.bbb-footer-v2__bottom-links a{
  text-decoration:none;
  font-size:12px;
  line-height:1.6;
  font-weight:600;
  color:rgba(255,255,255,.64);
  transition:color .22s ease;
}

.bbb-footer-v2__bottom-links a:hover{
  color:#fff;
}

@media (max-width: 1100px){
  .bbb-footer-v2__top{
    grid-template-columns:1fr 1fr;
    gap:34px;
  }

  .bbb-footer-v2__brand{
    max-width:none;
    grid-column:1 / -1;
  }
}

@media (max-width: 767px){
  .bbb-footer-v2__inner{
    width:min(1280px, calc(100% - 24px));
    padding:40px 0 22px;
  }

  .bbb-footer-v2__top{
    grid-template-columns:1fr;
    gap:26px;
  }

  .bbb-footer-v2__brand-top{
    align-items:flex-start;
  }

  .bbb-footer-v2__logo{
    width:60px;
    height:60px;
    flex-basis:60px;
  }

  .bbb-footer-v2__logo img{
    inset:8px;
    width:calc(100% - 16px);
    height:calc(100% - 16px);
  }

  .bbb-footer-v2__brand-text strong{
    font-size:20px;
  }

  .bbb-footer-v2__bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    margin-top:26px;
    padding-top:16px;
  }

  .bbb-footer-v2__bottom-links{
    justify-content:flex-start;
  }
}