/* Shared social proof / results section (homepage + enterprises) */
.proof-section {
  padding: 64px 48px 72px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
    #080e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-section .container {
  max-width: 1040px;
  margin: 0 auto;
}

.proof-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f0f4ff;
  margin: 0 0 14px;
  line-height: 1.2;
}

.proof-section .lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(240, 244, 255, 0.72);
  max-width: 42rem;
  margin: 0 0 36px;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  margin-bottom: 48px;
}

.proof-points .point {
  padding: 0;
  border: none;
  background: transparent;
}

.proof-points .point strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 650;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.proof-points .point p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0;
}

.proof-section h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 18px;
}

.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.case-studies .case {
  padding: 0;
  border: none;
  background: transparent;
  border-left: 2px solid rgba(59, 130, 246, 0.45);
  padding-left: 14px;
}

.case-studies .case h4 {
  font-size: 0.9rem;
  font-weight: 650;
  color: #e2e8f0;
  margin: 0 0 8px;
  line-height: 1.35;
}

.case-studies .case p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0;
}

.proof-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.proof-quotes blockquote {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #cbd5e1;
  font-style: normal;
}

.proof-quotes blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-style: normal;
  color: #64748b;
}

@media (max-width: 900px) {
  .proof-section {
    padding: 48px 20px 56px;
  }

  .proof-points,
  .case-studies,
  .proof-quotes {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
