/* ═══════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════ */

.ft {
  background: #0a1840;
  padding: 72px 48px 40px;
  position: relative;
  overflow: hidden;
}

.ft__watermark {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: clamp(300px, 35vw, 500px);
  height: auto;
  opacity: .03;
  pointer-events: none;
}

.ft__top {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1;
}

.ft__brand .ft__logo {
  max-width: 180px;
  margin-bottom: 20px;
  opacity: .9;
}

.ft__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  max-width: 260px;
  font-weight: 500;
}

.ft__ct {
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 18px;
}

.ft__lk {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 11px;
  transition: color .25s;
  font-weight: 500;
}
.ft__lk:hover {
  color: rgba(255, 255, 255, .9);
}

.ft__ad {
  font-size: 14px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  font-weight: 500;
}

.ft__bot {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ft__cp {
  font-size: 12px;
  color: rgba(255, 255, 255, .18);
  font-weight: 500;
}

.ft__so svg {
  fill: rgba(255, 255, 255, .2);
  width: 16px;
  height: 16px;
  transition: fill .25s;
}
.ft__so:hover svg {
  fill: #fff;
}


/* ═══════════════════════════════════════════
   Responsive — Footer
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .ft {
    padding: 56px 24px 32px;
  }
  .ft__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .ft__brand {
    grid-column: 1 / -1;
  }
  .ft__bot {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ft__top {
    grid-template-columns: 1fr;
  }
}
