body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #0f172a;
      color: white;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 20px;
    }

    h1, h2 {
      font-weight: 800;
    }

    .btn {
      display: inline-block;
      padding: 12px 20px;
      border-radius: 10px;
      text-decoration: none;
      color: white;
      background: #2563eb;
    }

    /* PLAYSTORE BUTTON */
    .playstore-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: black;
      padding: 12px 18px;
      border-radius: 12px;
      text-decoration: none;
      color: white;
      margin-top: 10px;
    }

    .playstore-btn img {
      width: 35px;
    }

    /* HERO */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .hero img {
      width: 280px;
      border-radius: 20px;
    }

    /* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo img {
  width: 35px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

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

/* BUTTON */
.nav-btn {
  background: linear-gradient(45deg,#2563eb,#3b82f6);
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.nav-btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0f172a;
  padding: 20px;
}

.mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  color: white;
}

.mobile-btn {
  margin-top: 10px;
  background: #2563eb;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}


/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
  gap: 40px;
}

/* LEFT */
.hero-content {
  max-width: 550px;
}

.tag {
  display: inline-block;
  background: rgba(37,99,235,0.2);
  color: #60a5fa;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* TITLE */
.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero h1 span {
  color: #3b82f6;
}

/* DESC */
.hero p {
  color: #cbd5f5;
  font-size: 16px;
  margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* SECOND BUTTON */
.secondary-btn {
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  transition: 0.3s;
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* TRUST */
.hero-trust {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #94a3b8;
  flex-wrap: wrap;
}

/* RIGHT IMAGE */
.hero-image {
  position: relative;
}

.phone {
  background: linear-gradient(145deg,#1e293b,#0f172a);
  padding: 12px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.phone img {
  width: 280px;
  border-radius: 20px;
}

/* GLOW EFFECT */
.phone::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #2563eb;
  filter: blur(120px);
  z-index: -1;
}

/* MOBILE */
@media(max-width:768px){

  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .phone img {
    width: 220px;
  }
}

/* ===== INSTALL BUTTON ===== */
.install-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg,#22c55e,#16a34a);
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  overflow: hidden;
  transition: 0.3s;
}

.install-btn:hover {
  transform: scale(1.05);
}

/* TEXT */
.btn-text {
  z-index: 2;
}

/* LOADER */
.btn-loader {
  position: absolute;
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  left: 0;
  top: 0;
  transition: width 1.5s ease;
}

/* ACTIVE STATE */
.install-btn.loading .btn-loader {
  width: 100%;
}

.install-btn.loading .btn-text {
  opacity: 0.7;
}

/* ===== HERO EXTRA IMPROVEMENT ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
  gap: 50px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.2;
}

.hero h1 span {
  color: #22c55e;
}

.hero p {
  color: #cbd5f5;
  font-size: 17px;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* PHONE GLOW */
.phone {
  position: relative;
  border-radius: 30px;
  padding: 12px;
  background: linear-gradient(145deg,#1e293b,#0f172a);
}

.phone::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #22c55e;
  filter: blur(120px);
  z-index: -1;
}

/* MOBILE */
@media(max-width:768px){
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }
}




/* ===== TRUST SECTION ===== */
.trust {
  text-align: center;
  margin-top: 60px;
}

/* TITLE */
.trust-title {
  font-size: 26px;
  font-weight: 700;
}

.trust-sub {
  color: #94a3b8;
  margin-top: 8px;
  margin-bottom: 25px;
}

/* LOGOS GRID */
.trust-logos {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

/* ITEM */
.trust-item {
  background: #1e293b;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}

.trust-item:hover {
  transform: translateY(-5px);
}

/* LOGO */
.trust-item img {
  height: 30px;
  margin-bottom: 8px;
}

/* TEXT */
.trust-item span {
  display: block;
  font-size: 14px;
  color: #cbd5f5;
}

/* BADGES */
.trust-badges {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: #94a3b8;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px){
  .trust-logos {
    grid-template-columns: repeat(2,1fr);
  }
}




/* ===== FEATURES SECTION ===== */
.features-section {
  margin-top: 80px;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 32px;
  font-weight: 800;
}

.section-sub {
  color: #94a3b8;
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 15px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

/* CARD */
.feature-card {
  background: rgba(30,41,59,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37,99,235,0.5);
}

/* GLOW */
.feature-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #2563eb;
  filter: blur(100px);
  top: -50px;
  right: -50px;
  opacity: 0.2;
}

/* ICON */
.feature-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* TITLE */
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.feature-card p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px){
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}



/* ===== SCREENSHOT SECTION ===== */
.screens-section {
  margin-top: 80px;
  text-align: center;
}

/* WRAPPER */
.screens-wrapper {
  overflow: hidden;
  margin-top: 30px;
}

/* TRACK */
.screens-track {
  display: flex;
  gap: 20px;
  animation: scrollScreens 20s linear infinite;
}

/* CARD */
.screen-card {
  min-width: 180px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(30,41,59,0.6);
  padding: 8px;
  transition: 0.3s;
}

/* IMAGE */
.screen-card img {
  width: 100%;
  border-radius: 15px;
  transition: 0.3s;
}

/* HOVER */
.screen-card:hover img {
  transform: scale(1.08);
}

/* SCROLL ANIMATION */
@keyframes scrollScreens {
  0% {transform: translateX(0);}
  100% {transform: translateX(-50%);}
}

/* MOBILE */
@media(max-width:768px){
  .screen-card {
    min-width: 140px;
  }
}


/* ===== TESTIMONIAL SECTION ===== */
.testimonials-section {
  margin-top: 80px;
  text-align: center;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.testimonial-card {
  background: rgba(30,41,59,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s;
  position: relative;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34,197,94,0.5);
}

/* USER */
.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.user-info h4 {
  margin: 0;
  font-size: 15px;
}

.user-info span {
  font-size: 12px;
  color: #94a3b8;
}

/* REVIEW */
.review {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* RATING */
.rating {
  color: #facc15;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px){
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== CTA SECTION ===== */
.cta-section {
  margin-top: 80px;
  text-align: center;
}

/* BOX */
.cta-box {
  background: linear-gradient(135deg,#1e3a8a,#2563eb);
  padding: 50px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.cta-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #22c55e;
  filter: blur(120px);
  top: -100px;
  left: -100px;
  opacity: 0.3;
}

/* TITLE */
.cta-box h2 {
  font-size: 32px;
  font-weight: 800;
}

/* TEXT */
.cta-box p {
  margin-top: 10px;
  color: #e2e8f0;
}

/* BUTTON */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  background: linear-gradient(45deg,#22c55e,#16a34a);
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  overflow: hidden;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* LOADER */
.cta-loader {
  position: absolute;
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  left: 0;
  top: 0;
  transition: width 1.5s ease;
}

.cta-btn.loading .cta-loader {
  width: 100%;
}

/* OFFER */
.cta-offer {
  margin-top: 10px;
  font-size: 14px;
  color: #facc15;
}

/* TRUST */
.cta-trust {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #cbd5f5;
  flex-wrap: wrap;
}

/* MOBILE */
@media(max-width:768px){
  .cta-box h2 {
    font-size: 24px;
  }
}


/* ===== FOOTER ===== */
.footer {
  margin-top: 80px;
  background: #020617;
  padding: 50px 20px 20px;
  color: #cbd5f5;
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

/* BRAND */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 35px;
}

.footer-brand p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* LINKS */
.footer-links h3 {
  margin-bottom: 12px;
  font-size: 16px;
  color: white;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 15px;
  font-size: 13px;
  color: #64748b;
}

/* MOBILE */
@media(max-width:768px){
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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



/* ===== POPUP ===== */
.earning-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s;
  z-index: 9999;
}

/* SHOW */
.earning-popup.show {
  transform: translateY(0);
  opacity: 1;
}

/* IMAGE */
.earning-popup img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* TEXT */
.popup-text p {
  font-size: 14px;
  margin: 0;
}

.popup-text span {
  font-size: 12px;
  color: #94a3b8;
}

/* MOBILE */
@media(max-width:768px){
  .earning-popup {
    left: 10px;
    right: 10px;
  }
}