/* ================================================================
   FOOTER
================================================================ */
.gb-footer {
  background: #030D1C;
  padding: 80px 0 0;
  border-top: 1px solid rgba(0,180,198,.12);
}
.gb-footer__logo { margin-bottom: 20px; }
.gb-footer__logo img { height: 40px; }
.gb-footer__text { font-size: 14px; color: rgba(255,255,255,.40); line-height: 1.75; margin-bottom: 24px; }
.gb-footer__social { display: flex; gap: 10px; }
.gb-footer__social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.50); font-size: 14px; text-decoration: none;
  transition: all .22s;
}
.gb-footer__social a:hover { background: var(--gb-teal); border-color: var(--gb-teal); color: #fff; }
.gb-footer__heading {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gb-teal);
  margin-bottom: 20px; display: block;
}
.gb-footer__links { list-style: none; padding: 0; }
.gb-footer__links li { margin-bottom: 10px; }
.gb-footer__links a {
  font-size: 14px; color: rgba(255,255,255,.45); text-decoration: none;
  transition: color .2s; display: inline-flex; align-items: center; gap: 7px;
}
.gb-footer__links a::before { content: '→'; font-size: 12px; opacity: .5; }
.gb-footer__links a:hover { color: var(--gb-teal); }
.gb-footer__links a:hover::before { opacity: 1; }
.gb-footer__newsletter input {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10); border-radius: 8px;
  padding: 12px 16px; color: #fff; font-family: var(--ff-body); font-size: 14px;
  outline: none; margin-bottom: 10px; transition: border-color .25s;
}
.gb-footer__newsletter input:focus { border-color: var(--gb-teal); }
.gb-footer__newsletter input::placeholder { color: rgba(255,255,255,.25); }
.gb-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; margin-top: 60px; }
.gb-footer__copy { font-size: 13px; color: rgba(255,255,255,.28); text-align: center; }
.gb-footer__copy a { color: var(--gb-teal); text-decoration: none; }
