* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #FFF;
  color: #111;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  padding: 60px 20px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

.hero {
  background: #111;
  color: #FFF;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero .btn {
  background: #6C63FF;
  color: #FFF;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}
.hero .btn:hover {
  background: rgb(59.9423076923, 48, 255);
}

.info {
  text-align: center;
  background: #FFF;
  background: linear-gradient(357deg, #674dff, #ffffff);
}
.info h2 {
  color: #6C63FF;
  margin-bottom: 20px;
}
.info p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.features {
  background: #F2F2F2;
}
.features .feature {
  margin-bottom: 40px;
}
.features .feature h3 {
  color: #6C63FF;
  margin-bottom: 10px;
}
.features .feature p {
  font-size: 1rem;
}

.demo {
  text-align: center;
}
.demo h2 {
  margin-bottom: 40px;
}
.demo .phone-wrapper {
  perspective: 1000px;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 40px;
}
.demo .phone {
  width: 260px;
  height: 500px;
  background: black;
  border-radius: 40px;
  padding: 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  animation: rotatePhone 3s ease-in-out infinite alternate;
  transform-origin: center;
}
.demo .screen {
  background: #1a1a1a;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.demo .marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  position: absolute;
    animation: markerShift 3s ease-in-out infinite alternate;
}
.demo .marker::after {
  content: attr(data-label);
  color: white;
  font-size: 0.8rem;
  margin-left: 8px;
  white-space: nowrap;
  position: absolute;
  top: -2px;
  left: 18px;
}
.demo .marker.marker-1 {
  top: 70px;
  left: 50px;
}
.demo .marker.marker-2 {
  top: 180px;
  left: 120px;
}
.demo .marker.marker-3 {
  top: 290px;
  left: 80px;
}

@keyframes rotatePhone {
  0% {
    transform: rotateY(-30deg);
  }
  50% {
    transform: rotateY(30deg);
  }
  100% {
    transform: rotateY(-30deg);
  }
}
@keyframes markerShift {
  0% { transform: translateX(-40px); }
  50% { transform: translateX(40px); }
  100% { transform: translateX(-40px); }
}

footer {
  background: #111;
  color: #FFF;
  text-align: center;
  padding: 20px;
}


p.aos-init.aos-animate {
    margin-bottom: 30px;
    color: white;
}