:root {
  --obsidian: #0B0D10;
  --graphite: #22262C;
  --card: #191C21;
  --white: #F7F8FA;
  --steel: #C7CCD3;
  --steel-dim: #9BA1A9;
  --lime: #B8FF4D;
  --lime-dark: #8FCC2E;
  --max-w: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--graphite);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.kicker {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }

.lead {
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 720px;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--lime);
  color: var(--obsidian);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--steel-dim);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(34, 38, 44, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-icon { width: 26px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--steel); }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--lime);
  color: var(--obsidian) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* HERO */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.hero-logo { width: min(260px, 70vw); }
.hero-quote {
  font-style: italic;
  color: var(--lime);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 620px;
  line-height: 1.5;
}

/* SECTIONS */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-cta {
  text-align: center;
}
.section-cta h2, .section-cta .lead { margin-left: auto; margin-right: auto; }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--obsidian);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.step p { color: var(--steel); font-size: 0.92rem; }

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 2rem;
}
.card {
  background: var(--card);
  border-left: 3px solid var(--lime);
  border-radius: 8px;
  padding: 1.3rem 1.5rem;
}
.card p { color: var(--steel); font-size: 0.95rem; }
.card-accent { border-left-color: var(--white); }

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0 2.5rem;
}
.stat-num {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--lime);
}
.stat-label { color: var(--steel); font-size: 0.9rem; margin-top: 0.2rem; }

/* CONTACT */
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.8rem 0 1.3rem;
  flex-wrap: wrap;
}
.contact-detail { color: var(--steel-dim); font-size: 0.9rem; }

/* FOOTER */
.footer {
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--steel-dim);
}
.footer-icon { width: 28px; margin: 0 auto 0.8rem; opacity: 0.8; }
.footer p { font-size: 0.88rem; margin-top: 0.3rem; }
.footer-copy { margin-top: 0.6rem; opacity: 0.7; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--graphite);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem 1.6rem;
    gap: 1rem;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: 1fr; }
}
