
/* Hero paragrafı: açık kart üzerinde kesin okunabilirlik */
.bk-assessment > p {
  color: #40566d !important;
  -webkit-text-fill-color: #40566d !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  text-shadow: none !important;
  mix-blend-mode: normal !important;
}

/* Barkod nasıl alınır sayfası: işlem sıralaması */
.bk-application-process {
  margin: 30px 0 36px;
  padding: 30px;
  border: 1px solid #dce7f2;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 18px 48px rgba(12, 58, 102, .08);
}
.bk-application-process .bk-process-intro {
  max-width: 820px;
  margin: 0 0 24px;
  color: #4b6075;
  line-height: 1.75;
}
.bk-process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: barkod-step;
}
.bk-process-list li {
  counter-increment: barkod-step;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid #e1eaf3;
  border-radius: 18px;
  background: #fff;
}
.bk-process-list li::before {
  content: counter(barkod-step);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff3e8;
  color: #e86f0c;
  font-size: 18px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px #ffd1ad;
}
.bk-process-list h3 {
  margin: 1px 0 6px;
  color: #123d65;
  font-size: 19px;
  line-height: 1.35;
}
.bk-process-list p {
  margin: 0;
  color: #52677b;
  line-height: 1.7;
}
.bk-process-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid #f58220;
  border-radius: 12px;
  background: #fff8f1;
  color: #425a70;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .bk-application-process { padding: 20px; border-radius: 20px; }
  .bk-process-list li { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; padding: 15px; }
  .bk-process-list li::before { width: 40px; height: 40px; border-radius: 12px; }
}
