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

html{
  scroll-behavior:smooth;
}

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

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}

/* NAV */

nav{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(15,23,42,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

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

.logo{
  font-size:24px;
  font-weight:800;
}

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

.nav-links a{
  color:#cbd5e1;
  transition:.3s;
}

.nav-links a:hover{
  color:#fff;
}

.nav-btn{
  background:#2563eb;
  padding:14px 22px;
  border-radius:14px;
  font-weight:700;
  transition:.3s;
}

.nav-btn:hover{
  background:#1d4ed8;
}

/* HERO */

.hero{
  padding:120px 0 100px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:80px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(37,99,235,.12);
  border:1px solid rgba(59,130,246,.25);
  color:#93c5fd;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:28px;
}

h1{
  font-size:68px;
  line-height:1.05;
  margin-bottom:26px;
  font-weight:800;
}

.hero p{
  font-size:20px;
  color:#cbd5e1;
  margin-bottom:34px;
}

.price-highlight{
  background:#111827;
  border:1px solid rgba(255,255,255,.06);
  border-radius:24px;
  padding:30px;
  margin-bottom:34px;
}

.price-highlight small{
  color:#94a3b8;
  display:block;
  margin-bottom:10px;
}

.price-highlight h2{
  font-size:58px;
  line-height:1;
  margin-bottom:10px;
}

.price-highlight p{
  margin:0;
  font-size:16px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:46px;
}

.btn-primary{
  background:#2563eb;
  padding:18px 30px;
  border-radius:16px;
  font-weight:700;
  transition:.3s;
}

.btn-primary:hover{
  background:#1d4ed8;
  transform:translateY(-2px);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.12);
  padding:18px 30px;
  border-radius:16px;
  color:#cbd5e1;
  transition:.3s;
}

.btn-secondary:hover{
  background:rgba(255,255,255,.04);
}

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

.stat h3{
  font-size:34px;
  margin-bottom:6px;
}

.stat span{
  color:#94a3b8;
}

/* DASHBOARD */

.dashboard{
  background:linear-gradient(180deg,#1e293b,#111827);
  border-radius:32px;
  padding:30px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.dashboard-top{
  display:flex;
  gap:10px;
  margin-bottom:24px;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#334155;
}

.dashboard-card{
  background:#0f172a;
  border:1px solid rgba(255,255,255,.05);
  border-radius:22px;
  padding:24px;
  margin-bottom:18px;
}

.dashboard-card h4{
  margin-bottom:10px;
  font-size:18px;
}

.dashboard-card p{
  color:#94a3b8;
  font-size:14px;
}

.status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(34,197,94,.12);
  color:#4ade80;
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  margin-top:16px;
}

/* TRUST */

.trust{
  padding:80px 0;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
  background:#111827;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.trust-card{
  background:#0f172a;
  border-radius:22px;
  padding:30px;
  text-align:center;
  border:1px solid rgba(255,255,255,.05);
}

.trust-card h3{
  font-size:40px;
  color:#60a5fa;
  margin-bottom:8px;
}

.trust-card p{
  color:#cbd5e1;
}

/* FEATURES */

.features{
  padding:120px 0;
}

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

.section-title h2{
  font-size:50px;
  margin-bottom:18px;
}

.section-title p{
  color:#94a3b8;
  font-size:18px;
  max-width:720px;
  margin:auto;
}

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

.feature-card{
  background:#111827;
  border-radius:26px;
  padding:36px;
  border:1px solid rgba(255,255,255,.05);
  transition:.3s;
}

.feature-card:hover{
  transform:translateY(-6px);
  border-color:rgba(59,130,246,.3);
}

.feature-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:rgba(37,99,235,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  font-size:24px;
}

.feature-card h3{
  font-size:22px;
  margin-bottom:14px;
}

.feature-card p{
  color:#94a3b8;
}

/* VIDEO */

.video-section{
  padding:120px 0;
  background:#111827;
}

.video-wrapper{
  position:relative;
  width:100%;
  padding-bottom:56.25%;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.06);
}

.video-wrapper iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* GENERATOR */

.generator{
  padding:120px 0;
}

.generator-box{
  background:linear-gradient(135deg,#1d4ed8,#2563eb);
  border-radius:36px;
  padding:70px;
  text-align:center;
}

.generator-box h2{
  font-size:56px;
  margin-bottom:24px;
}

.generator-box p{
  font-size:20px;
  max-width:850px;
  margin:auto auto 40px;
  color:#dbeafe;
}

/* PREMIUM */

.premium{
  padding:120px 0;
}

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

.price-card{
  background:#111827;
  border-radius:30px;
  padding:40px;
  border:1px solid rgba(255,255,255,.06);
  transition:.3s;
  position:relative;
}

.price-card:hover{
  transform:translateY(-8px);
  border-color:#2563eb;
}

.popular{
  border:2px solid #2563eb;
}

.popular-badge{
  position:absolute;
  top:-14px;
  right:24px;
  background:#2563eb;
  padding:8px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}

.price-card h3{
  font-size:30px;
  margin-bottom:18px;
}

.price{
  font-size:52px;
  font-weight:800;
  line-height:1;
  margin-bottom:8px;
}

.price small{
  font-size:18px;
  color:#94a3b8;
}

.extra-fee{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.05);
  border-radius:14px;
  padding:14px;
  margin:24px 0;
  color:#cbd5e1;
  font-size:14px;
}

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

.price-card li{
  margin-bottom:16px;
  color:#cbd5e1;
}

.price-btn{
  display:block;
  width:100%;
  text-align:center;
  background:#2563eb;
  padding:18px;
  border-radius:16px;
  font-weight:700;
  transition:.3s;
}

.price-btn:hover{
  background:#1d4ed8;
}

/* FOOTER */

footer{
  padding:70px 0;
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
}

.footer-grid h4{
  margin-bottom:18px;
}

.footer-grid p,
.footer-grid a{
  color:#94a3b8;
}

.footer-grid a{
  display:block;
  margin-bottom:10px;
}

/* MOBILE */

@media(max-width:992px){

  h1{
    font-size:46px;
  }

  .hero-grid,
  .feature-grid,
  .trust-grid,
  .pricing-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .nav-links{
    display:none;
  }

  .generator-box{
    padding:50px 30px;
  }

  .generator-box h2{
    font-size:40px;
  }

}
