:root{
  --primary:#0d6efd;
  --secondary:#25D366;
  --dark:#0f172a;
  --dark2:#111827;
  --card:rgba(255,255,255,0.04);
  --border:rgba(255,255,255,0.08);
  --text:#f8fafc;
  --light:#cbd5e1;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Cairo',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:var(--dark);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.9;
}

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

/* NAVBAR */
nav{
  position:fixed;
  top:0;
  width:100%;
  padding:16px 0;
  background:rgba(15,23,42,.92);
  backdrop-filter:blur(14px);
  z-index:999;
  border-bottom:1px solid var(--border);
}

.nav-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:1.8rem;
  font-weight:900;
  color:white;
}

.nav-links{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.nav-links a:hover{
  color:var(--secondary);
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:140px 20px 80px;
  background:
  linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.85)),
  url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?q=80&w=1600');
  background-size:cover;
  background-position:center;
}

.hero h1{
  font-size:4rem;
  font-weight:900;
  margin-bottom:20px;
  line-height:1.3;
}

.hero p{
  font-size:1.2rem;
  margin-bottom:30px;
  color:var(--light);
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:14px 30px;
  background:var(--secondary);
  color:white;
  text-decoration:none;
  border-radius:14px;
  font-weight:bold;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,.3);
}

/* SECTIONS */
.section{
  padding:100px 0;
}

.dark{
  background:var(--dark2);
}

.section-title{
  text-align:center;
  font-size:2.5rem;
  margin-bottom:50px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

/* CARD */
.card{
  background:var(--card);
  border:1px solid var(--border);
  padding:28px;
  border-radius:20px;
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
  border-color:rgba(37,211,102,.3);
}

.card p{
  color:var(--light);
}

/* SPEED + PRICE */
.speed{
  font-size:2.2rem;
  font-weight:900;
  color:var(--secondary);
  margin:10px 0;
}

.price{
  font-size:1.1rem;
  font-weight:bold;
  margin-bottom:15px;
}

/* PACKAGE BUTTONS */
.package-buttons{
  margin-top:20px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.package-buttons .btn{
  flex:1;
  text-align:center;
}

/* FEATURED PLAN */
.featured-plan{
  border:2px solid var(--secondary);
  position:relative;
  overflow:hidden;
  transform:scale(1.02);
}

.featured-badge{
  position:absolute;
  top:16px;
  left:-45px;
  background:var(--secondary);
  color:white;
  padding:6px 55px;
  transform:rotate(-45deg);
  font-size:12px;
  font-weight:bold;
}

/* BUSINESS */
.business-features{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:25px;
}

.feature-box{
  padding:16px 24px !important;
  min-width:180px;
  text-align:center;
  background:rgba(255,255,255,0.06) !important;
  border:1px solid var(--border);
  font-weight:700;
}

/* TRUST + SOCIAL PROOF */
.trust-badges{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.trust-badges span{
  background:rgba(255,255,255,0.06);
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
}

/* SOCIAL PROOF */
.social-proof{
  margin-top:25px;
  padding:25px 0;
}

.sp-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  text-align:center;
}

.sp-item h3{
  font-size:2rem;
  color:var(--secondary);
}

.sp-item p{
  color:var(--light);
  font-size:13px;
}

/* FOOTER */
footer{
  padding:45px 20px;
  text-align:center;
  background:#020617;
  color:#94a3b8;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  left:20px;
  width:65px;
  height:65px;
  background:var(--secondary);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:2rem;
  text-decoration:none;
  color:white;
  z-index:999;
}

/* MAP */
iframe{
  margin-top:20px;
  border-radius:20px;
  width:100%;
  height:400px;
}

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

  .hero h1{
    font-size:2.2rem;
  }

  .hero p{
    font-size:1rem;
  }

  .section-title{
    font-size:2rem;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .package-buttons{
    flex-direction:column;
  }

  .sp-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .nav-content{
    flex-direction:column;
    gap:12px;
  }

  .nav-links{
    justify-content:center;
    gap:10px;
  }
}