/* ============================================================
   Meriltec — footer.css (v1)
   ============================================================ */

.site-footer { background: var(--bg-deep); color: var(--on-deep-soft); position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(100% 80% at 85% 0%, color-mix(in srgb, var(--accent-bright) 10%, transparent), transparent 60%);
}
.footer__inner { position: relative; padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-deep);
}
.footer__brand .brand__name { color: #fff; }
.footer__tagline { margin-top: 1.1rem; max-width: 34ch; color: var(--on-deep-soft); }

.footer__col h4 {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a, .footer__contact a { color: var(--on-deep-soft); transition: color .2s; }
.footer__col a:hover, .footer__contact a:hover { color: #fff; }

.footer__contact li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.9rem; line-height: 1.45; }
.footer__contact svg { width: 1.05rem; height: 1.05rem; color: var(--accent-bright); flex-shrink: 0; margin-top: 0.2rem; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 2rem; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted);
}
.footer__bottom a:hover { color: #fff; }

/* ---- Floating contact buttons ---- */
.floats {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.floats a {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease);
}
.floats a:hover { transform: translateY(-3px) scale(1.05); }
.floats a svg { width: 1.4rem; height: 1.4rem; }
.float-wa  { background: #25D366; }
.float-tel { background: var(--accent); }
.float-mail{ background: var(--ink); }

@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .floats a { width: 46px; height: 46px; }
}
