/* ═══════════════════════════════════════
   Layout — Container & Grid
   ═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg);
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section titles */
.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2.5px;
  line-height: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 46.2px;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 18px;
  color: var(--text);
  line-height: 30px;
  max-width: 700px;
}

.green-bar {
  width: 52px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Page transitions */
.page-enter {
  animation: fadeUp 0.28s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   Scroll Animations
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   Page Hero (shared across pages)
   ═══════════════════════════════════════ */
/* ── PAGE HERO (compact) ── */
.page-hero {
  background: linear-gradient(180deg, #00633f 0%, #003220 100%);
  padding: 44px 0 36px;
}

.page-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  width: fit-content;
  margin-bottom: 20px;
}

.page-hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #004f32;
  border-radius: 50%;
}

.page-hero-badge-text {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
}

.page-hero-title {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 60px;
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 30px;
  max-width: 520px;
}

.page-hero-right img {
  max-height: 200px;
  width: auto;
}

.page-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ═══════════════════════════════════════
   Responsive Breakpoints
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  :root {
    --container-padding: 32px;
  }

  .section-title {
    font-size: 32px;
    line-height: 38px;
  }

  .page-hero-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --nav-height: 64px;
  }

  .page-hero { padding: 32px 0; }
  .page-hero-title { font-size: 36px; line-height: 40px; }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 28px;
    line-height: 34px;
  }

  .section-sub {
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  .section-title {
    font-size: 24px;
    line-height: 30px;
  }
}
