:root {
  --bg: #0f172a;       /* slate-900 */
  --card: #111827;     /* gray-900 */
  --muted: #9ca3af;    /* gray-400 */
  --text: #e5e7eb;     /* gray-200 */
  --brand: #60a5fa;    /* blue-400 */
  --accent: #22c55e;   /* green-500 */
  --ring: rgba(96,165,250,0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: linear-gradient(180deg, #0b1021, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(15,23,42,0.9);
  border-bottom: 1px solid #1f2937;
  backdrop-filter: blur(6px);
}
.brand { margin: 0; font-size: 1.25rem; letter-spacing: .3px; }
.nav { display: flex; gap: 1rem; align-items: center; }
.nav a { color: var(--text); text-decoration: none; padding: .75rem .5rem; border-radius: .5rem; }
.nav a:hover { color: white; background: #1f2937; }
.nav a.active { color: white; background: #1d4ed8; }

header .container { display: flex; align-items: center; justify-content: space-between; padding: .6rem 0; }

.site-footer { border-top: 1px solid #1f2937; margin-top: 3rem; }
.site-footer .container { padding: 1.2rem 0; color: var(--muted); }

.hero { padding: 2.2rem 0 1.2rem; text-align: left; }
.hero h2 { margin: 0 0 .4rem; font-size: 2rem; }
.pill-list { list-style: none; padding: 0; display: flex; gap: .5rem; flex-wrap: wrap; }
.pill-list li { background: #1f2937; border: 1px solid #2b3546; color: #cbd5e1; padding: .35rem .6rem; border-radius: 999px; font-size: .9rem; }

.grid { display: grid; gap: 1rem; margin: 1.5rem 0; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--card); border: 1px solid #1f2937; border-radius: 16px; padding: 1rem; box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.card h3 { margin-top: 0; }

.features { margin-top: 2rem; }
.features ul { padding-left: 1rem; }

.cta {
  margin: 2rem 0;
  background: radial-gradient(1000px 500px at 30% -20%, rgba(96,165,250,.15), transparent),
              radial-gradient(1000px 500px at 80% -10%, rgba(34,197,94,.15), transparent);
  border: 1px solid #20304a; border-radius: 16px; padding: 1.2rem;
}
.btn { display: inline-block; background: var(--accent); color: #052e12; text-decoration: none; padding: .7rem 1rem; border-radius: .75rem; font-weight: 700; border: none; cursor: pointer; }
.btn:hover { filter: brightness(1.05); }

.page-head { padding-top: 1.5rem; }
.two-col { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .two-col { grid-template-columns: 1fr 1fr; } }

.checklist { list-style: none; padding-left: 0; }
.checklist li { padding-left: 1.6rem; position: relative; margin: .35rem 0; }
.checklist li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--accent); }

.highlight { margin-top: 1.2rem; padding: 1rem; border: 1px dashed #2d3a52; border-radius: 12px; background: #0e1728; }

.contact-wrap { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1rem 0 2rem; }
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 2fr 1fr; } }

.contact-form { background: var(--card); border: 1px solid #1f2937; border-radius: 16px; padding: 1rem; }
.contact-form label { display: block; font-weight: 600; margin: .6rem 0 .25rem; color: #d1d5db; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: .7rem .8rem; border-radius: .6rem; border: 1px solid #2a3650; background: #0b1223; color: var(--text); outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 .2rem var(--ring); }
.contact-info { background: #0e1728; border: 1px solid #22304b; border-radius: 16px; padding: 1rem; }

/* --- Harmonize Stats section with site colors --- */
.stats {
  /* same vibe as your CTA: dark slate with soft brand/accent glow */
  background:
    radial-gradient(1000px 500px at 30% -20%, rgba(96,165,250,.12), transparent),
    radial-gradient(1000px 500px at 80% -10%, rgba(34,197,94,.12), transparent),
    #0f172a; /* var(--bg) base */
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  padding: 2rem 0;
}

/* numbers & labels tuned to your palette */
.stat .value {
  color: var(--brand);         /* blue-400 */
  text-shadow: 0 0 18px rgba(96,165,250,.15);
}
.stat .label {
  color: var(--text);          /* gray-200 */
  opacity: .9;
}

/* dividers tint with brand color */
.stats-grid > .stat:not(:last-child)::after {
  background: rgba(96,165,250,.35); /* brand glow line */
}

/* if you used inline <span> as dividers in HTML, tint them too */
.stats-grid .stat > span {
  background: rgba(96,165,250,.35) !important;
}

/* mobile spacing stays consistent */
@media (max-width: 720px) {
  .stats { padding: 1.4rem 0; }
}
