/* Reset and Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  overflow-x: hidden;
  margin-top: 30px;
}
 
/* Header */
.header {
  padding: 40px 0;
  background: #fff;
}
.header__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: min(80px, 5vw);
}
.header__content { 
  margin-bottom: 15px;
}
.logo {
  flex-shrink: 0;
}
.logo__img {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 24px;
}
.header__intro {
  flex: 1;
  max-width: 500px;
}
.header__title {
  font-size: 48px;
  font-weight: 600;
  color: #F05656;
  margin-bottom: 16px;
  line-height: 1.2;
}
.header__desc {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}
 
/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 60px;
  /* background: linear-gradient(135deg, rgba(240, 86, 86, 0.05) 0%, rgba(185, 34, 124, 0.05) 100%); */
  overflow: hidden;
  width: 100%;
}
.hero__bg {
  position: absolute;
  top: 40px;
  left: 3%;
  right: 3%;
  bottom: 0;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(240, 86, 86, 0.1) 0%, rgba(185, 34, 124, 0.1) 100%);
  border-radius: 24px;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(80px, 5vw);
  align-items: center;
}
.hero__text {
  max-width: 600px;
}
.hero__headline {
  font-family: 'Poppins', sans-serif;
  font-size: 59px !important;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #000;
}
.hero__subtext {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
  line-height: 1.4;
  max-width: 520px;
}
.store__buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.store__btn {
  height: 60px;
  width: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.store__btn:hover {
  transform: translateY(-2px);
}
 
/* Hero Phones */
.hero__phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.phone {
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}
.phone--left {
  transform: translateY(40px) scale(0.9);
}
.phone--right {
  transform: translateY(-20px);
}
.phone__frame {
    background: #000;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
}
.phone__screen {
    width: 100%;
    height: 100%;
    border-radius: 27px;
    background: #fff;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.phone__frame img {
    position: relative;
    z-index: 1;
}
.phone__mockup {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 27px;
}
 
/* Section Styles */
.section {
  /* padding: 100px 0; */
  width: 100%;
  overflow-x: hidden;
}
.section__header {
  text-align: center;
  margin-bottom: 40px;
}
.section__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}
.section__subtitle {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}
 
/* Features Section */
.features {
  background: #FAFAFA;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature__card {
  background: #FBECF0;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 600px;
}
.feature__title {
  font-size: 32px;
  font-weight: 600;
  color: #54545400;
  margin-bottom: 20px;
  background: -webkit-linear-gradient(#e31414, #e10c71f2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #54545400;
}
.feature__desc {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
}
.feature__mockup {
  position: relative;
}
.feature__phone {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 200px;
    overflow: hidden;
    margin: auto;
    border-radius: 40px;
}
img.frame {
    z-index: 1;
    position: relative;
}
.feature__screen {
    position: absolute;
    top: 13px;
    max-width: 180px;
    left: 6px;
}
 
/* Feature carousel (inside phone frame) */
.feature__screen .swiper {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
}
.feature__screen .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}
.feature__mockup .swiper-button-next,
.feature__mockup .swiper-button-prev {
  width: 24px;
  height: 24px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  backdrop-filter: blur(2px);
}
.feature__mockup .swiper-button-next:after,
.feature__mockup .swiper-button-prev:after {
  font-size: 12px;
  color: #fff;
}
.feature__mockup .swiper-pagination-bullets .swiper-pagination-bullet {
  background: rgba(0,0,0,0.3);
}
.feature__mockup .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
}
 
/* Features section carousel */
.features__grid.swiper { display: block; }
.features__grid.swiper { max-width: 1000px; margin: 0 auto; }
.features__grid.swiper .swiper-wrapper { align-items: stretch; }
.features__grid.swiper .swiper-slide { display: flex; }
.features__grid.swiper .feature__card { width: 100%; }
 
/* Hide section-level carousel UI (arrows and dots) per design */
.features .swiper-button-next,
.features .swiper-button-prev,
.features .swiper-pagination { display: none !important; }
 
/* How It Works */
.how-it-works {
  background: #FAFAFA;
}
 
.how-it-works__content {
  max-width: 1200px;
  margin: 0 auto;
}
 
.steps__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}
 
.step__item {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
 
.step__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
}
 
.step__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
 
.step__number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px auto;
  box-shadow: 0 8px 20px rgba(240, 86, 86, 0.3);
}
 
.step__content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.3;
}
 
.step__content p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  margin: 0;
}
 
/* .video__section {
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
} */
 
.video__title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.3;
}
 
/* .video__container {
  max-width: 800px;
  margin: 0 auto;
} */
 
.video__thumbnail {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}
 
.video__thumbnail:hover {
  transform: scale(1.02);
}
 
.video__image {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* makes image cover full frame */
  object-position: center; /* centers image */
  display: block;
}
 
.video__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
 
.video__play-button:hover {
  background: rgba(240, 86, 86, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}
 
.play__icon {
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
 
.video__description {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 24px;
  line-height: 1.5;
}
 
/* Video Modal */
.video__modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}
 
.video__modal-content {
  position: relative;
  margin: 2% auto;
  width: 90%;
  max-width: 1000px;
  height: 90vh;
  max-height: 600px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
 
.video__close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
 
.video__close:hover {
  background: rgba(240, 86, 86, 0.8);
}
 
.video__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
 
.video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Pre-footer CTA banner */
.prefooter-cta {
  padding: 40px 0 30px;
}
.prefooter__content {
  max-width: 1100px;
  margin: 0 auto;
}
.prefooter__image {
  width: 100%;
  height: auto;
  display: block;
}
.video__cta {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.play__button {
  width: 120px;
  height: 120px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}
.play__button:hover {
  transform: scale(1.05);
}
.play__button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.video__label {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
 
/* Updates Section */
.updates {
  background: #FAFAFA;
}
.updates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.update__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.update__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.update__image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 600;
}
.update__content {
  padding: 30px;
}
.update__title {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.4;
}
 
/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.testimonial {
  background: #FAFAFA;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}
.testimonial--featured {
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
  color: white;
}
.testimonial__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.testimonial__info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.testimonial__info p {
  font-size: 14px;
  opacity: 0.8;
}
.testimonial__text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}
 
/* FAQ Section */
.faq {
  background: #FAFAFA;
}
.faq__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
  justify-items: center;
}
.faq__left { max-width: 800px; margin: 0 auto; }
.faq__left h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}
.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 0;
}
.faq__question {
  font-size: 18px;
  font-weight: 500;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  font-family: 'Poppins', sans-serif !important;
}
.faq__plus {
  font-size: 20px;
  font-weight: 600;
  color: #F05656;
  transition: transform 0.3s ease;
}
.faq__question.active .faq__plus {
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 18px; /* match question size */
  color: #000; /* match question color */
  line-height: 1.5;
  padding: 0 0 0 0;
}
.faq__answer.active {
  max-height: 500px;
  padding: 16px 0 0 0;
}
 
.faq__section {
  margin-bottom: 40px;
}
 
.faq__section-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F05656;
  display: inline-block;
}
 
.faq__answer ol {
  margin: 16px 0;
  padding-left: 24px;
}
 
.faq__answer ol li {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}
 
.faq__answer ul {
  margin: 8px 0;
  padding-left: 20px;
}
 
.faq__answer ul li {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif !important;
}
 
.faq__explanation {
  background: #f8f9fa;
  border-left: 4px solid #F05656;
  padding: 16px;
  margin: 12px 0;
  border-radius: 4px;
}
 
.faq__explanation strong {
  color: #000;
  font-weight: 600;
}
 
.faq__explanation ul {
  margin-top: 8px;
}
 
.faq__explanation ul li {
  margin-bottom: 6px;
}
.faq__right {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
}
.faq__cta h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.faq__cta p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta__form {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.cta__input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 16px;
  background: #FAFAFA;
}
.cta__button {
  padding: 16px 32px;
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
 
.footer {
    background: linear-gradient(90deg, #f15a29 0%, #d6249f 100%);
    color: #fff;
    padding: 40px 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .footer-logo {
    height: 35px;
    margin-bottom: 20px;
  }
  
  .footer-middle h4,
  .footer-right h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .footer-middle p a,
  .footer-right p,
  .footer-right label {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    opacity: 0.9;
  }
  
  .footer-middle p a:hover {
    opacity: 1;
  }
  
  .newsletter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .newsletter input {
    padding: 8px 12px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    width: 180px;
  }
  
  .newsletter input::placeholder {
    color: #fff;
    opacity: 0.8;
  }
  
  .newsletter button {
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .checkbox {
    font-size: 12px;
    opacity: 0.9;
  }
  
  .checkbox input {
    margin-right: 6px;
  }
  
  hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 30px 0 10px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.9;
  }
  
  .footer-links a:hover {
    opacity: 1;
  }
  
  .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .social-icons span {
    font-size: 13px;
  }
  
  .social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
  }
  
  .social-icons a:hover {
    opacity: 0.8;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  
    .newsletter {
      justify-content: center;
    }
  }
  
.newsletter {
  margin-bottom: 40px;
}
 
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .social-icons span {
    font-size: 13px;
    font-weight: 400;
    margin-right: 6px;
  }
  
  .social-icons a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .social-icons a:hover img {
    opacity: 0.8;
    transform: scale(1.1);
  }
  
.newsletter h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  max-width: 400px;
}
.newsletter__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  color: white;
  font-size: 14px;
}
.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter__button {
  padding: 12px 24px;
  background: white;
  color: #F05656;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}
.newsletter__consent {
  font-size: 12px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  margin: 40px 0;
}
.footer__bottom {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.footer__contact h5 {
  font-weight: 600;
  margin-bottom: 8px;
}
.footer__contact p {
  font-size: 14px;
  opacity: 0.8;
}
.footer__links {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.footer__links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social__icons {
  display: flex;
  gap: 12px;
}
.social__icon {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
}
 
/* Legal Content Styles */
.legal-content {
  background: #fff;
  padding: 60px 0 100px;
}
 
.legal__wrapper {
  max-width: 900px;
  margin: 0 auto;
}
 
.legal__content {
  text-align: left;
}
 
.legal__section {
  margin-bottom: 40px;
}
 
.legal__section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
  padding-top: 20px;
}
 
.legal__section p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}
 
.legal__section ul {
  margin: 16px 0;
  padding-left: 24px;
}
 
.legal__section li {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin-bottom: 8px;
}
 
/* Contact Us Styles */
.contact-content {
  background: #fff;
  padding: 10px 0 100px;
}
 
.contact__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
 
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
 
.contact__form-section {
  background: #FAFAFA;
  padding: 40px;
  border-radius: 20px;
}
 
.contact__form-wrapper h3 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}
 
.success__message {
  background: #d4edda;
  color: #155724;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #c3e6cb;
  margin-bottom: 24px;
  font-size: 16px;
}
 
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
 
.form__group {
  display: flex;
  flex-direction: column;
}
 
.form__group label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}
 
.form__input,
.form__textarea {
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  transition: border-color 0.2s ease;
}
 
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #F05656;
}
 
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
 
.form__submit {
  padding: 16px 32px;
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}
 
.form__submit:hover {
  transform: translateY(-2px);
}
 
.contact__info-section {
  padding: 40px;
}
 
.contact__info-wrapper h3 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
 
.contact__info-wrapper > p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
}
 
.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
 
.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
 
.contact__icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
  border-radius: 50%;
  flex-shrink: 0;
}
 
.contact__details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
 
.contact__details p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  margin-bottom: 4px;
}
 
.contact__social h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}
 
.social__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
 
.social__link {
  padding: 8px 16px;
  background: linear-gradient(135deg, #F05656 0%, #B9227C 100%);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease;
}
 
.social__link:hover {
  transform: translateY(-2px);
}
 
/* Responsive Design */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .hero__headline { font-size: 56px; }
  .hero__subtext { font-size: 22px; }
  .section__title { font-size: 42px; }
  .feature__title { font-size: 52px; }
}
 
@media (max-width: 1024px) {
  .container { padding: 0 30px; }
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__headline { font-size: 48px; }
  .hero__subtext { font-size: 18px; max-width: 100%; }
  .hero__text { max-width: 100%; }
  .hero__phones { justify-content: center; }
  .features__grid { grid-template-columns: 1fr; max-width: 500px; }
  .updates__grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .testimonials__grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .faq__content { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 24px; }
  .hero__bg { left: 2%; right: 2%; }
  
  /* How it works tablet layout */
  .steps__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
 
@media (max-width: 900px) {
  .header__content { gap: 40px; }
  .hero__content { gap: 30px; }
  .section__header { margin-bottom: 40px; }
}
 
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header__content { flex-direction: column; gap: 30px; text-align: center; }
  .hero { padding: 60px 0 40px; }
  .hero__headline { font-size: 40px; line-height: 1.2; }
  .hero__subtext { font-size: 16px; max-width: 100%; margin-bottom: 30px; }
  .hero__text { max-width: 100%; padding: 0 10px; }
  .hero__bg {
    left: 1%;
    right: 1%;
    top: 30px;
    min-height: auto;
    bottom: 20px;
  }
  .section__title { font-size: 32px; }
  .section__subtitle { font-size: 18px; }
  .features__grid { grid-template-columns: 1fr; }
  .feature__card { width: 100%; max-width: 400px; }
  .feature__title { font-size: 42px; }
  .store__buttons { flex-direction: column; gap: 16px; }
  .store__btn { width: 100%; max-width: 300px; margin: 0 auto; }
  .updates__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form-section { padding: 30px; }
  .contact__info-section { padding: 30px; }
  .legal__wrapper { padding: 0 20px; }
  .legal__section h2 { font-size: 20px; }
  
  
  /* FAQ responsive */
  .faq__section-title {
    font-size: 20px;
  }
  
  .faq__answer ol li {
    font-size: 15px;
  }
  
  .faq__answer ul li {
    font-size: 14px;
  }
  
  .faq__explanation {
    padding: 12px;
  }
  
  /* How it works responsive */
  .how-it-works__content {
    padding: 0 10px;
  }
  
  .steps__container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .step__item {
    padding: 25px 20px;
    margin: 0 5px;
  }
  
  .step__number {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .step__content h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .step__content p {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* .video__section {
    padding: 30px 15px;
    margin: 0 5px;
  } */
  
  .video__title {
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 1.3;
  }
  
  /* .video__container {
    max-width: 100%;
  } */
  
  .video__image {
    height: 200px;
    margin-top:113px;
  }
  
  .video__play-button {
    width: 50px;
    height: 50px;
  }
  
  .play__icon {
    border-left: 12px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
  
  .video__description {
    font-size: 15px;
    margin-top: 15px;
  }
  
  /* Video modal responsive */
  .video__modal-content {
    width: 95%;
    height: 85vh;
    margin: 5% auto;
  }
  
  .video__close {
    top: 10px;
    right: 15px;
    font-size: 28px;
    width: 35px;
    height: 35px;
  }
}
 
/* Extra small mobile devices */
@media (max-width: 480px) {
  .hero { padding: 40px 0 30px; }
  .hero__headline { font-size: 32px; line-height: 1.2; }
  .hero__subtext { font-size: 14px; line-height: 1.5; margin-bottom: 25px; }
  .hero__text { padding: 0 5px; }
  .hero__bg { top: 20px; bottom: 15px; }
  .feature__title { font-size: 36px; }
  .store__btn { height: 50px; max-width: 250px; }
  
  .how-it-works__content {
    padding: 0 5px;
  }
  
  .steps__container {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .step__item {
    padding: 20px 15px;
    margin: 0;
  }
  
  .step__number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .step__content h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .step__content p {
    font-size: 13px;
    line-height: 1.3;
  }
  
  /* .video__section {
    padding: 25px 10px;
    margin: 0;
  }
  
  .video__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .video__image {
    height: 180px;
  }
  
  .video__play-button {
    width: 45px;
    height: 45px;
  } */
  
  /* .play__icon {
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  
  .video__description {
    font-size: 14px;
    margin-top: 12px;
  } */
}
 
.video__section {
  width: 100%;
  display: flex;
  justify-content: center;
  /* margin: 60px 0; */
}

.video__container {
  width: 100%;
  max-width: 1208px;
  height: 560px;
  background: url("{{ asset('assets/landing-page/images/your-video-thumbnail.jpg') }}") center/cover no-repeat;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 4px solid rgba(0, 155, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 155, 255, 0.25);
  transition: 0.3s ease-in-out;
}

.video__container:hover {
  /* transform: scale(1.01);
  box-shadow: 0 0 35px rgba(0, 155, 255, 0.35); */
}

.video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.video__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.video__play-button {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: 0.3s;
}

/* .video__play-button:hover {
  transform: scale(1.1);
} */

.play__icon {
  width: 0;
  height: 0;
  border-left: 16px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.video__text {
  font-size: 32px;
  font-weight: 600;
  margin-top: 8px;
  color: #fff;
  margin-top: 140px;
}


.prefooter-cta {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .prefooter__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
  }
  
  .prefooter__left {
    flex: 1 1 45%;
    text-align: left;
  }
  
  .prefooter__logo {
    font-size: 64px;
  font-weight: 700;
  background: linear-gradient(91.57deg, #F05656 4.98%, #B9227C 97.75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 
  }
  
  .prefooter__subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 90%;
  }
  
  .prefooter__right {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
  }
  
  .prefooter__image {
    width: 400px;
    max-width: 100%;
  }
  
  /* --- Pink CTA Box --- */
  .prefooter__cta-box {
    background-color: #fdeef4;
    border-radius: 20px;
    padding: 50px 20px;
    max-width: 1120px;
    margin: 0 auto;
  }
  
  .prefooter__cta-box h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 57.5px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #000000; /* You can keep this or use gradient if needed */
    margin-bottom: 15px;
  }
  
  
  .prefooter__cta-box p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 21px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #132b3e; /* optional — adjust if you want softer tone like #555 */
    margin-bottom: 30px;
  }
  
  
  .prefooter__stores {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .store-btn {
    width: 150px;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .prefooter__content {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .prefooter__left {
      text-align: center;
    }
  
    .prefooter__logo {
      font-size: 48px;
    }
  
    .prefooter__cta-box h3 {
      font-size: 28px;
    }
  
    .store-btn {
      width: 130px;
    }
  
    .prefooter__image {
      width: 320px;
    }
  }
  
 /* ============ 📱 RESPONSIVE DESIGN ============ */
 
/* For Tablets (≤1024px) */
@media (max-width: 1024px) {
  .footer-container {
    justify-content: space-around;
  }
 
  .newsletter input {
    width: 200px;
  }
 
  .footer-right {
    max-width: 300px;
  }
}
 
/* For Large Mobile Devices (≤768px) */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
 
  .footer-middle,
  .footer-right {
    margin-bottom: 25px;
  }
 
  .newsletter {
    justify-content: center;
  }
 
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
 
  .footer-links {
    margin-top: 10px;
  }
 
  .footer-links a {
    display: inline-block;
    margin: 0 6px;
  }
 
  .social-icons {
    justify-content: center;
  }
}
 
/* For Small Mobile Devices (≤480px) */
@media (max-width: 480px) {
  .footer {
    font-size: 13px;
    padding: 30px 0 10px;
  }
 
  .footer-logo {
    height: 28px;
  }
 
  .newsletter {
    flex-direction: column;
    gap: 10px;
  }
 
  .newsletter input {
    width: 100%;
    max-width: 250px;
  }
 
  .newsletter button {
    width: 100%;
    max-width: 250px;
  }
 
  .checkbox {
    text-align: center;
    display: block;
    margin-top: 8px;
  }
 
  .footer-bottom {
    padding: 0 10px;
  }
}