.features-hero {
  padding: 180px 0 80px;
}

.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
}

.cta-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Featured Showcases Modern Design */
.featured-showcases {
  padding: 5rem 0 4rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.showcase-header {
  text-align: center;
  margin-bottom: 4rem;
}

.showcase-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 20px;
  color: #667eea;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.showcase-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.showcase-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Carousel Container */
.showcase-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 1rem;
}

.modern-showcase-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 3rem;
  text-align: center;
}

.modern-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(102, 126, 234, 0.2);
}

/* Icon Container with Gradient Background */
.showcase-icon-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.1;
  transform: rotate(-6deg);
  transition: all 0.4s ease;
}

.modern-showcase-card:hover .showcase-icon-bg {
  opacity: 0.15;
  transform: rotate(0deg) scale(1.05);
}

.showcase-icon-bg.ai-gradient {
  background: linear-gradient(135deg, #00f2fe 0%, #8a2be2 100%);
}

.showcase-icon-bg.growth-gradient {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.showcase-main-icon {
  position: relative;
  z-index: 1;
  font-size: 72px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.4s ease;
}

.modern-showcase-card:hover .showcase-main-icon {
  transform: scale(1.1) rotate(5deg);
}

.showcase-main-icon.ai-icon {
  background: linear-gradient(135deg, #00f2fe 0%, #8a2be2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-main-icon.growth-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge */
.showcase-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase-feature-badge.ai-badge {
  background: linear-gradient(135deg, #00f2fe 0%, #8a2be2 100%);
  box-shadow: 0 4px 12px rgba(0, 242, 254, 0.25);
}

.showcase-feature-badge.growth-badge {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 4px 12px rgba(240, 147, 251, 0.25);
}

/* Content */
.showcase-feature-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.3;
  max-width: 600px;
}

.showcase-feature-description {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 2.5rem;
}

.showcase-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #475569;
  transition: all 0.3s ease;
}

.showcase-feature-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(4px);
}

.showcase-feature-item .material-icons {
  font-size: 18px;
  color: #667eea;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.showcase-link:hover {
  color: #764ba2;
  gap: 0.7rem;
}

.showcase-link .material-icons {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.showcase-link:hover .material-icons {
  transform: translateX(4px);
}

/* Decorative Elements */
.showcase-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-decoration.top-right {
  top: -100px;
  right: -100px;
}

.showcase-decoration.bottom-left {
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.carousel-nav.prev {
  left: -60px;
}

.carousel-nav.next {
  right: -60px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  transform: scale(1.08);
  box-shadow: 0 5px 18px rgba(102, 126, 234, 0.35);
}

.carousel-btn:hover .material-icons {
  color: white;
}

.carousel-btn .material-icons {
  color: #667eea;
  font-size: 26px;
  transition: color 0.3s ease;
}

.carousel-btn:active {
  transform: scale(0.96);
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 24px;
  border-radius: 4px;
}

.carousel-indicator:hover:not(.active) {
  background: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1300px) {
  .carousel-nav.prev {
    left: 10px;
  }
  
  .carousel-nav.next {
    right: 10px;
  }
  
  .carousel-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }
}

@media (max-width: 768px) {
  .featured-showcases {
    display: none;
  }
}

/* Animation delays */
.feature-grid .col:nth-child(1) .feature-grid-card { animation: fadeInUp 0.6s ease-out 0.1s both; }
.feature-grid .col:nth-child(2) .feature-grid-card { animation: fadeInUp 0.6s ease-out 0.2s both; }
.feature-grid .col:nth-child(3) .feature-grid-card { animation: fadeInUp 0.6s ease-out 0.3s both; }
.feature-grid .col:nth-child(4) .feature-grid-card { animation: fadeInUp 0.6s ease-out 0.4s both; }
.feature-grid .col:nth-child(5) .feature-grid-card { animation: fadeInUp 0.6s ease-out 0.5s both; }
.feature-grid .col:nth-child(6) .feature-grid-card { animation: fadeInUp 0.6s ease-out 0.6s both; }
.feature-grid .col:nth-child(7) .feature-grid-card { animation: fadeInUp 0.6s ease-out 0.7s both; }
.feature-grid .col:nth-child(8) .feature-grid-card { animation: fadeInUp 0.6s ease-out 0.8s both; }
.feature-grid .col:nth-child(9) .feature-grid-card { animation: fadeInUp 0.6s ease-out 0.9s both; }
.feature-grid .col:nth-child(10) .feature-grid-card { animation: fadeInUp 0.6s ease-out 1s both; }
.feature-grid .col:nth-child(11) .feature-grid-card { animation: fadeInUp 0.6s ease-out 1.1s both; }
.feature-grid .col:nth-child(12) .feature-grid-card { animation: fadeInUp 0.6s ease-out 1.2s both; }
.feature-grid .col:nth-child(13) .feature-grid-card { animation: fadeInUp 0.6s ease-out 1.3s both; }
.feature-grid .col:nth-child(14) .feature-grid-card { animation: fadeInUp 0.6s ease-out 1.4s both; }
.feature-grid .col:nth-child(15) .feature-grid-card { animation: fadeInUp 0.6s ease-out 1.5s both; }
.feature-grid .col:nth-child(16) .feature-grid-card { animation: fadeInUp 0.6s ease-out 1.6s both; }

/* Screenshot Modal Styles */
.screenshot-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.screenshot-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.screenshot-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease-out;
}

.screenshot-modal-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.screenshot-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.screenshot-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.screenshot-modal-close .material-icons {
  font-size: 24px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Feature Card Clickable State */
.feature-grid-card.clickable {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-grid-card.clickable:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.screenshot-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 500;
  justify-content: center;
  transition: all 0.2s ease;
}

.screenshot-indicator .material-icons {
  font-size: 14px;
  opacity: 0.7;
}

.feature-grid-card.clickable:hover .screenshot-indicator {
  border-color: #667eea;
  color: #667eea;
  background: rgba(102, 126, 234, 0.04);
}

.feature-grid-card.clickable:hover .screenshot-indicator .material-icons {
  opacity: 1;
}

@media (max-width: 768px) {
  .screenshot-modal-content {
    max-width: 95%;
    max-height: 95%;
  }
  
  .screenshot-modal-close {
    top: -45px;
    width: 36px;
    height: 36px;
  }
}
