/* Product value bento section */
.pv-section {
  position: relative;
  z-index: 10;
  padding: 2rem 1.5rem 6rem;
  pointer-events: auto;
}

.pv-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pv-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

.pv-eyebrow {
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.78rem;
  color: rgba(180, 170, 175, 0.65);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  text-transform: lowercase;
}

.pv-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.pv-lead {
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.pv-card {
  background: rgba(22, 22, 28, 0.75);
  border: 1px solid rgba(232, 90, 120, 0.1);
  border-radius: 1.35rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Feature row */
.pv-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.pv-card-feature {
  padding: 1.35rem 1.4rem 1.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.pv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  background: rgba(232, 90, 120, 0.1);
  border: 1px solid rgba(232, 90, 120, 0.15);
  color: var(--text);
  margin-bottom: 1.1rem;
}

.pv-card-feature h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.55rem;
}

.pv-card-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Stats row */
.pv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.pv-card-stat {
  padding: 1.35rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 110px;
}

.pv-stat-value {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.pv-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Wide bottom card */
.pv-card-wide {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 2rem 2rem 2rem 2.25rem;
  align-items: center;
}

.pv-wide-left .pv-eyebrow {
  text-align: left;
  margin-bottom: 0.65rem;
}

.pv-wide-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.pv-wide-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 42ch;
}

.pv-wide-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pv-pill {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(232, 90, 120, 0.12);
  background: rgba(18, 18, 22, 0.6);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .pv-features {
    grid-template-columns: 1fr;
  }

  .pv-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-card-wide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pv-section {
    padding: 1.5rem 1rem 4rem;
  }

  .pv-stats {
    grid-template-columns: 1fr 1fr;
  }

  .pv-stat-value {
    font-size: 1.25rem;
  }
}
