/* === FEATURED SHOWCASE PREMIUM === */

.featured-showcase {
  background: #fff;
  border-radius: 28px;
  border: 2px solid #e5e5e5;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.featured-showcase:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 120px rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.3);
}

/* Header amélioré */
.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(245, 158, 11, 0.08));
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.35);
  position: relative;
  overflow: hidden;
}

.showcase-label::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.showcase-label svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  stroke: none;
  animation: pulse-star 2s ease-in-out infinite;
}

@keyframes pulse-star {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.showcase-category {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  background: rgba(251, 191, 36, 0.12);
  border-radius: 20px;
}

/* Body amélioré */
.showcase-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding: 48px 36px;
}

.showcase-content {
  display: flex;
  gap: 28px;
}

/* Icon avec glow effect */
.showcase-icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.12), rgba(0, 119, 255, 0.12));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.2);
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, transparent 70%);
  border-radius: 24px;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { 
    opacity: 0.6;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.1);
  }
}

.showcase-icon-wrapper i {
  font-size: 2.5rem;
  color: #00d9ff;
  z-index: 1;
  position: relative;
}

/* Texte */
.showcase-text {
  flex: 1;
}

.showcase-title {
  font-size: 2rem;
  font-weight: 900;
  color: #0a0a0a;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.showcase-subtitle {
  font-size: 1.05rem;
  color: #6a6a6a;
  margin-bottom: 32px;
  font-weight: 500;
}

/* Features améliorées */
.showcase-features {
  display: grid;
  gap: 16px;
}

.showcase-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.showcase-feature:hover {
  background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.1);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(0, 119, 255, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrapper i {
  font-size: 1.2rem;
  color: #00d9ff;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
}

.feature-text span {
  font-size: 0.9rem;
  color: #7a7a7a;
  font-weight: 500;
}

/* Sidebar metrics */
.showcase-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.metric-card:hover {
  border-color: #00d9ff;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 217, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.03), rgba(0, 119, 255, 0.03));
}

.metric-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
}

.metric-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.metric-content {
  flex: 1;
}

.metric-value {
  font-size: 2rem;
  font-weight: 900;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.metric-label {
  font-size: 0.85rem;
  color: #6a6a6a;
  font-weight: 600;
  line-height: 1.4;
}

/* CTA Button amélioré */
.showcase-cta {
  margin-top: 16px;
}

.showcase-cta .btn-primary {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 14px;
  border: none;
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.showcase-cta .btn-primary i {
  transition: transform 0.3s ease;
}

.showcase-cta .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.5);
}

.showcase-cta .btn-primary:hover i {
  transform: translateX(4px);
}

/* Showcase Tech Stack */
.showcase-tech {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
}

.tech-badge {
  padding: 6px 14px;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00d9ff;
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.4);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .showcase-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .showcase-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .showcase-features {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .featured-showcase {
    border-radius: 20px;
  }
  
  .showcase-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px 24px;
  }
  
  .showcase-body {
    padding: 32px 24px;
  }
  
  .showcase-content {
    gap: 20px;
  }
  
  .showcase-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .showcase-icon-wrapper i {
    font-size: 2rem;
  }
  
  .showcase-title {
    font-size: 1.6rem;
  }
  
  .showcase-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .metric-card {
    padding: 20px 16px;
  }
  
  .metric-icon {
    width: 48px;
    height: 48px;
  }
  
  .metric-value {
    font-size: 1.6rem;
  }
}
