    footer {
      position: relative;
      background: radial-gradient(circle at top, #1c2331, #0f1216);
      color: white;
      overflow: hidden;
    }

    /* Background image */
    .payglocal-footer-graphic-image {
      position: absolute;
      inset: 0;
      height: 260px;
      background: url("../images/img/footer.png") center/cover no-repeat;
      opacity: 0.18;
      z-index: 1;
    }

    footer * {
      position: relative;
      z-index: 2;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 16px;
    }

    /* CTA */
    .footer-cta {
      text-align: center;
      padding: 14rem 0 4rem;
    }

    .footer-cta h3 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .footer-cta p {
      color: #9aa2af;
      margin-bottom: 20px;
    }

    .footer-cta button {
      background: #0d6efd;
      border: none;
      color: #fff;
      padding: 10px 26px;
      border-radius: 999px;
      cursor: pointer;
      font-size: 15px;
    }

    /* Footer grid */
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      padding: 60px 0;
    }

    .footer-col {
      padding-right: 14px;
    }

    @media (min-width: 992px) {
      .footer-col.br {
        border-right: 1px dashed rgba(255, 255, 255, 0.15);
      }

      .footer-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    /* Titles */
    .footer-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      cursor: pointer;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 12px;
      font-size: 14px;
    }

    .menu-chevron {
      width: 8px;
      height: 8px;
      border-right: 2px solid #7ea7ff;
      border-bottom: 2px solid #7ea7ff;
      transform: rotate(45deg);
      transition: 0.3s;
    }

    .footer-title.active .menu-chevron {
      transform: rotate(225deg);
    }

    /* Links */
    .footer-links {
      list-style: none;
      display: none;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-links a {
      color: #b9c0cc;
      font-size: 14px;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #4fa3ff;
      padding-left: 6px;
    }

    .footer-links.show {
      display: block;
    }

    /* Company card */
    .company-card {
      margin-top: 30px;
      padding: 28px 20px;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(to right, rgba(255, 255, 255, 0.04), transparent);
      border-radius: 16px;
    }

    .company-heading {
      font-weight: 700;
      margin-bottom: 14px;
    }

    .company-info p {
      font-size: 14px;
      color: #b8c0cc;
      margin-bottom: 6px;
    }

    .company-info strong {
      color: #fff;
    }

    .company-info a {
      color: #0d6efd;
      text-decoration: none;
    }

    /* Certificates */
    .footer-cert {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .footer-cert img {
      height: 80px;
      background: #fff;
      padding: 6px 10px;
      border-radius: 8px;
      filter: grayscale(100%);
      transition: 0.3s;
    }

    .footer-cert img:hover {
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    /* Copyright */
    .footer-copyright {
      margin-top: 26px;
      padding: 18px 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      font-size: 13px;
      color: #aab0bb;
    }

    @media (max-width: 468px) {
      .footer-cta {
        padding-top: 9rem;
      }

      .payglocal-footer-graphic-image {
        height: 160px;
      }
    }