/* [project]/app/privacy/privacy.module.css [app-client] (css) */
@keyframes privacy-module__VTbb1a__floatY {
  0% {
    opacity: .9;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-6px);
  }

  100% {
    opacity: .9;
    transform: translateY(0);
  }
}

.privacy-module__VTbb1a__page {
  background: linear-gradient(#f8fafc 0%, #e0f2fe 100%);
  min-height: 100vh;
}

.privacy-module__VTbb1a__hero {
  text-align: center;
  padding: 120px 0 40px;
}

.privacy-module__VTbb1a__title {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 800;
}

.privacy-module__VTbb1a__subtitle {
  color: #64748b;
  margin-top: .5rem;
}

.privacy-module__VTbb1a__content {
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 80px;
  display: grid;
}

.privacy-module__VTbb1a__card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 20px -10px #00000014;
}

.privacy-module__VTbb1a__cardTitle {
  color: #1e293b;
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.privacy-module__VTbb1a__paragraph {
  color: #475569;
  line-height: 1.8;
}

@media (min-width: 992px) {
  .privacy-module__VTbb1a__content {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-module__VTbb1a__card:first-child, .privacy-module__VTbb1a__card:nth-child(6) {
    grid-column: span 2;
  }
}

/* [project]/components/landing/Navbar/Navbar.module.css [app-client] (css) */
.Navbar-module__atfZbq__navbar {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 50;
  background-color: #fffffff2;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 6px -1px #0000000d;
}

.Navbar-module__atfZbq__container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
}

.Navbar-module__atfZbq__logo {
  gap: .5rem;
  font-family: Cairo, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
}

.Navbar-module__atfZbq__logoOrange {
  color: #f97316;
}

.Navbar-module__atfZbq__logoBlue {
  color: #38bdf8;
}

.Navbar-module__atfZbq__logoImg {
  width: auto;
  height: 70px;
  display: block;
}

.Navbar-module__atfZbq__links {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.Navbar-module__atfZbq__link {
  color: #475569;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}

.Navbar-module__atfZbq__link:hover {
  color: #f97316;
}

.Navbar-module__atfZbq__actions {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.Navbar-module__atfZbq__downloadBtn {
  color: #1e293b;
  cursor: pointer;
  background-color: #fcd34d;
  border: none;
  border-radius: 9999px;
  align-items: center;
  padding: .75rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, background-color .2s;
  display: inline-flex;
  box-shadow: 0 4px 14px #fcd34d63;
}

.Navbar-module__atfZbq__downloadBtn:hover {
  background-color: #fbbf24;
  transform: translateY(-2px);
}

.Navbar-module__atfZbq__mobileMenuBtn {
  color: #1e293b;
  cursor: pointer;
  background: none;
  border: none;
  display: none;
}

@media (max-width: 768px) {
  .Navbar-module__atfZbq__links {
    background-color: #fff;
    flex-direction: column;
    padding: 1.5rem;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 10px 15px -3px #0000001a;
  }

  .Navbar-module__atfZbq__links.Navbar-module__atfZbq__open {
    display: flex;
  }

  .Navbar-module__atfZbq__mobileMenuBtn {
    display: block;
  }

  .Navbar-module__atfZbq__downloadBtn {
    display: none;
  }
}

/* [project]/components/landing/Footer/Footer.module.css [app-client] (css) */
.Footer-module__1hmjCG__footer {
  color: #fff;
  background-color: #1e293b;
  padding: 20px;
}

.Footer-module__1hmjCG__container {
  max-width: 1200px;
  margin: 0 auto;
}

.Footer-module__1hmjCG__grid {
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  display: grid;
}

.Footer-module__1hmjCG__brand {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.Footer-module__1hmjCG__logo {
  gap: .5rem;
  font-family: Cairo, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  display: flex;
}

.Footer-module__1hmjCG__logoOrange {
  color: #f97316;
}

.Footer-module__1hmjCG__logoBlue {
  color: #38bdf8;
}

.Footer-module__1hmjCG__description {
  color: #94a3b8;
  max-width: 300px;
  line-height: 1.6;
}

.Footer-module__1hmjCG__socials {
  gap: 1rem;
  display: flex;
}

.Footer-module__1hmjCG__socialLink {
  color: #94a3b8;
  transition: color .3s;
}

.Footer-module__1hmjCG__socialLink:hover {
  color: #fcd34d;
}

.Footer-module__1hmjCG__linksColumn {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.Footer-module__1hmjCG__columnTitle {
  color: #fff;
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.Footer-module__1hmjCG__link {
  color: #94a3b8;
  text-decoration: none;
  transition: color .3s;
}

.Footer-module__1hmjCG__link:hover {
  color: #f97316;
}

.Footer-module__1hmjCG__downloadButtons {
  flex-flow: row;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.Footer-module__1hmjCG__bottomActions .Footer-module__1hmjCG__downloadButtons {
  margin-top: .5rem;
}

.Footer-module__1hmjCG__storeBtn {
  color: #fff;
  cursor: pointer;
  text-align: right;
  white-space: nowrap;
  background-color: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: .6rem;
  flex: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  transition: background-color .3s;
  display: flex;
}

.Footer-module__1hmjCG__storeBtn:hover {
  background-color: #fff3;
}

.Footer-module__1hmjCG__storeIcon {
  font-size: 1.5rem;
}

.Footer-module__1hmjCG__storeIconImg {
  object-fit: contain;
  width: 22px;
  height: 22px;
}

.Footer-module__1hmjCG__storeText {
  flex-direction: column;
  display: flex;
}

.Footer-module__1hmjCG__storeText span {
  color: #94a3b8;
  font-size: .7rem;
}

.Footer-module__1hmjCG__storeText strong {
  font-size: .9rem;
  font-weight: 700;
}

.Footer-module__1hmjCG__bottom {
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2.25rem;
  display: grid;
}

.Footer-module__1hmjCG__footerSideLogo {
  justify-content: flex-start;
  display: flex;
}

.Footer-module__1hmjCG__footerLogo {
  object-fit: contain;
  width: 140px;
  height: auto;
}

.Footer-module__1hmjCG__bottomCenter {
  text-align: center;
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.Footer-module__1hmjCG__bottomCenter .Footer-module__1hmjCG__socials {
  justify-content: center;
  margin-top: .25rem;
}

.Footer-module__1hmjCG__centerLinks {
  justify-content: center;
  align-items: center;
  gap: .75rem;
  display: inline-flex;
}

.Footer-module__1hmjCG__divider {
  color: #94a3b8;
  opacity: .8;
}

.Footer-module__1hmjCG__bottomActions {
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.Footer-module__1hmjCG__bottomActions .Footer-module__1hmjCG__socials {
  justify-content: center;
  align-self: center;
  margin-top: .25rem;
}

.Footer-module__1hmjCG__soonBadge {
  color: #fff;
  background-color: #f97316;
  border-radius: 9999px;
  padding: .15rem .5rem;
  font-size: .7rem;
  line-height: 1;
  animation: 1.8s ease-in-out infinite Footer-module__1hmjCG__floatY;
}

@keyframes Footer-module__1hmjCG__floatY {
  0% {
    opacity: .85;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }

  100% {
    opacity: .85;
    transform: translateY(0);
  }
}

.Footer-module__1hmjCG__copyright {
  color: #94a3b8;
  font-size: .875rem;
}

.Footer-module__1hmjCG__legalLinks {
  gap: 1.5rem;
  display: flex;
}

.Footer-module__1hmjCG__legalLink {
  color: #94a3b8;
  font-size: .875rem;
  text-decoration: none;
  transition: color .3s;
}

.Footer-module__1hmjCG__legalLink:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .Footer-module__1hmjCG__bottom {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .Footer-module__1hmjCG__footerSideLogo {
    justify-content: center;
  }

  .Footer-module__1hmjCG__bottomActions {
    align-items: center;
  }

  .Footer-module__1hmjCG__bottomActions .Footer-module__1hmjCG__downloadButtons {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .Footer-module__1hmjCG__bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .Footer-module__1hmjCG__downloadButtons {
    justify-content: center;
  }

  .Footer-module__1hmjCG__bottomActions .Footer-module__1hmjCG__downloadButtons {
    margin-top: 0;
  }
}

/*# sourceMappingURL=_b577ad16._.css.map*/