.kc-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 169, 203, 0.22), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(30, 216, 224, 0.16), transparent 28%),
    linear-gradient(135deg, #061826 0%, #0a2334 48%, #071420 100%);
  color: #ffffff;
  padding: 56px 20px 0;
  margin-top: 64px;
  font-family: "Poppins", sans-serif;
}

.kc-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
  pointer-events: none;
}

.kc-footer__inner,
.kc-footer__bottom {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.kc-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(0, 1.8fr);
  gap: 56px;
  align-items: flex-start;
}

.kc-footer__brand h3 {
  margin: 18px 0 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.kc-footer__brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.kc-footer__logo {
  display: inline-flex;
  align-items: center;
}

.kc-footer__logo img {
  width: 112px;
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
}

.kc-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.kc-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(116, 222, 239, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.kc-footer__socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.kc-footer__socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(116, 222, 239, 0.8);
  background: rgba(0, 169, 203, 0.22);
  color: #ffffff;
}

.kc-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.kc-footer__links h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kc-footer__links a {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.kc-footer__links a:hover {
  color: #76e2f0;
  transform: translateX(4px);
}

.kc-footer__bottom {
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.kc-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 991px) {
  .kc-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .kc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .kc-footer {
    padding: 42px 18px 0;
    margin-top: 42px;
  }

  .kc-footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .kc-footer__brand h3 {
    font-size: 21px;
  }

  .kc-footer__bottom {
    margin-top: 30px;
  }
}
