/* Footer */

.rj-footer {
  background: #0b0b12;
  color: #ccc;
  padding-top: 70px;
}

.rj-footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* BRAND */
.rj-footer-col h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #fff;
}

.rj-footer-col h3 span {
  background: linear-gradient(135deg, #9B2FFF, #FF4FD8, #F4B400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HEADINGS */
.rj-footer-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #fff;
}

/* TEXT */
.rj-footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: #bbb;
}

/* LISTS */
.rj-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rj-footer-col ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.rj-footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.rj-footer-col ul li a:hover {
  color: #FF4FD8;
}

/* BOTTOM BAR */
.rj-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 20px;
  text-align: center;
}

.rj-footer-bottom p {
  font-size: 14px;
  color: #999;
}

.rj-footer-bottom strong {
  color: #FF4FD8;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .rj-footer {
    text-align: center;
  }
}