* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ================= COMMON ================= */
.vm-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 24px;
}

.vm-section {
  padding: 20px 0;
}

/* ================= HEADER ================= */
.vm-nav-links {
  padding: 38px 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 42px;
}

.home-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.home-link:hover {
  background: rgba(255,255,255,0.18);
}

/* ================= HERO ================= */
.vm-hero {
  background: linear-gradient(135deg, #2c4b4a, #0f1e1d);
  color: #fff;
  min-height: 100vh;
}

.vm-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.vm-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3fa38c;
}

.vm-hero-text h1 {
  font-size: 48px;
  margin: 14px 0;
}

.vm-hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
}

.vm-hero-subtitle strong {
  color: #3fa38c;
}

.vm-hero-desc {
  opacity: 0.9;
  margin-top: 20px;
  line-height: 1.8;
}

/* ================= HERO IMAGE ================= */
.vm-hero-image-wrap {
  position: relative;
  text-align: center;
}

.vm-hero-image-wrap img {
  max-width: 490px;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0,0,0,.4);
}

.vm-metric {
  position: absolute;
  background: #3fa38c;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 13px;
}

.vm-metric strong {
  display: block;
  font-size: 20px;
}

.vm-m1 { top: 10%; left: -40px; }
.vm-m2 { top: 35%; right: -30px; }
.vm-m3 { bottom: 30%; left: -20px; }
.vm-m4 { bottom: 5%; right: -10px; }

/* ================= VISION / MISSION ================= */
.vm-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
}

.vm-insight-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

.vm-insight-card h3 {
  color: #3fa38c;
  margin-bottom: 10px;
}

.vm-mission {
  padding-left: 20px;
}

.vm-mission li {
  margin-bottom: 10px;
}

/* ================= PHILOSOPHY ================= */
.vm-narrow {
  max-width: 920px;
  margin: auto;
  padding: 80px 24px;
}

.vm-blockquote {
  background: #e7f8f0;
  border-left: 6px solid #3fa38c;
  padding: 24px;
  margin: 24px 0;
  font-size: 18px;
}

/* ================= IMPACT ================= */
.vm-impact {
  background: linear-gradient(135deg, #2c4b4a, #0f1e1d);
  color: #fff;
}

.vm-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.vm-impact strong {
  font-size: 36px;
  display: block;
}

/* ================= CTA ================= */
.vm-final-cta {
  text-align: center;
  padding: 120px 24px;
  color: #3fa38c;
}

.vm-final-cta p {
  margin: 15px 0 30px;
}

.vm-cta-secondary {
  display: inline-block;
  padding: 16px 36px;
  background: #3fa38c;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= FOOTER ================= */
.vm-footer {
  background: linear-gradient(135deg, #2c4b4a, #0f1e1d);
}

.vm-footer-content {
  padding: 20px 100px;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .vm-nav-links { padding: 20px 60px; }
  .vm-hero-text h1 { font-size: 42px; }
}

@media (max-width: 992px) {
  .vm-nav-links { padding: 20px 32px; }
  .vm-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vm-metric { display: none; }
  .vm-footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .vm-nav-links {
    flex-direction: column;
    gap: 14px;
  }
  .vm-hero-text h1 { font-size: 32px; }
  .vm-final-cta { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .vm-hero-text h1 { font-size: 26px; }
  .vm-blockquote { font-size: 16px; }
  .vm-footer-content { font-size: 13px; }
}
