/* SVG logos have no intrinsic size unless width/height are set.
   Theme only applies max-width/max-height, which collapses the image. */
header.header .logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-height: 36px;
  max-width: 180px;
}

/* -------------------------------------------------------------------------
   Footer — 2026 layout
   ------------------------------------------------------------------------- */
footer.footer {
  --footer-bg: #101211;
  --footer-ink: #f4f5f4;
  --footer-muted: #9aa19a;
  --footer-line: rgba(244, 245, 244, 0.08);
  --footer-green: #39b44a;
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1200px 280px at 12% -10%, rgba(57, 180, 74, 0.12), transparent 60%),
    var(--footer-bg);
  color: var(--footer-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--footer-line);
}

footer.footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--footer-green) 22%, var(--footer-green) 78%, transparent 100%);
  opacity: 0.85;
}

footer.footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(140px, 1fr));
  gap: 48px 40px;
  padding: 72px 0 48px;
}

footer.footer .footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

footer.footer .footer-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
}

footer.footer .footer-tagline {
  max-width: 28ch;
  margin: 0 0 12px;
  color: #d8dcd8;
  font-size: 0.95rem;
  line-height: 1.55;
}

footer.footer .footer-address {
  margin: 0 0 22px;
  color: var(--footer-muted);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

footer.footer .footer-heading {
  margin: 6px 0 18px;
  color: var(--footer-ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

footer.footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer.footer .footer-links li + li {
  margin-top: 10px;
}

footer.footer .footer-links a,
footer.footer .nav-link {
  display: inline-block;
  padding: 0;
  color: var(--footer-muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease, transform 0.2s ease;
}

footer.footer .footer-links a:hover,
footer.footer .footer-links a:focus {
  color: var(--footer-ink);
  text-decoration: none;
}

footer.footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

footer.footer .footer-social .list-inline-item {
  margin: 0;
}

footer.footer .footer-social .btn,
footer.footer .footer-social .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--footer-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--footer-ink);
  font-size: 0.85rem;
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

footer.footer .footer-social .btn:hover,
footer.footer .footer-social .btn-icon:hover {
  background: rgba(57, 180, 74, 0.14);
  border-color: rgba(57, 180, 74, 0.55);
  color: #fff;
}

footer.footer .footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  padding: 22px 0;
  border-top: 1px solid var(--footer-line);
}

footer.footer .footer-badge {
  display: block;
  height: 40px;
  width: auto;
}

footer.footer .footer-badge-nominet {
  mix-blend-mode: lighten;
}

footer.footer .footer-badge-ico {
  border-radius: 8px;
}

footer.footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--footer-line);
}

footer.footer .copyright {
  margin: 0;
  color: #7d847d;
  font-size: 0.78rem;
  text-align: left;
}

footer.footer .footer-credit {
  color: #c5cbc5;
  text-decoration: none;
}

footer.footer .footer-credit:hover,
footer.footer .footer-credit:focus {
  color: #fff;
  text-decoration: none;
}

footer.footer .footer-company-no {
  display: inline;
}

footer.footer .footer-recaptcha {
  display: block;
  margin-top: 6px;
  color: #6d746d;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

footer.footer .footer-locale {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--footer-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #d8dcd8;
  font-size: 0.78rem;
  line-height: 1.4;
}

footer.footer .footer-locale:hover,
footer.footer .footer-locale:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

@media (max-width: 991.98px) {
  footer.footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
    padding: 56px 0 36px;
  }

  footer.footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  footer.footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 28px;
  }

  footer.footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  footer.footer .footer-links a,
  footer.footer .footer-social .btn,
  footer.footer .footer-social .btn-icon {
    transition: none;
  }
}
