.fixam-help-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2500;
  min-width: 112px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: #064c48;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(6, 76, 72, 0.28);
}

.fixam-help-panel {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 2500;
  width: min(420px, calc(100vw - 28px));
  max-height: min(680px, calc(100dvh - 120px));
  overflow: hidden;
  border: 1px solid #dce7e2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 47, 43, 0.22);
}

.fixam-help-panel[hidden] {
  display: none;
}

.fixam-help-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: #062f2c;
  color: #fff;
}

.fixam-help-header strong {
  display: block;
  font-size: 1.05rem;
}

.fixam-help-header span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.fixam-help-close {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-weight: 900;
}

.fixam-help-body {
  display: grid;
  gap: 14px;
  max-height: calc(min(680px, calc(100dvh - 120px)) - 78px);
  overflow-y: auto;
  padding: 18px;
}

.fixam-help-search {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #dce7e2;
  border-radius: 10px;
  outline: 0;
}

.fixam-help-search:focus {
  border-color: #0b8f64;
  box-shadow: 0 0 0 4px rgba(11, 143, 100, 0.1);
}

.fixam-help-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fixam-help-chip {
  padding: 9px 11px;
  border: 1px solid #dce7e2;
  border-radius: 999px;
  background: #f4f8f6;
  color: #064c48;
  font-size: 0.88rem;
  font-weight: 850;
}

.fixam-help-answer {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #dce7e2;
  border-radius: 12px;
  background: #f4f8f6;
}

.fixam-help-answer strong {
  color: #17201f;
}

.fixam-help-answer p {
  margin: 0;
  color: #52625e;
  line-height: 1.55;
}

.fixam-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fixam-help-links a {
  color: #064c48;
  font-weight: 900;
}

.mobile-app-nav {
  display: none;
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
  }

  .mobile-app-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1990;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 62px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #dce7e2;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px rgba(19, 48, 45, 0.1);
  }

  .mobile-app-nav a,
  .mobile-app-nav button {
    display: grid;
    min-width: 0;
    place-items: center;
    border: 0;
    background: transparent;
    color: #52625e;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
  }

  .fixam-help-button {
    display: none;
  }

  .fixam-help-panel {
    right: 10px;
    left: 10px;
    bottom: 132px;
    width: auto;
    max-height: calc(100dvh - 90px);
    border-radius: 12px;
  }

  .fixam-help-body {
    max-height: calc(100dvh - 170px);
    padding: 14px;
  }
}
