  :root{
  --purple: #9635A2;
  --blue: #2F78E4;
  --bg: #060606;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.66);
  --line: rgba(255,255,255,0.14);
  --glass: rgba(255,255,255,0.06);
  --glass-strong: rgba(255,255,255,0.09);
  --shadow: 0 20px 80px rgba(0,0,0,0.45);
}

.tech-glass-footer {
  background: transparent;
  padding: 40px 18px 28px;
  direction: rtl;
  color: var(--text);
}

.footer-glass-shell {
  max-width: 1580px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(150,53,162,0.12), rgba(47,120,228,0.10)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  position: relative;
  overflow: hidden;
}

.footer-glass-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at top left, rgba(150,53,162,0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(47,120,228,0.30), transparent 30%),
    radial-gradient(circle at bottom center, rgba(255,255,255,0.08), transparent 35%);
  pointer-events: none;
  opacity: 0.95;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(150,53,162,0.35);
}

.footer-desc {
  margin: 0 0 18px;
  line-height: 1.9;
  color: var(--muted);
  font-size: 0.98rem;
}

.footer-title {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  text-decoration: none;
  transition: 0.25s ease;
  line-height: 1.8;
  word-break: break-word;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(-3px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(150,53,162,0.28), rgba(47,120,228,0.22));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: 0.28s ease;
  font-size: 0.82rem;
  font-weight: 800;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 12px 26px rgba(0,0,0,0.3);
}

.trust-box {
  display: grid;
  gap: 12px;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  min-height: 72px;
}

.trust-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 10px 20px rgba(47,120,228,0.18);
  font-weight: 900;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.trust-text span {
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

.trust-text small {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

.trust-empty {
  opacity: 0.86;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .tech-glass-footer {
    padding: 24px 12px 18px;
  }

  .footer-glass-shell {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-logo {
    font-size: 1.55rem;
  }

  .trust-item {
    padding: 12px;
  }
}
