.areas-hero {
  padding: 160px 5% 100px;
  text-align: center;
  background: linear-gradient(135deg, #0a0e17 0%, #111827 100%);
}

.areas-hero h1 {
  font-size: 4.5rem;
  font-family: 'Cinzel Decorative', cursive;
  color: #d4af37;
  margin-bottom: 1rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.area-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
}

.area-card:hover {
  transform: translateY(-15px);
  border-color: #d4af37;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  background: rgba(212, 175, 55, 0.05);
}

.area-card i {
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.area-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #d4af37;
}

.area-card p {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .areas-hero h1 { font-size: 3.5rem; }
}

