.op-apk-ai-check {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0D2D43;
  background: white;
  padding: 50px;
  border-radius: 20px;
}

.op-apk-ai-check * {
  box-sizing: border-box;
}
div#wizardContainer {
  padding: 47px 60px;
}

.op-apk-ai-check header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.op-apk-ai-check header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.op-apk-ai-check header h1 span.logo-dot {
  display: none !important;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7A57A0, #DD5A30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.op-apk-ai-check header p {
  color: #6b7280;
  max-width: 500px;
  font-size: 0.95rem;
}

.op-apk-ai-check .badge {
  background: #FFF3E3;
  color: #0D2D43;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #FBD6B8;
}

.op-apk-ai-check .layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
}
div#resultsCard {
  padding: 27px 30px;
}

@media (max-width: 900px) {
  .op-apk-ai-check .layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.op-apk-ai-check .card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.op-apk-ai-check .card + .card {
  margin-top: 18px;
}

.op-apk-ai-check .card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'costa';
}

.op-apk-ai-check .card-title span.icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: #FFF3E3;
  color: #DD5A30;
}

.op-apk-ai-check .card-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 14px;
  font-family: "costa", Sans-serif;
  font-weight: 400;
}

.op-apk-ai-check label {
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.op-apk-ai-check .field {
  margin-bottom: 10px;
}

.op-apk-ai-check input[type="file"] {
  width: 100%;
  border-radius: 10px;
  border: 1px dashed #e5e7eb;
  padding: 10px;
  background: #f9fafb;
  font-size: 0.9rem;
}

.op-apk-ai-check input[type="number"],
.op-apk-ai-check textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  font-size: 0.9rem;
  background: #f9fafb;
  outline: none;
}

.op-apk-ai-check input[type="number"]:focus,
.op-apk-ai-check textarea:focus {
  border-color: #7A57A0;
  background: #ffffff;
}

.op-apk-ai-check textarea {
  min-height: 70px;
  resize: vertical;
}

.op-apk-ai-check .inline-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.op-apk-ai-check .inline-fields .field {
  flex: 1 1 120px;
}

.op-apk-ai-check .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.op-apk-ai-check .btn-primary {
  background: #DD5A30;
  color: #fff;

}

.op-apk-ai-check .btn-primary:hover, .op-apk-ai-check .btn-primary:focus {
  background: #DD5A30;

}

.op-apk-ai-check .btn-ghost {
  background: transparent;
  color: #6b7280;
}

.op-apk-ai-check .btn-ghost:hover {
  background: #f3f4f6;
}

.op-apk-ai-check .btn[disabled] {
  opacity: 0.6;
  cursor: default;
  transform: none;

}

input {
  background: #f9fafb !important;
}

.op-apk-ai-check .btn-secondary {
  background: #f4f6fb;
  color: #1f2937;
  box-shadow: none;
  border: 1px solid #d8deeb;
  font-family: "costa", Sans-serif;
}

.op-apk-ai-check .btn-secondary:hover, .op-apk-ai-check .btn-secondary:focus {
  background: #edf1f9;
  color: #111827;
}

.op-apk-ai-check .btn-secondary {
  background: #f4f6fb;
  color: #1f2937;
  box-shadow: none;
  border: 1px solid #d8deeb;
}

.op-apk-ai-check .btn-secondary:hover, .op-apk-ai-check .btn-secondary:focus {
  background: #edf1f9;
  color: #111827;
}

.op-apk-ai-check .btn-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.op-apk-ai-check .hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 2px;
}

.op-apk-ai-check .chat {
  max-height: 430px;
  overflow-y: auto;
  padding-right: 4px;
}

.op-apk-ai-check .chat-bubble {
  border-radius: 18px;
  padding: 10px 12px;
  font-size: 0.9rem;
  margin-bottom: 8px;
  max-width: 100%;
}

.op-apk-ai-check .chat-bubble.ai {
  background: #0D2D43;
  color: #E5E7EB;
  border-bottom-left-radius: 4px;
}

.op-apk-ai-check .chat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.op-apk-ai-check .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 999px;
}

.op-apk-ai-check .pill-soft {
  background: #E5E7EB;
  color: #6b7280;
}

.op-apk-ai-check .pill-soft span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
}

.op-apk-ai-check .scores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

@media (max-width: 600px) {
  .op-apk-ai-check .scores {
    grid-template-columns: minmax(0, 1fr);
  }
}

.op-apk-ai-check .score-card {
  border-radius: 12px;
  padding: 8px 10px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  font-size: 0.8rem;
}

.op-apk-ai-check .score-card strong {
  display: block;
  margin-bottom: 3px;
}

.op-apk-ai-check .score-value {
  font-weight: 700;
}

.op-apk-ai-check .score-good {
  color: #22C55E;
}

.op-apk-ai-check .score-mid {
  color: #EAB308;
}

.op-apk-ai-check .summary-list {
  margin-top: 6px;
  font-size: 0.83rem;
  list-style: none;
  padding-left: 0;
}

.op-apk-ai-check .summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}

.op-apk-ai-check .summary-list li span.bullet {
  margin-top: 3px;
  font-size: 0.9rem;
}

.op-apk-ai-check .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

/* Betaalmethodes */
.op-apk-ai-check .pay-methods {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.op-apk-ai-check .pay-option {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  min-width: 210px;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.op-apk-ai-check .pay-option input {
  margin-top: 2px;
}

.op-apk-ai-check .pay-option__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.op-apk-ai-check .pay-option__img {
  object-fit: contain;
}

.op-apk-ai-check .pay-option__img--ideal {
  height: 32px;
}

.op-apk-ai-check .pay-option__img--bancontact {
  height: 28px;
}

.op-apk-ai-check .pay-option__title {
  font-weight: 700;
  color: #111827;
}

.op-apk-ai-check .pay-option__subtitle {
  font-size: 12px;
  color: #6b7280;
}

.op-apk-ai-check .pay-option--selected {
  border: 1px solid #dd5a30;
}

label.pay-option.pay-option--selected input[type="radio"] {
  /* border-color: red !important; */
  accent-color: #dd5a30 !important;
}

img.pay-option__img.pay-option__img--ideal, img.pay-option__img.pay-option__img--bancontact {
  border-radius: 0px;
}

img.pay-option__img.pay-option__img--bancontact {
  margin-bottom: 5px;
}
.op-apk-ai-check .tag {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: #EDE9FE;
  color: #7A57A0;
}

.op-apk-ai-check .footer-note {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed #e5e7eb;
  font-size: 0.8rem;
  color: #6b7280;
  font-family: "costa", Sans-serif;
  font-weight: 400;
}

.op-apk-ai-check .disclaimer {
  font-size: 0.74rem;
  color: #6b7280;
  margin-top: 6px;
  font-family: "costa", Sans-serif;
  font-weight: 400;
}

.op-apk-ai-check .disclaimer strong {
  font-weight: 600;
}

.op-apk-ai-check .loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #DD5A30;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.op-apk-ai-check .error-message {
  background: #FEE2E2;
  color: #991B1B;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Wizard Styles */
.op-apk-ai-check .wizard-container {
  position: relative;
}

.op-apk-ai-check .wizard-progress {
  position: relative;
  margin: 24px 16px 36px 16px;
  height: 2px;
  background: #eae6dd;
  border-radius: 999px;
  overflow: hidden;
  z-index: 0;
}

.op-apk-ai-check .wizard-progress-bar {
  height: 100%;
  background: #DD5A30;
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* USP list with checkmark icon (same asset as PDF) */
.op-apk-ai-check .usp-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
  font-family: "costa", Sans-serif;
  font-weight: 400;
}

.op-apk-ai-check .usp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url('../../afbeeldingen/vinkje.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.op-apk-ai-check .wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-top: -56px;
  margin-bottom: 32px;
  position: relative;

  z-index: 2;
}

.op-apk-ai-check .wizard-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8f7f4;
  border: 1px solid #e5e1d9;
  color: #0D2D43;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.op-apk-ai-check .wizard-step.active {
  background: #dc5930;
  border-color: #dc5930;
  color: #fff;


}

.op-apk-ai-check .wizard-step.completed {
  background: #dc5930;
  border-color: #dc5930;
  color: #fff;
}

.op-apk-ai-check .wizard-step-content {
  min-height: 300px;
}

.op-apk-ai-check .wizard-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.op-apk-ai-check .upload-dropzone {
  margin-top: 10px;
  border: 1.5px dashed #dc5930;
  border-radius: 12px;
  padding: 18px;
  background: #fff3e366;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.op-apk-ai-check .upload-dropzone:hover {
  border-color: #d95b32;
  background: #fef9f6;
}

.op-apk-ai-check .upload-dropzone.dragover {
  border-color: #d95b32;
  background: #fff3eb;
}

.op-apk-ai-check .upload-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: #d95b32;
}

.op-apk-ai-check .upload-title {
  margin: 0;
  font-weight: 600;
  color: #1f2937;
  font-family: "costa", Sans-serif;
}

.op-apk-ai-check .upload-sep {
  margin: 6px 0 10px;
  color: #6b7280;
  font-size: 0.9rem;
}


.op-apk-ai-check select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 14px 10px;
  font-size: 0.9rem;
  background: #f9fafb;
  outline: none;
  cursor: pointer;
}

.op-apk-ai-check select:focus {
  border-color: #7A57A0;
  background: #ffffff;
}

.op-apk-ai-check .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.op-apk-ai-check .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
}

.op-apk-ai-check .checkbox-label:hover {
  background: #f9fafb;
}

.op-apk-ai-check .checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #7A57A0;
}

.op-apk-ai-check .checkbox-label span {
  font-size: 0.9rem;
  color: #0D2D43;
}

.op-apk-ai-check label small {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.8rem;
}

.op-apk-ai-check .required {
  color: #DD5A30;
}



@media only screen and (max-width: 600px) {
  .op-apk-ai-check {
    padding: 20px;
    border-radius: 0px;
  }
  div#wizardContainer {
    padding: 40px;
  }
}