.footer {
  background: linear-gradient(145deg, rgba(20,20,20,0.98), rgba(30,30,30,0.98));
  box-shadow: 0 -10px 30px rgba(0,0,0,0.6);
  margin-top: 100px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00d4ff;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(240,240,240,0.7);
}

.footer-right {
  display: flex;
  gap: 20px;
}

.footer-right a {
  color: rgba(240,240,240,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0;
  background: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-right a:hover {
  color: #00d4ff;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
  color: rgba(240,240,240,0.6);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Mobile */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }
}
