/* ============================================================
   SOCIAL PROOF BAR + WHY APPRETOR FEATURES SECTION
   ============================================================ */

/* Social Proof Bar */
.proof-bar {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  padding: 20px 0;
  overflow: hidden;
}

.proof-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.proof-bar__item svg,
.proof-bar__item .proof-icon {
  color: var(--accent-secondary);
  font-size: 1.1rem;
}

.proof-bar__item strong {
  color: var(--text-primary);
  font-weight: 700;
}

.proof-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--border-color);
}

/* ---- Why Appretor ---- */
.features {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.features__bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.features__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.features__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.feature-card {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(108, 99, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform var(--transition-normal);
}

.feature-card:hover .feature-card__icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
  .proof-bar__divider {
    display: none;
  }
  .proof-bar__inner {
    gap: 20px;
  }
}
