/* Hero gradient using your brand blue */
.hero-gradient{
  background: radial-gradient(1200px 500px at 15% -10%, rgba(255,255,255,.12), transparent),
              linear-gradient(135deg, #112b5f 0%, #0a1f49 55%, #0a1b3b 100%);
}

/* Elevated cards with soft glass effect */
.card-elevated{
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(140%) blur(4px);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: .9rem;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card-elevated:hover{
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1.25rem rgba(17, 28, 45, .08);
}

/* Dropzone */
.dropzone{
  width: 100%;
  min-height: 140px;
  border: 2px dashed var(--bs-primary);
  border-radius: .8rem;
  background: rgba(var(--bs-primary-rgb), .04);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.dropzone:hover{
  background: rgba(var(--bs-primary-rgb), .08);
  border-color: rgba(var(--bs-primary-rgb), .9);
}

/* Checklist bullets */
.checklist li{
  display:flex; align-items:flex-start; margin-bottom:.5rem;
}
.checklist i{ color: var(--bs-success); margin-top:.2rem; }

.step.step-dashed .step-item:last-child .step-icon::after {
  content: none !important;     /* zruší pseudo-element */
  border-left: 0 !important;    /* pojistka, kdyby content nestačil */
  display: none !important;     /* další pojistka proti tvrdohlavému stylu */
}

.no-break {
  white-space: nowrap;
}