/* Basic modern, clean styling */
* { box-sizing: border-box; }
:root {
  --bg: #0f172a;
  --panel: #0b1223;
  --text: #e5e7eb;
  --muted: #a7b0c0;
  --accent: #60a5fa;
  --accent-2: #34d399;
  --card: #111827;
  --border: #243149;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 14px;
}

html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg), #0b1020 40%, #0a0f1d);
  color: var(--text);
  line-height: 1.6;
}

.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(10,15,29,0.7);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { color: var(--text); font-weight: 700; text-decoration: none; }
.nav a { color: var(--text); text-decoration: none; margin-left: 16px; opacity: .9; }
.nav .btn.small { padding: 8px 14px; font-size: 14px; }

.hero {
  padding: 80px 0 40px;
  text-align: center;
  background: radial-gradient(1200px 500px at 50% -20%, rgba(96,165,250,.25), transparent 60%);
}
.hero h1 { font-size: clamp(28px, 5vw, 46px); line-height: 1.15; margin: 0 0 12px; }
.lead { font-size: 18px; color: var(--muted); margin: 0 auto 20px; max-width: 800px; }
.accent { color: var(--accent); }
.cta-row { display: flex; gap: 12px; justify-content: center; }

.section { padding: 56px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { margin-top: 0; font-size: 28px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 800px) { .grid-2 { grid-template-columns: 1.2fr .8fr; } }

.feature-box {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px; border-radius: var(--radius);
}

.price-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 16px; }
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.price { font-size: 24px; font-weight: 700; margin: 0 0 8px; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; }

.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 12px;
  border-radius: 10px; border: 1px solid var(--border);
  background: #0b1326; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); }

.honeypot { display: none; }

.checklist { list-style: none; padding-left: 0; }
.checklist li::before { content: "✓"; color: var(--accent-2); margin-right: 8px; }

.btn {
  display: inline-block; padding: 12px 18px; border-radius: 10px;
  background: var(--accent); color: #0b1020; font-weight: 700; text-decoration: none;
  border: 1px solid transparent;
}
.btn:hover { filter: brightness(1.05); }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--border); }

.consent { display: flex; align-items: center; gap: 10px; margin: 10px 0 4px; }
.consent a { color: var(--accent); }

.site-footer { border-top: 1px solid var(--border); margin-top: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.footer-nav a { color: var(--muted); text-decoration: none; margin-left: 14px; }

.error { color: #fecaca; }
.form-note { margin-top: 8px; }
