/* Base */
.m2pv-page {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.m2pv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.m2pv-container.narrow {
  max-width: 760px;
}

/* HERO */
.m2pv-hero {
  position: relative;
  min-height: 100vh;
  background: url("https://demo.m2pvcapital.com/wp-content/uploads/sites/7/2026/01/photo-1509391366360-2e959784a276.jpg")
    center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.m2pv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    153deg,
    rgba(49, 50, 54, 0.6),
    rgba(255, 255, 255, 0.4)
  );
}

.m2pv-hero .m2pv-container {
  position: relative;
}

.hero-lead {
  max-width: 720px;
  font-size: 1.25rem;
  color: #d0d0d0;
}

/* Sections */
.m2pv-section {
  padding: 100px 0;
}

.m2pv-section.light {
  background: #f8f8f8;
}

.m2pv-section.dark {
  background: #111;
  color: #fff;
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.card {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background: #fff;
  color: #111;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

