/* =========================
PRO FOOTER
========================= */

.pro-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 20px 12px 30px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.pro-footer * {
  box-sizing: border-box;
}

/* TOP GLOW LINE */
.footer-glow {
  height: 2px;
  background: linear-gradient(to right, transparent, #6366f1, transparent);
  margin-bottom: 40px;
}

/* GRID */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* BRAND */
.footer-col h2 {
  font-size: 24px;
  color: #93c5fd;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.footer-col p {
  color: #9ca3af;
  line-height: 1.6;
  font-size: 14px;
}

/* CTA */
.footer-cta {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-cta:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* TITLES */
.footer-col h4 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #9ca3af;
  text-decoration: none;
  position: relative;
  font-size: 14px;
}

/* UNDERLINE ANIMATION */
.footer-col a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #6366f1;
  left: 0;
  bottom: -2px;
  transition: 0.3s;
}

.footer-col a:hover::after {
  width: 100%;
}

/* SOCIAL */
.footer-social {
  text-align: center;
  margin: 40px 0 20px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #6366f1;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
