/**
 * WPSlash site footer — matches Hyperzod-inspired marketing aesthetic.
 */

.wps-footer {
  position: relative;
  margin-top: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(225, 29, 72, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 70% at 100% 100%, rgba(13, 148, 136, 0.06), transparent 45%),
    var(--wps-footer-bg, #F7F8FA);
  color: var(--wps-footer-text-2, #64748B);
  border-top: 1px solid var(--wps-footer-border, rgba(11, 18, 32, 0.08));
  font-family: var(--wps-font, 'Plus Jakarta Sans', system-ui, sans-serif);
}

.wps-footer-inner {
  max-width: var(--wps-max-w, 1180px);
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.wps-footer-top {
  margin-bottom: 40px;
  max-width: 420px;
}

.wps-footer-brand-name {
  font-family: var(--wps-font-display, var(--wps-font, inherit));
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--wps-footer-text, #0B1220) !important;
  text-decoration: none !important;
  line-height: 1.1;
  display: inline-block;
  margin-bottom: 10px;
}

.wps-footer-brand-name:hover {
  color: var(--wps-accent, #E11D48) !important;
}

.wps-footer-brand-tag {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--wps-footer-text-2, #64748B);
}

.wps-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 32px;
}

.wps-footer .widget-title,
.wps-footer h3,
.wps-footer h4,
.wps-footer-col-title {
  color: var(--wps-footer-text, #0B1220) !important;
  font-family: var(--wps-font, inherit);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px !important;
  padding: 0;
  background: none !important;
  border: 0;
}

.wps-footer p,
.wps-footer .textwidget,
.wps-footer .textwidget p {
  color: var(--wps-footer-text-2, #64748B) !important;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 10px;
}

.wps-footer a {
  color: var(--wps-footer-text-2, #64748B) !important;
  text-decoration: none !important;
  transition: color .15s ease;
}

.wps-footer a:hover {
  color: var(--wps-teal, #0D9488) !important;
}

.wps-footer ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wps-footer ul li {
  margin: 0;
  padding: 0;
}

.wps-footer ul li a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 500;
}

.wps-footer-bottom {
  border-top: 1px solid var(--wps-footer-border, rgba(11, 18, 32, 0.08));
  background: rgba(255, 255, 255, 0.45);
}

.wps-footer-bottom-inner {
  max-width: var(--wps-max-w, 1180px);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wps-footer-bottom,
.wps-footer-bottom p,
.wps-footer-bottom a,
.wps-footer-bottom .textwidget {
  color: var(--wps-footer-text-2, #64748B) !important;
  font-size: 13px;
  line-height: 1.5;
}

.wps-footer-bottom a:hover {
  color: var(--wps-teal, #0D9488) !important;
}

@media (max-width: 900px) {
  .wps-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
}

@media (max-width: 560px) {
  .wps-footer-inner {
    padding: 44px 20px 32px;
  }

  .wps-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wps-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
