:root {
  --bg: #0a0a0b;
  --surface: #121214;
  --surface-2: #1a1a1d;
  --gold: #d4af37;
  --gold-light: #f3d576;
  --text: #f3f3f5;
  --muted: #9ca3af;
  --radius: 12px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header { border-bottom: 1px solid rgba(212,175,55,0.15); position: sticky; top: 0; background: rgba(10,10,11,0.9); backdrop-filter: blur(8px); z-index: 10; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-weight: 800; font-size: 1.5rem; color: var(--gold); letter-spacing: -1px; }
nav a { color: var(--muted); text-decoration: none; margin-left: 1.5rem; font-size: 0.95rem; }
nav a:hover { color: var(--text); }
.cta-link { color: var(--gold); font-weight: 600; }

.hero { padding: 5rem 0 4rem; text-align: center; }
.eyebrow { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 0.75rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.1; margin: 0 0 1rem; }
.highlight { color: var(--gold); }
.subhead { color: var(--muted); font-size: clamp(1rem, 2.5vw, 1.25rem); max-width: 680px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.btn { display: inline-block; padding: 0.9rem 1.6rem; border-radius: 999px; text-decoration: none; font-weight: 700; border: none; cursor: pointer; transition: transform .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #111; }
.btn-secondary { background: var(--surface-2); color: var(--text); border: 1px solid rgba(212,175,55,0.25); }
.trust { color: var(--muted); font-size: 0.9rem; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

.section { padding: 4rem 0; }
.section h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.step { background: var(--surface); border: 1px solid rgba(212,175,55,0.1); padding: 1.5rem; border-radius: var(--radius); text-align: center; }
.num { width: 40px; height: 40px; line-height: 40px; border-radius: 50%; background: var(--gold); color: #111; font-weight: 800; margin: 0 auto 1rem; }

.verticals .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.verticals .card { background: var(--surface); padding: 1.5rem; text-align: center; border-radius: var(--radius); font-weight: 700; border: 1px solid rgba(212,175,55,0.1); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; align-items: start; }
.price-card { background: var(--surface); border: 1px solid rgba(212,175,55,0.1); border-radius: var(--radius); padding: 1.75rem; position: relative; }
.price-card.featured { border-color: var(--gold); transform: scale(1.02); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #111; font-size: 0.75rem; font-weight: 800; padding: 0.25rem 0.75rem; border-radius: 999px; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--gold); margin: 0.5rem 0; }
.price span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.old-price { color: var(--muted); font-size: 0.9rem; margin-top: -0.5rem; }
.price-card ul { list-style: none; padding: 0; margin: 1rem 0 0; color: var(--muted); }
.price-card li { padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

.calculator { background: var(--surface); }
.calculator .lead { text-align: center; color: var(--muted); margin-top: -1rem; }
.lead-form { max-width: 520px; margin: 2rem auto 0; display: grid; gap: 1rem; }
.lead-form label { display: grid; gap: 0.35rem; color: var(--muted); font-size: 0.9rem; }
.lead-form input, .lead-form select { padding: 0.75rem 1rem; border-radius: 8px; border: 1px solid rgba(212,175,55,0.2); background: var(--bg); color: var(--text); font-size: 1rem; }
.lead-form input:focus, .lead-form select:focus { outline: 2px solid var(--gold); }
.form-message { text-align: center; min-height: 1.5rem; }
.form-message.success { color: #4ade80; }
.form-message.error { color: #f87171; }

.site-footer { border-top: 1px solid rgba(212,175,55,0.1); padding: 2rem 0; text-align: center; color: var(--muted); font-size: 0.9rem; }
.site-footer a { color: var(--gold); }

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  nav a { margin-left: 0.75rem; font-size: 0.85rem; }
}
