.footer-main {
  position: relative;

  /* margin-top: 100px; */

  background: #0f172a;

  overflow: hidden;
}

.footer-main::before {
  content: "";

  position: absolute;
  top: -250px;
  right: -250px;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background: radial-gradient(rgba(51, 65, 85, 0.55), transparent 70%);

  pointer-events: none;
}

.footer-main::after {
  content: "";

  position: absolute;
  bottom: -250px;
  left: -250px;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background: radial-gradient(rgba(30, 41, 59, 0.6), transparent 70%);

  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  width: 90%;

  margin: 0 auto;

  padding: 90px 20px 30px;
}

.footer-banner {
  margin-bottom: 70px;
}

.footer-banner-title {
  max-width: 700px;

  font-family: var(--font-heading);

  font-size: clamp(2rem, 4vw, 3.25rem);

  line-height: 1.2;

  color: #ffffff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  margin-bottom: 18px;

  font-family: var(--font-heading);

  font-size: 2rem;
  font-weight: 700;

  color: #ffffff;
}

.footer-logo span {
  color: #cbd5e1;
}

.footer-description {
  color: #94a3b8;

  line-height: 1.9;
}

.footer-links-wrap {
  display: flex;
  gap: 100px;
}

.footer-title {
  margin-bottom: 22px;

  color: #ffffff;

  font-size: 1rem;
  font-weight: 800;
}

.footer-links,
.footer-contact-list {
  list-style: none;
}

.footer-links li,
.footer-contact-item {
  margin-bottom: 14px;
}

.footer-link {
  text-decoration: none;

  color: #94a3b8;

  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-contact-item {
  color: #94a3b8;

  line-height: 1.8;
}

.footer-divider {
  height: 1px;

  margin: 60px 0 25px;

  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  color: #64748b;

  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 50px;
  }

  .footer-links-wrap {
    gap: 60px;
  }

  .footer-banner {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 70px 20px 25px;
  }

  .footer-banner-title {
    font-size: 2rem;
  }

  .footer-links-wrap {
    flex-direction: column;
    gap: 35px;
  }

  .footer-logo {
    font-size: 1.7rem;
  }
}
