.site-footer { background: var(--dark); color: #aaa; margin-top: auto; }

/* BONUS BANNER */
.footer-bonus-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2500 100%);
  border-top: 2px solid var(--yellow);
  padding: 1.4rem 0;
}
.footer-bonus-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-bonus-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-bonus-text strong {
  display: block;
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 600;
}
.footer-bonus-text span {
  display: block;
  font-size: 0.82rem;
  color: #bbb;
  margin-top: 0.1rem;
}

/* MAIN FOOTER */
.footer-main { padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

/* BRAND */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  flex-shrink: 0;
}
.footer-logo-name {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
.footer-logo-name span { color: var(--yellow); }
.footer-logo-sub { display: block; font-size: 0.62rem; color: #666; letter-spacing: 0.04em; margin-top: 1px; }

.footer-about { font-size: 0.82rem; line-height: 1.65; color: #888; margin-bottom: 1.2rem; }

.footer-socials { display: flex; gap: 0.5rem; }
.social-btn {
  width: 34px;
  height: 34px;
  background: #2a2a2a;
  border: 1px solid #333;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-btn:hover { background: var(--yellow-bg); color: var(--yellow); border-color: rgba(245,197,24,0.3); }

/* COLS */
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #2a2a2a;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.82rem;
  color: #888;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contacts { gap: 0.75rem !important; }
.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #888;
}
.footer-contacts svg { flex-shrink: 0; margin-top: 2px; color: var(--yellow); }
.footer-contacts a { color: #888; transition: color 0.2s; }
.footer-contacts a:hover { color: var(--yellow); }

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #222;
  padding: 1rem 0;
  font-size: 0.75rem;
  color: #555;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: #555; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bonus-inner { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 560px) {
  .footer-bonus-inner {
    gap: 1.25rem;
  }

  .footer-bonus-text {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bonus-inner .btn {
    width: 100%;
  }

  .footer-main { padding: 2.5rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
