
/* === Footer Gradient Background Strip (Project 5051) === */

.site-footer{
  position: relative;
  background:
    linear-gradient(135deg,
      rgba(106,124,255,0.18),
      rgba(53,211,255,0.18),
      rgba(120,255,214,0.18)
    );
  padding-top: 48px;
  padding-bottom: 34px;
  margin-top: 40px;
}

.site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.65)
    );
  backdrop-filter: blur(14px);
  z-index: 0;
}

.site-footer > *{
  position: relative;
  z-index: 1;
}
