/* ==========================================
   PROVEN RESULTS SECTION
   ========================================== */
.results-section {
  min-height: calc(100vh - 90px); /* Full viewport height minus navbar */
  padding: 80px 5%;
  background-color: #ffffff; /* Contrast against the offwhite perks section */
}

/* --- The Breakthrough Cards (Case Studies) --- */
.breakthrough-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.breakthrough-card {
  background: var(--bg-offwhite);
  border: 1px solid rgba(18, 41, 57, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.breakthrough-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--secondary-gold);
}

.card-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #9c7b16; /* Deep gold for readability */
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.score-jump {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.old-score {
  font-size: 2rem;
  font-weight: 700;
  color: #a0aec0;
  text-decoration: line-through;
}

.new-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.arrow {
  width: 28px;
  height: 28px;
  color: var(--secondary-gold);
}

.breakthrough-card p {
  color: #555555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================
   MOBILE RESPONSIVENESS (Results)
   ========================================== */
@media (max-width: 900px) {
  .stats-banner {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .breakthrough-grid {
    grid-template-columns: 1fr;
  }
}
