/* ===== BaziMirror SEO Landing Pages ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #3d3a35;
  background: #fdf8f1;
  line-height: 1.7;
  font-size: 16px;
}
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
a { color: #8b5e3c; }

/* Header */
.seo-header { background: #fff; border-bottom: 1px solid #eee2d0; position: sticky; top: 0; z-index: 10; }
.seo-header .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; flex-wrap: wrap; gap: 8px; }
.logo { font-size: 20px; font-weight: 800; color: #4e342e; text-decoration: none; }
.seo-header nav { display: flex; gap: 18px; flex-wrap: wrap; }
.seo-header nav a { color: #6b5b4e; text-decoration: none; font-size: 14px; font-weight: 600; }
.seo-header nav a:hover { color: #8b5e3c; }

/* Hero */
.hero { text-align: center; padding: 56px 20px 44px; background: linear-gradient(180deg, #fbf0df 0%, #fdf8f1 100%); }
.hero h1 { font-size: 34px; color: #4e342e; line-height: 1.3; margin-bottom: 16px; }
.hero .lead { font-size: 18px; color: #6b5b4e; max-width: 680px; margin: 0 auto 28px; }
.cta {
  display: inline-block; background: linear-gradient(135deg, #8b5e3c, #d4a74d); color: #fff;
  padding: 15px 34px; border-radius: 40px; font-size: 17px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 16px rgba(139, 94, 60, 0.25);
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139, 94, 60, 0.35); }

/* Sections */
.content-section { padding: 40px 20px; }
.content-section h2 { font-size: 26px; color: #4e342e; margin-bottom: 14px; }
.content-section p { margin-bottom: 14px; color: #5c5449; }
.content-section ul { margin: 12px 0 12px 22px; color: #5c5449; }
.content-section li { margin-bottom: 8px; }
.content-section strong { color: #4e342e; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; padding: 10px 20px 30px; }
.feature-card { background: #fff; border: 1px solid #eee2d0; border-radius: 14px; padding: 22px; }
.feature-card h2, .feature-card h3 { font-size: 19px; color: #4e342e; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: #6b5b4e; }

/* How-to */
.howto { background: #fff8ec; padding: 40px 20px; border-top: 1px solid #eee2d0; border-bottom: 1px solid #eee2d0; }
.howto h2 { font-size: 26px; color: #4e342e; margin-bottom: 16px; }
.howto ol { margin: 0 0 20px 22px; color: #5c5449; }
.howto li { margin-bottom: 10px; }
.center { text-align: center; margin-top: 18px; }

/* Footer */
.seo-footer { background: #4e342e; color: #d9c9b6; padding: 34px 20px; margin-top: 20px; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: #e8dcc9; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.seo-footer p { font-size: 13px; color: #b39a80; }

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 26px; }
  .hero .lead { font-size: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .seo-header .container { flex-direction: column; align-items: flex-start; }
}
