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

:root{
  --bg:#0b0f14;
  --panel:#111827;
  --text:#ffffff;
  --muted:#9ca3af;
  --line:#1f2937;
  --btn:#ffffff;
  --btnText:#0b0f14;
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* NAV */
.nav{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brand-mark{
  font-weight: 800;
  letter-spacing: 0.6px;
}

.brand-sub{
  color: var(--muted);
  font-size: 12px;
}

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

.nav-links a{
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover{ color: var(--text); }

.nav-cta{
  background: var(--btn);
  color: var(--btnText) !important;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}

/* HERO */
.hero{
  padding: 70px 0 40px;
}

.hero-inner{
  text-align: center;
  padding: 0 10px;
}

.pill{
  display: inline-block;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.03);
}

.hero h1{
  font-size: 44px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.hero-sub{
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 16px;
}

.hero-cta-row{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary{
  background: var(--btn);
  color: var(--btnText);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 900;
  display: inline-block;
}

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

.btn-ghost{
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  display: inline-block;
  background: rgba(255,255,255,0.03);
}

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stat{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  padding: 14px;
}

.stat-top{
  font-weight: 900;
}

.stat-bottom{
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

/* SECTIONS */
.section{
  padding: 60px 0;
}

.section.dark{
  background: var(--panel);
}

h2{
  font-size: 30px;
  margin-bottom: 8px;
  text-align:center;
}

.sublead{
  color: var(--muted);
  text-align:center;
  max-width: 760px;
  margin: 0 auto 26px;
}

/* CARDS */
.card-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.card{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  padding: 20px;
}

.featured{
  border: 2px solid rgba(255,255,255,0.75);
}

.tag{
  display:inline-block;
  font-size:12px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.price{
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  margin: 8px 0 6px;
}

.card-sub{
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.card ul{
  padding-left: 18px;
  color: var(--muted);
}

.card li{
  margin: 8px 0;
}

.card-footer{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.btn-small{
  background: var(--btn);
  color: var(--btnText);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 900;
  display:inline-block;
}

.note{
  margin-top: 18px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 14px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

/* PROCESS */
.process-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.process-step{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0,0,0,0.18);
}

.process-step span{
  font-size: 26px;
  font-weight: 900;
}

.process-step h4{
  margin-top: 8px;
  font-size: 16px;
}

.process-step p{
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

/* ROI */
.roi-box{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  margin-top: 18px;
  background: rgba(255,255,255,0.03);
  text-align:center;
}

.roi-box p{
  color: var(--muted);
  margin: 6px 0;
}

.roi-box h3{
  margin-top: 14px;
  font-size: 22px;
}

/* CONTACT */
.contact-box{
  text-align:center;
  padding: 0 10px;
}

.contact-sub{
  color: var(--muted);
  margin: 8px auto 16px;
  max-width: 700px;
}

.contact-actions{
  margin: 10px 0 14px;
}

.contact-details{
  margin-top: 10px;
}

/* FOOTER */
.footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.footer-inner{
  text-align:center;
  color: var(--muted);
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .hero h1{ font-size: 38px; }
  .hero-stats{ grid-template-columns: 1fr; }
  .nav-links{ display:none; }
}
