/* Section: Value Props — landing_cta_unico */

.trx-value-props {
  padding: var(--space-9) 0;
  position: relative;
  background:
    radial-gradient(700px 380px at 50% -20%, rgba(124, 58, 237, 0.06), transparent 65%),
    var(--bg-base);
}

.trx-value-props__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-7);
}
.trx-value-props__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.025em;
  margin: var(--space-3) 0 var(--space-4);
}
.trx-value-props__intro {
  font-size: 1.1rem;
  color: var(--ink-secondary);
  margin: 0;
}

.trx-value-props__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.trx-value-prop {
  position: relative;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  isolation: isolate;
}
.trx-value-prop::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--accent), var(--secondary));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}
.trx-value-prop:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.trx-value-prop:hover::before { opacity: 1; }

.trx-value-prop__media {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 61, 113, 0.08), rgba(124, 58, 237, 0.08));
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trx-value-prop__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trx-value-prop__badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(17,17,17,0.18);
}

.trx-value-prop__title {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
  color: var(--ink-primary);
}
.trx-value-prop__text {
  color: var(--ink-secondary);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.trx-value-props__cta {
  margin: var(--space-7) 0 0;
  text-align: center;
}

@media (max-width: 960px) {
  .trx-value-props__grid { grid-template-columns: 1fr; }
  .trx-value-props { padding: var(--space-8) 0; }
}
