/*
 * FormVault Curiosity Section — [fv_curiosity]
 * Pain-point hook between the hero banner and trust bar.
 */

*, *::before, *::after { box-sizing: border-box; }

.fv-curiosity {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.10),
              0 0 0 1px rgba(226, 232, 240, 0.9);
  padding: 36px 48px;
  text-align: center;
  margin: 0 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fv-curiosity__headline {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin: 0 auto 12px;
  max-width: 580px;
}

.fv-curiosity__subtext {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 460px;
}

.fv-curiosity__btn {
  display: inline-block;
  padding: 13px 30px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, .35);
  transition: opacity .15s, transform .15s, box-shadow .15s;
  letter-spacing: 0.01em;
}

.fv-curiosity__btn:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .45);
}

@media (max-width: 600px) {
  .fv-curiosity {
    padding: 28px 24px;
  }

  .fv-curiosity__headline {
    font-size: 21px;
  }
}
