/* ============================================================
   Memo Oplossing — page-specific styles
   /memo-oplossing-om-snel-ideeen-te-verzamelen
   ============================================================ */

/* ---- Static image hero ---- */
.memo-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
  background-image: url('/assets/img2/header_memo_solution.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.memo-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 58, 84, 0.72);
  z-index: 1;
  pointer-events: none;
}

.memo-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.memo-hero-content .head {
  color: #fff !important;
  font-size: 36px !important;
  font-weight: 900 !important;
  font-family: 'Lato', sans-serif;
  letter-spacing: -0.01em;
  margin: 0 0 12px !important;
  line-height: 1.2;
}

.memo-hero-content .subtext {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: normal !important;
  font-family: 'Lato', sans-serif;
  margin: 0 0 12px !important;
  line-height: 1.5;
}

/* ---- Three approach step cards ---- */
.memo-steps-row {
  margin-top: 32px;
}

.memo-step-card {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 24px;
  -webkit-transition: -webkit-box-shadow 0.22s, -webkit-transform 0.22s;
  transition: box-shadow 0.22s, transform 0.22s;
}

.memo-step-card:hover {
  -webkit-box-shadow: 0 12px 40px rgba(13, 166, 224, 0.13);
  box-shadow: 0 12px 40px rgba(13, 166, 224, 0.13);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.memo-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #0da6e0), color-stop(100%, #09c4b0));
  background: linear-gradient(135deg, #0da6e0 0%, #09c4b0 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  font-family: 'Lato', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.memo-step-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 12px;
  font-family: 'Lato', sans-serif;
}

.memo-step-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.74;
  margin: 0;
}

/* ---- Dark process-box: white text overrides ---- */
.im-process-box .im-body-text {
  color: rgba(255, 255, 255, 0.82);
}

.im-process-box .im-body-text p {
  color: rgba(255, 255, 255, 0.82);
}

.im-process-box .im-body-text strong {
  color: #7dd8f5;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .memo-hero {
    height: 40vh;
    min-height: 260px;
  }

  .memo-step-card {
    padding: 26px 20px;
  }
}
