/* ─── Animated background canvas (fixed, full page) ──────────────────────────── */
#animated-bg {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

nav, main, footer, #cta-final { position: relative; z-index: 1; }

/* ─── Page Hero ────────────────────────────────────────────────────────────────── */
.page-hero {
  padding: 148px 0 64px;
  position: relative;
}

.page-hero-content { max-width: 680px; }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.page-hero .hero-actions { margin-bottom: 0; }

/* ─── Category sections ────────────────────────────────────────────────────────── */
.cat-section { padding: 72px 0; }
.cat-section.alt { background: var(--bg-card); }

.cat-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 640px;
  margin: 0 0 44px;
}

.cat-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}

.cat-header h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--white);
  margin: 6px 0 10px;
}

.cat-header p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── Responsive ───────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .page-hero { padding: 116px 0 48px; }
  .cat-header { flex-direction: column; gap: 16px; }
  .cat-section { padding: 56px 0; }
}
