.footer {
  position: relative;
  padding: 70px 0 0;
  background: #000000;
  color: #ffffff;
}

/* ---------- link columns ---------- */

.footer-title {
  position: relative;
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  font-synthesis-weight: none;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #ffb703; }

.footer-rule {
  margin: 40px 0 34px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 1;
}

/* ---------- address ---------- */

.footer-address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-logo {
  width: 46px;
  height: auto;
  flex-shrink: 0;
}

.footer-strong {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  font-synthesis-weight: none;
  color: #ffffff;
}

.footer-address p:not(.footer-strong),
.footer-note {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-address a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  /*display: block;*/
  padding: 10px 0;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
}
.footer-address a:hover { color: #ffb703; }

/* ---------- newsletter ---------- */

.footer-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 13px 28px;
  border-radius: 10px;
  background: #673ab7;
  font-size: 14px;
  font-weight: 600;
  font-synthesis-weight: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.25s ease;
}
.footer-subscribe:hover {
  background: #7c3aed;
  color: #ffffff;
}
.footer-follow { margin-top: 4px; }

/* ---------- social ---------- */

.footer-social {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.footer-social a:hover {
  border-color: #ffb703;
  color: #ffb703;
}

/* ---------- badges, one row ---------- */

.footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-badge img {
  width: 54px;
  height: auto;
}

.footer-badge p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-badge p span {
  font-weight: 700;
  font-synthesis-weight: none;
  color: #ffffff;
}

.footer-cert {
  max-width: 190px;
  height: auto;
}

/* ---------- copyright ---------- */

.footer-copyright { padding-bottom: 22px; }

.footer-copyright .footer-rule { margin: 34px 0 20px; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal li {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.75);
  list-style: none;
}

.footer-legal a {
  font-size: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: #ffb703; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
  .footer-links a { font-size: 12.5px; }
}

/* ---------- accordion columns ---------- */

@media (max-width: 767.98px) {

  .footer { padding-top: 46px; }

  .footer-cols { --bs-gutter-y: 0; }

  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .footer-col:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 16px 2px;
    cursor: pointer;
    user-select: none;
  }

  /* chevron */
  .footer-title::after {
    content: "";
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s ease;
  }
  .footer-col.is-open .footer-title::after {
    transform: rotate(225deg) translateY(-2px);
  }

  .footer-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .footer-col.is-open .footer-links {
    max-height: 600px;
    padding-bottom: 14px;
  }

  .footer-links li { margin-bottom: 12px; }
  .footer-links a { font-size: 14px; }

  .footer-rule { margin: 15px 0 26px;border-top:inherit; }

  
  .footer-badges { gap: 16px; }
  .footer-legal { gap: 6px 16px; }
}

@media (max-width: 575.98px) {
   .footer-subscribe { width: 100%; }

  .footer-badge img { width: 46px; }
  .footer-cert { max-width: 150px; }
}