@charset "UTF-8";
* {
  font-family: "Inter", sans-serif;
}

.text-heading-xl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}
.text-heading-lg {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
.text-heading-md {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
}
.text-heading-sm {
  font-size: 1.15rem;
  font-weight: 600;
  color: #000;
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #475569;
}
.text-body-md, .text-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}
.text-body-sm {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #475569;
}

.btn-signin {
  border-radius: 6px !important;
  color: #1a1a1a !important;
  background: #fff !important;
  padding: 8px 20px !important;
}
.btn-signup {
  border-radius: 6px !important;
  background: #2B59DA !important;
  color: #fff !important;
  padding: 8px 20px !important;
}
.btn-download {
  border-radius: 6px !important;
  background: #2B59DA !important;
  color: #fff !important;
  padding: 8px 20px !important;
}
.btn-pricing {
  border-radius: 25px !important;
  padding: 10px 20px !important;
  font-weight: 500 !important;
  width: 100%;
}

header .navbar .nav-link {
  color: #475569;
}
header .navbar .nav-link.active {
  color: #000;
}

.thumbnail-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 40px;
  background: linear-gradient(45deg, #B133F1, #4C47E6, #C35284, #E95456, #DE4D7D);
  background-size: 600% 600%;
  animation: gradientShift 10s ease infinite;
}

.store-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border: 1px solid #D9D9D9;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  gap: 10px;
}
.store-btn img {
  height: 20px;
  margin-right: 8px;
}
.store-btn:hover {
  background-color: #000;
  color: #fff;
}
.info-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 2rem 0;
}
.info-box p, .info-box h5 {
  margin-bottom: 0;
}
.info-box .icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(248, 147, 31, 0.1);
  border-radius: 12px;
  padding: 12px;
}

.showcase-wrapper {
  position: relative;
}
.showcase-bg {
  background: #F8931F;
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-wrapper::before {
  content: "";
  width: 80%;
  aspect-ratio: 1/1;
  background-color: #F8931F;
  position: absolute;
  border-radius: 50%;
}
.phone-wrapper img {
  position: relative;
  z-index: 2;
  width: 70%;
  height: auto;
}

.circle-dash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  animation: rotate 8s linear infinite;
  z-index: 1;
}

.steps-wrapper .step-item {
  display: flex;
  gap: 10px;
  opacity: 0.6;
  cursor: pointer;
  transition: all ease 0.25s;
}
.steps-wrapper .step-item.active {
  opacity: 1;
}
.steps-wrapper .step-item .step-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 80px !important;
}
.steps-wrapper .step-item .step-point .point-line {
  width: 1px;
  height: 100%;
  background: #D9D9D9;
}
.steps-wrapper .step-item .step-point .point-circle {
  width: 15px;
  height: 15px;
  display: block;
  background: #D9D9D9;
  border-radius: 50%;
}
.steps-wrapper .step-item.active .step-point .point-line {
  margin-top: 10px;
}
.steps-wrapper .step-item.active .step-point .point-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30px;
  height: 30px;
  background-color: #F8931F;
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
}
.steps-wrapper .step-item.active .step-point .point-circle::after, .steps-wrapper .step-item.active .step-point .point-circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #F8931F;
  border-radius: 50%;
  z-index: -1;
  animation: grow 1s ease-in-out infinite;
}
.steps-wrapper .step-item.active .step-point .point-circle::after {
  background: rgba(248, 147, 31, 0.4);
}
.steps-wrapper .step-item.active .step-point .point-circle::before {
  background: rgba(248, 147, 31, 0.6);
  animation-delay: -0.5s;
}
.steps-wrapper .step-item .step-content p {
  margin-bottom: 0;
}
.steps-wrapper .step-item:not(:last-child) .step-content {
  padding-bottom: 40px;
}

.pricing-card {
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: start;
  transition: all 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.pricing-card.featured {
  background-color: #2B59DA;
  color: #fff;
  transform: scale(1.05);
}
.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.06);
}
.pricing-card.featured ul li i,
.pricing-card.featured p,
.pricing-card.featured h2 {
  color: #fff;
}
.pricing-card.featured .btn-pricing {
  background: #fff;
  color: #2B59DA;
}
.pricing-card h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
}
.pricing-card h2 span {
  font-weight: 400;
}
.pricing-card ul {
  border-top: 1px solid #D9D9D9;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  padding-top: 20px;
}
.pricing-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.pricing-card ul li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-image: linear-gradient(0deg, #427E2F, #57AB46);
  color: #fff;
  margin-right: 8px;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "+" !important;
  font-size: 1.25rem;
  font-weight: bold;
  background-image: none !important;
  transform: none !important;
  color: #000;
}
.accordion-button:not(.collapsed)::after {
  content: "−" !important;
}

.cta-section-wrapper {
  position: relative;
  height: 250px;
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-radius: 30px;
  padding: 15px;
  overflow: hidden;
}
.cta-section-wrapper .store-btn {
  color: #fff;
}
.cta-section-wrapper .store-btn:hover {
  color: #000;
  background-color: white;
}

.backdrop-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
}

.footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 2rem 5%;
  font-family: "Inter", sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo {
  width: 240px;
  height: auto;
}
.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.footer-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.footer-nav a:hover {
  color: #F8931F;
}
.footer-divider {
  border: none;
  border-top: 1px solid #060606;
  margin: 1.5rem 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #ccc;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
}
.footer-links a:hover {
  color: #F8931F;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
.rounded-lg {
  border-radius: 20px;
}

@media (max-width: 768px) {
  .phone-wrapper {
    margin-bottom: 20px;
    overflow: hidden;
  }
  .info-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    margin: 0 0 20px;
  }
  .text-heading-xl {
    font-size: 2rem;
  }
  .text-body-md, p {
    font-size: 0.875rem;
  }
  .gap-4 {
    gap: 0.5rem !important;
  }
  .store-btn {
    padding: 6px 15px;
    font-size: 14px;
  }
  .rounded-lg {
    border-radius: 0;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-card h2 {
    font-size: 2rem;
  }
  .pricing-card:hover, .pricing-card.featured:hover {
    transform: translateY(-8px) scale(1);
  }
  .btn-pricing {
    padding: 5px 10px !important;
  }
}
@media (max-width: 576px) {
  .footer-container,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
/* Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.contact-section {
  padding: 5rem 0;
}
.contact-section .contact-container {
  padding: 0 2rem;
}
.contact-section .contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.contact-section .contact-content p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.contact-section .contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.contact-section .contact-form .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.contact-section .contact-form .form-group input, .contact-section .contact-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}
.contact-section .contact-form .form-group input:focus, .contact-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #F8931F;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(248, 147, 31, 0.1);
}
.contact-section .contact-form .form-group input:not(:-moz-placeholder) + label, .contact-section .contact-form .form-group textarea:not(:-moz-placeholder) + label {
  transform: translateY(-1.5rem) scale(0.85);
  background-color: white;
  padding: 0 0.5rem;
  color: #1a1a1a;
}
.contact-section .contact-form .form-group input:focus + label, .contact-section .contact-form .form-group input:not(:placeholder-shown) + label, .contact-section .contact-form .form-group textarea:focus + label, .contact-section .contact-form .form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem) scale(0.85);
  background-color: white;
  padding: 0 0.5rem;
  color: #1a1a1a;
}
.contact-section .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form .form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #64748b;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left center;
}
.contact-section .contact-form .submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #F8931F;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-form .submit-btn:hover {
  background-color: rgb(230.9818181818, 126.8337662338, 7.2181818182);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 147, 31, 0.2);
}
.contact-section .contact-form .submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  .contact-section .contact-form {
    padding: 1.5rem;
  }
}
.navbar-toggler:focus {
  box-shadow: none !important;
}

.overflow-hidden-x {
  overflow-x: hidden;
}/*# sourceMappingURL=style.css.map */