/* =============================================
   云报价帮助中心 help.css v2
   ============================================= */

html.help-page,
html.help-page body {
  overflow-anchor: none;
}

:root {
  --help-content-max-width: 960px;
}

/* ===== Banner 纯图片 ===== */
.help-banner-img {
  width: 100%;
  height: 320px;
  background-image: url('../images/Help/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== 热门问题快速入口 ===== */
.help-hot-section {
  background: #f5f7fa;
  padding: 32px 20px 28px;
}
.help-hot-inner {
  max-width: var(--help-content-max-width);
  margin: 0 auto;
}
.help-hot-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 6px;
}
.help-hot-sub {
  font-size: 16px;
  color: #9aaabb;
  text-align: center;
  margin: 0 0 28px;
}
.help-hot-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
/* 横向紧凑卡片 */
.help-hot-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px 16px 16px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
}
.help-hot-card:hover {
  border-color: #2468f2;
  box-shadow: 0 4px 16px rgba(36,104,242,0.1);
  background: #f7f9ff;
}
.hot-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hot-icon-basics   { background: #eef3fc; color: #2468f2; }
.hot-icon-quotation{ background: #edf7f1; color: #16a34a; }
.hot-icon-approval { background: #fef3ec; color: #ea580c; }
.hot-icon-ai       { background: #f3eefe; color: #7c3aed; }
.hot-card-body {
  flex: 1;
  min-width: 0;
}
.hot-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hot-card-body p {
  font-size: 14px;
  color: #9aaabb;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hot-card-arrow {
  font-size: 14px;
  color: #d0d8e8;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.help-hot-card:hover .hot-card-arrow {
  color: #2468f2;
  transform: translateX(2px);
}

/* ===== Tab 导航 (Segment 滑动样式) ===== */
.help-tabs-bar {
  background: #f5f7fa;
  padding: 20px 20px 0;
  position: sticky;
  top: 68px;
  z-index: 100;
  /* 无分割线，与FAQ区域背景融合 */
}
.help-tabs-outer {
  max-width: var(--help-content-max-width);
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}
.help-tabs-outer::-webkit-scrollbar { display: none; }
.help-tabs-segment {
  position: relative;
  display: inline-flex;
  background: #eaecf2;
  border-radius: 100px;
  padding: 4px;
  gap: 0;
  white-space: nowrap;
}
/* 滑动指示块 */
.segment-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: #2468f2;
  border-radius: 100px;
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 2px 8px rgba(36, 104, 242, 0.28);
}
.help-tab-item {
  position: relative;
  z-index: 1;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 15px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
  white-space: nowrap;
  font-weight: 400;
}
.help-tab-item:hover { color: #2468f2; }
.help-tab-item.active {
  color: #fff;
  font-weight: 600;
}

/* ===== FAQ 区域 ===== */
.help-faq-section {
  background: #f5f7fa;
  padding: 24px 20px 48px;
  min-height: 400px;
}
.help-faq-wrap {
  max-width: var(--help-content-max-width);
  margin: 0 auto;
}

/* 搜索提示 */
.help-search-tip {
  font-size: 14px;
  color: #7a8da0;
  margin-bottom: 16px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8edf5;
}
.help-search-tip strong { color: #2468f2; }
.help-ai-link {
  color: #2468f2;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}
.help-ai-link:hover { text-decoration: underline; }

/* 空状态 */
.help-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9aaabb;
}
.help-empty svg { margin-bottom: 16px; }
.help-empty p { font-size: 16px; }

/* FAQ 条目 */
.help-faq-item {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.help-faq-item:hover {
  box-shadow: 0 4px 16px rgba(36,104,242,0.08);
}
.help-faq-item.open {
  border-color: #2468f2;
  box-shadow: 0 4px 20px rgba(36,104,242,0.1);
}
.faq-q-row {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}
.faq-q-num {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #eef3fc;
  color: #2468f2;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.help-faq-item.open .faq-q-num {
  background: #2468f2;
  color: #fff;
}
.faq-q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.6;
}
.faq-q-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f4fc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7a8da0;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}
.help-faq-item.open .faq-q-arrow {
  transform: rotate(180deg);
  background: #2468f2;
  color: #fff;
}
.faq-a-wrap {
  padding: 0 20px 20px 56px;
  border-top: 1px solid #f0f4fc;
}
.faq-a-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  padding-top: 16px;
  margin: 0 0 12px;
}
.faq-a-cta { margin-top: 4px; }
.faq-cta-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #eef3fc;
  color: #2468f2;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.faq-cta-btn:hover { background: #dce9fb; }

/* ===== AI 智能客服区块 ===== */
.help-ai-section {
  background: linear-gradient(135deg, #1440a8 0%, #2468f2 60%, #4a8fff 100%);
  padding: 60px 20px 64px;
}
.help-ai-inner {
  max-width: var(--help-content-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: start;
}

/* 左侧介绍 */
.ai-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ai-intro-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}
.ai-intro-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 0 0 8px;
}
.ai-intro-tip {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 28px;
}
.ai-quick-title {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.ai-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.ai-quick-btn {
  padding: 7px 14px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s, border-color 0.2s;
  text-align: left;
}
.ai-quick-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
}
.ai-human-tip {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.ai-human-link {
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
.ai-human-link:hover { opacity: 0.8; }

/* 右侧 AI 客服预览（点击弹出） */
.ai-chat-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.ai-chat-preview {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: pointer;
  position: relative;
  line-height: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ai-chat-preview:hover {
  transform: translateY(-2px);
}
.ai-chat-preview:focus-visible {
  outline: 2px solid rgba(255,255,255,0.95);
  outline-offset: 3px;
}
.ai-chat-preview-img {
  display: block;
  width: 100%;
  height: auto;
}
.ai-chat-preview-mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  background: linear-gradient(180deg, rgba(20, 64, 168, 0) 0%, rgba(20, 64, 168, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.2s;
}
.ai-chat-preview:hover .ai-chat-preview-mask,
.ai-chat-preview:focus-visible .ai-chat-preview-mask {
  opacity: 1;
}
.ai-chat-iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: #fff;
}
.ai-chat-header {
  background: #f7fbff;
  border-bottom: 1px solid #e8edf5;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2468f2, #5b8fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.ai-chat-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}
.ai-chat-status {
  font-size: 11px;
  color: #7a8da0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ai-chat-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.ai-chat-header-right { margin-left: auto; }
.ai-knowledge-tag {
  font-size: 11px;
  background: #eef3fc;
  color: #2468f2;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
/* 右侧聊天窗口 */
.ai-chat-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.ai-chat-header {
  background: #f7fbff;
  border-bottom: 1px solid #e8edf5;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2468f2, #5b8fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.ai-chat-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}
.ai-chat-status {
  font-size: 11px;
  color: #7a8da0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ai-chat-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.ai-chat-header-right { margin-left: auto; }
.ai-knowledge-tag {
  font-size: 11px;
  background: #eef3fc;
  color: #2468f2;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* 消息区 */
.ai-messages {
  height: 300px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.ai-messages::-webkit-scrollbar { width: 4px; }
.ai-messages::-webkit-scrollbar-track { background: transparent; }
.ai-messages::-webkit-scrollbar-thumb { background: #e0e8f4; border-radius: 2px; }

/* Bot 消息 */
.ai-msg-bot {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.ai-bot-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2468f2, #5b8fff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.ai-bubble-bot {
  background: #f0f4fc;
  color: #1a1a1a;
  border-radius: 4px 12px 12px 12px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.75;
  max-width: 85%;
  white-space: pre-line;
  word-break: break-word;
}

/* User 消息 */
.ai-msg-user {
  display: flex;
  justify-content: flex-end;
}
.ai-bubble-user {
  background: #2468f2;
  color: #fff;
  border-radius: 12px 4px 12px 12px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.7;
  max-width: 80%;
  white-space: pre-line;
  word-break: break-word;
}

/* 打字动画 */
.ai-typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 4px 2px;
}
.ai-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aab4c0;
  animation: typing-bounce 1.2s infinite;
}
.ai-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* 输入框 */
.ai-chat-input-bar {
  border-top: 1px solid #e8edf5;
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.ai-chat-input {
  flex: 1;
  border: 1.5px solid #e0e8f4;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  color: #333;
}
.ai-chat-input:focus { border-color: #2468f2; }
.ai-chat-input:disabled { background: #f7f9fc; cursor: not-allowed; }
.ai-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #2468f2;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.ai-send-btn:hover { background: #1a55d4; }
.ai-send-btn:active { transform: scale(0.95); }
.ai-send-btn:disabled { background: #aab4c0; cursor: not-allowed; }
.ai-chat-footer {
  padding: 8px 14px 12px;
  text-align: center;
  font-size: 11px;
  color: #aab4c0;
}
.ai-footer-link {
  color: #2468f2;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 1px;
}

/* ===== 底部 CTA ===== */
.help-cta-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #f0f4fc;
}
.help-cta-inner { max-width: 700px; margin: 0 auto; }
.help-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.help-cta-sub {
  font-size: 15px;
  color: #7a8da0;
  margin: 0 0 32px;
  line-height: 1.6;
}
.help-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.help-cta-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #2468f2, #5b8fff);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
  box-shadow: 0 6px 20px rgba(36,104,242,0.3);
}
.help-cta-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.help-cta-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #2468f2;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #2468f2;
  cursor: pointer;
  transition: background 0.2s;
}
.help-cta-secondary:hover { background: #eef3fc; }

/* ===== 咨询弹窗 ===== */
.help-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.help-modal {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  max-height: 90vh;
  overflow-y: auto;
}
.help-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  color: #aab4c0;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.help-modal-close:hover { color: #666; }
.help-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.help-modal-sub {
  font-size: 13px;
  color: #7a8da0;
  margin: 0 0 24px;
}
.help-form-row {
  margin-bottom: 16px;
}
.help-form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 6px;
}
.req { color: #e55; }
.help-form-row input,
.help-form-row textarea {
  width: 100%;
  border: 1.5px solid #e0e8f4;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}
.help-form-row input:focus,
.help-form-row textarea:focus { border-color: #2468f2; }
.help-form-row textarea { resize: vertical; min-height: 80px; }
.help-form-submit {
  width: 100%;
  padding: 13px;
  background: #2468f2;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.help-form-submit:hover { background: #1a55d4; }
.help-submit-done {
  text-align: center;
  padding: 12px 0;
}
.help-submit-done svg { margin-bottom: 16px; }
.help-submit-done h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.help-submit-done p {
  font-size: 14px;
  color: #7a8da0;
  margin: 0 0 24px;
  line-height: 1.6;
}
.help-done-btn {
  padding: 10px 32px;
  background: #eef3fc;
  color: #2468f2;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.help-done-btn:hover { background: #dce9fb; }

/* ===== 响应式 ===== */
@media (max-width: 991px) {
  .help-hot-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .help-ai-inner { grid-template-columns: 1fr; gap: 32px; }
  .ai-chat-card { max-width: 100%; }
  .ai-chat-preview-mask { opacity: 1; font-size: 14px; padding: 12px; }
  .ai-intro-title { font-size: 24px; }
}

@media (max-width: 767px) {
  .help-banner-img { height: 180px; }
  .help-hot-section { padding: 28px 16px 24px; }
  .help-hot-title { font-size: 24px; }
  .help-hot-sub { font-size: 14px; margin-bottom: 18px; }
  .help-hot-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .help-hot-card { padding: 12px 12px; gap: 10px; }
  .hot-card-icon { width: 32px; height: 32px; border-radius: 7px; }
  .hot-card-icon svg { width: 16px; height: 16px; }
  .hot-card-body h3 { font-size: 15px; }
  .hot-card-body p { font-size: 13px; display: none; }
  .hot-card-arrow { display: none; }
  .help-tabs-bar { padding: 12px 12px; top: 60px; }
  .help-tab-item { padding: 7px 14px; font-size: 14px; }
  .faq-q-text { font-size: 15px; }
  .faq-a-text { font-size: 15px; }
  .faq-a-wrap { padding-left: 20px; }
  .help-ai-section { padding: 44px 16px 48px; }
  .ai-intro-title { font-size: 22px; }
  .ai-quick-btns { gap: 6px; }
  .ai-quick-btn { font-size: 12px; padding: 6px 12px; }
  .help-cta-title { font-size: 22px; }
  .help-cta-primary, .help-cta-secondary { padding: 12px 24px; font-size: 14px; }
  .help-modal { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .help-banner-img { height: 130px; }
  .help-hot-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .help-faq-section { padding: 20px 12px 40px; }
  .faq-q-row { padding: 14px 12px; }
  .faq-a-wrap { padding: 0 12px 14px 12px; }
  .help-cta-btns { flex-direction: column; align-items: center; }
  .help-cta-primary, .help-cta-secondary { width: 100%; max-width: 280px; text-align: center; }
  .help-tabs-segment { gap: 1px; }
  .help-tab-item { padding: 7px 12px; font-size: 13px; }
  .faq-q-text { font-size: 14px; }
  .faq-a-text { font-size: 14px; }
}

.help-faq-hidden {
  display: none;
}
