/* IB-scan — overgenomen uit het originele Claude-design */

.ib-scan { max-width: 720px; margin: 24px auto 0; }

.ib-scan__card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line, #e8e3d7);
}

.ib-scan__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ib-scan__step {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep, #5f7d15);
}

.ib-scan__back {
  font-size: 14px;
  font-weight: 600;
  color: var(--body, #4d5c6a);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.ib-scan__bar {
  height: 6px;
  background: var(--cream, #F3EEE3);
  border-radius: 99px;
  margin-top: 14px;
  overflow: hidden;
}
.ib-scan__bar-fill {
  height: 100%;
  background: var(--green, #A6CE39);
  border-radius: 99px;
  transition: width .4s ease;
}

.ib-scan__question {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.18;
  color: var(--navy, #232D3F);
  margin: 26px 0 0;
}

.ib-scan__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.ib-scan__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  width: 100%;
  background: var(--cream, #F3EEE3);
  border: 1.5px solid transparent;
  border-radius: 15px;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy, #232D3F);
  cursor: pointer;
  transition: border-color .15s, transform .1s;
}
.ib-scan__option:hover {
  border-color: var(--green, #A6CE39);
  transform: translateY(-1px);
}
.ib-scan__arrow { color: var(--green-deep, #5f7d15); }

/* ---- uitslag ---- */
.ib-scan__result {
  position: relative;
  background: #fff;
  color: var(--navy, #232D3F);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid var(--line, #e8e3d7);
}
.ib-scan__blob {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 170px;
  height: 170px;
  background: var(--green, #A6CE39);
  opacity: .16;
  border-radius: 50%;
}
.ib-scan__result-inner { position: relative; }

.ib-scan__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green, #A6CE39);
  color: var(--navy, #232D3F);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
}

.ib-scan__result-heading {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
  margin: 20px 0 0;
}

.ib-scan__driver {
  font-size: 17px;
  line-height: 1.62;
  color: var(--body, #4d5c6a);
  margin: 16px 0 0;
}

.ib-scan__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.ib-scan__mini {
  background: var(--cream, #F3EEE3);
  border-radius: 16px;
  padding: 20px;
}
.ib-scan__mini-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-deep, #5f7d15);
}
.ib-scan__mini-title {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-top: 6px;
}
.ib-scan__mini-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body, #4d5c6a);
  margin: 8px 0 0;
}

.ib-scan__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  align-items: center;
}
.ib-scan__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green, #A6CE39);
  color: var(--navy, #232D3F);
  font-weight: 800;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
}
.ib-scan__cta--soft {
  background: var(--cream, #F3EEE3);
  font-weight: 700;
}
.ib-scan__restart {
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  color: var(--body, #4d5c6a);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 14px 8px;
}
