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

body{
  font-family:'Poppins',sans-serif;
  background:#0f172a;
  color:#fff;
  overflow-x:hidden;
}

.hero{
  min-height:100vh;
  padding:30px 8%;
  background:
  radial-gradient(circle at top left,#1e293b,#0f172a 60%);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:80px;
}

.logo{
  font-size:28px;
  font-weight:700;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  color:#fff;
  text-decoration:none;
  opacity:0.8;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.badge{
  display:inline-block;
  background:rgba(255,255,255,0.1);
  padding:10px 18px;
  border-radius:30px;
  margin-bottom:25px;
  backdrop-filter:blur(10px);
}

.hero-left h1{
  font-size:62px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-left h1 span{
  color:#38bdf8;
}

.hero-left p{
  color:#cbd5e1;
  margin-bottom:35px;
  line-height:1.8;
  max-width:600px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-bottom:45px;
}

.btn{
  padding:15px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.primary{
  background:#38bdf8;
  color:#0f172a;
}

.secondary{
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
}

.btn:hover{
  transform:translateY(-3px);
}

.stats{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.stat-box{
  background:rgba(255,255,255,0.05);
  padding:22px;
  border-radius:18px;
  min-width:150px;
  backdrop-filter:blur(12px);
}

.hero-right{
  display:flex;
  justify-content:center;
}

.mockup-card{
  position:relative;
  width:320px;
  height:420px;
}

.mockup-paper{
  position:absolute;
  width:100%;
  height:100%;
  background:#fff;
  border-radius:18px;
  box-shadow:0 30px 60px rgba(0,0,0,0.4);
}

.mockup-paper::before{
  content:'';
  position:absolute;
  width:80%;
  height:12px;
  background:#e2e8f0;
  top:40px;
  left:10%;
  border-radius:20px;
}

.mockup-paper::after{
  content:'';
  position:absolute;
  width:65%;
  height:12px;
  background:#e2e8f0;
  top:80px;
  left:10%;
  border-radius:20px;
}

.second{
  transform:rotate(-8deg);
  opacity:0.7;
}

.third{
  transform:rotate(8deg);
  opacity:0.5;
}

section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#38bdf8;
}

.section-title h2{
  font-size:42px;
  margin-top:12px;
}

.service-grid,
.portfolio-grid,
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.service-card,
.portfolio-card,
.price-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:35px;
  border-radius:24px;
  backdrop-filter:blur(10px);
  transition:0.3s;
}

.service-card:hover,
.portfolio-card:hover,
.price-card:hover{
  transform:translateY(-8px);
}

.icon{
  font-size:42px;
  margin-bottom:20px;
}

.portfolio-image{
  height:220px;
  background:linear-gradient(135deg,#334155,#1e293b);
  border-radius:18px;
  margin-bottom:20px;
}

.price-card{
  text-align:center;
  position:relative;
}

.price{
  font-size:48px;
  font-weight:700;
  margin:25px 0;
  color:#38bdf8;
}

.price-card ul{
  list-style:none;
  margin-bottom:30px;
}

.price-card li{
  margin:14px 0;
  color:#cbd5e1;
}

.featured{
  border:1px solid #38bdf8;
  transform:scale(1.05);
}

.popular{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#38bdf8;
  color:#0f172a;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
}

.cta{
  text-align:center;
  background:linear-gradient(135deg,#0ea5e9,#2563eb);
}

.cta h2{
  font-size:48px;
  margin-bottom:20px;
}

.cta p{
  margin-bottom:35px;
}

footer{
  text-align:center;
  padding:50px 20px;
  color:#94a3b8;
}

@media(max-width:900px){

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

  .hero-left h1{
    font-size:44px;
  }

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .featured{
    transform:none;
  }

}
