:root{
  --blue:#0a84ff;
  --black:#000;
  --bg:#050608;
  --panel:#0b0d11;
  --text:#e8eef6;
  --muted:#9aa7b6;
  --border:rgba(255,255,255,.08);
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:16px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background: radial-gradient(1200px 700px at 30% 10%, rgba(10,132,255,.14), transparent 60%),
              radial-gradient(900px 500px at 80% 50%, rgba(10,132,255,.10), transparent 55%),
              var(--black);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.7;
}

/* Links */
a{color:var(--text);text-decoration:none}
a:hover{color:var(--blue)}

/* Header / Nav */
.site-header{
  position:sticky; top:0; z-index:99;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 44px;
  background:rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.logo img{
  height:64px;
  width:auto;
  display:block;
}
.brand-text{
  font-size:18px;
  font-weight:800;
  letter-spacing:0.2px;
  color:var(--blue);
}

/* Nav (desktop only) */
@media (min-width: 769px){
  .nav-menu{
    display:flex;
    align-items:center;
    gap:18px;
  }
}

/* Nav */
.nav-menu{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-menu a{
  font-weight:600;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  color:rgba(232,238,246,.92);
  border:1px solid transparent;
}

.nav-menu a:hover{
  border-color:rgba(10,132,255,.35);
  background:rgba(10,132,255,.08);
}

.nav-menu a.active{
  border-color:rgba(10,132,255,.55);
  background:rgba(10,132,255,.12);
  color:var(--text);
}

/* Mobile Nav Toggle Button */
.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:var(--text);
  font-size:26px;
  cursor:pointer;
}

/* Layout helpers */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 44px;
}

section{
  padding:76px 0;
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap:48px;
  padding-top:62px;
}

.hero h1{
  font-size:52px;
  line-height:1.12;
  letter-spacing:-0.02em;
  max-width:720px;
}

.hero p.lead{
  margin-top:18px;
  max-width:720px;
  font-size:16px;
  color:var(--muted);
}

.hero-cta{
  margin-top:24px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(10,132,255,.38);
  font-weight:700; font-size:14px;
  background:rgba(10,132,255,.10);
  color:var(--text);
}
.btn:hover{background:rgba(10,132,255,.18)}
.btn.primary{
  background:var(--blue);
  border-color:var(--blue);
  color:#001428;
}
.btn.primary:hover{filter:brightness(1.05)}

/* Slider */
.hero-slider{
  position:relative;
  width:100%;
  max-width:420px;
  height:420px;
  margin-left:auto;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(10,132,255,.10), rgba(255,255,255,.02));
  border:1px solid rgba(10,132,255,.18);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}

.hero-slider img.slide{
  position:absolute;
  width:90%;
  height:90%;
  object-fit:contain;
  opacity:0;
  transform:scale(.98);
  transition:opacity .8s ease, transform .8s ease;
}
.hero-slider img.slide.active{
  opacity:1;
  transform:scale(1);
}

.slider-dots{
  position:absolute;
  bottom:14px; left:50%;
  transform:translateX(-50%);
  display:flex; gap:8px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  padding:8px 10px;
  border-radius:999px;
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,.22);
  border:1px solid rgba(10,132,255,.10);
}
.dot.active{
  background:rgba(10,132,255,.95);
}

/* Reasons grid */
.reasons{
  margin-top:46px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:26px 34px;
}

/* Scroll reveal base */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.active{
  opacity:1;
  transform:translateY(0);
}

.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px 22px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.card h3{
  font-size:22px;
  color:var(--blue);
  margin-bottom:8px;
  letter-spacing:-0.01em;
}
.card p{
  color:var(--muted);
  font-size:15px;
}

/* Page heading */
.page-head{
  padding-top:62px;
  padding-bottom:34px;
}
.page-head h1{
  font-size:40px;
  letter-spacing:-0.02em;
}
.page-head p{
  margin-top:10px;
  color:var(--muted);
  max-width:820px;
}

/* Services grid */
.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.service-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(10,132,255,.35);
  background:rgba(10,132,255,.06);
}
.service-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.06);
  margin-bottom:14px;
}
.service-card h3{
  font-size:22px;
  color:var(--blue);
  margin-bottom:8px;
}
.service-card p{
  color:var(--muted);
  font-size:15px;
}
.service-card ul{
  margin-top:12px;
  padding-left:18px;
  color:rgba(232,238,246,.86);
}
.service-card li{
  margin:6px 0;
  font-size:14px;
}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:22px;
}
.pricing-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
}
.pricing-card h3{
  color:var(--blue);
  font-size:24px;
  margin-bottom:8px;
}
.price-line{
  margin:8px 0 14px;
  color:rgba(232,238,246,.9);
  font-weight:700;
}
.price-line span{
  color:var(--muted);
  font-weight:600;
}
.pricing-card ul{
  margin-top:8px;
  padding-left:18px;
  color:rgba(232,238,246,.86);
}
.pricing-card li{
  margin:7px 0;
  font-size:14px;
}
.pricing-image{
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  margin-top:16px;
  display:block;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
}
.contact-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
}
.contact-card h3{
  color:var(--blue);
  font-size:22px;
  margin-bottom:10px;
}
.contact-item{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:rgba(232,238,246,.9);
}
.contact-item:last-child{border-bottom:none}
.tag{
  color:var(--muted);
  font-size:13px;
}

/* Footer */
footer{
  padding:34px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  text-align:center;
}

/* Floating WhatsApp Button */
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.45);
  z-index:999;
  transition:transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 16px 40px rgba(0,0,0,.55);
}

/* Small text sizing */
@media (max-width: 480px){
  .hero h1{
    font-size:32px;
    line-height:1.15;
  }
  .page-head h1{
    font-size:30px;
  }
  .hero p.lead{
    font-size:15px;
  }
  section{
    padding:48px 0;
  }
}

@media (max-width: 600px){
  .whatsapp-float{
    right:16px;
    bottom:16px;
  }
}

@media (prefers-reduced-motion: reduce){
  .reveal{ transition:none; }
}

/* General responsive layout */
@media (max-width: 980px){
  .site-header{padding:16px 22px}
  .container{padding:0 22px}
  .hero{grid-template-columns:1fr; gap:22px}
  .hero-slider{max-width:520px; margin:18px auto 0}
  .reasons{grid-template-columns:1fr}
  .service-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .hero h1{font-size:40px}
  .brand-text{font-size:16px}
  .logo img{height:54px}
}

/* WhatsApp icon */
.whatsapp-float i{
  font-size:28px;
  color:#fff;
}

/* ✅ MOBILE NAV (KEEP THIS AT THE BOTTOM) */
@media (max-width: 768px){
  .nav-toggle{ display:block; }

  .nav-menu{
    display:none;
    position:absolute;
    top:100%;
    right:22px;
    background:rgba(0,0,0,.95);
    border:1px solid var(--border);
    border-radius:16px;
    padding:12px;
    gap:6px;
    box-shadow: var(--shadow);
    flex-direction:column;
    align-items:stretch;
    min-width:180px;
    z-index:1001;
  }

  .nav-menu.open{
    display:flex;
  }

  .nav-menu a{
    display:block;
    padding:12px 14px;
  }
}
/* ===== Pricing video preview ===== */
.pricing-video{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  margin-top:16px;
  background:#000;
  cursor:pointer;
}

.pricing-video video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .6s ease;
}

.pricing-video video.active{
  opacity:1;
}
