/* ═══════════════════════════════════════
   SOLUTIONS — PROOF + CTA (section6)
═══════════════════════════════════════ */

.proof {
  position: relative;
  background: var(--bg-primary);
  z-index: 2;
}
.proof-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(70px, 11vh, 130px) clamp(20px, 4vw, 56px);
}

/* ── Stats strip ── */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: clamp(56px, 8vw, 90px);
  margin-bottom: clamp(56px, 8vw, 90px);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.proof-stat b {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proof-stat span {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-primary-60);
}

/* ── CTA band ── */
.proof-cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 72px);
  text-align: center;
  background: linear-gradient(135deg, #13202f, #0e2418);
  isolation: isolate;
}
.proof-cta::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 120%;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 138, 0, 0.28), rgba(31, 157, 92, 0.16) 50%, transparent 72%);
  filter: blur(40px);
}
.proof-cta h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
  margin: 0 auto;
}
.proof-cta h2 .grad {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proof-cta p {
  margin: 18px auto 0;
  max-width: 52ch;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.proof-cta .cta-btn {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 18px 40px -14px rgba(255, 77, 109, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-cta .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -14px rgba(255, 77, 109, 0.75); }
.proof-cta .cta-btn svg { transition: transform 0.3s ease; }
.proof-cta .cta-btn:hover svg { transform: translateX(5px); }

/* ── RTL ── */
body.rtl .proof-cta .cta-btn svg { transform: scaleX(-1); }

/* ── Responsive ── */
@media (max-width: 760px) {
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
