:root {
  --dark: #0f172a;
  --accent-blue: #2563eb;
  --text: #0f172a;
  --muted: #475569;
  --border: #e5e7eb;
  --light: #f8fafc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.7;
  color: var(--text);
}

/* NAV */
.nav {
  background: var(--dark);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  flex-direction: column;
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}
.tagline {
  font-size: 0.75rem;
  color: #c7d2fe;
}

/* MENU */
.menu a {
  color: #cbd5e1;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero-wrap {
  background: var(--dark);
  color: white;
}
.hero-content {
  padding: 90px 0 80px;
}
.hero-content h1 {
  font-size: 3rem;
}
.hero-sub {
  max-width: 650px;
  color: #cbd5e1;
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}
.container.narrow {
  max-width: 820px;
}
.section {
  padding: 100px 0;
}
.section.light {
  background: var(--light);
}
.lead {
  color: var(--muted);
}

/* CONTENT */
.bullets {
  padding-left: 18px;
}
.bullets li {
  margin-bottom: 12px;
}

.steps {
  padding-left: 18px;
}
.steps li {
  margin-bottom: 18px;
}

/* TOOLS */
.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.tools span {
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
}

/* CTA */
.cta {
  background: var(--dark);
  color: white;
  text-align: center;
}

/* CALENDLY */
.calendly-wrapper {
  margin-top: 40px;
  background: white;
  border-radius: 12px;
  padding: 12px;
}
.contact-alt {
  margin-top: 20px;
  font-size: 0.9rem;
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn.small {
  padding: 8px 16px;
}
.btn-primary {
  background: var(--accent-blue);
  color: white;
}

/* FOOTER */
.footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 28px;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
