*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

body{
  font-family:'Outfit',sans-serif;
  background:#06070c;
  color:white;
}

a{
  text-decoration:none;
  color:white;
}

ul{
  list-style:none;
}

section{
  padding:80px 8%;
  position:relative;
}

/* =========================
   BLUR EFFECTS
========================= */

.blur{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
  opacity:.4;
}

.blur1{
  width:300px;
  height:300px;
  background:#00c3ff;
  top:0;
  left:-100px;
}

.blur2{
  width:350px;
  height:350px;
  background:#4f46e5;
  bottom:0;
  right:-100px;
}

/* =========================
   NAVBAR
========================= */

nav{
  width:100%;
  height:90px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 8%;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  backdrop-filter:blur(14px);
  background:rgba(0,0,0,.35);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:52px;
  width:auto;
  object-fit:contain;
  border-radius:10px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:40px;
}

.nav-links a{
  color:#ddd;
  transition:.3s;
}

.nav-links a:hover{
  color:#00d2ff;
}

.nav-btn{
  padding:12px 24px;
  border-radius:50px;
  background:linear-gradient(to right,#00d2ff,#3a7bd5);
  color:white;
  font-weight:600;
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:28px;
  height:3px;
  background:white;
  border-radius:20px;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:center;
  gap:70px;
  padding-top:140px;
}

.hero-text{
  width:100%;
}

.hero-text h1{
  font-size:4.5rem;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-text h1 span{
  background:linear-gradient(to right,#00d2ff,#7c4dff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text p{
  color:#b5b5b5;
  font-size:1.1rem;
  line-height:1.8;
  margin-bottom:35px;
  max-width:600px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:15px 28px;
  border-radius:60px;
  font-weight:600;
  transition:.4s;
  display:inline-block;
  text-align:center;
}

.primary-btn{
  background:linear-gradient(to right,#00d2ff,#3a7bd5);
}

.secondary-btn{
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(10px);
}

.btn:hover{
  transform:translateY(-4px);
}

/* =========================
   HERO VIDEO
========================= */

.hero-image{
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-demo-video-wrapper{
  width:320px;
  height:520px;
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 60px rgba(0,0,0,.4);
  animation:float 4s ease-in-out infinite;
}

.hero-demo-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-18px);}
  100%{transform:translateY(0);}
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title.left{
  text-align:left;
}

.section-title h2{
  font-size:3rem;
  margin-bottom:15px;
}

.section-title p{
  color:#aaa;
  max-width:700px;
  margin:auto;
  line-height:1.7;
}

/* =========================
   FEATURES
========================= */

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-top:50px;
}

.feature-card{
  background:#19191a;
  border:1px solid rgba(255,255,255,.05);
  padding:40px 30px;
  border-radius:32px;
  transition:.4s ease;
}

.feature-card:hover{
  transform:translateY(-10px);
  background:#14151a;
  border-color:rgba(0,210,255,.4);
}

.feature-icon{
  width:72px;
  height:72px;
  background:linear-gradient(135deg,#00c6ff,#0072ff);
  border-radius:20px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:25px;
  font-size: 30px;
}

.feature-icon i,
.feature-icon img{
  font-size:20px;
  color:white;
}

.feature-card h3{
  font-size:1.25rem;
  margin-bottom:15px;
}

.feature-card p{
  color:#8a8a8e;
  line-height:1.7;
}

/* =========================
   DEMO
========================= */

.demo{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:60px;
  align-items:center;
}

.phone{
  width:300px;
  height:580px;
  border-radius:40px;
  background:#111827;
  margin:auto;
  padding:20px;
  border:8px solid #1f2937;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.message{
  background:#1e293b;
  padding:15px;
  border-radius:15px;
  margin-top:20px;
  color:#ddd;
}

.notify{
  background:linear-gradient(to right,#00d2ff,#3a7bd5);
  padding:16px;
  border-radius:18px;
  margin-top:25px;
  font-weight:600;
}

/* =========================
   CTA
========================= */

.cta{
  text-align:center;
  background:#111113;
  border:1px solid rgba(255,255,255,.05);
  border-radius:40px;
  padding:100px 60px;
  max-width:1100px;
  margin:auto;
}

.cta h2{
  font-size:3.5rem;
  margin-bottom:20px;
}

.cta p{
  font-size:1.1rem;
  color:#a0a0a5;
  max-width:700px;
  margin:0 auto 40px;
  line-height:1.7;
}

/* =========================
   PRICING
========================= */
.pricing-wrapper{
  width:450px;
  display:flex;
  justify-content:center;
}

.pricing-card{
  max-width:100px;
  margin:50px auto;
  background:#0f0f0f;
  border:1px solid #1aedff66;
  border-radius:40px;
  padding:60px 40px;
  text-align:center;
}

.pricing-card{
  transition: all 0.4s ease;
}

.pricing-card:hover{
  transform: translateY(-12px);
  border-color: rgba(0, 210, 255, 0.6);
  box-shadow: 0 25px 60px rgba(0, 210, 255, 0.15);
}
.pricing-top h3{
  font-size:2.5rem;
  margin-bottom:20px;
}

.price{
  font-size:3rem;
  font-weight:700;
  background:linear-gradient(135deg,#00d2ff,#9264ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.price span{
  display:block;
  font-size:4rem;
}

.pricing-features{
  margin:40px 0;
  text-align:left;
}

.pricing-item{
  margin-bottom:12px;
  display:flex;
  gap:12px;
  color:#e0e0e0;
  justify-content: center;
}

.btn.primary-btn{
  width:50%;
  margin-top:20px;
}

/* =========================
   FOOTER
========================= */

footer{
  padding:40px 8%;
  text-align:center;
  color:#777;
  border-top:1px solid rgba(255,255,255,.08);
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  width:65px;
  height:65px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999;
  box-shadow:0 10px 30px rgba(37,211,102,.4);
}

.whatsapp-float svg{
  width:30px;
  height:30px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:990px){

  section{
    padding:70px 6%;
  }

  .hero,
  .demo{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-text p{
    margin:auto auto 35px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-text h1{
    font-size:3.4rem;
  }

  .features-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:768px){

  nav{
    padding:0 5%;
    height:85px;
  }

  .hamburger{
    display:flex;
  }

  .nav-btn{
    display:none;
  }

  .nav-links{
    position:fixed;
    top:85px;
    left:0;
    width:100%;
    background:#0b0d13;
    flex-direction:column;
    align-items:center;
    gap:30px;
    padding:40px 0;
    display:none;
    z-index:999;
  }

  .nav-links.active{
    display:flex;
  }

  .hero{
    padding-top:130px;
  }

  .hero-text h1{
    font-size:2.7rem;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .btn{
    width:100%;
    max-width:280px;
  }

  .hero-demo-video-wrapper{
    width:260px;
    height:430px;
  }

  .section-title h2,
  .cta h2{
    font-size:2.2rem;
  }

  .features-grid{
    grid-template-columns:1fr;
  }

  .feature-card{
    padding:30px 24px;
  }

  .phone{
    width:280px;
    height:540px;
  }

  .cta{
    padding:70px 25px;
  }
}

@media(max-width:500px){

  section{
    padding:60px 5%;
  }

  .hero-text h1{
    font-size:2.2rem;
  }

  .hero-demo-video-wrapper{
    width:220px;
    height:370px;
  }

  .phone{
    max-width:250px;
    height:500px;
  }

  .pricing-card{
    padding:40px 20px;
  }

  .price span{
    font-size:3rem;
  }

  .whatsapp-float{
    width:58px;
    height:58px;
  }

  .whatsapp-float svg{
    width:26px;
    height:26px;
  }
}
/* =========================
   GLOBAL CENTER FIX (IMPORTANT)
========================= */

section{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* Keep text sections readable */
.hero-text,
.section-title,
.cta,
.pricing-card{
  width:100%;
  max-width:1100px;
}

/* Fix grids alignment */
.features-grid,
.demo{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

/* Prevent “stuck left” grid behavior */
.features-grid{
  justify-content:center;
}

/* HERO FIX */
.hero{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  justify-content:space-between;
}

/* CTA FIX */
.cta{
  width:100%;
  max-width:1100px;
  margin:0 auto;
}

/* PHONE CENTER FIX */
.phone{
  margin:0 auto;
}

/* NAV FIX */
nav{
  justify-content:space-between;
}

/* Prevent any hidden horizontal shift */
html, body{
  overflow-x:hidden;
}