/* Engaging Content Sections */

/* Features Section */
.features-section {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 217, 255, 0.05));
  width: 100%;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 6vw, 2.8rem);
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #00d9ff 0%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.divider-center {
  height: 2px;
  width: 100px;
  background: linear-gradient(90deg, transparent, #00d9ff, transparent);
  margin: 20px auto 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(255, 0, 110, 0.03) 100%);
  border: 1.5px solid rgba(0, 217, 255, 0.15);
  border-radius: 18px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: slideIn 0.8s ease 0.2s backwards;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: #00d9ff;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(255, 0, 110, 0.05) 100%);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  transform: translateY(-8px);
}

.feature-card:hover::before { opacity: 1; }

.feature-card h3 {
  font-size: 1.4rem;
  color: #00d9ff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .features-section { padding: 60px 20px; }
  .section-title { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
}
