:root {
  --kp-blue: #0a3eb1;
  --kp-blue-dark: #062b82;
  --kp-yellow: #d99a00;
  --kp-yellow-soft: #fff4c7;
  --kp-ink: #20242b;
  --kp-muted: #6d7280;
  --kp-line: #dedfe4;
  --kp-soft: #f7f8fa;
  --kp-white: #ffffff;
  --kp-shadow: 0 12px 30px rgba(22, 25, 31, .08);
  --kp-radius: 8px;
  font-family: "Segoe UI", Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--kp-white);
  color: var(--kp-ink);
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

.kp-tunnel {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(10, 62, 177, .045) 0%, rgba(255, 255, 255, 0) 280px),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.kp-header {
  border-bottom: 1px solid var(--kp-line);
  background: rgba(255, 255, 255, .96);
}

.kp-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 16px clamp(22px, 5vw, 74px);
}

.kp-logo img {
  display: block;
  height: 48px;
  width: auto;
}

.kp-header__tools {
  position: absolute;
  right: clamp(22px, 5vw, 74px);
  top: 50%;
  display: flex;
  align-items: center;
  gap: 24px;
  transform: translateY(-50%);
}

.kp-language-select {
  height: 38px;
  min-width: 148px;
  border: 1px solid var(--kp-line);
  border-radius: 999px;
  background: var(--kp-white);
  color: var(--kp-ink);
  padding: 0 14px;
  font-weight: 800;
}

.kp-help {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding-left: 22px;
  border-left: 1px solid var(--kp-line);
  color: var(--kp-ink);
  font-weight: 750;
  text-decoration: none;
}

.kp-help__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--kp-blue);
}

.kp-help-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 8px;
  width: min(310px, calc(100vw - 32px));
  border: 1px solid rgba(10, 62, 177, .18);
  border-radius: var(--kp-radius);
  background: var(--kp-white);
  box-shadow: 0 18px 44px rgba(22, 25, 31, .16);
  padding: 16px;
}

.kp-help-popover[hidden] {
  display: none;
}

.kp-help-popover strong {
  color: var(--kp-blue);
  font-size: 18px;
}

.kp-help-popover a {
  color: var(--kp-ink);
  font-weight: 900;
  text-decoration: none;
}

.kp-help-popover a:hover {
  color: var(--kp-blue);
}

.kp-help-popover span {
  color: var(--kp-muted);
  line-height: 1.45;
}

.kp-help__icon svg,
.kp-choice__icon svg,
.kp-summary__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kp-titlebar {
  width: min(940px, calc(100% - 40px));
  margin: 26px auto 0;
  text-align: center;
}

.kp-titlebar p {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--kp-yellow-soft);
  color: var(--kp-blue);
  box-shadow: 0 10px 24px rgba(10, 62, 177, .08);
  font-weight: 900;
}

.kp-progress {
  width: min(940px, calc(100% - 40px));
  margin: 28px auto 0;
}

.kp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.kp-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  color: var(--kp-muted);
}

.kp-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: #d8d9de;
}

.kp-step--done:not(:last-child)::after,
.kp-step--active:not(:last-child)::after {
  background: var(--kp-blue);
}

.kp-step__circle {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #cfd1d8;
  border-radius: 50%;
  background: var(--kp-white);
  font-weight: 850;
}

.kp-step--active .kp-step__circle,
.kp-step--done .kp-step__circle {
  border-color: var(--kp-blue);
  color: var(--kp-blue);
}

.kp-step__label {
  font-weight: 750;
  text-align: center;
}

.kp-step--active .kp-step__label,
.kp-step--done .kp-step__label {
  color: var(--kp-blue);
}

.kp-intro {
  width: min(880px, calc(100% - 40px));
  margin: 34px auto 28px;
  text-align: center;
}

.kp-hero-visual {
  width: min(560px, 100%);
  margin: -2px auto 18px;
}

.kp-hero-visual svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.kp-road {
  fill: none;
  stroke: rgba(10, 62, 177, .18);
  stroke-width: 8;
  stroke-linecap: round;
}

.kp-car-body {
  fill: #0a3eb1;
}

.kp-car-top {
  fill: #174fc0;
}

.kp-car-glass {
  fill: #ffffff;
  opacity: .92;
}

.kp-wheel {
  fill: #20242b;
  stroke: #ffffff;
  stroke-width: 8;
}

.kp-spark {
  fill: none;
  stroke: #d99a00;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kp-spark--small {
  stroke-width: 6;
  opacity: .8;
}

.kp-intro h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.kp-intro p {
  margin: 14px 0 22px;
  color: var(--kp-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.kp-time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(217, 154, 0, .42);
  border-radius: 999px;
  color: var(--kp-blue);
  background: #fff9e8;
  font-weight: 850;
}

.kp-benefit-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.kp-benefit-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(10, 62, 177, .14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--kp-blue);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(22, 25, 31, .05);
}

.kp-form-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  width: min(1268px, calc(100% - 64px));
  margin: 0 auto;
}

.kp-main,
.kp-screen {
  display: grid;
  gap: 18px;
}

.kp-screen {
  display: none;
}

.kp-screen--active {
  display: grid;
}

.kp-panel,
.kp-summary {
  border: 1px solid var(--kp-line);
  border-radius: var(--kp-radius);
  background: var(--kp-white);
  box-shadow: var(--kp-shadow);
}

.kp-panel {
  position: relative;
  overflow: hidden;
}

.kp-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--kp-blue), #2f63c8 58%, var(--kp-yellow));
}

.kp-panel {
  padding: 28px 30px;
}

.kp-panel h2 {
  margin: 0 0 24px;
  color: var(--kp-blue);
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.25;
  font-weight: 900;
}

.kp-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.kp-conditional-field {
  grid-column: 1 / -1;
}

.kp-soft-field input {
  border-style: dashed;
  background: #fbfcff;
}

label {
  display: grid;
  gap: 8px;
  color: var(--kp-ink);
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfd1d8;
  border-radius: var(--kp-radius);
  background: var(--kp-white);
  color: var(--kp-ink);
  padding: 0 14px;
  font-weight: 650;
}

input:focus,
select:focus {
  outline: 3px solid rgba(10, 62, 177, .14);
  border-color: var(--kp-blue);
}

.kp-lookup {
  border: 1px solid #d7e0f6;
  border-radius: var(--kp-radius);
  padding: 18px;
  background: #f7f9ff;
}

.kp-source-status {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  align-items: center;
  margin: -8px 0 18px;
  border: 1px solid rgba(10, 62, 177, .16);
  border-radius: var(--kp-radius);
  padding: 14px;
  background: linear-gradient(180deg, #f9fbff, #ffffff);
}

.kp-source-status span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--kp-blue);
  color: var(--kp-white);
  font-weight: 950;
}

.kp-source-status strong {
  color: var(--kp-blue);
  font-size: 17px;
}

.kp-source-status small {
  color: var(--kp-muted);
  line-height: 1.45;
}

.kp-lookup__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.kp-lookup p,
.kp-source-box p,
.kp-summary__top p {
  margin: 10px 0 0;
  color: var(--kp-muted);
  line-height: 1.5;
}

.kp-small-button {
  min-height: 52px;
  border: 0;
  border-radius: var(--kp-radius);
  background: var(--kp-blue);
  color: var(--kp-white);
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.kp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.kp-card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kp-choice {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 156px;
  padding: 20px 14px 18px;
  border: 1px solid var(--kp-line);
  border-radius: var(--kp-radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  color: var(--kp-ink);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.kp-choice:hover,
.kp-choice:focus-visible {
  border-color: rgba(10, 62, 177, .42);
  box-shadow: 0 12px 24px rgba(22, 25, 31, .08);
  outline: none;
  transform: translateY(-2px);
}

.kp-choice--selected {
  border: 2px solid var(--kp-yellow);
  box-shadow: inset 0 0 0 1px rgba(217, 154, 0, .16);
}

.kp-choice__check {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--kp-yellow);
  color: var(--kp-white);
  font-size: 20px;
  font-weight: 950;
}

.kp-choice__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  color: var(--kp-blue);
  border-radius: 18px;
  background: #f3f6ff;
  padding: 12px;
}

.kp-choice__title {
  display: grid;
  gap: 6px;
  font-size: 18px;
  line-height: 1.32;
  font-weight: 850;
  text-align: center;
}

.kp-choice__title small {
  color: var(--kp-muted);
  font-size: 15px;
  font-weight: 600;
}

.kp-pill-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.kp-pill-group > span {
  flex: 0 0 180px;
  color: var(--kp-blue);
  font-weight: 900;
}

.kp-pill {
  min-height: 44px;
  border: 1px solid var(--kp-line);
  border-radius: 999px;
  background: var(--kp-white);
  color: var(--kp-ink);
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
}

.kp-pill--selected {
  border-color: var(--kp-yellow);
  background: var(--kp-yellow-soft);
  color: var(--kp-blue);
}

.kp-check-grid {
  display: grid;
  gap: 14px;
}

.kp-checkline {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--kp-line);
  border-radius: var(--kp-radius);
  padding: 12px 14px;
  background: var(--kp-white);
  cursor: pointer;
}

.kp-legal-check {
  align-items: start;
  border-color: rgba(47, 158, 68, .24);
  background: linear-gradient(145deg, #ffffff 0%, #f7fff8 100%);
  box-shadow: 0 12px 28px rgba(18, 24, 38, .06);
}

.kp-legal-check a {
  color: var(--kp-blue);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.kp-legal-note {
  margin: 12px 0 0;
  color: var(--kp-muted);
  line-height: 1.5;
}

.kp-inline-consent {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  margin-top: 22px;
  border: 1px solid rgba(47, 158, 68, .24);
  border-radius: 12px;
  padding: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fff8 100%);
}

.kp-inline-consent > strong {
  color: #17213a;
  font-size: 18px;
  font-weight: 720;
}

.kp-checkline input {
  position: absolute;
  opacity: 0;
}

.kp-checkline > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #cfd1d8;
  border-radius: 6px;
}

.kp-checkline input:checked + span {
  border-color: var(--kp-yellow);
  background: var(--kp-yellow);
}

.kp-checkline input:checked + span::after {
  content: "✓";
  color: var(--kp-white);
  font-weight: 950;
}

.kp-summary {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 26px 28px;
  border-color: #d7e0f6;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.kp-summary__top {
  text-align: center;
}

.kp-summary__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 16px;
  color: var(--kp-blue);
  border-radius: 24px;
  background: #f3f6ff;
  padding: 16px;
}

.kp-summary__top strong {
  display: block;
  font-size: 21px;
  font-weight: 950;
}

.kp-summary__list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.kp-summary__list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: 1px solid var(--kp-line);
  border-radius: var(--kp-radius);
  background: var(--kp-white);
  padding: 12px;
  color: var(--kp-ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.kp-summary__list button:hover {
  border-color: rgba(10, 62, 177, .32);
  box-shadow: 0 10px 22px rgba(22, 25, 31, .06);
}

.kp-summary__list strong,
.kp-summary__list small {
  display: block;
}

.kp-summary__list small {
  color: var(--kp-muted);
  line-height: 1.35;
}

.kp-summary__list em {
  color: var(--kp-blue);
  font-style: normal;
  font-weight: 850;
}

.kp-source-box {
  border-radius: var(--kp-radius);
  background: var(--kp-yellow-soft);
  padding: 14px;
  border: 1px solid rgba(217, 154, 0, .22);
}

.kp-source-box strong {
  color: var(--kp-blue);
}

.kp-trust-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--kp-muted);
  font-weight: 750;
}

.kp-trust-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--kp-yellow);
  font-weight: 950;
}

.kp-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(1268px, calc(100% - 64px));
  margin: 28px auto 0;
  padding-bottom: 34px;
}

.kp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 60px;
  border-radius: var(--kp-radius);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.kp-button--secondary {
  min-width: 180px;
  border: 1px solid var(--kp-line);
  background: var(--kp-white);
  color: var(--kp-ink);
  box-shadow: 0 10px 22px rgba(22, 25, 31, .06);
}

.kp-button--primary {
  min-width: 220px;
  border: 0;
  background: linear-gradient(180deg, #e2a415, var(--kp-yellow));
  color: var(--kp-white);
  box-shadow: 0 14px 26px rgba(217, 154, 0, .26);
}

.kp-button--primary:hover,
.kp-small-button:hover {
  filter: brightness(.98);
  transform: translateY(-1px);
}

.kp-button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

#submitBtn {
  display: none;
}

.kp-flow-message {
  width: min(1268px, calc(100% - 64px));
  min-height: 22px;
  margin: -18px auto 24px;
  color: var(--kp-muted);
  font-size: 14px;
  text-align: right;
}

.kp-field-error {
  border-color: #b42318;
}

.kp-dialog {
  width: min(720px, calc(100vw - 28px));
  border: 0;
  border-radius: var(--kp-radius);
  padding: 0;
  box-shadow: var(--kp-shadow);
}

.kp-dialog::backdrop {
  background: rgba(15, 22, 32, .55);
}

.kp-dialog > div {
  padding: 28px;
}

.kp-dialog h2 {
  margin: 0 0 10px;
  color: var(--kp-blue);
}

pre {
  max-height: 280px;
  overflow: auto;
  border-radius: var(--kp-radius);
  background: #172033;
  color: #ffffff;
  padding: 14px;
  white-space: pre-wrap;
}

@media (max-width: 980px) {
  .kp-header__inner {
    justify-content: flex-start;
  }

  .kp-header__tools {
    position: static;
    margin-left: auto;
    transform: none;
  }

  .kp-help-popover {
    top: 72px;
    right: clamp(22px, 5vw, 74px);
  }

  .kp-form-area {
    grid-template-columns: 1fr;
  }

  .kp-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .kp-header__inner {
    display: grid;
    gap: 14px;
    justify-items: center;
  }

  .kp-header__tools {
    margin: 0;
    gap: 12px;
  }

  .kp-help-popover {
    top: calc(100% - 4px);
    right: 14px;
  }

  .kp-help span:last-child {
    display: none;
  }

  .kp-progress,
  .kp-intro,
  .kp-form-area,
  .kp-actions,
  .kp-flow-message {
    width: calc(100% - 28px);
  }

  .kp-step__label {
    font-size: 13px;
  }

  .kp-panel {
    padding: 22px 18px;
  }

  .kp-field-grid,
  .kp-card-grid,
  .kp-card-grid--two,
  .kp-lookup__row {
    grid-template-columns: 1fr;
  }

  .kp-pill-group > span {
    flex: 0 0 100%;
  }

  .kp-actions {
    display: grid;
  }

  .kp-button {
    width: 100%;
  }
}

/* Premium typography, illustration and results page */
body {
  font-family: "Segoe UI", Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight: 400;
}

.kp-titlebar p,
.kp-intro h1,
.kp-panel h2 {
  font-weight: 720;
  letter-spacing: 0;
}

.kp-intro p,
.kp-muted,
.kp-results-copy,
.kp-source-status small,
.kp-summary__top p,
.kp-source-box p {
  font-weight: 400;
}

label,
.kp-step__label,
.kp-language-select,
.kp-help,
.kp-benefit-strip span,
.kp-pill,
.kp-button,
.kp-small-button {
  font-weight: 650;
}

input,
select {
  font-weight: 500;
}

.kp-summary__top strong,
.kp-result-card__title strong,
.kp-results-leader strong,
.kp-results-next strong {
  font-weight: 720;
}

.kp-hero-visual {
  filter: drop-shadow(0 18px 24px rgba(10, 62, 177, .10));
}

.kp-road {
  stroke-width: 6;
  stroke-dasharray: 18 14;
}

.kp-car-body,
.kp-car-top {
  filter: drop-shadow(0 10px 12px rgba(10, 62, 177, .16));
}

.kp-car-glass {
  opacity: .98;
}

.kp-wheel {
  stroke-width: 6;
}

.kp-spark {
  stroke-width: 6;
}

.kp-choice__icon svg,
.kp-summary__icon svg,
.kp-help__icon svg {
  stroke-width: 2.1;
}

.kp-choice__icon {
  color: #0a3eb1;
  background:
    linear-gradient(135deg, rgba(255, 248, 223, .86), rgba(238, 250, 241, .86)),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.9), transparent 34%);
}

.kp-results-panel {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%),
    radial-gradient(circle at 90% 0, rgba(245, 183, 0, .20), transparent 36%);
}

.kp-success-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #d8efd9;
  border-radius: 999px;
  background: #eefaf1;
  color: #257d36;
  padding: 0 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.kp-results-copy {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--kp-muted);
  font-size: 17px;
  line-height: 1.55;
}

.kp-results-leader {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(47, 158, 68, .28);
  border-radius: 16px;
  padding: 20px;
  background:
    linear-gradient(135deg, #ffffff, #eefaf1 58%, #fff8df),
    radial-gradient(circle at 92% 0, rgba(245, 183, 0, .22), transparent 34%);
  box-shadow: 0 18px 38px rgba(10, 62, 177, .08);
  margin-bottom: 18px;
}

.kp-results-leader span {
  display: block;
  color: #257d36;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.kp-results-leader strong {
  display: block;
  color: #17213a;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.kp-results-leader p {
  margin: 6px 0 0;
  color: var(--kp-muted);
}

.kp-company-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #17213a;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.kp-company-mark--visana {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0a3eb1, #2f9e44);
  font-size: 30px;
}

.kp-score-ring,
.kp-result-card__score {
  display: grid;
  place-items: center;
  min-width: 82px;
  min-height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 56%, transparent 58%),
    conic-gradient(#2f9e44 0 96%, #dbe4ef 96% 100%);
  color: #17213a;
}

.kp-score-ring strong,
.kp-result-card__score strong {
  font-size: 26px;
  line-height: 1;
  font-weight: 720;
}

.kp-score-ring span,
.kp-result-card__score span {
  margin-top: -20px;
  color: var(--kp-muted);
  font-size: 12px;
  font-weight: 600;
}

.kp-results-grid {
  display: grid;
  gap: 12px;
}

.kp-result-card {
  display: grid;
  grid-template-columns: 46px 118px minmax(0, 1fr) 76px;
  gap: 14px;
  align-items: center;
  border: 1px solid #e3e8f2;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(24, 31, 42, .045);
}

.kp-insurer-logo {
  display: grid;
  place-items: center;
  min-width: 112px;
  height: 58px;
  border: 1px solid #e3e8f2;
  border-radius: 14px;
  background: #ffffff;
  color: #17213a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.kp-insurer-logo span {
  display: block;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: 0;
}

.kp-insurer-logo--visana {
  border-color: rgba(0, 149, 125, .22);
  color: #008c7b;
}

.kp-insurer-logo--leader {
  width: 128px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff, #eefaf1);
}

.kp-insurer-logo--leader span {
  font-size: 25px;
}

.kp-insurer-logo--axa {
  color: #003da5;
  font-size: 20px;
}

.kp-insurer-logo--zurich {
  color: #0f5aa8;
}

.kp-insurer-logo--allianz {
  color: #0050a4;
}

.kp-insurer-logo--vaudoise {
  color: #d71920;
}

.kp-insurer-logo--baloise {
  color: #0067b1;
}

.kp-insurer-logo--generali {
  color: #c00000;
}

.kp-insurer-logo--helvetia {
  color: #e30613;
}

.kp-insurer-logo--smile {
  color: #ff7a00;
}

.kp-insurer-logo--swisslife {
  color: #8a1538;
}

.kp-insurer-logo--simpego {
  color: #1f7a8c;
}

.kp-insurer-logo--automate {
  color: #17213a;
}

.kp-result-card--featured {
  border-color: rgba(47, 158, 68, .34);
}

.kp-result-card__rank {
  color: var(--kp-blue);
  font-size: 18px;
  font-weight: 700;
}

.kp-result-card__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.kp-result-card__title strong {
  font-size: 20px;
}

.kp-result-card__title span {
  border-radius: 999px;
  background: #fff8df;
  color: var(--kp-blue);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

.kp-result-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.kp-result-card li {
  border: 1px solid #e3e8f2;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--kp-muted);
  font-size: 13px;
}

.kp-result-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.kp-result-card__actions a,
.kp-result-card__actions button {
  min-height: 36px;
  border-radius: 999px;
  padding: 0 13px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.kp-result-card__actions a {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #f7c21b, #d99a00);
  color: #ffffff;
  text-decoration: none;
}

.kp-result-card__actions button {
  border: 1px solid #e3e8f2;
  background: #ffffff;
  color: #0a3eb1;
}

/* Cleaner summary visual and insurer logos */
.kp-summary__icon {
  display: none;
}

.kp-summary-orb {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 0 auto 16px;
  border: 1px solid rgba(10,62,177,.12);
  border-radius: 34px;
  background:
    linear-gradient(145deg, #ffffff, #f6f9ff 58%, #fff8df),
    radial-gradient(circle at 72% 18%, rgba(245,183,0,.28), transparent 34%);
  box-shadow: 0 22px 42px rgba(10,62,177,.10);
}

.kp-summary-orb svg {
  width: 104px;
  height: 104px;
  overflow: visible;
}

.kp-summary-orb__track,
.kp-summary-orb__ring,
.kp-summary-orb__check {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kp-summary-orb__track {
  stroke: rgba(10,62,177,.16);
  stroke-width: 5;
}

.kp-summary-orb__ring {
  stroke: rgba(10,62,177,.22);
  stroke-width: 4;
  stroke-dasharray: 9 7;
}

.kp-summary-orb__car {
  fill: #0a3eb1;
  filter: drop-shadow(0 7px 7px rgba(10,62,177,.16));
}

.kp-summary-orb__glass {
  fill: rgba(255,255,255,.92);
  stroke: rgba(23,33,58,.16);
  stroke-width: 2;
}

.kp-summary-orb__wheel {
  fill: #17213a;
  stroke: #ffffff;
  stroke-width: 3;
}

.kp-summary-orb__check {
  stroke: #2f9e44;
  stroke-width: 6;
}

.kp-brand-logo {
  width: 178px;
  max-width: 100%;
  color: var(--brand, #17213a);
}

.kp-brand-logo svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.kp-brand-logo rect {
  fill: #ffffff;
  stroke: color-mix(in srgb, currentColor 20%, #e3e8f2);
  stroke-width: 2;
  filter: drop-shadow(0 8px 14px rgba(24,31,42,.06));
}

.kp-brand-logo circle {
  fill: currentColor;
}

.kp-brand-logo text {
  font-family: "Segoe UI", Aptos, Inter, Arial, sans-serif;
  letter-spacing: 0;
}

.kp-brand-logo__mark {
  fill: #ffffff;
  font-size: 17px;
  font-weight: 760;
}

.kp-brand-logo__name {
  fill: currentColor;
  font-size: 28px;
  font-weight: 720;
}

.kp-brand-logo--leader {
  width: 172px;
  color: #008c7b;
}

.kp-brand-logo--leader rect {
  fill: #ffffff;
  stroke: rgba(0,140,123,.24);
}

.kp-brand-logo--leader circle {
  fill: #008c7b;
}

.kp-brand-logo--leader path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kp-brand-logo--leader text {
  fill: #008c7b;
  font-family: "Segoe UI", Aptos, Inter, Arial, sans-serif;
  font-size: 30px;
  font-weight: 720;
}

.kp-result-card .kp-insurer-logo,
.kp-results-leader .kp-insurer-logo {
  display: none;
}

.kp-insurer-logo {
  grid-template-columns: 34px minmax(0, 1fr);
  justify-content: start;
  gap: 10px;
  min-width: 132px;
  padding: 9px 10px;
  text-align: left;
}

.kp-insurer-logo__symbol {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: currentColor;
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
}

.kp-insurer-logo__name {
  min-width: 0;
  color: currentColor;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kp-insurer-logo--leader {
  grid-template-columns: 44px minmax(0, 1fr);
  width: 150px;
  min-width: 150px;
}

.kp-insurer-logo--leader .kp-insurer-logo__symbol {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 18px;
}

.kp-insurer-logo--leader .kp-insurer-logo__name {
  font-size: 22px;
}

/* Official insurer logos */
.kp-result-card {
  grid-template-columns: 46px 164px minmax(0, 1fr) 76px;
}

.kp-results-leader {
  grid-template-columns: 172px minmax(0, 1fr) auto;
}

.kp-real-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 164px;
  min-width: 164px;
  height: 78px;
  border: 1px solid color-mix(in srgb, var(--brand, #0a3eb1) 18%, #e3e8f2);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 249, 253, .94)),
    #ffffff;
  box-shadow: 0 14px 28px rgba(23, 33, 58, .08);
  overflow: hidden;
}

.kp-real-logo::after {
  content: "";
  position: absolute;
  inset: auto 12px 9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand, #0a3eb1) 42%, transparent), transparent);
  opacity: .72;
}

.kp-real-logo img {
  display: block;
  width: min(122px, calc(100% - 28px));
  max-width: calc(100% - 28px);
  max-height: 44px;
  object-fit: contain;
}

.kp-real-logo span {
  display: none;
  color: var(--brand, #17213a);
  font-size: 18px;
  font-weight: 720;
}

.kp-real-logo.is-fallback img {
  display: none;
}

.kp-real-logo.is-fallback span {
  display: block;
}

.kp-real-logo--leader {
  width: 172px;
  min-width: 172px;
  height: 92px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbfa),
    #ffffff;
}

.kp-real-logo--leader img {
  width: min(132px, calc(100% - 30px));
  max-height: 48px;
}

.kp-real-logo--allianz img,
.kp-real-logo--automate img,
.kp-real-logo--zurich img,
.kp-real-logo--helvetia img,
.kp-real-logo--vaudoise img,
.kp-real-logo--generali img {
  width: min(138px, calc(100% - 22px));
  max-height: 50px;
}

.kp-real-logo--axa img,
.kp-real-logo--smile img {
  max-height: 56px;
}

.kp-real-logo--simpego img {
  width: min(136px, calc(100% - 22px));
  max-height: 42px;
}

/* Premium coverage illustrations */
.kp-coverage-choice {
  min-height: 248px;
  align-content: start;
  padding: 24px 18px 20px;
  overflow: hidden;
}

.kp-coverage-choice::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .95), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,0));
  pointer-events: none;
}

.kp-coverage-choice .kp-choice__icon {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  margin-bottom: 18px;
  border-radius: 30px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,250,255,.84)),
    radial-gradient(circle at 30% 18%, rgba(245,183,0,.22), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 20px 38px rgba(10, 62, 177, .12);
}

.kp-coverage-choice .kp-choice__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 8px rgba(10, 62, 177, .12));
}

.kp-coverage-choice .kp-choice__title {
  position: relative;
  z-index: 1;
  gap: 8px;
  font-size: 20px;
}

.kp-coverage-choice .kp-choice__title small {
  max-width: 190px;
  margin: 0 auto;
  line-height: 1.35;
}

/* Simplified vehicle selection */
.kp-vehicle-panel {
  display: grid;
  gap: 20px;
}

.kp-panel-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.kp-panel-head > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a3eb1, #1769d8);
  color: #fff;
  font-weight: 950;
}

.kp-panel-head h2 {
  margin-bottom: 8px;
}

.kp-panel-head p {
  max-width: 760px;
  margin: 0;
  color: var(--kp-muted);
  line-height: 1.55;
}

.kp-vehicle-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kp-vehicle-method {
  min-width: 0;
  border: 1px solid #dfe8f7;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(10, 62, 177, .06);
}

.kp-vehicle-method--primary {
  border-color: rgba(47, 158, 68, .28);
  background: linear-gradient(145deg, #fff, #f4fff7);
}

.kp-vehicle-method strong,
.kp-quick-vehicles span {
  display: block;
  color: #0a3eb1;
  font-weight: 950;
}

.kp-vehicle-method span {
  display: block;
  margin-top: 5px;
  color: var(--kp-muted);
  font-size: 14px;
  line-height: 1.4;
}

.kp-quick-vehicles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  border: 1px solid #ffe08a;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #fff9e8);
  padding: 12px;
}

.kp-quick-vehicles span {
  margin: 0 4px 0 2px;
  font-size: 14px;
}

.kp-quick-vehicles button {
  min-height: 36px;
  border: 1px solid rgba(10, 62, 177, .16);
  border-radius: 999px;
  background: #fff;
  color: #17213a;
  padding: 0 13px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.kp-quick-vehicles button:hover,
.kp-quick-vehicles button:focus-visible {
  border-color: #0a3eb1;
  color: #0a3eb1;
  outline: none;
}

.kp-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.kp-vehicle-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(10, 62, 177, .10);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(249,252,255,.84));
  padding: 14px;
  color: #17213a;
  font-weight: 850;
}

.kp-vehicle-field--wide {
  grid-column: 1 / -1;
}

.kp-vehicle-field input,
.kp-vehicle-field select {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1px solid #dfe8f7;
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
  font: inherit;
  font-weight: 650;
}

.kp-vehicle-field:focus-within {
  border-color: rgba(25, 182, 255, .42);
  box-shadow: 0 0 0 4px rgba(25, 182, 255, .10), 0 16px 34px rgba(10, 62, 177, .08);
}

.kp-vehicle-advanced {
  border: 1px solid #dfe8f7;
  border-radius: 12px;
  background: #fbfcff;
  padding: 0;
  overflow: hidden;
}

.kp-vehicle-advanced summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #0a3eb1;
  font-weight: 900;
}

.kp-vehicle-advanced[open] summary {
  border-bottom: 1px solid #dfe8f7;
  background: #fff;
}

.kp-vehicle-advanced .kp-lookup,
.kp-vehicle-grid--advanced {
  margin: 16px;
}

@media (max-width: 900px) {
  .kp-vehicle-methods,
  .kp-vehicle-grid,
  .kp-panel-head {
    grid-template-columns: 1fr;
  }

  .kp-panel-head > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

.kp-coverage-choice--rc {
  background:
    linear-gradient(150deg, #ffffff 0%, #f7faff 58%, #eef4ff 100%),
    radial-gradient(circle at 88% 0, rgba(10,62,177,.18), transparent 42%);
}

.kp-coverage-choice--partial {
  background:
    linear-gradient(150deg, #ffffff 0%, #f8fbff 50%, #fff8df 100%),
    radial-gradient(circle at 86% 0, rgba(245,183,0,.22), transparent 40%);
}

.kp-coverage-choice--full {
  background:
    linear-gradient(150deg, #ffffff 0%, #eefaf1 48%, #fff8df 100%),
    radial-gradient(circle at 86% 0, rgba(47,158,68,.18), transparent 42%);
}

.kp-illus-fill {
  stroke: none;
}

.kp-illus-paper,
.kp-illus-glass {
  fill: rgba(255,255,255,.92);
  stroke: rgba(23,33,58,.18);
  stroke-width: 2;
}

.kp-illus-cloud {
  fill: #ffffff;
  stroke: rgba(10,62,177,.24);
  stroke-width: 2.4;
}

.kp-illus-wheel {
  fill: #17213a;
  stroke: #ffffff;
  stroke-width: 4;
}

.kp-illus-line,
.kp-illus-check,
.kp-illus-accent,
.kp-illus-orbit {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kp-illus-line {
  stroke: rgba(23,33,58,.42);
  stroke-width: 2.8;
}

.kp-illus-check {
  stroke: #2f9e44;
  stroke-width: 5;
}

.kp-illus-accent {
  stroke: #f5b700;
  stroke-width: 4;
}

.kp-illus-orbit {
  stroke: rgba(10,62,177,.22);
  stroke-width: 3;
  stroke-dasharray: 9 7;
}

/* Premium usage illustrations */
.kp-usage-choice {
  min-height: 230px;
  align-content: start;
  padding: 24px 18px 20px;
  overflow: hidden;
}

.kp-usage-choice::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0, rgba(255,255,255,.96), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,0));
  pointer-events: none;
}

.kp-usage-choice .kp-choice__icon {
  position: relative;
  z-index: 1;
  width: 122px;
  height: 122px;
  margin-bottom: 18px;
  border-radius: 30px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,250,255,.84)),
    radial-gradient(circle at 32% 18%, rgba(245,183,0,.18), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 20px 38px rgba(10, 62, 177, .12);
}

.kp-usage-choice .kp-choice__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 8px rgba(10, 62, 177, .11));
}

.kp-usage-choice--private {
  background:
    linear-gradient(150deg, #ffffff 0%, #eefaf1 54%, #fff8df 100%),
    radial-gradient(circle at 84% 0, rgba(47,158,68,.18), transparent 42%);
}

.kp-usage-choice--work {
  background:
    linear-gradient(150deg, #ffffff 0%, #f7faff 54%, #fff8df 100%),
    radial-gradient(circle at 84% 0, rgba(10,62,177,.18), transparent 42%);
}

.kp-usage-choice .kp-choice__title {
  position: relative;
  z-index: 1;
  font-size: 20px;
}

.kp-usage-sky,
.kp-usage-building {
  fill: rgba(255,255,255,.92);
  stroke: rgba(10,62,177,.22);
  stroke-width: 2.4;
}

.kp-usage-roof,
.kp-usage-building-lines,
.kp-usage-road,
.kp-usage-route,
.kp-usage-arrow,
.kp-usage-accent {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kp-usage-roof,
.kp-usage-route,
.kp-usage-arrow {
  stroke: #0a3eb1;
  stroke-width: 4;
}

.kp-usage-building-lines {
  stroke: rgba(23,33,58,.34);
  stroke-width: 2.4;
}

.kp-usage-road {
  stroke: rgba(10,62,177,.18);
  stroke-width: 5;
}

.kp-usage-car {
  stroke: none;
}

.kp-usage-glass {
  fill: rgba(255,255,255,.92);
  stroke: rgba(23,33,58,.16);
  stroke-width: 2;
}

.kp-usage-wheel {
  fill: #17213a;
  stroke: #ffffff;
  stroke-width: 4;
}

.kp-usage-door {
  fill: rgba(245,183,0,.18);
  stroke: rgba(23,33,58,.18);
  stroke-width: 2;
}

.kp-usage-accent {
  stroke: #f5b700;
  stroke-width: 4;
}

.kp-result-card__score {
  min-width: 68px;
  min-height: 68px;
  background:
    radial-gradient(circle at center, #ffffff 56%, transparent 58%),
    conic-gradient(#0a3eb1 0 88%, #dbe4ef 88% 100%);
}

.kp-result-card__score strong {
  font-size: 21px;
}

.kp-results-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  border-radius: 16px;
  background: #17213a;
  color: #ffffff;
  padding: 18px;
}

.kp-results-next span {
  display: block;
  color: rgba(255,255,255,.74);
  margin-top: 4px;
}

.kp-results-next a {
  flex: 0 0 auto;
  border-radius: 10px;
  background: linear-gradient(180deg, #f7c21b, #d99a00);
  color: #ffffff;
  padding: 13px 16px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 760px) {
  .kp-results-leader,
  .kp-result-card,
  .kp-results-next {
    grid-template-columns: 1fr;
  }

  .kp-results-next {
    display: grid;
  }

  .kp-results-next a {
    text-align: center;
  }
}

/* Final conversion refresh inspired by the reference tunnel */
body {
  background:
    radial-gradient(circle at 18% 0, #ffffff 0, #ffffff 35%, #fff8df 100%),
    linear-gradient(180deg, #ffffff, #fbfcff);
  color: #17213a;
  line-height: 1.5;
}

.kp-tunnel {
  background: transparent;
}

.kp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e3e8f2;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 28px rgba(10, 62, 177, .06);
  backdrop-filter: blur(10px);
}

.kp-header__inner {
  width: min(1240px, 100%);
  min-height: 74px;
  margin: 0 auto;
  padding: 12px 28px;
}

.kp-logo img {
  height: 45px;
}

.kp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 0;
  text-decoration: none;
}

.kp-logo img {
  width: auto;
  max-width: 224px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kp-titlebar {
  margin-top: 28px;
}

.kp-titlebar p {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--kp-blue);
  font-size: clamp(34px, 4vw, 52px);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
}

.kp-progress {
  width: min(1040px, calc(100% - 48px));
  margin-top: 24px;
}

.kp-steps {
  grid-template-columns: repeat(6, 1fr);
}

.kp-step {
  gap: 10px;
  font-weight: 850;
}

.kp-step:not(:last-child)::after {
  top: 19px;
  height: 3px;
  background: #d5dbe6;
}

.kp-step--done:not(:last-child)::after {
  background: #2f9e44;
}

.kp-step--active:not(:last-child)::after {
  background: linear-gradient(90deg, var(--kp-blue), #d5dbe6);
}

.kp-step__circle {
  width: 40px;
  height: 40px;
  border-color: #cfd6e2;
}

.kp-step--done .kp-step__circle {
  border-color: #2f9e44;
  background: #2f9e44;
  color: #ffffff;
}

.kp-step--active .kp-step__circle {
  box-shadow: 0 0 0 5px rgba(10, 62, 177, .08);
}

.kp-intro {
  width: min(940px, calc(100% - 40px));
  margin-top: 20px;
}

.kp-intro h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
}

.kp-intro p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(18px, 2vw, 21px);
}

.kp-hero-visual {
  width: min(620px, 100%);
  margin-bottom: 10px;
}

.kp-car-body {
  fill: url("#carGradient");
}

.kp-benefit-strip span {
  min-height: 38px;
  border-color: #ffe08a;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(24, 31, 42, .05);
}

.kp-form-area {
  width: min(1240px, calc(100% - 56px));
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
}

.kp-panel,
.kp-summary {
  border-color: #e3e8f2;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(10, 62, 177, .08);
}

.kp-panel {
  padding: clamp(24px, 3vw, 34px);
  animation: kp-panel-in .22s ease both;
}

.kp-panel h2 {
  margin-bottom: 18px;
  color: #17213a;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
}

.kp-panel::before {
  height: 5px;
  background: linear-gradient(90deg, var(--kp-blue), #2f9e44 52%, #f5b700);
}

.kp-source-status,
.kp-lookup,
.kp-source-box {
  border-radius: 10px;
}

.kp-source-status {
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #fff8df 100%);
  box-shadow: 0 14px 32px rgba(10, 62, 177, .06);
}

input,
select {
  min-height: 54px;
  border-color: #d9e0ec;
  border-radius: 8px;
  font-weight: 800;
}

.kp-choice {
  min-height: 168px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,248,223,.48)),
    radial-gradient(circle at 92% 0, rgba(245,183,0,.18), transparent 38%);
  box-shadow: 0 10px 28px rgba(24, 31, 42, .05);
}

.kp-choice--selected {
  border-color: #2f9e44;
  box-shadow: 0 0 0 3px rgba(47, 158, 68, .15), 0 18px 38px rgba(10, 62, 177, .10);
}

.kp-choice__check {
  background: #2f9e44;
}

.kp-choice__icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff8df, #eefaf1);
  border: 1px solid rgba(245, 183, 0, .45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.kp-checkline,
.kp-pill {
  border-color: #e3e8f2;
  box-shadow: 0 8px 20px rgba(24, 31, 42, .035);
}

.kp-pill--selected,
.kp-checkline input:checked + span {
  border-color: #2f9e44;
  background: #2f9e44;
  color: #ffffff;
}

.kp-summary {
  top: 96px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%),
    radial-gradient(circle at 85% 0, rgba(245, 183, 0, .18), transparent 34%);
}

.kp-summary__icon {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff8df, #eefaf1);
  border: 1px solid rgba(245, 183, 0, .45);
}

.kp-conversion-meter {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  border: 1px solid #d8efd9;
  border-radius: 10px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #eefaf1);
}

.kp-conversion-meter > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kp-conversion-meter span {
  color: var(--kp-muted);
  font-weight: 850;
}

.kp-conversion-meter strong {
  color: #2f9e44;
  font-size: 22px;
  font-weight: 950;
}

.kp-conversion-meter__bar {
  height: 9px;
  border-radius: 999px;
  background: #d8e2ef;
  overflow: hidden;
}

.kp-conversion-meter__bar span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f9e44, #f5b700);
  transition: width .22s ease;
}

.kp-next-outcome {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  border-radius: 10px;
  padding: 14px;
  background: #17213a;
  color: #ffffff;
}

.kp-next-outcome span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.kp-next-outcome strong {
  font-size: 17px;
  line-height: 1.25;
}

.kp-actions {
  position: sticky;
  bottom: 0;
  z-index: 24;
  width: min(1240px, calc(100% - 56px));
  margin-top: 22px;
  border: 1px solid rgba(227, 232, 242, .92);
  border-radius: 14px 14px 0 0;
  padding: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 -16px 40px rgba(10, 62, 177, .08);
  backdrop-filter: blur(10px);
}

.kp-button {
  border-radius: 10px;
}

.kp-button--primary {
  background: linear-gradient(180deg, #f7c21b, #d99a00);
}

.kp-button--secondary {
  background: #ffffff;
}

.kp-flow-message {
  width: min(1240px, calc(100% - 56px));
}

@keyframes kp-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .kp-form-area {
    width: min(760px, calc(100% - 28px));
    grid-template-columns: 1fr;
  }

  .kp-summary {
    top: auto;
    position: static;
  }

  .kp-actions {
    width: calc(100% - 28px);
  }
}

@media (max-width: 720px) {
  .kp-titlebar p {
    font-size: 32px;
  }

  .kp-intro h1 {
    font-size: 36px;
  }

  .kp-progress {
    width: calc(100% - 28px);
  }

  .kp-steps {
    gap: 0;
  }

  .kp-step:not(:last-child)::after {
    left: calc(50% + 22px);
    width: calc(100% - 44px);
  }

  .kp-step__circle {
    width: 34px;
    height: 34px;
  }
}

/* Mobile full-width refinement */
@media (max-width: 720px) {
  html,
  body,
  .kp-tunnel {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .kp-header-inner,
  .kp-titlebar,
  .kp-progress,
  .kp-form-area,
  .kp-screen,
  .kp-panel,
  .kp-results-panel,
  .kp-results-layout,
  .kp-results-main,
  .kp-results-side,
  .kp-actions,
  .kp-flow-message {
    width: 100% !important;
    max-width: none !important;
  }

  .kp-header-inner,
  .kp-titlebar,
  .kp-progress,
  .kp-form-area,
  .kp-screen,
  .kp-results-layout,
  .kp-flow-message {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .kp-panel,
  .kp-summary,
  .kp-result-card,
  .kp-inline-consent,
  .kp-conversion-meter,
  .kp-next-outcome {
    border-radius: 8px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .kp-actions {
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .kp-button,
  .kp-nav--next,
  .kp-nav--prev,
  .kp-premium-cta {
    width: 100% !important;
  }

  .kp-steps {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .kp-step {
    min-width: 0 !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
  }

  .kp-step__label {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .kp-step__circle {
    width: 30px !important;
    height: 30px !important;
  }
}
