/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}

body {
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
}

/* UTILITIES */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

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

/* BUTTON */
.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  display: inline-block;
}

/* HEADER */
.site-header {
  background: #0f172a;
}

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

.brand {
  color: #fff;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu a {
  color: #cbd5f5;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-list {
  margin-top: 1.5rem;
}

.about-list li {
  margin-bottom: 0.6rem;
}

/* HIGHLIGHT */
.about-highlight {
  background: #f1f5f9;
  padding: 2.5rem;
  border-radius: 12px;
}

/* MVV */
.mvv {
  background: #f8fafc;
  padding: 4rem 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mvv-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}

.stats-grid h3 {
  color: #2563eb;
  font-size: 2rem;
}

/* APPROACH */
.approach {
  background: #0f172a;
  padding: 4rem 0;
  color: #e5e7eb;
}

.section-title.light {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* CTA */
.cta-section {
  background: #2563eb;
  color: #fff;
  padding: 4rem 0;
}

.cta-box {
  text-align: center;
}

/* FOOTER */
.site-footer {
  background: #020617;
  color: #cbd5f5;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-grid a {
  display: block;
  margin-top: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ===================== */
/* 📱 RESPONSIVE */
/* ===================== */

@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #0f172a;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .mvv-grid,
  .stats-grid,
  .approach-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
