:root {
  --bg: #f4f7f9;
  --ink: #0b2230;
  --accent: #0b3d4f;
  --accent2: #1d7a8c;
  --muted: #5b7383;
  --card: #ffffff;
  --border: #dce6ec;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.55;
}
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
a { color: var(--accent2); }

.site-header { background: var(--accent); color: #fff; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.brand { color: #fff; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.site-header nav a { color: #d6eef4; text-decoration: none; margin-left: 16px; font-size: 0.95rem; }
.site-header nav a:hover { color: #fff; }

.hero { padding: 48px 0 24px; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 12px; line-height: 1.15; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 720px; }
.badge { display: inline-block; background: #fff3cd; color: #6b5203; padding: 6px 12px; border-radius: 999px; font-size: 0.9rem; margin-top: 14px; }

h2 { font-size: 1.4rem; }
section { padding: 18px 0; }

.generator form, .lead form { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; max-width: 720px; }
label { display: block; font-weight: 600; margin-top: 14px; font-size: 0.95rem; }
input, textarea, select { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; margin-top: 6px; font-size: 1rem; font-family: inherit; }
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 6px 18px; margin-top: 12px; }
.checks label { font-weight: 500; margin: 0; display: flex; align-items: center; gap: 8px; }
.checks input { width: auto; margin: 0; }
button { background: var(--accent); color: #fff; border: 0; border-radius: 8px; padding: 12px 22px; font-size: 1rem; font-weight: 600; margin-top: 18px; cursor: pointer; }
button:hover { background: var(--accent2); }
.cta { display: inline-block; background: var(--accent); color: #fff; text-decoration: none; padding: 10px 18px; border-radius: 8px; margin-top: 14px; font-weight: 600; }
.cta:hover { background: var(--accent2); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; list-style: none; padding: 0; margin: 0; }
.grid li, .grid > div { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.grid h3 { margin: 0 0 8px; }

.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.tier { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; }
.tier.featured { border-color: var(--accent); box-shadow: 0 6px 24px rgba(11,61,79,0.12); }
.tier h2 { margin: 0; }
.tier .price { font-size: 2rem; font-weight: 800; margin: 8px 0; }
.tier .price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.tier ul { list-style: none; padding: 0; margin: 0 0 8px; }
.tier li { padding: 6px 0; border-bottom: 1px solid var(--border); }

.result, #lead-status { margin-top: 16px; }
.result .card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px; margin-top: 14px; }
.result pre { white-space: pre-wrap; word-break: break-word; background: #0b2230; color: #d6eef4; padding: 14px; border-radius: 10px; overflow: auto; max-height: 460px; }
.tag { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
.tag.High { background: #f8d7da; color: #842029; }
.tag.Medium { background: #fff3cd; color: #6b5203; }
.tag.Low { background: #d1e7dd; color: #0f5132; }
.tag.none { background: #e9ecef; color: #495057; }

.share-row { display: flex; flex-wrap: wrap; gap: 10px; }
.share-row a, .share-row button { margin-top: 0; text-decoration: none; }
.share-row button { background: #eef3f5; color: var(--accent); }

.site-footer { margin-top: 40px; background: #e9eef1; }
.site-footer .wrap { padding: 24px 20px; }
.disclaimer { color: var(--muted); font-size: 0.85rem; }

@media (max-width: 600px) {
  .site-header .wrap { flex-direction: column; gap: 10px; align-items: flex-start; }
  .site-header nav a { margin-left: 0; margin-right: 14px; }
}
