 /* ─── FOOTER ─── */
      .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        background-color: #050914;
        color: white;
        padding: 40px 20px;
      }
      
      #logoImgFooter {
        width: 80px;
      }

      .footer-links {
        display: flex;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 24px;
      }
      .footer-links a {
        color: rgb(240, 240, 240);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: #fff;
      }
      .footer-copy {
        font-size: 11px;
        opacity: 0.45;
      }

      /* ─── FLOATING CTA MOBILE ─── */
      .float-cta {
        display: none;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 50;
        background: var(--green);
        color: #fff;
        border-radius: var(--radius-pill);
        padding: 14px 28px;
        font-size: 14px;
        font-weight: 700;
        font-family: var(--font);
        cursor: pointer;
        box-shadow: 0 8px 28px rgba(7, 95, 63, 0.35);
        border: none;
        white-space: nowrap;
        transition: transform 0.2s;
      }
      @media (max-width: 640px) {
        .float-cta {
          display: block;
        }
      }
      .float-cta:hover {
        transform: translateX(-50%) translateY(-2px);
      }