
.trust-section {
  padding: 30px 15px;
  background-color: #f9f9f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.trust-container {
  max-width: 600px;
  margin: 0 auto;
}

.trust-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.trust-subtitle {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.trust-icon {
  width: 26px;
  margin-right: 12px;
  font-size: 16px;
  flex-shrink: 0;
}

.trust-content h3 {
  margin: 0 0 3px 0;
  font-size: 14px;
  font-weight: 600;
}

.trust-content p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

/* 突出最后一个（保证） */
.highlight {
  border: 1px solid #000;
}

/* 转化钩子 */
.cta {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

/* 平板 */
@media (min-width: 480px) {
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:last-child {
    grid-column: span 2;
  }
}
