/* Accredia360 shared navigation */
.accredia-header {
  z-index: 1030;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(15, 40, 70, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.accredia-header .site-header__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.accredia-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.accredia-brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none !important;
  line-height: 1;
  flex-shrink: 0;
}
.accredia-brand__name {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #123b67;
}
.accredia-brand__name span {
  color: #1676d2;
}
.accredia-brand__tagline {
  margin-top: 5px;
  font-size: 8.5px;
  line-height: 1;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  font-weight: 700;
  color: #70839a;
}
.accredia-nav__desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.accredia-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.accredia-nav__list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #30445a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.accredia-nav__list a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  border-radius: 99px;
  background: #1676d2;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.accredia-nav__list a:hover,
.accredia-nav__list a:focus-visible {
  color: #1268ba;
}
.accredia-nav__list a:hover::after,
.accredia-nav__list a:focus-visible::after {
  transform: scaleX(1);
}
.accredia-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.accredia-nav__link {
  color: #30445a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.accredia-nav__link:hover {
  color: #1268ba;
}
.accredia-nav__cta,
.accredia-mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #166fc7, #124f97);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(18, 79, 151, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.accredia-nav__cta:hover,
.accredia-mobile-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(18, 79, 151, 0.28);
}
.accredia-nav__toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 59, 103, 0.12);
  border-radius: 10px;
  padding: 9px;
  display: none;
  background: #fff;
}
.accredia-nav__toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 5px;
  background: #123b67;
}
.accredia-mobile-nav {
  width: min(390px, 88vw);
}
.accredia-mobile-nav .offcanvas-header {
  padding: 22px 22px 16px;
  border-bottom: 1px solid #edf1f5;
}
.accredia-mobile-nav .offcanvas-body {
  padding: 22px;
}
.accredia-mobile-nav__eyebrow {
  margin: 0 0 12px;
  color: #7a8da3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.accredia-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #edf1f5;
}
.accredia-mobile-nav__list li {
  border-bottom: 1px solid #edf1f5;
}
.accredia-mobile-nav__list a {
  display: flex;
  align-items: center;
  min-height: 54px;
  color: #233a53;
  text-decoration: none;
  font-size: 16px;
  font-weight: 650;
}
.accredia-mobile-nav__list a:hover {
  color: #1268ba;
}
.accredia-mobile-nav__actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.accredia-mobile-nav__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid #d9e3ee;
  border-radius: 10px;
  color: #29425d;
  text-decoration: none;
  font-weight: 700;
}
.accredia-mobile-nav__cta {
  min-height: 46px;
}
@media (max-width: 1199.98px) {
  .accredia-nav__desktop {
    gap: 14px;
  }
  .accredia-nav__list a {
    padding: 0 8px;
    font-size: 13px;
  }
  .accredia-nav__list a::after {
    left: 8px;
    right: 8px;
  }
}
@media (max-width: 991.98px) {
  .accredia-header .site-header__container {
    padding: 0 20px;
  }
  .accredia-nav {
    min-height: 70px;
  }
  .accredia-nav__desktop {
    display: none;
  }
  .accredia-nav__toggle {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .accredia-header .site-header__container {
    padding: 0 16px;
  }
  .accredia-brand__name {
    font-size: 22px;
  }
  .accredia-brand__tagline {
    font-size: 7.5px;
    letter-spacing: 0.9px;
  }
}

/* =========================================
   ACCREDIA360 HELP CENTER / FAQ DROPDOWN
   ========================================= */
.accredia-faq-open {
  overflow: visible;
}

/* Desktop: compact dropdown directly below Help Center */
.accredia-faq-modal {
  position: fixed;
  top: 76px;
  left: 0;
  right: auto;
  z-index: 2000;
  width: min(460px, calc(100vw - 32px));
  padding: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}
.accredia-faq-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.accredia-faq-modal__backdrop {
  display: none;
}

.accredia-faq-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 570px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(20, 48, 82, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 40, 70, 0.18);
}
.accredia-faq-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 17px 10px;
  border-bottom: 1px solid #edf1f5;
}
.accredia-faq-modal__eyebrow {
  display: inline-block;
  margin-bottom: 4px;
  color: #0b63ce;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.accredia-faq-modal__header h2 {
  margin: 0;
  color: #0b2545;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.accredia-faq-modal__header p {
  display: none;
}
.accredia-faq-modal__close {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin: -2px -2px 0 0;
  padding: 0;
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  background: #fff;
  color: #52677c;
  font-size: 21px;
  line-height: 29px;
  cursor: pointer;
}
.accredia-faq-modal__close:hover {
  background: #eef7ff;
  color: #0b63ce;
}

/* Search */
.accredia-faq-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 11px 14px 9px;
}
.accredia-faq-search > .fa-search {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #0b63ce;
  font-size: 13px;
  pointer-events: none;
}
.accredia-faq-search input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 38px;
  border: 1px solid #dfe7ef;
  border-radius: 9px;
  outline: 0;
  background: #fff;
  color: #102a45;
  font-size: 13px;
  box-shadow: none;
}
.accredia-faq-search input:focus {
  border-color: rgba(11, 99, 206, 0.48);
  box-shadow: 0 0 0 3px rgba(11, 99, 206, 0.08);
}

/* Topic filters */
.accredia-faq-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 14px 10px;
}
.accredia-faq-topics button {
  border: 1px solid #dfe7ef;
  border-radius: 999px;
  padding: 6px 9px;
  background: #fff;
  color: #536a80;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.16s ease;
}
.accredia-faq-topics button:hover,
.accredia-faq-topics button.is-active {
  border-color: rgba(11, 99, 206, 0.25);
  background: #eaf5ff;
  color: #0b63ce;
}

/* Scrollable FAQ results */
.accredia-faq-results {
  max-height: 360px;
  overflow-y: auto;
  min-height: 80px;
  padding: 0 14px 14px;
  scrollbar-width: thin;
  scrollbar-color: #cbd8e5 transparent;
}
.accredia-faq-item {
  border: 1px solid #e2e9f0;
  border-radius: 9px;
  background: #fff;
}
.accredia-faq-item + .accredia-faq-item {
  margin-top: 5px;
}
.accredia-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px;
  border: 0;
  background: transparent;
  color: #233b54;
  text-align: left;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
}
.accredia-faq-question:hover {
  color: #0b63ce;
  background: #f8fbfe;
}
.accredia-faq-question i {
  flex: 0 0 auto;
  color: #71859a;
  font-size: 10px;
  transition:
    transform 0.18s ease,
    color 0.18s ease;
}
.accredia-faq-item.is-open {
  border-color: rgba(11, 99, 206, 0.2);
}
.accredia-faq-item.is-open .accredia-faq-question {
  color: #0b63ce;
  background: #f8fbfe;
}
.accredia-faq-item.is-open .accredia-faq-question i {
  color: #0b63ce;
  transform: rotate(180deg);
}
.accredia-faq-answer {
  padding: 0 13px 13px;
  color: #5d7186;
  font-size: 12px;
  line-height: 1.65;
}
.accredia-faq-empty {
  margin: 0 14px 14px;
  padding: 15px;
  border: 1px dashed #d7e1eb;
  border-radius: 9px;
  color: #64758a;
  text-align: center;
  background: #f8fbfe;
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .accredia-mobile-nav .offcanvas-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* While the FAQ is opened from the hamburger, the same FAQ panel lives inside it. */
  .accredia-mobile-nav .accredia-faq-modal.is-mobile-panel {
    position: static;
    width: 100%;
    max-width: none;
    margin: 14px 0 0;
    transform: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .accredia-mobile-nav .accredia-faq-modal.is-mobile-panel::before {
    display: none;
  }
  .accredia-mobile-nav
    .accredia-faq-modal.is-mobile-panel
    .accredia-faq-modal__dialog {
    max-height: none;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(15, 40, 70, 0.12);
  }
  .accredia-mobile-nav
    .accredia-faq-modal.is-mobile-panel
    .accredia-faq-results {
    max-height: 46vh;
    min-height: 120px;
  }
}
@media (max-width: 575.98px) {
  .accredia-header .site-header__container {
    padding: 0 16px;
  }
  .accredia-mobile-nav .offcanvas-body {
    padding: 18px;
  }
  .accredia-mobile-nav
    .accredia-faq-modal.is-mobile-panel
    .accredia-faq-results {
    max-height: 43vh;
  }
  .accredia-faq-modal__header {
    padding: 14px 14px 9px;
  }
  .accredia-faq-search {
    margin: 9px 12px 8px;
  }
  .accredia-faq-topics {
    padding: 0 12px 9px;
  }
  .accredia-faq-results {
    padding: 0 12px 12px;
  }
  .accredia-faq-empty {
    margin: 0 12px 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .accredia-faq-modal,
  .accredia-faq-question i {
    transition: none;
  }
}
/* Accredia360 header logo sizing */
.accredia-brand__logo {
  display: block;
  width: auto;
  max-width: 190px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .accredia-brand__logo {
    max-width: 165px;
    height: 36px;
  }
}