.footer-cta {
  background: radial-gradient(
    100% 140% at center bottom,
    #00b756 0%,
    #000000 70%
  );
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.footer-cta-inner {
  background: linear-gradient(180deg, rgb(35, 35, 35) 0%, rgb(17, 17, 17) 100%);
  border-radius: 100px;
  padding: 120px 80px;
  max-width: 1440px;
  margin: 0 auto;
  color: #fff;
}

.footer-cta h2 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-cta p {
  font-size: 24px;
  color: #aaa;
  margin-bottom: 50px;
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-cta-buttons button {
  width: 215px;
  padding: 20px 32px;
  border: 1px solid #fff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-cta-buttons button:hover {
  background: #fff;
  color: #000;
}

/* ---- Footer ---- */

.footer {
  background: #000;
  color: white;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo {
  max-width: 214px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials img {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .footer-cta-inner {
    padding: 80px 40px;
    border-radius: 60px;
  }

  .footer-cta h2 {
    font-size: 36px;
  }

  .footer-cta p {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .footer-cta-buttons {
    gap: 16px;
  }

  .footer-cta-buttons button {
    width: 180px;
    padding: 16px 24px;
    font-size: 14px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-cta-inner {
    padding: 60px 24px;
    border-radius: 40px;
  }

  .footer-cta {
    padding-top: 80px;
  }

  .footer-cta h2 {
    font-size: 28px;
  }

  .footer-cta p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-cta-buttons button {
    width: 100%;
    max-width: 280px;
  }

  .footer-logo {
    max-width: 160px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-socials a {
    width: 34px;
    height: 34px;
    padding: 6px;
  }

  .footer-socials img {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .footer-cta-inner {
    padding: 40px 16px;
    border-radius: 24px;
    margin: 0 20px;
  }

  .footer-cta h2 {
    font-size: 22px;
  }

  .footer-cta p {
    font-size: 14px;
  }

  .footer-cta-buttons button {
    font-size: 13px;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-socials {
    gap: 10px;
  }
}
