html,
body {
  width: 100%;
  overflow-x: hidden;
}

img,
picture {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
}

.header-container {
  position: relative;
}

.main-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  order: 2;
}

.header-actions .btn:not(.header-icon-btn) {
  display: none;
}

.mobile-menu-toggle {
  display: block;
  position: absolute;
  opacity: 0;
  pointer-events: auto;
}

.mobile-menu-button {
  margin-left: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  background: #ffffff;
  cursor: pointer;
  order: 3;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  background: #111111;
  border-radius: 999px;
}

.mobile-menu{
  position: absolute;
  right: 16px;
  top: calc(100% + 10px);
  width: min(320px, 90vw);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.15);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu a:not(.btn) {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

.mobile-menu__actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.mobile-menu__actions::before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 6px;
}

.mobile-menu-toggle:checked ~ .mobile-menu {
  display: flex;
}

.faq-cta {
  margin-top: 48px;
}

.faq-cta__card {
  padding: 22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.faq-cta__card h2 {
  font-size: 1.4rem;
}

.faq-cta__actions {
  width: 100%;
  justify-content: stretch;
}

.faq-cta__actions .btn {
  width: 100%;
  text-align: center;
}

.site-footer {
  padding: 48px 0;
}

.footer-contact-inline {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-contact-inline__logo {
  width: 100%;
  height: auto;
  margin-right: 0;
}

.footer-contact-inline__logo img {
  height: auto;
}

.footer-bottom {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-terms {
  text-align: left;
}

.footer-nav {
  gap: 12px;
}

/* Mobile footer alignment overrides */
.footer-contact-inline {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-terms {
  text-align: center;
}

.footer-nav {
  justify-content: center;
}

/* Mobile footer alignment overrides v2 */
.footer-contact-inline {
  justify-content: center;
}

.footer-contact-inline > div {
  text-align: center;
  width: 100%;
}

.footer-terms {
  width: 100%;
  text-align: center;
}

/* Mobile footer contact centering */
.footer-contact-inline {
  align-items: center;
}

.footer-contact-inline > div {
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

/* Mobile footer contact titles center */
.footer-contact-inline {
  justify-content: center;
  text-align: center;
}

.footer-contact-title {
  justify-content: center;
}

/* Mobile notifications panel positioning */
.notifications-panel {
  right: 16px;
  left: 16px;
  width: auto;
  max-width: calc(100% - 32px);
}

.mobile-menu-button{position:relative;z-index:40}
.mobile-menu{z-index:50}
.mobile-menu.is-open{display:flex}
.mobile-menu.is-open{display:flex;position:fixed;top:72px;right:16px;left:auto;width:min(320px,90vw);z-index:9999}
.site-header, .header-container{overflow:visible}