/* ============================================
   PAGE SECTIONS
   Feature grids, steps, stats, team and value cards
   ============================================ */

/* --- FEATURE GRID --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
  display: block;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
}
.feature-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* --- SECTOR FEATURES LIST --- */
.sector-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}
.sector-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}
.sector-feature-item:hover {
  background: white;
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
  transform: translateX(4px);
}
.sector-feature-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}
.sector-feature-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
}

/* --- STEPS --- */
.step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.step-item {
  counter-increment: step-counter;
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  align-items: flex-start;
}
.step-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0f172a, #334155);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.4rem;
}
.step-content p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* --- STATS BAR --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #cf81e7, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

/* --- TEAM SECTION --- */
.team-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f172a, #334155);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-avatar img {
  width: 60px;
  height: auto;
}
.team-avatar-letter {
  color: white;
  font-weight: 800;
  font-size: 2rem;
}
.team-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}
.team-info p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* --- VALUE PROPOSITION --- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.value-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.value-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}
.value-card p {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .stats-bar {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .team-section {
    flex-direction: column;
    text-align: center;
  }
}
