body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;
}
.logo {
  background: linear-gradient(135deg,#8b5cf6,#3b82f6);
  color:#fff;
  width:32px;height:32px;
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
}
.brand { font-weight:700; font-size:18px; }
.nav-links a {
  color:#444;
  margin:0 10px;
  text-decoration:none;
}
.nav-links a:hover { color:#8b5cf6; }

/* Hero */
.hero {
  padding:120px 20px 80px;
  text-align:center;
  background:linear-gradient(to bottom right,#f3f4f6,#e0f2fe);
}
.hero h1 {
  font-size:48px;
  margin-bottom:16px;
  background:linear-gradient(90deg,#111,#7c3aed,#2563eb);
  -webkit-background-clip:text;
  color:transparent;
}
.hero p { max-width:600px; margin:0 auto 24px; font-size:18px; color:#555; }
.cta {
  background:linear-gradient(135deg,#8b5cf6,#3b82f6);
  color:#fff;
  padding:14px 32px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

/* Sections */
.section { padding:80px 20px; max-width:1000px; margin:auto; text-align:center; }
.section.light { background:#fafafa; }
.features { display:grid; gap:20px; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); margin-top:40px; }
.features div { background:#fff; border:1px solid #eee; border-radius:12px; padding:24px; box-shadow:0 2px 6px rgba(0,0,0,0.05); }

.pricing { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; margin-top:40px; }
.plan {
  background:#fff;
  border:1px solid #ddd;
  border-radius:12px;
  width:220px;
  padding:24px;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
.plan.popular { border-color:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.2); }
.plan h3 { margin-top:0; }
.plan ul { list-style:none; padding:0; font-size:14px; text-align:left; }
.plan ul li::before { content:"✓ "; color:#10b981; }

/* WordPress section steps */
.steps { text-align:left; max-width:400px; margin:24px auto 0; }
.steps li { margin-bottom:8px; }

/* Footer */
.footer {
  text-align:center;
  padding:40px 20px;
  background:#fff;
  border-top:1px solid #eee;
  font-size:14px;
}
.footer a { color:#555; text-decoration:none; margin:0 4px; }
.footer a:hover { color:#8b5cf6; }
