.container {
  max-width: 1200px;
  margin: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  background: var(--bg-deep);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-wide {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 20px;
  color: white;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
}

/* FOOTER */
.site-footer {
  background: var(--bg-deep);
  margin-top: 80px;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 40px;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  body { overflow-x: hidden; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background: var(--bg-deep);
    top: 72px;
    left: 0;
    width: 100vw;
    padding: 20px;
  }

  .nav-links a {
    margin: 12px 0;
  }

  .mobile-toggle {
    display: block;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-left {
  max-width: 650px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.2;
}

.hero-subtitle {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 18px;
}

.hero-ctas {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 32px;
  display: flex;
  gap: 24px;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }
}
