.mnp-intro {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf9 100%);
}

.mnp-intro-figure {
  margin: 0;
}

.mnp-intro-figure img {
  border-radius: 1.5rem;
  box-shadow: 0 1.5rem 3rem rgba(26, 28, 30, 0.12);
}

.mnp-verse-strip {
  background: linear-gradient(135deg, #010f72 0%, #1b2eb2 50%, #ea2130 100%);
  overflow: hidden;
}

.mnp-verse-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: mnp-scroll-verse 20s linear infinite;
}

.mnp-verse-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mnp-verse-cross {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes mnp-scroll-verse {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mnp-experience {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.mnp-gallery-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 3rem;
}

.mnp-gallery-header h2 {
  color: #010f72;
}

.mnp-gallery-header p {
  color: #4d5661;
}

.mnp-gallery-outer {
  overflow: hidden;
  position: relative;
}

.mnp-gallery-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-behavior: auto;
  cursor: grab;
  padding: 0.5rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mnp-gallery-track::-webkit-scrollbar {
  display: none;
}

.mnp-gallery-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.mnp-gallery-slide {
  flex: 0 0 auto;
  width: 320px;
}

.mnp-gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0.5rem 1.5rem rgba(26, 28, 30, 0.1);
  cursor: pointer;
  pointer-events: none;
}

.mnp-gallery-slide a {
  display: block;
}

.mnp-gallery-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0.75rem 2rem rgba(26, 28, 30, 0.15);
}

.mnp-gallery-modal {
  background: rgba(10, 12, 18, 0.96);
  color: #ffffff;
}

.mnp-gallery-modal .modal-body {
  position: relative;
  padding: 1rem 4.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
}

.mnp-gallery-modal-image {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 1rem;
  object-fit: contain;
}

.mnp-gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(26, 28, 30, 0.88);
  color: #ffffff;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.mnp-gallery-modal-nav:hover {
  transform: translateY(-50%) translateY(-1px);
  opacity: 0.92;
}

.mnp-gallery-modal-nav--prev {
  left: 1rem;
}

.mnp-gallery-modal-nav--next {
  right: 1rem;
}

.mnp-about-form {
  background: #ffffff;
}

.mnp-form-card {
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 1.5rem 3rem rgba(26, 28, 30, 0.08);
}

.mnp-form-card h2 {
  color: #1a1c1e;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.mnp-form-section-title {
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ea2130;
  color: #010f72;
  font-size: 1.1rem;
  font-weight: 700;
}

.mnp-form-card .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #4d5661;
}

.mnp-form-card .form-control,
.mnp-form-card .form-select {
  border-radius: 0.75rem;
  border: 1px solid rgba(1, 15, 114, 0.12);
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mnp-form-card .form-control:focus,
.mnp-form-card .form-select:focus {
  border-color: #010f72;
  box-shadow: 0 0 0 0.2rem rgba(1, 15, 114, 0.12);
}

.mnp-cta {
  background: linear-gradient(135deg, rgba(1, 15, 114, 0.06), rgba(234, 33, 48, 0.06));
  border-top: 1px solid rgba(1, 15, 114, 0.08);
}

.mnp-cta h3 {
  color: #1a1c1e;
  font-size: 1.3rem;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .mnp-intro-figure {
    margin-top: 1rem;
    text-align: center;
  }

.mnp-about-form {
  background: #ffffff;
}

.mnp-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .mnp-verse-text {
    font-size: 0.9rem;
  }

  .mnp-cta h3 {
    font-size: 1.1rem;
  }

  .mnp-gallery-slide {
    width: 280px;
  }

  .mnp-gallery-modal .modal-body {
    min-height: 48vh;
    padding: 1rem 3.5rem 1.5rem;
  }

  .mnp-gallery-modal-nav {
    width: 2.35rem;
    height: 2.35rem;
  }
}