.site-footer {
  position: relative;
  padding: 96px 0 40px;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(10, 13, 26, 0)),
    rgba(255, 255, 255, 0.01);
}

.footer-shell {
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 1fr 1.1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 0 40px;
}

.footer-brand,
.footer-links-block,
.footer-cta {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: auto;
  height: 36px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.footer-brand-text,
.footer-cta-text,
.footer-points li,
.footer-links a,
.footer-copy {
  color: var(--text-muted);
}

.footer-brand-text {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #d8def2;
  font-size: 14px;
  font-weight: 500;
}

.footer-title {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-points li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.footer-points li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #818cf8);
  box-shadow: 0 0 12px var(--primary-glow);
}

.footer-cta {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(99, 102, 241, 0.22);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.1), rgba(217, 70, 239, 0.04));
  backdrop-filter: blur(18px);
}

.footer-cta-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-cta-btn {
  width: 100%;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-size: 14px;
  letter-spacing: 0.02em;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 72px 0 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 32px;
  }

  .footer-brand-text {
    max-width: none;
  }

  .footer-cta {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .footer-logo-text {
    font-size: 22px;
  }

  .footer-brand-text,
  .footer-cta-text,
  .footer-points li {
    font-size: 15px;
  }

  .footer-chip {
    min-height: 34px;
    font-size: 13px;
  }

  .footer-copy {
    font-size: 13px;
  }
}
