.gk-footer {
  background: #111827;
  color: #e4e6f0;
  padding: 50px 0 26px;
  border-top: 3px solid rgba(124, 58, 237, .35);
  font-size: 15px;
}

.gk-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 32px;
}

.ft-brand h3 {
  font-size: 22px;
  margin: 8px 0;
  font-weight: 900;
  color: #fff;
}
.ft-brand p {
  color: #9ca3af;
}

.ft-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7c3aed, #9b8cff);
  border-radius: 12px;
  font-size: 22px;
  box-shadow: 0 10px 26px rgba(124, 58, 237, .25);
}

.ft-links h4,
.ft-news h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  font-weight: 900;
}

.ft-links a {
  display: block;
  margin: 6px 0;
  color: #c7c9d8;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
  position: relative;
}

.ft-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.ft-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg,#7c3aed,#9b8cff);
}

.ft-form {
  display: flex;
  gap: 6px;
  margin: 10px 0;
}

.ft-form input {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  background: #1f2937;
  border: 1px solid #272f3d;
  color: #fff;
  font-size: 14px;
}

.ft-form button {
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(90deg,#7c3aed,#9b8cff);
  border: none;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: .2s;
}

.ft-form button:hover { opacity: .85; }

.ft-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.ft-social a {
  font-size: 22px;
  transition: .2s;
}
.ft-social a:hover {
  transform: scale(1.15);
}

.ft-bottom {
  text-align: center;
  margin-top: 28px;
  color: #9ca3af;
  font-size: 13px;
  border-top: 1px solid #1e2532;
  padding-top: 12px;
}
