:root {
  --bg: #0f172a;
  --card: #111827;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --line: #1f2937;
  --accent: #22c55e;
  --accent-dark: #052e16;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: var(--text);
  line-height: 1.6;
}
.container { width: min(1080px, 92%); margin: 0 auto; }
.nav-wrap { position: sticky; top: 0; backdrop-filter: blur(8px); background: rgba(11,18,32,.85); border-bottom: 1px solid var(--line); z-index: 20; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { font-weight: 700; color: #fff; text-decoration: none; }
.nav-links a { color: var(--muted); text-decoration: none; margin-left: 16px; }
.nav-links a:hover { color: #fff; }
.hero { padding: 72px 0 36px; }
.eyebrow { color: #38bdf8; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; margin-bottom: 8px; }
h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); line-height: 1.15; margin: 0 0 14px; color: #fff; }
.lead { color: var(--muted); max-width: 760px; margin-bottom: 18px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 14px 0; }
.btn { display: inline-block; padding: 11px 16px; border-radius: 10px; text-decoration: none; font-weight: 700; border: 1px solid transparent; }
.btn-primary { background: var(--accent); color: var(--accent-dark); }
.btn-secondary { background: #ffffff; color: #0f172a; border-color: #d1d5db; }
.trust { color: #86efac; font-size: .95rem; margin-top: 10px; }
.section { padding: 28px 0; }
h2 { color: #fff; margin: 0 0 14px; }
.grid { display: grid; gap: 14px; }
.grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card { background: rgba(17,24,39,.85); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.card h3 { margin: 0 0 8px; color: #fff; }
.card p, .card li { color: var(--muted); }
.pricing .price { font-size: 1.75rem; font-weight: 800; color: #fff; margin: 4px 0 8px; }
.price-card ul { margin: 0; padding-left: 18px; }
.price-card.featured { border-color: #22c55e; box-shadow: 0 0 0 1px rgba(34,197,94,.3); }
.small-note { color: var(--muted); font-size: .92rem; margin-top: 10px; }
.contact { text-align: center; padding-bottom: 40px; }
.footer { border-top: 1px solid var(--line); padding: 16px 0 28px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); }
.footer a { color: var(--muted); text-decoration: none; margin-left: 10px; }
@media (max-width: 900px) {
  .grid.three { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
