*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI",sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#ffffff;
  color:#0f172a;
}

a{
  text-decoration:none;
}

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  height:86px;
  padding:0 9%;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #e5e7eb;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo{
  width:48px;
  height:48px;
  border-radius:16px;
  background:linear-gradient(135deg,#7c3aed,#2563eb);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.brand h2{
  font-size:25px;
}

.brand p{
  color:#64748b;
  font-size:13px;
}

.navbar nav{
  display:flex;
  gap:34px;
}

.navbar nav a{
  color:#0f172a;
  font-weight:700;
}

.nav-actions{
  display:flex;
  gap:12px;
}

.login-btn,
.outline-btn{
  padding:14px 22px;
  border-radius:14px;
  border:1px solid #d1d5db;
  color:#0f172a;
  font-weight:800;
}

.primary-btn{
  padding:14px 22px;
  border-radius:14px;
  background:linear-gradient(135deg,#7c3aed,#2563eb);
  color:white;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow:0 18px 40px rgba(37,99,235,.25);
}

.hero{
  padding:90px 9% 80px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  background:
    radial-gradient(circle at top left,rgba(124,58,237,.12),transparent 35%),
    radial-gradient(circle at top right,rgba(37,99,235,.14),transparent 35%);
}

.badge{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:#eef2ff;
  color:#4338ca;
  font-weight:900;
  margin-bottom:20px;
}

.hero h1{
  font-size:64px;
  line-height:1.05;
  letter-spacing:-2px;
  margin-bottom:24px;
}

.hero-text p{
  font-size:20px;
  line-height:1.7;
  color:#64748b;
  max-width:640px;
}

.hero-actions{
  display:flex;
  gap:16px;
  margin-top:32px;
  flex-wrap:wrap;
}

.primary-btn.large,
.wa-btn{
  padding:18px 26px;
  font-size:16px;
}

.wa-btn{
  border:1px solid #d1d5db;
  border-radius:14px;
  color:#0f172a;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.trust{
  display:flex;
  gap:28px;
  margin-top:42px;
}

.trust div{
  padding-right:28px;
  border-right:1px solid #e5e7eb;
}

.trust strong{
  font-size:30px;
  display:block;
}

.trust span{
  color:#64748b;
  font-weight:700;
}

.hero-preview{
  display:flex;
  justify-content:center;
}

.preview-card{
  width:100%;
  max-width:620px;
  border-radius:32px;
  background:#0f172a;
  padding:18px;
  box-shadow:0 40px 100px rgba(15,23,42,.25);
}

.preview-top{
  display:flex;
  gap:8px;
  margin-bottom:18px;
}

.preview-top span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#64748b;
}

.preview-dashboard{
  height:390px;
  border-radius:24px;
  background:linear-gradient(135deg,#111827,#1e1b4b);
  display:grid;
  grid-template-columns:85px 1fr;
  overflow:hidden;
}

.side-mini{
  background:rgba(255,255,255,.06);
}

.dash-mini{
  padding:24px;
}

.mini-header{
  width:70%;
  height:46px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  margin-bottom:22px;
}

.mini-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.mini-stats div{
  height:92px;
  border-radius:20px;
  background:linear-gradient(135deg,#7c3aed,#2563eb);
}

.mini-chart{
  height:135px;
  margin-top:18px;
  border-radius:20px;
  background:rgba(255,255,255,.10);
}

.mini-table{
  margin-top:18px;
  display:grid;
  gap:10px;
}

.mini-table p{
  height:18px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
}

.section{
  padding:90px 9%;
}

.section-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 50px;
}

.section-head span{
  color:#2563eb;
  font-weight:900;
}

.section-head h2{
  font-size:44px;
  margin:12px 0;
  letter-spacing:-1px;
}

.section-head p{
  color:#64748b;
  font-size:18px;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.feature-card,
.price-card,
.faq-list div,
.premium-box{
  border:1px solid #e5e7eb;
  border-radius:28px;
  padding:32px;
  background:white;
  box-shadow:0 20px 50px rgba(15,23,42,.06);
}

.feature-card i{
  width:42px;
  height:42px;
  color:#2563eb;
  margin-bottom:22px;
}

.feature-card h3{
  font-size:24px;
  margin-bottom:12px;
}

.feature-card p{
  color:#64748b;
  line-height:1.7;
}

.premium-section{
  background:#0f172a;
  color:white;
}

.premium-content{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
}

.premium-content h2{
  font-size:48px;
  line-height:1.15;
  margin:16px 0;
}

.premium-content p{
  color:#cbd5e1;
  font-size:18px;
  line-height:1.7;
}

.premium-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:28px;
}

.premium-list p{
  display:flex;
  align-items:center;
  gap:10px;
  color:white;
  font-weight:800;
}

.premium-list i{
  color:#22c55e;
}

.premium-box{
  background:linear-gradient(135deg,#1e293b,#312e81);
  border-color:rgba(255,255,255,.14);
  text-align:center;
}

.premium-box i{
  width:70px;
  height:70px;
  color:#facc15;
  margin-bottom:20px;
}

.premium-box h3{
  font-size:32px;
  margin-bottom:12px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  max-width:900px;
  margin:auto;
}

.price-card{
  position:relative;
}

.price-card.popular{
  border:2px solid #2563eb;
}

.popular-badge{
  position:absolute;
  top:20px;
  right:20px;
  background:#2563eb;
  color:white;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}

.price-card h3{
  font-size:28px;
}

.price{
  font-size:26px;
  font-weight:900;
  margin:18px 0;
}

.price-card ul{
  list-style:none;
  display:grid;
  gap:14px;
  margin:24px 0;
  color:#475569;
  font-weight:700;
}

.price-card li::before{
  content:"✓";
  color:#22c55e;
  margin-right:10px;
  font-weight:900;
}

.faq-list{
  max-width:850px;
  margin:auto;
  display:grid;
  gap:18px;
}

.faq-list h3{
  font-size:22px;
  margin-bottom:8px;
}

.faq-list p{
  color:#64748b;
  line-height:1.7;
}

.footer{
  padding:38px 9%;
  border-top:1px solid #e5e7eb;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#64748b;
}

@media(max-width:950px){
  .navbar nav{
    display:none;
  }

  .hero,
  .premium-content,
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:44px;
  }

  .features-grid{
    grid-template-columns:1fr;
  }

  .trust{
    flex-wrap:wrap;
  }

  .footer{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }
}

@media(max-width:560px){
  .navbar{
    padding:0 18px;
  }

  .nav-actions .login-btn{
    display:none;
  }

  .hero,
  .section{
    padding-left:22px;
    padding-right:22px;
  }

  .hero h1{
    font-size:38px;
  }

  .hero-text p{
    font-size:16px;
  }

  .premium-list{
    grid-template-columns:1fr;
  }

  .section-head h2{
    font-size:34px;
  }
}/* =========================
   TUTORIAL SECTION
========================= */

.tutorial-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.tutorial-card{
  position:relative;
  background:white;
  border:1px solid #e5e7eb;
  border-radius:28px;
  padding:34px 28px;
  box-shadow:0 20px 50px rgba(15,23,42,.06);
  transition:.25s;
}

.tutorial-card:hover{
  transform:translateY(-6px);
}

.step-number{
  position:absolute;
  top:18px;
  right:18px;

  width:38px;
  height:38px;

  border-radius:50%;
  background:linear-gradient(135deg,#7c3aed,#2563eb);

  color:white;
  font-weight:900;

  display:flex;
  align-items:center;
  justify-content:center;
}

.tutorial-card i{
  width:52px;
  height:52px;
  color:#2563eb;
  margin-bottom:24px;
}

.tutorial-card h3{
  font-size:24px;
  margin-bottom:12px;
}

.tutorial-card p{
  color:#64748b;
  line-height:1.7;
}

@media(max-width:950px){

  .tutorial-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:560px){

  .tutorial-grid{
    grid-template-columns:1fr;
  }

}