*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  margin:0;
  background:#f7f7f5;
  color:#111;
}

img{
  display:block;
  max-width:100%;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:24px 40px;
  font-weight:700;
  max-width:1280px;
  margin:0 auto;
  flex-wrap:wrap;
}

.logo{
  font-size:18px;
  font-weight:900;
  letter-spacing:4px;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-link{
  text-decoration:none;
  color:#111;
  font-size:15px;
  font-weight:700;
}

.hero{
  text-align:center;
  padding:110px 20px 90px;
  max-width:920px;
  margin:auto;
}

.hero-badge{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.08);
  font-size:13px;
  font-weight:700;
  color:#555;
  margin-bottom:22px;
}

.hero h1{
  font-size:64px;
  line-height:1.02;
  letter-spacing:-2px;
  margin:0 0 22px;
}

.hero p{
  font-size:20px;
  color:#555;
  margin:0 auto 38px;
  max-width:760px;
  line-height:1.7;
}

.cta{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.primary{
  background:#111;
  color:white;
  padding:16px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,0.16);
}

.secondary{
  border:1px solid #111;
  padding:16px 28px;
  border-radius:12px;
  text-decoration:none;
  color:#111;
  font-weight:700;
  background:#fff;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.secondary:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

.dashboard-btn{
  text-decoration:none;
  background:#111;
  color:white;
  padding:12px 22px;
  border-radius:10px;
  font-weight:700;
  transition:all 0.2s ease;
}

.dashboard-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,0.2);
}

.proof{
  max-width:1200px;
  margin:0 auto;
  padding:0 40px 50px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.proof-item{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:8px;
  box-shadow:0 10px 20px rgba(0,0,0,0.03);
}

.proof-item strong{
  font-size:16px;
}

.proof-item span{
  color:#666;
  line-height:1.5;
  font-size:14px;
}

.how{
  padding:100px 20px;
  text-align:center;
}

.how h2,
.preview h2,
.pricing h2,
.features-wrap h2,
.cta2 h2{
  font-size:42px;
  line-height:1.1;
  letter-spacing:-1.2px;
  margin:0;
}

.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:28px;
  max-width:1080px;
  margin:40px auto 0;
}

.step{
  background:white;
  padding:34px 28px;
  border-radius:18px;
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
  border:1px solid rgba(0,0,0,0.04);
}

.step p{
  color:#666;
  line-height:1.7;
}

.number{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#111;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin:auto;
  margin-bottom:18px;
}

.preview{
  text-align:center;
  padding:100px 20px;
  max-width:1200px;
  margin:0 auto;
}

.preview-text{
  color:#666;
  max-width:720px;
  margin:14px auto 28px;
  line-height:1.7;
  font-size:18px;
}

.preview img{
  width:100%;
  max-width:1000px;
  border-radius:24px;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  margin:0 auto;
}

.features-wrap{
  padding:100px 20px;
  max-width:1280px;
  margin:0 auto;
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 40px;
}

.section-heading p{
  color:#666;
  line-height:1.7;
  font-size:18px;
  margin-top:14px;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}

.feature{
  background:#fff;
  border-radius:18px;
  padding:28px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

.feature h3{
  margin:0 0 12px;
  font-size:20px;
}

.feature p{
  margin:0;
  color:#666;
  line-height:1.7;
}

.pricing{
  padding:100px 20px;
  text-align:center;
  max-width:1280px;
  margin:0 auto;
}

.pricing-sub{
  color:#666;
  margin-top:12px;
  font-size:18px;
}

/* ─── Billing toggle ─────────────────────────────────────────────────────── */

.billing-toggle-wrap{
  display:flex;
  justify-content:center;
  margin:32px 0 0;
}

.billing-toggle{
  display:inline-flex;
  background:#f3f4f6;
  border-radius:14px;
  padding:4px;
  gap:4px;
}

.toggle-btn{
  background:transparent;
  border:none;
  border-radius:10px;
  padding:10px 24px;
  font-size:15px;
  font-weight:700;
  color:#6b7280;
  cursor:pointer;
  transition:background 150ms, color 150ms;
  font-family:inherit;
}

.toggle-btn.active{
  background:#111;
  color:#fff;
}

/* ─────────────────────────────────────────────────────────────────────────── */

.billing-note{
  margin:26px auto 0;
  max-width:760px;
  color:#444;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:16px;
  padding:16px 20px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  max-width:1200px;
  margin:40px auto 0;
}

.price-card{
  position:relative;
  background:white;
  padding:34px 24px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  border:1px solid rgba(0,0,0,0.06);
  text-align:left;
}

.price-card.featured{
  border:2px solid #111;
}

.popular-tag{
  position:absolute;
  top:18px;
  right:18px;
  font-size:12px;
  font-weight:800;
  background:#111;
  color:#fff;
  border-radius:999px;
  padding:8px 10px;
}

.price-card h3{
  margin:0 0 10px;
  font-size:24px;
}

.price{
  font-size:40px;
  font-weight:800;
  margin:12px 0;
  letter-spacing:-1px;
}

.price > span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.price span span{
  font-size:16px;
  font-weight:700;
  color:#666;
  margin-left:4px;
  letter-spacing: 0;
}
.desc{
  color:#777;
  margin-bottom:12px;
  line-height:1.6;
  min-height:48px;
}

.limit{
  font-weight:700;
  margin-bottom:20px;
}

.full-width{
  display:block;
  text-align:center;
  width:100%;
}

.pricing-note{
  margin-top:28px;
  color:#777;
  font-size:14px;
}

.cta2{
  text-align:center;
  padding:110px 20px;
  max-width:900px;
  margin:0 auto;
}

.cta2 p{
  color:#666;
  line-height:1.7;
  font-size:18px;
  margin:16px auto 28px;
}

footer{
  text-align:center;
  padding:40px 20px;
  color:#777;
}
.footer-link{
  color:#777;
  text-decoration:none;
  font-size:14px;
}

.footer-link:hover{
  color:#111;
}

.menu-toggle{
  width:48px;
  height:48px;
  border:none;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#111;
  border-radius:999px;
}

.menu-panel{
  position:fixed;
  top:88px;
  right:40px;
  width:260px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
  padding:14px;
  display:none;
  flex-direction:column;
  gap:6px;
  z-index:50;
}

.menu-panel.open{
  display:flex;
}

.menu-link{
  text-decoration:none;
  color:#111;
  font-weight:700;
  padding:14px 14px;
  border-radius:12px;
  transition:background 0.2s ease;
}

.menu-link:hover{
  background:#f5f5f2;
}

.menu-link-cta{
  background:#111;
  color:#fff;
}

.menu-link-cta:hover{
  background:#000;
}

@media (max-width: 900px){
  .hero h1{
    font-size:48px;
  }

  .proof{
    grid-template-columns:1fr;
    padding:0 20px 40px;
  }

  .nav{
    padding:20px;
  }
}

@media (max-width: 640px){
  .hero{
    padding:90px 20px 70px;
  }

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

  .hero p{
    font-size:18px;
  }

  .how h2,
  .preview h2,
  .pricing h2,
  .features-wrap h2,
  .cta2 h2{
    font-size:32px;
  }

  .nav{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding:16px 20px;
  }

  .nav-actions{
    width:auto;
  }

  .menu-panel{
    top:72px;
    right:20px;
    width:calc(100% - 40px);
  }

  .dashboard-btn,
  .nav-link{
    font-size:14px;
  }
}