/* Success overview (block 32) — image-top elevated cards.
 * Three equal pillars (Powerful solutions / Smart integrations / Support all the way), each with a
 * screenshot + "Explore →" link, plus the integration-partner logos.
 * Accent per pillar via --ac/--ac-soft; brand hex (resource-CSS convention). Duotone icons.
 */

/* ---------- pillar accents ---------- */
.so--blue  { --ac:#3478F7; --ac-soft:#DFEAFB; }
.so--coral { --ac:#EC634B; --ac-soft:#FFE7DD; }
.so--green { --ac:#1A8A3F; --ac-soft:#DFF1E5; }

/* ---------- shared bits ---------- */
.so-icon {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 50px; height: 50px; border-radius: 10px;
  background: var(--ac-soft); color: var(--ac); font-size: 24px;
}
.so-explore {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading, "Proxima Nova"), sans-serif;
  font-weight: 600; font-size: 15px; color: var(--ac);
}
.so-explore i { transition: transform .18s ease; }

/* ---------- image-top elevated cards ---------- */
.so-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .so-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.so-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid #E6E8EF; border-radius: 20px; overflow: hidden;
  box-shadow: 0 14px 40px -28px rgba(15, 26, 79, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.so-card:hover { transform: translateY(-5px); box-shadow: 0 26px 56px -28px rgba(15, 26, 79, .32); }
.so-card-media { overflow: hidden; border-bottom: 1px solid #EEF0F5; }
.so-card-media img { width: 100%; height: auto; display: block; transition: transform .35s ease; }
.so-card:hover .so-card-media img { transform: scale(1.05); }
.so-card-body { display: flex; flex-direction: column; gap: 12px; padding: 24px; flex: 1; }
.so-card-body .so-icon {
  width: 44px; height: 44px; font-size: 20px; margin-top: -46px; position: relative;
  border: 3px solid #fff; box-shadow: 0 6px 16px -6px rgba(15, 26, 79, .3), 0 0 0 1px rgba(15, 26, 79, .1); background: #fff;
}
.so-card-body .so-explore { margin-top: auto; }
.so-card:hover .so-explore i { transform: translateX(4px); }

/* ---------- integration-partner logos ---------- */
.so-partners { margin-top: 56px; text-align: center; }
.so-partner-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.so-partner-logo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 60px; padding: 0 26px;
  background: #fff; border: 1px solid #E6E8EF; border-radius: 14px;
  box-shadow: 0 8px 22px -14px rgba(15, 26, 79, .28);
}
.so-partner-logo img { max-height: 30px; width: auto; display: block; }
