/* Shared section heading */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1A1F84;
  background: rgba(79, 126, 255, 0.12);
  border: 1px solid rgba(26, 31, 132, 0.22);
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: #1A1D3A;
  line-height: 1.35;
  margin-bottom: 12px;
}

.section-head p {
  font-size: 16px;
  color: #6B6660;
  line-height: 1.7;
}

.mark {
  position: relative;
  display: inline;
  white-space: nowrap;
  z-index: 0;
}

.mark::before {
  content: "";
  position: absolute;
  inset-inline: -0.12em;
  bottom: 0.06em;
  height: 0.42em;
  background: rgba(79, 126, 255, 0.28);
  border-radius: 6px;
  z-index: -1;
}

/* ── Product showcase (clean, like later sections) ───────── */
.showcase {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 88px;
  background: #FFFFFF;
}

.showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.showcase-stage {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.showcase-demo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.showcase-demo .sd-root { max-width: 100%; }
.showcase-demo .sd-screen { height: 480px; }
.showcase-demo .sd-col-side { display: none; }

.showcase-caption {
  margin: 28px auto 0;
  max-width: 520px;
  text-align: center;
  font-size: 13px;
  color: #4A4A55;
  line-height: 1.6;
}

.showcase-context {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.showcase-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px 18px;
  border-radius: 18px;
  background: #F7F8FF;
  border: 1px solid rgba(79, 126, 255, 0.10);
}

.showcase-point-num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #1A1F84, #4F7EFF);
}

.showcase-point strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #1A1D3A;
  margin-bottom: 4px;
}

.showcase-point p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #6B6660;
}

.showcase-cta {
  margin-top: 48px;
  text-align: center;
}

.btn-dark,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1A1F84, #6474FF);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(79, 126, 255, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-dark:hover,
.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(79, 126, 255, 0.34);
}

@media (max-width: 980px) {
  .showcase { padding: 56px 16px 64px; }
  .showcase-demo .sd-screen { height: 400px; }
  .section-head h2 { font-size: 26px; }
  .showcase-caption {
    margin-top: 24px;
  }
  .showcase-context {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  .showcase-cta {
    margin-top: 36px;
  }
}
