.site-footer {
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 10, 15, 0.95) 100%),
    linear-gradient(
      135deg,
      rgba(15, 25, 35, 0.8) 0%,
      rgba(10, 18, 26, 0.9) 100%
    );
  border-top: 1px solid rgba(63, 208, 255, 0.15);
  padding: 60px 0 30px;
  margin-top: 100px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(63, 208, 255, 0.5) 50%,
    transparent
  );
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(63, 208, 255, 0.1);
}
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.footer-logo {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(166, 255, 59, 0.3));
}
.footer-brand-name {
  font-size: 24px;
  font-weight: 700;
  font-family: "Boldonse", serif;
  background: linear-gradient(135deg, #e8f6ff 0%, #a6ff3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 300px;
}
.footer-title {
  font-size: 16px;
  font-weight: 700;
  font-family: "Boldonse", serif;
  color: #e8f6ff;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-social a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
.footer-social a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-cyan);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  color: var(--color-cyan);
  transform: translateX(5px);
}
.footer-social a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copyright {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}
.footer-credits {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}
.footer-designer {
  color: var(--color-cyan);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.footer-designer::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-tech-lime));
  transition: width 0.3s ease;
}
.footer-designer:hover {
  color: var(--color-tech-lime);
}
.footer-designer:hover::after {
  width: 100%;
}
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-section:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .site-footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }
  .footer-container {
    padding: 0 24px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }
  .footer-section:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 20px;
  }
  .footer-tagline {
    max-width: 100%;
  }
}
