@import url('https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner:wght@400..700&family=Macondo&family=Montserrat:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded');

:root {
  --clr-bg-dark: #1a1533;
  --clr-bg-dark-2: #2a1f53;
  --clr-purple: #9146ff;
  --clr-purple-hover: #7c3aed;
  --clr-purple-light: #a58aff;
  --clr-blue: #2575fc;
  --clr-text-light: #d4cfe1;
  --clr-text: #fff;
  --container: 1200px;
  --box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-medium: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --easing-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --easing-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  
  /* Mobile-specific variables */
  --mobile-padding: 15px;
  --mobile-heading-scale: 0.7;
  --mobile-text-scale: 0.9;
  --mobile-spacing-scale: 0.8;
}

* { 
  margin:0; 
  padding:0; 
  box-sizing:border-box; 
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--clr-bg-dark);
  color: var(--clr-text);
  line-height:1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
  perspective: 1000px;
}

/* ──────────────────────────────────────────
   Utility
────────────────────────────────────────── */
.container {
  width:90%;
  max-width: var(--container);
  margin:0 auto;
  padding: 0 var(--mobile-padding);
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Improved focus styles for accessibility */
a:focus, button:focus {
  outline: 3px solid var(--clr-purple);
  outline-offset: 3px;
}

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.navbar {
  position: fixed; 
  top:0; 
  left:0;
  width: 100%;
  background: rgba(26,21,51,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.25);
  z-index:100;
  transition: var(--transition-medium);
}

.navbar.scrolled {
  height: 60px;
  background: rgba(26,21,51,0.98);
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.navbar__inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:70px;
  transition: var(--transition-medium);
}

.navbar.scrolled .navbar__inner {
  height: 60px;
}

.navbar__logo {
  display:flex; 
  align-items:center; 
  gap:8px;
  font-weight:700; 
  font-size:1.3rem;
  color: var(--clr-text);
  text-decoration:none;
  transition: var(--transition-fast);
  transform-origin: left center;
}

.navbar__logo:hover {
  transform: scale(1.05);
}

.navbar__logo img { 
  height:36px; 
  transition: var(--transition-fast);
  filter: drop-shadow(0 0 8px rgba(145, 70, 255, 0.5));
}

.navbar.scrolled .navbar__logo img {
  height: 30px;
}

.navbar__links,
.navbar__actions {
  display:flex; 
  align-items:center; 
  gap:24px;
}

.navbar__links a {
  color: var(--clr-text-light);
  text-decoration:none; 
  font-weight:500;
  transition: var(--transition-fast);
  position: relative;
  padding: 5px 0;
}

.navbar__links a:hover { 
  color:#fff; 
  transform: translateY(-2px);
}

/* Underline animation for nav links */
.navbar__links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--clr-purple), var(--clr-blue));
  transition: width 0.3s var(--easing-smooth);
  transform-origin: left;
}

.navbar__links a:hover::after {
  width: 100%;
}

.btn {
  font-weight:600; 
  border-radius:8px;
  padding:10px 18px; 
  cursor:pointer;
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--outline {
  background:transparent;
  border:2px solid var(--clr-purple);
  color: var(--clr-text);
}

.btn--outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--clr-purple), var(--clr-purple-hover));
  transition: var(--transition-fast);
  z-index: -1;
}

.btn--outline:hover::before {
  left: 0;
}

.btn--outline:hover {
  color:#fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(145, 70, 255, 0.4);
}

.btn--primary {
  background: linear-gradient(90deg, var(--clr-purple), var(--clr-purple-hover));
  border:none; 
  color:#fff;
  box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
  transition: var(--transition-fast);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--clr-purple-hover), var(--clr-purple));
  opacity: 0;
  z-index: -1;
  transition: var(--transition-fast);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(145, 70, 255, 0.5);
}

.btn--primary:active, .btn--outline:active {
  transform: translateY(-1px);
}

/* Button ripple effect */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

/* mobile toggle hidden by default */
.navbar__toggle { 
  display:none; 
  background:none; 
  border:none; 
  font-size:1.5rem; 
  color:#fff; 
  cursor: pointer;
  transition: var(--transition-fast);
}

.navbar__toggle:hover {
  transform: scale(1.1);
  color: var(--clr-purple-light);
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, var(--clr-bg-dark) 0%, var(--clr-bg-dark-2) 100%);
  padding: 120px 0 40px; 
  position: relative;
  overflow: hidden;
}

/* Animated background particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(145, 70, 255, 0.3);
  animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 80px); /* full screen minus navbar */
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: fadeSlideLeft 0.8s ease forwards;
  position: relative;
}

.hero__content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
  max-width: 600px;
  background: linear-gradient(90deg, #fff, #9146ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 5px 25px rgba(145, 70, 255, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: heroHeadingIn 1.2s var(--easing-smooth) forwards;
  animation-delay: 0.2s;
}

@keyframes heroHeadingIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__content p {
  font-size: 1.2rem;
  color: #d4cfe1;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroParagraphIn 1s var(--easing-smooth) forwards;
  animation-delay: 0.6s;
}

@keyframes heroParagraphIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroButtonsIn 1s var(--easing-smooth) forwards;
  animation-delay: 0.9s;
}

@keyframes heroButtonsIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.store-button {
  width: 180px;
  height: 60px;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.store-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.2), rgba(37, 117, 252, 0.2));
  opacity: 0;
  transition: var(--transition-medium);
  z-index: -1;
}

.store-button:hover::before {
  opacity: 1;
}

.store-button:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 25px rgba(145, 70, 255, 0.4);
}

.store-button img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffc107;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroRatingIn 1s var(--easing-smooth) forwards;
  animation-delay: 1.2s;
}

@keyframes heroRatingIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__phone {
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
  perspective: 1000px;
}

.hero__phone img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: rotateY(-15deg) translateZ(-100px);
  animation: phoneIn 1.5s var(--easing-bounce) forwards;
  animation-delay: 0.5s;
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-medium);
}

@keyframes phoneIn {
  0% {
    opacity: 0;
    transform: rotateY(-15deg) translateZ(-100px);
  }
  70% {
    opacity: 1;
    transform: rotateY(5deg) translateZ(0);
  }
  100% {
    opacity: 1;
    transform: rotateY(0) translateZ(0);
  }
}

.hero__phone:hover img {
  transform: rotateY(-5deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Phone glow effect */
.hero__phone::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(145, 70, 255, 0.3) 0%, rgba(26, 21, 51, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 3s infinite alternate;
  opacity: 0;
  animation: glowIn 2s var(--easing-smooth) forwards;
  animation-delay: 1.5s;
}

@keyframes glowIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Mobile Menu Base Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  overflow: hidden;
  background-color: #1a1233;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: max-height 0.5s var(--easing-smooth),
              opacity 0.5s var(--easing-smooth),
              transform 0.5s var(--easing-smooth);
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  max-height: 100vh;
  opacity: 1;
  transform: scaleY(1);
}

.mobile-menu.open {
  max-height: 100vh;
  padding: 24px;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.mobile-menu__close {
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-menu__close:hover {
  transform: rotate(90deg);
  color: var(--clr-purple);
}

/* Nav Links */
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  margin: 12px 0;
  transition: var(--transition-fast);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 0;
}

.mobile-menu a:hover {
  transform: translateX(10px);
  color: var(--clr-purple);
  padding-left: 10px;
}

.mobile-menu a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: var(--transition-fast);
}

.mobile-menu a:hover::before {
  opacity: 1;
  left: 0;
}

/* Buttons */
.mobile-menu .btn {
  margin-top: 14px;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: bold;
}

.btn--outline {
  background-color: transparent;
  border: 2px solid #8227ec;
  color: white;
}

.btn--primary {
  background-color: #8227ec;
  color: white;
  border: none;
}

/* H1 adjustments */
.hero__content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  max-width: 600px;
}

/* Paragraph adjustments */
.hero__content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--clr-text-light);
  max-width: 500px;
}

/* Rating section */
.hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.stars::before {
  content: '★★★★★';
  position: absolute;
  top: 0;
  left: 0;
  color: #ffd700;
  width: 0;
  overflow: hidden;
  animation: fillStars 1.5s ease-out forwards;
  animation-delay: 1.5s;
}

@keyframes fillStars {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.hero__rating small {
  font-size: 0.95rem;
  color: var(--clr-text-light);
}

/* Responsive Fix */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__content {
    order: 1;
    width: 100%;
  }
  
  .hero__content h1 {
    font-size: 2.5rem;
    margin: 0 auto 20px;
  }

  .hero__content p {
    margin: 0 auto 30px;
    font-size: 1.1rem;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__phone {
    order: 2;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto 0;
  }

  .hero__phone img {
    max-width: 100%;
    width: 60%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  
  .hero__rating {
    justify-content: center;
  }
}

/* animation */
@keyframes slideInTop {
  0% {
    opacity: 0;
    transform: translateY(-60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInDelay {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleRotateIn {
  0% {
    opacity: 0;
    transform: scale(0.8) rotateZ(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateZ(0deg);
  }
}

/* Base testimonial section styling */
.testimonial {
  background-color: #261e4d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(145, 70, 255, 0.15) 0%, rgba(38, 30, 77, 0) 70%);
  animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.testimonial__container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: #1a1233;
  padding: 50px 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(50px);
  opacity: 0;
  transition: var(--transition-medium);
}

.testimonial-card.animate {
  transform: translateY(0);
  opacity: 1;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(145, 70, 255, 0.1);
  z-index: 0;
}

.testimonial-content .stars {
  font-size: 28px;
  color: #ffcc00;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--clr-purple);
  position: relative;
  z-index: 1;
}

.testimonial-content span {
  font-size: 16px;
  color: #ccc;
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-content {
  transition: transform 0.8s var(--easing-smooth);
  will-change: transform;
}

/* Arrow buttons */
.arrow {
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(145, 70, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  overflow: hidden;
}

.arrow svg {
  stroke: #fff;
  transition: var(--transition-fast);
  position: relative;
  z-index: 2;
}

.arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-blue));
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 1;
}

.arrow:hover::before {
  opacity: 1;
}

.arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(145, 70, 255, 0.4);
}

.arrow:hover svg {
  transform: scale(1.2);
}

.arrow.left {
  left: 15px;
}

.arrow.right {
  right: 15px;
}

/* Dots */
.dots {
  margin-top: 30px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-blue));
  opacity: 0;
  transition: var(--transition-fast);
}

.dot.active::before,
.dot:hover::before {
  opacity: 1;
}

.dot.active,
.dot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .arrow svg {
    width: 24px;
    height: 24px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .testimonial-content h3 {
    font-size: 18px;
  }

  .testimonial-content span {
    font-size: 14px;
  }
}

/* why choose */
.features-section {
  background-color: #1e1540;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(145, 70, 255, 0.15) 0%, rgba(30, 21, 64, 0) 70%);
  animation: rotateBg 30s linear infinite;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  background: linear-gradient(90deg, #fff, #9146ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.features-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.features-subtitle {
  font-size: 1.3rem;
  color: #cfcfe8;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.features-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-card {
  background-color: #2b1e5a;
  border-radius: 16px;
  padding: 35px 30px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: left;
  color: #e4e4f4;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  transition-delay: calc(var(--order) * 0.1s);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--clr-purple), #2575fc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 32px;
  color: #a58aff;
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--clr-purple);
}

.feature-heading {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-heading {
  color: var(--clr-purple-light);
}

/* ready to trans */
.cta-section {
  background-color: #261e4d;
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(145, 70, 255, 0.1) 0%, rgba(38, 30, 77, 0) 60%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, #9146ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.cta-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-subtitle {
  font-size: 1.3rem;
  color: #cfcfe8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
  transition-delay: 0.2s;
}

.cta-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
  transition-delay: 0.4s;
}

.cta-buttons.animate {
  opacity: 1;
  transform: translateY(0);
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #000;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-medium);
}

.store-button:hover {
  background-color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(145, 70, 255, 0.4);
}

.store-button i {
  font-size: 24px;
}

.store-button span {
  display: inline-block;
  text-align: left;
  line-height: 1.2;
}

/* footer */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.footer {
  background-color: #150d2c;
  color: #fff;
  padding: 60px 20px 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--clr-purple), #2575fc);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer__section {
  max-width: 250px;
  flex: 1;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer__logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(145, 70, 255, 0.5));
}

.footer__brand-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__socials li a {
  color: #a78bfa;
  font-size: 18px;
  transition: var(--transition-fast);
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(145, 70, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__socials li a:hover {
  color: #fff;
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-blue));
  box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3);
}

.footer__links {
  display: flex;
  flex: 2;
  justify-content: space-between;
  gap: 40px;
}

.footer__column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--clr-purple);
  position: relative;
  display: inline-block;
}

.footer__column h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-purple), var(--clr-blue));
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__column ul li {
  margin-bottom: 12px;
}

.footer__column ul li a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  padding-left: 0;
}

.footer__column ul li a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: var(--transition-fast);
}

.footer__column ul li a:hover {
  color: #fff;
  padding-left: 15px;
}

.footer__column ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.footer__bottom {
  border-top: 1px solid #2a1e4d;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.footer__legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.footer__legal a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer__legal a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 30px;
  }

  .footer__links {
    flex-direction: column;
    gap: 30px;
  }
}

/* Features section */
.features {
  padding: 100px 0;
  background-color: #1a1533;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 70, 255, 0.2) 0%, rgba(26, 21, 51, 0) 70%);
  top: -100px;
  right: -100px;
  animation: floatAnimation 15s ease-in-out infinite alternate;
}

.features::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 117, 252, 0.15) 0%, rgba(26, 21, 51, 0) 70%);
  bottom: -200px;
  left: -200px;
  animation: floatAnimation 20s ease-in-out infinite alternate-reverse;
}

@keyframes floatAnimation {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.features-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.features-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #fff, #9146ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.features-header p {
  font-size: 1.2rem;
  color: var(--clr-text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.feature-box {
  background: rgba(42, 31, 83, 0.5);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.feature-box.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.1) 0%, rgba(42, 31, 83, 0) 60%);
  opacity: 0;
  transition: var(--transition-medium);
}

.feature-box:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box span {
  font-size: 40px;
  color: var(--clr-purple);
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition-medium);
  transform-style: preserve-3d;
}

.feature-box:hover span {
  transform: scale(1.2) rotateY(10deg);
  color: var(--clr-purple-light);
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  transition: var(--transition-fast);
}

.feature-box:hover h3 {
  color: var(--clr-purple-light);
}

.feature-box p {
  color: var(--clr-text-light);
  line-height: 1.6;
}

/* How it works section */
.how-it-works {
  padding: 100px 0;
  background-color: #2a1f53;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('imgs/—Pngtree—a\ massive\ crowd\ of\ people_16139729.png') no-repeat center center;
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
  animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.how-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.how-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.how-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #fff, #9146ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.how-header p {
  font-size: 1.2rem;
  color: var(--clr-text-light);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
  position: relative;
}

.step.animate {
  opacity: 1;
  transform: translateY(0);
}

.step::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -50px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-purple), transparent);
  z-index: -1;
}

.step:last-child::after {
  display: none;
}

.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-purple), #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(145, 70, 255, 0.3);
  transition: var(--transition-medium);
}

.step:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(145, 70, 255, 0.5);
}

.icon-circle::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.icon-circle span {
  font-size: 40px;
  color: #fff;
  transition: var(--transition-fast);
}

.step:hover .icon-circle span {
  transform: scale(1.2);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  transition: var(--transition-fast);
}

.step:hover h3 {
  color: var(--clr-purple-light);
}

.step p {
  color: var(--clr-text-light);
  line-height: 1.6;
}

/* Pricing section */
.Pricing01 {
  padding: 100px 0;
  background-color: #1a1533;
  position: relative;
  overflow: hidden;
}

.Pricing01::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 70%, rgba(145, 70, 255, 0.1) 0%, rgba(26, 21, 51, 0) 60%);
  animation: rotateBg 40s linear infinite reverse;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.pricing-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.pricing-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #fff, #9146ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.pricing-header p {
  font-size: 1.2rem;
  color: var(--clr-text-light);
  max-width: 700px;
  margin: 0 auto;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: rgba(42, 31, 83, 0.5);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.pricing-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:nth-child(2) {
  transform: translateY(-20px);
  border: 2px solid var(--clr-purple);
  box-shadow: 0 15px 40px rgba(145, 70, 255, 0.3);
}

.pricing-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.1) 0%, rgba(42, 31, 83, 0) 60%);
  opacity: 0;
  transition: var(--transition-medium);
  z-index: -1;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
  transition: var(--transition-fast);
}

.pricing-card:hover h2 {
  color: var(--clr-purple-light);
}

.pricing-card h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--clr-purple);
  transition: var(--transition-fast);
}

.pricing-card:hover h3 {
  transform: scale(1.1);
}

.pricing-card h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--clr-text-light);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-text-light);
  position: relative;
  padding-left: 25px;
  transition: var(--transition-fast);
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-purple);
  transition: var(--transition-fast);
}

.pricing-card:hover ul li {
  transform: translateX(5px);
}

.pricing-card:hover ul li::before {
  transform: scale(1.2);
}

.pricing-card .highlight {
  display: inline-block;
  background: linear-gradient(90deg, var(--clr-purple), #2575fc);
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-card .highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2575fc, var(--clr-purple));
  opacity: 0;
  transition: var(--transition-medium);
  z-index: -1;
}

.pricing-card .highlight:hover::before {
  opacity: 1;
}

.pricing-card:hover .highlight {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(145, 70, 255, 0.5);
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
  transform-origin: center;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  80%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Slider container */
.slider-container {
  padding: 80px 0;
  background-color: #1e1540;
  position: relative;
  overflow: hidden;
}

.slider-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 70% 30%, rgba(145, 70, 255, 0.1) 0%, rgba(30, 21, 64, 0) 60%);
  animation: rotateBg 30s linear infinite;
}

.const01 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #fff, #9146ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.const01.animate {
  opacity: 1;
  transform: translateY(0);
}

.const011 {
  font-size: 1.2rem;
  color: var(--clr-text-light);
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
  transition-delay: 0.2s;
}

.const011.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
  transition-delay: 0.4s;
}

.slide-content.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-subtitle {
  font-size: 1.3rem;
  color: var(--clr-purple);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.slide-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-purple), var(--clr-blue));
  transition: var(--transition-fast);
}

.slide-content:hover .slide-subtitle::after {
  width: 100%;
}

.slide-title {
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

.slide-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--clr-purple), #2575fc);
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slide-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2575fc, var(--clr-purple));
  opacity: 0;
  transition: var(--transition-medium);
  z-index: -1;
}

.slide-button:hover::before {
  opacity: 1;
}

.slide-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(145, 70, 255, 0.5);
}

.slide-button span {
  position: relative;
  z-index: 2;
}

.imgs img {
  max-width: 280px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-medium);
  transform: perspective(1000px) rotateY(-10deg);
}

.slide-content:hover .imgs img {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.Slider-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.Slider-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(145, 70, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.Slider-navigation button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-blue));
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 0;
}

.Slider-navigation button:hover::before {
  opacity: 1;
}

.Slider-navigation button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(145, 70, 255, 0.4);
}

.material-symbols-rounded {
  position: relative;
  z-index: 1;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-medium);
}

.overlay.visible {
  visibility: visible;
  opacity: 1;
}

.section-text {
  background: rgba(26, 21, 51, 0.9);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  max-width: 350px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(50px);
  opacity: 0;
  transition: var(--transition-medium);
}

.overlay.visible .section-text {
  transform: translateX(0);
  opacity: 1;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--clr-purple);
  display: block;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

.phone img {
  max-width: 280px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transform: translateX(50px) perspective(1000px) rotateY(-15deg);
  opacity: 0;
  transition: var(--transition-medium);
  transition-delay: 0.2s;
}

.overlay.visible .phone img {
  transform: translateX(0) perspective(1000px) rotateY(0);
  opacity: 1;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  :root {
    --mobile-padding: 15px;
    --mobile-heading-scale: 0.7;
    --mobile-text-scale: 0.9;
    --mobile-spacing-scale: 0.8;
  }
  
  .navbar__links, .navbar__actions {
    display: none;
  }
  
  .navbar__toggle {
    display: block;
  }
  
  .hero__content h1 {
    font-size: calc(2.2rem * var(--mobile-heading-scale));
    line-height: 1.3;
  }
  
  .hero__content p {
    font-size: calc(1rem * var(--mobile-text-scale));
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .store-button {
    width: 100%;
    max-width: 200px;
    margin-bottom: 10px;
  }
  
  .features-title, .how-header h2, .cta-title, .pricing-header h1, .const01 {
    font-size: calc(2rem * var(--mobile-heading-scale));
    line-height: 1.3;
  }
  
  .features-subtitle, .how-header p, .cta-subtitle, .pricing-header p, .const011 {
    font-size: calc(1rem * var(--mobile-text-scale));
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
    gap: calc(30px * var(--mobile-spacing-scale));
  }
  
  .step {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .step::after {
    display: none;
  }
  
  .icon-circle {
    width: 80px;
    height: 80px;
  }
  
  .icon-circle span {
    font-size: 30px;
  }
  
  .icon-circle::before {
    width: 90px;
    height: 90px;
  }
  
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: calc(30px * var(--mobile-spacing-scale));
  }
  
  .pricing-card {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .pricing-card:nth-child(2) {
    transform: translateY(0);
    order: -1;
  }
  
  .slide-content {
    flex-direction: column;
    text-align: center;
    gap: calc(20px * var(--mobile-spacing-scale));
  }
  
  .slide-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .slide-title {
    font-size: calc(1.6rem * var(--mobile-heading-scale));
  }
  
  .overlay {
    display: none;
  }
  
  .footer__top {
    flex-direction: column;
    gap: calc(30px * var(--mobile-spacing-scale));
  }
  
  .footer__links {
    flex-direction: column;
    gap: calc(20px * var(--mobile-spacing-scale));
  }
  
  .footer__section {
    max-width: 100%;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* Fix for text overlap in How It Works section */
@media (max-width: 480px) {
  .how-it-works {
    padding: 60px 0;
  }
  
  .step {
    padding: 0 15px;
    margin-bottom: 50px;
  }
  
  .step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .step p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .pricing-header h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  
  .pricing-header p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 15px;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .pricing-card h2 {
    font-size: 1.3rem;
  }
  
  .pricing-card h3 {
    font-size: 2rem;
  }
  
  .pricing-card h4 {
    font-size: 1rem;
  }
  
  .pricing-card ul li {
    font-size: 0.9rem;
    padding: 8px 0 8px 20px;
  }
}

/* Fix for very small screens */
@media (max-width: 375px) {
  .hero__content h1 {
    font-size: 1.8rem;
  }
  
  .hero__content p {
    font-size: 0.9rem;
  }
  
  .features-title, .how-header h2, .cta-title, .pricing-header h1, .const01 {
    font-size: 1.6rem;
  }
  
  .features-subtitle, .how-header p, .cta-subtitle, .pricing-header p, .const011 {
    font-size: 0.9rem;
  }
  
  .icon-circle {
    width: 70px;
    height: 70px;
  }
  
  .icon-circle span {
    font-size: 26px;
  }
  
  .icon-circle::before {
    width: 80px;
    height: 80px;
  }
  
  .step h3 {
    font-size: 1rem;
  }
  
  .step p {
    font-size: 0.85rem;
  }
  
  .pricing-card h2 {
    font-size: 1.2rem;
  }
  
  .pricing-card h3 {
    font-size: 1.8rem;
  }
  
  .pricing-card h4 {
    font-size: 0.9rem;
  }
  
  .pricing-card ul li {
    font-size: 0.85rem;
  }
  
  .pricing-card .highlight {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Animation for scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Improved accessibility */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.skip-to-content:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 10px 15px;
  background: var(--clr-purple);
  color: #fff;
  z-index: 9999;
  font-weight: 600;
  border-radius: 0 0 5px 0;
}

/* Dark mode toggle */
.dark-mode-toggle {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 21, 51, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.dark-mode-toggle:hover {
  transform: rotate(30deg);
  background: var(--clr-purple);
}

/* Loading animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  position: relative;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid var(--clr-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loader-text {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 2px;
  position: relative;
}

.loader-text::after {
  content: '...';
  position: absolute;
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0%, 20% {
    content: '.';
  }
  40%, 60% {
    content: '..';
  }
  80%, 100% {
    content: '...';
  }
}

/* Dark mode styles */
body.dark-mode {
  --clr-bg-dark: #0a0818;
  --clr-bg-dark-2: #15102d;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-purple), var(--clr-blue));
  z-index: 9999;
  transition: width 0.1s;
}

/* Cursor effects */
.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--clr-purple);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(145, 70, 255, 0.5);
}

body:hover .cursor-dot,
body:hover .cursor-outline {
  opacity: 1;
}

/* Parallax scrolling effect */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Text reveal animation */
.text-reveal {
  overflow: hidden;
  position: relative;
}

.text-reveal span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.8s var(--easing-smooth);
}

.text-reveal.animate span {
  transform: translateY(0);
}

/* Magnetic buttons */
.magnetic-btn {
  position: relative;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 3D card effect */
.card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s ease;
}

.card-3d-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

/* Animated background gradient */
.animated-bg {
  background: linear-gradient(-45deg, #1a1533, #2a1f53, #3a2973, #4a3393);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Glitch effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-bg-dark);
}

.glitch::before {
  left: 2px;
  text-shadow: -1px 0 red;
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: 1px 0 blue;
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: inset(20% 0 80% 0);
  }
  20% {
    clip-path: inset(60% 0 40% 0);
  }
  40% {
    clip-path: inset(40% 0 60% 0);
  }
  60% {
    clip-path: inset(80% 0 20% 0);
  }
  80% {
    clip-path: inset(10% 0 90% 0);
  }
  100% {
    clip-path: inset(30% 0 70% 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: inset(15% 0 85% 0);
  }
  20% {
    clip-path: inset(55% 0 45% 0);
  }
  40% {
    clip-path: inset(35% 0 65% 0);
  }
  60% {
    clip-path: inset(75% 0 25% 0);
  }
  80% {
    clip-path: inset(5% 0 95% 0);
  }
  100% {
    clip-path: inset(25% 0 75% 0);
  }
}

/* Floating elements */
.float {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Typing animation */
.typing {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 2s steps(30, end) forwards;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
