/* GEO优化 - 为AI可读性优化的结构化内容 */

/* 问答对样式 */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question::before {
  content: "Q";
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--green), #2a5f49);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer {
  padding-left: 44px;
  color: var(--ink);
  line-height: 1.8;
}

.faq-answer::before {
  content: "A";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: 700;
  margin-right: 8px;
  font-size: 14px;
}

/* 关键信息高亮 */
.key-info {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.key-info strong {
  color: var(--gold);
}

/* 数据对比表 */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--green), #2a5f49);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-weight: 700;
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background: var(--mist);
}

/* AI友好的语义标记 */
[itemscope] {
  /* Schema.org结构化数据的视觉优化 */
}

.brand-info {
  font-size: 14px;
  color: var(--muted);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
