.footer {
  background: linear-gradient(
    to bottom,
    var(--g2, #e2ff00),
    var(--g1, #1db100)
  );
  color: var(--color-white, #fff);
  padding: 60px 24px 40px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.footer-col h2,
.footer-col h4 {
  margin: 0 0 12px;
  font-weight: 800;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col a {
  text-decoration: none;
  color: var(--color-brand-text, #0b2b00);
  font-weight: 600;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 12px;
}

.footer-subscribe {
  margin: 32px 0;
  text-align: center;
}

.footer-subscribe form {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-subscribe input {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  min-width: 220px;
}

.footer-subscribe button {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background: var(--color-brand-text, #0b2b00);
  color: var(--color-white, #fff);
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-bottom .legal-links a {
  color: var(--color-brand-text, #0b2b00);
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom .legal-links a:hover {
  text-decoration: underline;
}

.social {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.social span {
  font-weight: 700;
}

.social a {
  text-decoration: none;
  color: var(--color-brand-text, #0b2b00);
  font-weight: 700;
}
