/* ============================================================
   Pro ASIC Miner Repair LLC — footer.css
   ============================================================ */

/* ============================================================
   17. FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-brand { max-width: 340px; }
.footer-logo-img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 360px;
}
@media (max-width: 768px) {
  .footer-logo-img { height: 48px; max-width: 300px; }
}
@media (max-width: 390px) {
  .footer-logo-img { height: 44px; max-width: 270px; }
}
.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contacts a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-contacts a:hover { color: var(--white); }

.footer-nav {
  display: flex;
  gap: 2.75rem;
}
.fn-col strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.9rem;
}
.fn-col ul { display: flex; flex-direction: column; gap: 0.42rem; }
.fn-col a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s ease;
}
.fn-col a:hover { color: rgba(33,150,243,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.1rem 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.52);
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { flex-wrap: wrap; gap: 1.75rem 2.5rem; }
}
@media (max-width: 480px) {
  .footer-nav { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .footer-inner { padding-top: 2rem; padding-bottom: 2rem; }
}

@media (max-width: 768px) {
  #site-footer { padding-bottom: 0; }
}

/* Social links */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.1rem;
}
.fsoc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.24rem 0.6rem;
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.fsoc-icon {
  opacity: 0.48;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.fsoc-link:hover {
  color: rgba(144,202,249,0.82);
  background: rgba(33,150,243,0.07);
  border-color: rgba(33,150,243,0.24);
  box-shadow: 0 0 7px rgba(33,150,243,0.09);
}
.fsoc-link:hover .fsoc-icon { opacity: 0.72; }

/* Status indicator */
.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.fst-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(76,175,80,0.72);
  box-shadow: 0 0 5px rgba(76,175,80,0.32);
  flex-shrink: 0;
}
.fst-text {
  font-family: 'Courier New', monospace;
  font-size: 0.64rem;
  font-weight: 500;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.05em;
}


/* ============================================================
   FINAL CTA — Homepage pre-footer CTA block
   ============================================================ */
.final-cta {
  background: #0b2340;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(33,150,243,0.12);
}
.final-cta h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  color: var(--white);
}
.final-cta p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
  line-height: 1.72;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .final-cta {
    padding: 2.5rem 0 5rem;
  }
  .final-cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .final-cta-actions .btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
    justify-content: center;
  }
}
