/* ===== Base Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0b0f14;
  color: #e6e8eb;
  line-height: 1.6;
}

/* ===== Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-accent { background: linear-gradient(180deg, #0e1623, #0b0f14); }
.final-cta { background: linear-gradient(180deg, #0b0f14, #0e1623); }

.page-hero { padding: 96px 0 48px; }

/* ===== Typography ===== */
h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 18px; }
h3 { font-size: 1.1rem; margin-bottom: 8px; }
p { color: #c7ccd3; }
.lead { font-size: 1.1rem; max-width: 760px; margin-bottom: 22px; }
.subhead { max-width: 780px; margin-bottom: 28px; }
.micro { margin-top: 18px; font-size: 0.92rem; color: #a8afba; }
.muted { color: #a0a7b2; }
a { color: inherit; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1a2230;
  z-index: 10;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-weight: 700; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: grid; place-items: center; font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: #c7ccd3; text-decoration: none; font-size: 0.95rem; }
.nav-links a.active { color: #ffffff; }
.nav-toggle {
  display: none;
  background: transparent;
  color: #e6e8eb;
  border: 1px solid #2a3445;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.mobile-menu {
  border-top: 1px solid #1a2230;
  padding: 14px 24px 18px;
  display: grid;
  gap: 12px;
}
.mobile-menu a { text-decoration: none; color: #c7ccd3; }
.mobile-menu a.active { color: #fff; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 10px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
}
.btn-primary { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; }
.btn-secondary { border: 1px solid #2a3445; color: #e6e8eb; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* ===== Hero ===== */
.hero { padding: 120px 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; }
.hero-card {
  background: #0e1623;
  border: 1px solid #1a2230;
  border-radius: 18px;
  padding: 28px;
}
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.stat-num { font-size: 2rem; font-weight: 800; }
.stat-label { font-size: 0.88rem; color: #a0a7b2; }
.note { font-size: 0.92rem; color: #a8afba; }

/* ===== Cards ===== */
.cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card {
  background: #0e1623;
  border: 1px solid #1a2230;
  border-radius: 16px;
  padding: 22px;
}

/* ===== Steps ===== */
.steps { display: grid; gap: 22px; }
.step { display: flex; gap: 18px; }
.step-num { font-size: 1.4rem; font-weight: 900; color: #3b82f6; min-width: 28px; }
.outcome { margin-top: 8px; font-size: 0.92rem; }
.list { margin-top: 10px; margin-left: 18px; color: #c7ccd3; }
.list li { margin: 6px 0; }

/* ===== Chips ===== */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips span {
  background: #0e1623;
  border: 1px solid #1a2230;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: #c7ccd3;
}

/* ===== Footer ===== */
.footer { border-top: 1px solid #1a2230; padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: #a8afba; text-decoration: none; margin-left: 16px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}
