/* ============================================================
   Innovation Management Challenge — innovatie-management.css
   Page-specific styles for /innovatie-management
   ============================================================ */

/* ---- Video hero: absolute stacking replaces the top:-50vh flow trick.
        wrappervideo becomes the positioned root; video, overlay and text
        all fill it with position:absolute so centering is clean and nothing
        can escape the box (fixes nav overlay + horizontal scroll). ---- */
.wrappervideo {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

/* Video fills the box */
.wrappervideo .wrapper__video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

/* Dark tint overlay — contained inside the video box */
.im-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,58,84,0.72);
  z-index: 5;
  pointer-events: none;
}

/* Override stylemin's top:-50vh trick; use flex centering instead */
.wrappervideo .videooverlaytext {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.im-hero-content {
  text-align: center;
  padding: 0 24px;
}
.im-hero-btns { margin-top: 28px; }

/* ---- Intro paragraph ---- */
.im-intro {
  background: linear-gradient(120deg, #eef7fd 0%, #dff0fb 100%);
  border-left: 4px solid #0da6e0;
  border-radius: 0 12px 12px 0;
  padding: 22px 28px;
  margin: 32px 0 48px;
  font-size: 15px;
  line-height: 1.9;
  color: #3a4a56;
  box-shadow: 0 2px 12px rgba(13,166,224,0.08);
}
.im-intro p { margin: 0; }
.im-intro strong { color: #0da6e0; font-weight: 700; }

/* ---- Section spacing & dividers ---- */
.im-section { padding: 56px 0; }
.im-section + .im-section { border-top: 1px solid #f0f4f8; }

/* ---- Section header (left-aligned variant) ---- */
.im-section-hdr { margin-bottom: 32px; }
.im-section-hdr .section-tag { display: block; margin-bottom: 10px; }
.im-section-hdr h2 {
  font-size: 28px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 10px;
  font-family: 'Lato', sans-serif;
}
.im-section-hdr p {
  font-size: 15px;
  color: #666;
  line-height: 1.72;
  margin: 0;
}

/* ---- Vertically-centred flex row ---- */
.im-vcenter-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.im-vcenter-row > [class*="col-"] { display: block; }

/* ---- Quote card ---- */
.im-quote {
  background: linear-gradient(135deg, #eef7fd 0%, #dff0fb 100%);
  border-left: 4px solid #0da6e0;
  border-radius: 0 14px 14px 0;
  padding: 28px 26px;
  margin: 0;
  color: #3a4a56;
  font-size: 15px;
  line-height: 1.85;
  font-style: italic;
  box-shadow: 0 3px 16px rgba(13,166,224,0.10);
}
.im-quote p { margin: 0; }

/* ---- Body text ---- */
.im-body-text { font-size: 15px; line-height: 1.85; color: #4a5568; }
.im-body-text p { margin-bottom: 16px; }
.im-body-text p:last-child { margin-bottom: 0; }
.im-body-text strong { color: #0d6892; font-weight: 700; }

/* ---- Feature badges ---- */
.im-feature-row { margin-top: 20px; }
.im-feature-badge {
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eef7fd;
  border: 1px solid #c8e8f5;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 0 6px 8px 0;
  font-size: 13px;
  font-weight: 700;
  color: #0d6892;
}
.im-feature-badge i { color: #0da6e0; margin-right: 7px; font-size: 12px; }

/* ---- Checklist ---- */
.im-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}
.im-checklist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
  font-size: 14.5px;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 12px;
}
.im-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13,166,224,0.12);
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
  margin-top: 1px;
}
.im-check-icon i { font-size: 10px; color: #0da6e0; }

/* ---- Content panel (image + text) ---- */
.im-panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf3;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  margin-bottom: 0;
}
.im-panel-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  display: block;
  padding:20px;
}
.im-panel-content { padding-left: 28px; }
.im-panel-content-left { padding-left: 0; padding-right: 28px; }
.im-panel-content h3 {
  font-size: 21px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 18px;
  font-family: 'Lato', sans-serif;
}

/* ---- Dark process box ---- */
.im-process-box {
  background: linear-gradient(135deg, #072536 0%, #0d4d6d 52%, #0a3a54 100%);
  border-radius: 20px;
  padding: 52px 40px;
  box-shadow: 0 18px 52px rgba(7,37,54,0.24);
  overflow: hidden;
}
.im-process-box .im-section-hdr h2 { color: #fff; }
.im-process-box .im-section-hdr p  { color: rgba(255,255,255,0.68); }
.im-process-box .section-tag {
  color: rgba(255,255,255,0.78) !important;
  background: rgba(255,255,255,0.1) !important;
}
.im-process-img-box {
  width: 100%;
  max-width: 860px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}

/* ---- Models image ---- */
.im-models-img {
  width: 90%;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* ---- Professional services cards ---- */
.im-ps-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8edf3;
  padding: 28px 24px;
  margin-bottom: 24px;
  -webkit-transition: box-shadow 0.22s, -webkit-transform 0.2s;
          transition: box-shadow 0.22s,         transform 0.2s;
  height: 100%;
  text-align: center;
}
.im-ps-card:hover {
  box-shadow: 0 8px 28px rgba(13,166,224,0.12);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.im-ps-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dff2fc 0%, #b3e2f7 100%);
  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;
  font-size: 26px;
  color: #0da6e0;
  margin: 0 auto 16px;
  -webkit-transition: background 0.25s, color 0.25s;
          transition: background 0.25s, color 0.25s;
}
.im-ps-card:hover .im-ps-icon {
  background: linear-gradient(135deg, #0da6e0 0%, #0b8ec0 100%);
  color: #fff;
}
.im-ps-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 8px;
  font-family: 'Lato', sans-serif;
}
.im-ps-card p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}
.im-ps-footer { text-align: center; padding-top: 8px; }
.im-ps-note {
  font-size: 14px;
  color: #666;
  line-height: 1.72;
  max-width: 680px;
  margin: 0 auto 24px;
  font-style: italic;
}

/* ---- CTA box ---- */
.im-cta-box {
  background: linear-gradient(135deg, #0a3a54 0%, #0d5c82 100%);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 18px 52px rgba(7,37,54,0.24);
  margin-bottom: 32px;
}
.im-cta-box .section-tag {
  background: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.78) !important;
  margin-bottom: 14px;
}
.im-cta-box h2 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  font-family: 'Lato', sans-serif;
}
.im-cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin: 0 auto 32px;
  max-width: 600px;
  line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .im-panel { padding: 28px 22px; }
  .im-panel-content,
  .im-panel-content-left { padding-left: 0; padding-right: 0; margin-top: 22px; }
  .im-process-box { padding: 36px 24px; }
  .im-cta-box { padding: 44px 28px; }
}

@media (max-width: 768px) {
  .im-section { padding: 36px 0; }
  .im-vcenter-row { display: block; }
  .im-panel { padding: 20px 16px; }
  .im-panel-content h3 { font-size: 18px; }
  .im-section-hdr h2 { font-size: 23px; }
  .im-process-box { border-radius: 14px; }
  .im-cta-box { border-radius: 14px; padding: 36px 20px; }
  .im-cta-box h2 { font-size: 24px; }
}
