/* ═══ ذيل الموقع — شريط واحد نحيف ═══
   الحقوق على طرف، وسطر «متاح للعمل عن بُعد» على الطرف الآخر بنقطة
   نعناعية تنبض — بلغة الموقع البصرية نفسها. */

.site-footer{
  position:relative;
  z-index:2;
  direction:ltr;
  background:#030303;
  border-top:1px solid rgba(255,255,255,.08);
}

.site-footer__bar-inner{
  width:min(1080px, 90vw);
  margin:0 auto;
  padding:20px 0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.site-footer__bar-inner p{
  font-family:'Montserrat','Segoe UI',system-ui,sans-serif;
  font-weight:500;
  font-size:clamp(11px, .85vw, 14px);
  color:#8a8a8e;
}

/* «متاح للعمل عن بُعد» — نقطة نعناعية حيّة تنبض */
.site-footer__remote{
  display:flex;
  align-items:center;
  gap:9px;
  color:#9fdccb;
}
.site-footer__dot{
  width:8px;height:8px;
  border-radius:50%;
  background:#00b493;
  box-shadow:0 0 0 0 rgba(0,180,147,.5);
  animation:footer-pulse 2.6s ease-out infinite;
}
@keyframes footer-pulse{
  0%{box-shadow:0 0 0 0 rgba(0,180,147,.5)}
  70%{box-shadow:0 0 0 9px rgba(0,180,147,0)}
  100%{box-shadow:0 0 0 0 rgba(0,180,147,0)}
}
@media (prefers-reduced-motion: reduce){
  .site-footer__dot{animation:none}
}

@media (max-width:560px){
  .site-footer__bar-inner{flex-direction:column;text-align:center}
}
