.b360-suite-nav {
  position: relative;
  padding: 16px 16px 8px;
  background: #F9FAFB;
}

.b360-suite-nav__inner {
  width: min(var(--b360-page-max), 100%);
  margin: 0 auto;
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.b360-suite-nav__mobile-head {
  display: none;
}

.b360-suite-nav__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.b360-suite-nav__panel[hidden] {
  display: none !important;
}

.b360-suite-nav__group {
  position: relative;
  flex-shrink: 0;
}

.b360-suite-nav .b360-suite-nav__item {
  display: inline-flex;
  gap: 0.5rem;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(10,16,21,0.10);
  background: rgba(10,16,21,0.06);
  color: #0A1628;
  font-family: var(--b360-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.b360-suite-nav .b360-suite-nav__item:hover {
  border-color: rgba(10,16,21,0.16);
  background: rgba(10,16,21,0.09);
  color: #0A1628;
  text-decoration: none;
}

.b360-suite-nav .b360-suite-nav__item:active {
  transform: scale(0.98);
}

.b360-suite-nav button.b360-suite-nav__item--button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  border: 1px solid rgba(10,16,21,0.10);
  background: rgba(10,16,21,0.06);
  box-shadow: none;
  color: #0A1628;
  cursor: pointer;
  text-align: left;
  text-transform: none;
}

.b360-suite-nav__icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.b360-suite-nav__svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.b360-suite-nav__chevron {
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.b360-suite-nav .b360-suite-nav__item[aria-expanded="true"] .b360-suite-nav__chevron {
  transform: rotate(180deg);
}

.b360-suite-nav .b360-suite-nav__item.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #0a1015, #1a2535);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10,16,21,0.30);
}

.b360-suite-nav .b360-suite-nav__item.is-gold {
  border-color: transparent;
  background: linear-gradient(135deg, #C5923B, #D4A843);
  color: #0A0D12;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(197,146,59,0.45);
}

.b360-suite-nav .b360-suite-nav__item.is-gold.is-active {
  background: linear-gradient(135deg, #A87830, #C5923B);
  color: #0A0D12;
  box-shadow: 0 4px 16px rgba(197,146,59,0.55);
}

.b360-suite-nav__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 100000;
  width: 13rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.b360-suite-nav__dropdown[hidden] {
  display: none;
}

.b360-suite-nav__dropdown.is-open {
  display: block;
}

.b360-suite-nav__dropdown-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: #0A1628;
  font-family: var(--b360-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.b360-suite-nav__dropdown-item:hover {
  background: #F5F5F7;
  color: #0A1628;
  text-decoration: none;
}

.b360-suite-nav__dropdown-item.is-active {
  background: #F0FAFA;
  color: #00AEB3;
}

.b360-suite-nav__dropdown-divider {
  display: block;
  height: 1px;
  margin: 0 0.75rem;
  background: rgba(0,0,0,0.05);
}

@media (max-width: 760px) {
  .b360-suite-nav {
    padding: 0.625rem clamp(0.625rem, 3vw, 1rem) 0.5rem;
  }

  .b360-suite-nav__inner {
    min-height: 0;
    padding: 0.5rem;
    border-radius: 18px;
  }

  .b360-suite-nav__mobile-head {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .b360-suite-nav__current {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: #0A1628;
  }

  .b360-suite-nav__current .b360-suite-nav__icon {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: rgba(10,16,21,0.07);
  }

  .b360-suite-nav__current-text {
    min-width: 0;
    display: block;
  }

  .b360-suite-nav__current-text span,
  .b360-suite-nav__current-text strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .b360-suite-nav__current-text span {
    color: rgba(10,22,40,0.46);
    font-family: var(--b360-font-body);
    font-size: 0.6875rem;
    line-height: 1.15;
  }

  .b360-suite-nav__current-text strong {
    max-width: min(48vw, 18rem);
    color: #0A1628;
    font-family: var(--b360-font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.25;
  }

  .b360-suite-nav__mobile-toggle {
    -webkit-appearance: none;
    appearance: none;
    min-width: 5.75rem;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0 0.875rem;
    border: 1px solid rgba(10,16,21,0.10);
    border-radius: 999px;
    background: #0A1628;
    color: #fff;
    box-shadow: none;
    cursor: pointer;
    font-family: var(--b360-font-heading);
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1;
    text-transform: none;
  }

  .b360-suite-nav__mobile-bars {
    width: 1rem;
    height: 0.75rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .b360-suite-nav__mobile-bars span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .b360-suite-nav.is-mobile-open .b360-suite-nav__mobile-bars span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .b360-suite-nav.is-mobile-open .b360-suite-nav__mobile-bars span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .b360-suite-nav__panel {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-top: 0.5rem;
    max-height: min(68svh, 520px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.125rem 0 0.25rem;
    scrollbar-width: thin;
  }

  .b360-suite-nav.is-mobile-open .b360-suite-nav__panel {
    display: grid;
  }

  .b360-suite-nav__group {
    width: 100%;
  }

  .b360-suite-nav .b360-suite-nav__item {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 0.875rem 0.9rem;
    border-radius: 14px;
    white-space: normal;
  }

  .b360-suite-nav__chevron {
    margin-left: auto;
  }

  .b360-suite-nav__dropdown {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    border-radius: 14px;
    box-shadow: none;
  }

  .b360-suite-nav__dropdown-item {
    min-height: 44px;
    padding: 0.75rem 0.9rem;
  }
}

@media (max-width: 380px) {
  .b360-suite-nav__current-text strong {
    max-width: 42vw;
    font-size: 0.8125rem;
  }

  .b360-suite-nav__mobile-toggle {
    min-width: 3rem;
    width: 3rem;
    padding: 0;
  }

  .b360-suite-nav__mobile-toggle > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

.b360-suite-footer {
  padding: 1.25rem clamp(1rem, 4vw, 4rem) 2rem;
  background: var(--b360-color-surface);
}

.b360-suite-footer__inner {
  width: min(var(--b360-page-max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #0A1628;
  box-shadow: 0 18px 60px rgba(10,22,40,0.18);
}

.b360-suite-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
}

body.b360-business-group-page .b360-suite-footer__brand,
body.b360-business-group-page .b360-suite-footer__brand:hover,
body.b360-business-group-page .b360-suite-footer__brand:focus {
  color: #fff;
  text-decoration: none;
}

.b360-suite-footer__brand strong,
.b360-suite-footer__brand small {
  display: block;
}

.b360-suite-footer__logo-img {
  display: block;
  width: auto;
  height: 34px;
  max-width: min(138px, 34vw);
  max-height: 34px;
  object-fit: contain;
}

.b360-suite-footer__brand strong {
  font-family: var(--b360-font-heading);
  font-size: 0.92rem;
  color: #fff;
}

.b360-suite-footer__brand small {
  margin-top: 0.1rem;
  color: rgba(255,255,255,0.42);
  font-size: 0.72rem;
}

.b360-suite-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.b360-suite-footer__links a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.58);
  font-family: var(--b360-font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.b360-suite-footer__links a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.b360-suite-footer-secondary {
  padding: 0 clamp(1rem, 4vw, 4rem) 2.5rem;
  background: var(--b360-color-surface);
}

.b360-suite-footer-secondary--standalone {
  padding-top: 1.25rem;
}

.b360-suite-footer-secondary__inner {
  width: min(var(--b360-page-max), 100%);
  margin: 0 auto;
  padding: 1.6rem 2rem;
  border-radius: 1.75rem;
  background: #252C36;
  box-shadow: 0 18px 60px rgba(10,22,40,0.14);
}

.b360-suite-footer-secondary__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  padding-bottom: 1.35rem;
}

.b360-suite-footer-secondary__modules a,
.b360-suite-footer-secondary__legal a {
  color: rgba(255,255,255,0.58);
  font-family: var(--b360-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.b360-suite-footer-secondary__modules a:hover,
.b360-suite-footer-secondary__modules a:focus-visible,
.b360-suite-footer-secondary__legal a:hover,
.b360-suite-footer-secondary__legal a:focus-visible {
  color: #fff;
}

.b360-suite-footer-secondary__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.b360-suite-footer-secondary__copyright,
.b360-suite-footer-secondary__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(255,255,255,0.58);
  font-family: var(--b360-font-body);
  font-size: 0.72rem;
  font-weight: 700;
}

.b360-suite-footer-secondary__copyright .b360-suite-logo {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.45rem;
  font-size: 0.5rem;
}

.b360-suite-footer-secondary__legal {
  justify-content: flex-end;
  gap: 1rem;
}

.b360-suite-footer-secondary__legal strong {
  color: #fff;
  font-family: var(--b360-font-heading);
  font-weight: 900;
}

