/* ===== SECTIONS GENERAL ===== */
.section {
  position: relative;
  z-index: 1;
  padding: var(--spacing-xxl) var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section-title {
  font-size: var(--font-size-section);
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
}

.section-title::before,
.section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-title::before {
  right: 140%;
}

.section-title::after {
  left: 140%;
}

/* Features Bar */
.features-bar {
  position: relative;
  z-index: 1;
  background: rgba(26,26,26,0.5);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-xl) var(--spacing-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

[data-theme="light"] .features-bar {
  background: rgba(255,255,255,0.5);
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,168,67,0.1);
  border: 2px solid rgba(212,168,67,0.2);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212,168,67,0.2);
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Responsive sections */
@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .section-title::before,
  .section-title::after {
    display: none;
  }
}