/* =====================================================
   ABOUT / HOW IT WORKS / FEATURES / COMPARISON / TESTIMONIALS
   ===================================================== */

/* About section */
.bp-stat-card {
  background: rgba(15, 23, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--bp-radius-2xl);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bp-stat-card:hover {
  border-color: rgba(var(--bp-primary-rgb), 0.25);
  box-shadow: 0 6px 20px rgba(var(--bp-primary-rgb), 0.08);
}

.bp-stat-card__value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.bp-stat-card__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bp-muted);
  text-transform: none;
  letter-spacing: 0;
}

/* How it works */
.bp-step-card {
  position: relative;
  padding: 1.75rem;
}

.bp-step-card__bg-num {
  position: absolute;
  bottom: 0.25rem;
  right: 1rem;
  font-size: 6rem;
  font-weight: 900;
  font-family: var(--bp-font-heading);
  line-height: 1;
  color: rgba(var(--bp-primary-rgb), 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.bp-step-card > *:not(.bp-step-card__bg-num) {
  position: relative;
  z-index: 1;
}

.bp-section--light .bp-step-card__bg-num {
  color: rgba(var(--bp-primary-rgb), 0.11);
}

.bp-step-card__step-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bp-primary);
  margin-bottom: 1rem;
}

.bp-step-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--bp-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.bp-step-card__icon--primary {
  background: rgba(var(--bp-primary-rgb), 0.1);
  color: var(--bp-primary);
}

.bp-step-card__icon--accent {
  background: rgba(var(--bp-accent-rgb), 0.1);
  color: var(--bp-accent);
}

.bp-steps-connector {
  display: none;
}

@media (min-width: 768px) {
  .bp-steps-connector {
    display: block;
    position: absolute;
    top: 50%;
    left: 16.5%;
    right: 16.5%;
    height: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    transform: translateY(-1.5rem);
    pointer-events: none;
  }

  .bp-section--light .bp-steps-connector {
    border-top-color: rgba(var(--bp-primary-rgb), 0.2);
  }
}

/* Feature cards */
.bp-feature-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.bp-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--bp-primary), var(--bp-accent));
  opacity: 0.22;
}

.bp-feature-card:hover::before {
  opacity: 0.22;
}

.bp-feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--bp-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Comparison */
.bp-comparison-section__inner {
  max-width: 72rem;
}

.bp-comparison {
  position: relative;
}

.bp-comparison__table {
  overflow: hidden;
}

.bp-comparison__head {
  font-size: 1rem;
}

.bp-comparison__header-betpro {
  background: linear-gradient(to bottom, rgba(var(--bp-primary-rgb), 0.18), rgba(var(--bp-primary-rgb), 0.06));
  border-left: 1px solid rgba(var(--bp-primary-rgb), 0.2);
  border-right: 1px solid rgba(var(--bp-primary-rgb), 0.2);
  border-top: 2px solid var(--bp-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.bp-comparison__winner-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: rgba(var(--bp-primary-rgb), 0.15);
  color: var(--bp-primary);
}

.bp-comparison__cell-betpro {
  background: rgba(var(--bp-primary-rgb), 0.05);
  border-left: 1px solid rgba(var(--bp-primary-rgb), 0.18);
  border-right: 1px solid rgba(var(--bp-primary-rgb), 0.18);
  color: var(--bp-primary);
  font-weight: 600;
  font-size: 1rem;
}

.bp-comparison__row > div:first-child {
  font-size: 1rem;
}

.bp-comparison__brand {
  color: var(--bp-primary);
}

.bp-comparison__table > .row:last-child {
  border-bottom: none;
}

.bp-check-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-check-icon--yes {
  background: rgba(var(--bp-primary-rgb), 0.2);
  color: var(--bp-primary);
}

.bp-check-icon--no {
  background: rgba(239, 68, 68, 0.15);
  color: var(--bp-destructive);
}

.bp-check-icon--muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--bp-muted);
}

/* Testimonials */
.bp-testimonials-section {
  overflow: hidden;
  position: relative;
}

.bp-testimonials-section::before,
.bp-testimonials-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  pointer-events: none;
  z-index: 2;
}

.bp-testimonials-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bp-surface-soft) 0%, rgba(244, 251, 246, 0) 100%);
}

.bp-testimonials-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bp-surface-soft) 0%, rgba(244, 251, 246, 0) 100%);
}

.bp-testimonials-track {
  overflow: hidden;
  position: relative;
}

.bp-testimonials-inner {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 24rem);
  gap: 1rem;
  width: max-content;
  animation: bp-testimonials-marquee 48s linear infinite;
  padding: 0 1rem 0.5rem;
}

.bp-testimonials-track:hover .bp-testimonials-inner {
  animation-play-state: paused;
}

.bp-testimonial-slide {
  min-width: 0;
}

.bp-testimonial {
  min-height: 100%;
  background: var(--bp-surface-plain);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.08);
  box-shadow: 0 14px 40px rgba(8, 18, 12, 0.08);
}

.bp-testimonial__name {
  color: var(--bp-ink);
}

.bp-testimonial__role {
  color: var(--bp-muted-ink);
}

.bp-testimonial__text {
  color: var(--bp-muted-ink-strong);
}

.bp-testimonial {
  padding: 1.75rem;
  position: relative;
}

.bp-testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(var(--bp-primary-rgb), 0.12);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  user-select: none;
}

.bp-testimonial__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.bp-testimonial__avatar--primary {
  border: 1px solid rgba(var(--bp-primary-rgb), 0.4);
  background: rgba(var(--bp-primary-rgb), 0.15);
  color: var(--bp-primary);
}

.bp-testimonial__avatar--accent {
  border: 1px solid rgba(var(--bp-accent-rgb), 0.4);
  background: rgba(var(--bp-accent-rgb), 0.15);
  color: var(--bp-accent);
}

.bp-star {
  color: var(--bp-accent);
}

@keyframes bp-testimonials-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
