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

body{
  font-family:Arial, sans-serif;
  background:#0b1020;
  color:white;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.navbar{
  position:sticky;
  top:0;
  background:rgba(10,15,30,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index:100;
}

.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  font-weight:bold;
}

nav a{
  color:#ddd;
  margin-left:24px;
  text-decoration:none;
}

.hero{
  padding:120px 0;
  background:linear-gradient(135deg,#0b1020,#121a33);
}

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

.badge{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  background:#1c274d;
  margin-bottom:20px;
}

.hero h1{
  font-size:56px;
  line-height:1.2;
  margin-bottom:24px;
}

.hero p{
  color:#c7d2fe;
  margin-bottom:30px;
}

.buttons{
  display:flex;
  gap:16px;
}

.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:bold;
}

.primary{
  background:#4f46e5;
  color:white;
}

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

.hero-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:60px;
  text-align:center;
}

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

.section{
  padding:100px 0;
}

.dark{
  background:#111827;
}

.section h2{
  font-size:42px;
  margin-bottom:16px;
}

.section-desc{
  color:#94a3b8;
  margin-bottom:50px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  background:#1e293b;
  padding:40px;
  border-radius:20px;
}

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

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

.about-box{
  height:350px;
  border-radius:24px;
  background:linear-gradient(135deg,#4f46e5,#06b6d4);
  display:flex;
  justify-content:center;
  align-items:center;
}

.about-icon{
  font-size:90px;
}

.stats{
  display:flex;
  gap:40px;
  margin-top:30px;
}

.stats h3{
  font-size:36px;
}

.cta{
  padding:100px 0;
  text-align:center;
  background:linear-gradient(135deg,#4f46e5,#06b6d4);
}

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

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:16px;
  border:none;
  border-radius:12px;
}

.contact-form button{
  padding:16px;
  border:none;
  border-radius:12px;
  background:#4f46e5;
  color:white;
  font-weight:bold;
}

footer{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:30px 0;
  background:#0b1020;
}

.footer-inner{
  text-align:center;
}

@media(max-width:900px){
  .hero-grid,
  .cards,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:40px;
  }

  nav{
    display:none;
  }
}
