/* ==========================================================================
   STATIC SECTION — full-bleed static background image, dark overlay,
   centered heading/paragraph/CTA. Used as the closing feature section
   before the footer.
   ========================================================================== */

.static-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.static-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.static-section__bg img {
  width: 100%; height: 100%; object-fit: cover;
}

.static-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,6,8,0.55) 0%, rgba(6,6,8,0.72) 100%);
}

.static-section__content {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  padding: 0 var(--sp-4);
  color: var(--color-white);
}

.static-section__content h2 { font-size: var(--fs-h1); }

.static-section__content p {
  margin-top: var(--sp-3);
  color: rgba(255,255,255,0.85);
}

.static-section__content .btn {
  margin-top: var(--sp-5);
}
