* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0e0e0e;
  color: #f5f5f5;
  line-height: 1.6;
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #222, #000);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

.hero p {
  margin: 15px 0 30px;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ffd369;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #161616;
  padding: 25px;
  border-radius: 12px;
}

.card h3 {
  margin-bottom: 10px;
}

.dark {
  background: #111;
}

.list {
  max-width: 600px;
  margin: auto;
}

.list li {
  margin-bottom: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 10px 0;
}

.highlight {
  border: 1px solid #333;
}

.cta {
  text-align: center;
}

.footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: #777;
}

/* ===== TEMPLATE PREVIEW ===== */
.preview-box{
  background:#0b0b0b;
  border-radius:14px;
  padding:16px;
  text-align:left;
  font-size:14px;
  box-shadow:inset 0 0 0 1px rgba(255,215,0,.25);
}

.preview-header{
  font-weight:700;
  color:#ffdd55;
  margin-bottom:10px;
  text-align:center;
}

.preview-hero{
  background:#111;
  border-radius:10px;
  padding:12px;
  margin-bottom:10px;
}

.preview-btn{
  display:inline-block;
  margin-top:8px;
  padding:6px 12px;
  background:linear-gradient(45deg,#ffcc00,#ff9900);
  color:#000;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
  text-decoration:none;
}
.preview-list{
  margin:6px 0 0;
  padding-left:18px;
  color:#ccc;
}
.preview-list li{
  margin-bottom:4px;
}
@media(max-width:600px){
  h1{font-size:32px}
  .subtitle{font-size:16px}
}

