.vision-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.vision-section .title {
  text-align: center;
  margin-bottom: 10px;
}

.vision-section .subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.scenes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.scene-card-link {
  text-decoration: none;
  display: block;
}

.scene-card {
  background: rgba(15, 31, 61, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.scene-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
}

.scene-card.active {
  border-color: var(--primary-green);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.scene-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.scene-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 255, 136, 0.3) 100%);
  transition: opacity 0.3s ease;
}

.scene-card:hover .scene-image::before,
.scene-card.active .scene-image::before {
  opacity: 0.8;
}

.scene-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.scene-content {
  padding: 25px;
}

.scene-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.scene-title i {
  color: var(--primary-green);
}

.scene-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.scene-highlights {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-tag {
  background: rgba(0, 255, 136, 0.15);
  color: var(--primary-green);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.vision-showcase {
  margin-top: 60px;
}

.showcase-header {
  text-align: center;
  margin-bottom: 40px;
}

.showcase-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.showcase-header p {
  color: var(--text-secondary);
}

.showcase-container {
  background: rgba(15, 31, 61, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 25px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.showcase-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg 340deg, rgba(0, 255, 136, 0.1) 340deg 360deg);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.showcase-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.showcase-image {
  height: 300px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.showcase-text {
  padding: 20px;
}

.showcase-text h4 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.showcase-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.showcase-stats {
  display: flex;
  gap: 30px;
}

.showcase-stat {
  text-align: center;
}

.showcase-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
}

.showcase-stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
  border-radius: 25px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.cta-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cta-subtitle {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .scenes-container {
    grid-template-columns: 1fr;
  }
  
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .showcase-container {
    padding: 20px;
  }
  
  .showcase-image {
    height: 200px;
    font-size: 3rem;
  }
  
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
}
