/* 首页 · 同行在用 / 省美工沟通 */

.home-value {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.home-value__head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.home-value__audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.home-value__card {
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-value__card:hover {
  border-color: rgba(74, 158, 255, 0.35);
  transform: translateY(-2px);
}

.home-value__card-tag {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.2rem 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(74, 158, 255, 0.35);
  border-radius: 999px;
}

.home-value__card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.home-value__card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--muted);
}

.home-value__pain {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  border-left: 3px solid var(--gold, #c9a962);
}

.home-value__pain-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold, #c9a962);
  text-transform: uppercase;
}

.home-value__pain-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

.home-value__pain-lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.85;
  color: rgba(245, 247, 251, 0.9);
}

.home-value__pain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home-value__pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--muted);
}

.home-value__pain-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(74, 158, 255, 0.6);
}

@media (max-width: 720px) {
  .home-value__audience {
    grid-template-columns: 1fr;
  }
}
