/* Static pages for crawlers & payment-gateway review (no JS required). */
:root {
  --bg: #f8f6f2;
  --card: #ffffff;
  --text: #1b4332;
  --muted: #52796f;
  --accent: #2d6a4f;
  --border: #d8e2dc;
  --max: 920px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--accent); }
header.site-header {
  background: var(--text);
  color: #fff;
  padding: 1rem 1.25rem;
}
header.site-header .wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #fff;
}
nav a {
  color: #d8f3dc;
  text-decoration: none;
  margin-left: 1rem;
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
}
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
}
h1 { font-size: 1.85rem; margin: 0 0 0.75rem; }
h2 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; color: var(--accent); }
p, li { font-size: 1rem; }
.muted { color: var(--muted); }
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem 2rem;
  text-align: center;
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
}
footer a { margin: 0 0.5rem; }
.hero-tag {
  display: inline-block;
  background: #d8f3dc;
  color: var(--accent);
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.grid-3 .card { margin: 0; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  padding: 0.65rem 1.1rem;
  border-radius: 6px;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  margin-top: 0.5rem;
}
