/* ================================================================
   Ideation & Crowdsourcing page
   assets/css/ideation-en-crowdsourcing.css
   ================================================================ */

/* ---- Stats bar row alignment ---- */
.stats-bar .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ---- Section layout ---- */
.ic-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ic-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
  display: block;
}

.ic-img2 {
  width: 100%;
  /*border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.11);*/
  display: block;
}

.ic-text {
  padding-left: 36px;
}

.ic-section-tag {
  margin-bottom: 10px;
}

.ic-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 16px;
  font-family: 'Lato', sans-serif;
}

.ic-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.82;
  margin-bottom: 12px;
}

/* ---- Quote block ---- */
.ic-quote-block {
  background: #f0f9ff;
  border-left: 4px solid #0da6e0;
  border-radius: 0 12px 12px 0;
  padding: 32px 28px;
  position: relative;
}

.ic-quote-icon {
  font-size: 36px;
  color: #0da6e0;
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 20px;
}

.ic-quote-text {
  font-size: 15px;
  font-style: italic;
  color: #444;
  line-height: 1.8;
  margin: 0 0 14px;
  padding-top: 16px;
}

.ic-quote-author {
  font-size: 13px;
  font-weight: 700;
  color: #0da6e0;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ---- Pillar checklist blocks ---- */
.ic-pillar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  margin-bottom: 18px;
}

.ic-pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  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: 14px;
  color: #0da6e0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 14px;
  margin-top: 2px;
}

.ic-pillar-body strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #12253a;
  margin-bottom: 4px;
  font-family: 'Lato', sans-serif;
}

.ic-pillar-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.68;
  margin: 0;
}

/* ---- Support grid ---- */
.ic-support-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 16px 0;
}

.ic-support-item {
  font-size: 14px;
  color: #444;
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.ic-check {
  color: #0da6e0;
  font-size: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* ---- Feature cards ---- */
.ic-fn-card {
  text-align: center;
}

.ic-fn-card .sol-link {
  margin-top: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* ---- Process steps (How it works) ---- */
.ic-steps-row {
  margin-top: 32px;
}

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

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

.ic-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0da6e0, #09c4b0);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  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 18px;
  font-family: 'Lato', sans-serif;
}

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

.ic-step-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.72;
  margin: 0;
}

/* ---- Pillar icon hover ---- */
.ic-pillar-icon {
  -webkit-transition: -webkit-transform 0.18s;
  transition: transform 0.18s;
}

.ic-pillar:hover .ic-pillar-icon {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .ic-text {
    padding-left: 15px;
    margin-top: 26px;
  }

  .ic-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .ic-text {
    padding-left: 0;
  }

  .ic-pillar {
    margin-bottom: 14px;
  }

  .ic-img {
    border-radius: 10px;
  }

  .ic-quote-block {
    padding: 24px 20px;
  }

  .ic-support-item {
    width: 100%;
  }

  .ic-step-card {
    padding: 24px 20px;
  }
}