/* ── Footer ── */
#solvoyo-footer {
  background: #050A1E;
}

/* Newsletter row */
.ft-top {
  max-width: 1136px;
  margin: 0 auto;
  padding: 60px 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ft-nl-left h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
}
.ft-nl-left p {
  font-family: var(--font-body);
  font-size: 13px;
  color: #8A90B0;
}
.ft-nl-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ft-social { display: flex; gap: 8px; }
.ft-social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.ft-social-icon:hover { background: rgba(255,255,255,.12); }

.ft-email {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  width: 220px;
  outline: none;
}
.ft-email::placeholder { color: rgba(255,255,255,.3); }

.ft-sub-btn {
  height: 56px;
  padding: 0 24px;
  border: none;
  cursor: pointer;
  background: var(--grad-subscribe);
  box-shadow: -7px -10px 50px rgba(102,67,242,.5),
    inset 0 0 20px rgba(255,255,255,.5);
  border-radius: 99px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  transition: opacity .15s;
}
.ft-sub-btn:hover { opacity: .9; }

/* Links grid */
.ft-links {
  max-width: 1136px;
  margin: 0 auto;
  padding: 52px 40px 0;
}
.ft-links-row { display: flex; gap: 80px; }
.ft-col-head {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
.ft-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-col-list a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #8A90B0;
  text-decoration: none;
  line-height: 150%;
  transition: color .15s;
}
.ft-col-list a:hover { color: #fff; }

/* Addresses */
.ft-addr {
  max-width: 1136px;
  margin: 0 auto;
  padding: 52px 40px 60px;
  display: flex;
  gap: 151px;
}
.ft-addr-head {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
.ft-addr-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 150%;
  color: #8A90B0;
}

/* Watermark */
.ft-wm-wrap {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}
.ft-wm-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -40%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(83,41,205,.35) 0%, transparent 70%);
  pointer-events: none;
}
.ft-watermark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(80px, 13vw, 180px);
  line-height: 1;
  color: rgba(255,255,255,.04);
  letter-spacing: -.02em;
  position: relative;
  z-index: 0;
  user-select: none;
}
