/* ========= SUBPAGES STYLES ========= */

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-2xl);
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,42,42,0.05) 0%, transparent 60%);
  z-index: -1;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.8;
}

.content h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.content p {
  margin-bottom: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 40vh;
    padding-top: var(--space-xl);
    padding-bottom: 40px;
  }
  
  .section {
    padding: 60px 0;
  }
}

