.bigha-fkr,
.bigha-fkr * {
  box-sizing: border-box;
}

.bigha-fkr {
  --bigha-accent: #307074;
  --bigha-dark: #18171a;
  --bigha-bg: #f4f4f4;
  --bigha-muted: #615f5c;
  --bigha-border: #dedede;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 74px);
  overflow: hidden;
  color: var(--bigha-dark);
  background: var(--bigha-bg);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.bigha-fkr button,
.bigha-fkr input,
.bigha-fkr select {
  font: inherit;
}

.bigha-fkr__header {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.bigha-fkr__eyebrow,
.bigha-fkr__result-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bigha-accent);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.bigha-fkr__eyebrow::before {
  width: 38px;
  height: 2px;
  background: var(--bigha-accent);
  content: "";
}

.bigha-fkr__header h2,
.bigha-fkr__step-title h3,
.bigha-fkr__result h3 {
  margin: 0;
  color: var(--bigha-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 0.98;
  text-transform: uppercase;
}

.bigha-fkr__header h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(42px, 6.2vw, 76px);
}

.bigha-fkr__header p {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--bigha-muted);
  font-size: clamp(16px, 1.6vw, 19px);
}

.bigha-fkr__progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 clamp(38px, 5vw, 62px);
  padding: 0;
  border-top: 1px solid #cfcfce;
  list-style: none;
}

.bigha-fkr__progress li {
  position: relative;
  padding: 18px 8px 0 0;
  color: #8d8b88;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.bigha-fkr__progress li::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--bigha-accent);
  content: "";
  transition: width 220ms ease;
}

.bigha-fkr__progress li span {
  margin-right: 8px;
  color: inherit;
}

.bigha-fkr__progress li.is-active,
.bigha-fkr__progress li.is-complete {
  color: var(--bigha-dark);
}

.bigha-fkr__progress li.is-active::before,
.bigha-fkr__progress li.is-complete::before {
  width: 100%;
}

.bigha-fkr__panel {
  animation: bighaFadeIn 260ms ease both;
}

.bigha-fkr__panel[hidden] {
  display: none !important;
}

@keyframes bighaFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.bigha-fkr__step-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.bigha-fkr__step-title > span {
  min-width: 44px;
  padding-top: 2px;
  color: var(--bigha-accent);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.bigha-fkr__step-title h3 {
  font-size: clamp(30px, 4vw, 44px);
}

.bigha-fkr__step-title p {
  margin: 9px 0 0;
  color: var(--bigha-muted);
}

.bigha-fkr__cards {
  display: grid;
  gap: 12px;
}

.bigha-fkr__cards--vehicles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bigha-fkr__cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bigha-fkr button.bigha-fkr__choice,
.bigha-fkr button.bigha-fkr__mini-choice,
.bigha-fkr button.bigha-fkr__package {
  min-height: 100%;
  margin: 0;
  border: 1px solid var(--bigha-border);
  border-radius: 0;
  color: var(--bigha-dark);
  background: #fff;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.bigha-fkr button.bigha-fkr__choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 210px;
  padding: 25px 20px 22px;
}

.bigha-fkr button.bigha-fkr__choice:hover,
.bigha-fkr button.bigha-fkr__mini-choice:hover,
.bigha-fkr button.bigha-fkr__package:hover {
  border-color: var(--bigha-accent);
  transform: translateY(-2px);
}

.bigha-fkr button.bigha-fkr__choice:focus-visible,
.bigha-fkr button.bigha-fkr__mini-choice:focus-visible,
.bigha-fkr button.bigha-fkr__package:focus-visible,
.bigha-fkr button.bigha-fkr__button:focus-visible,
.bigha-fkr input:focus-visible,
.bigha-fkr select:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--bigha-accent) 36%, transparent);
  outline-offset: 3px;
}

.bigha-fkr button.bigha-fkr__choice.is-selected,
.bigha-fkr button.bigha-fkr__mini-choice.is-selected,
.bigha-fkr button.bigha-fkr__package.is-selected {
  border-color: var(--bigha-accent);
  color: #fff;
  background: var(--bigha-accent);
}

.bigha-fkr__choice svg {
  width: 58px;
  height: 58px;
  margin-bottom: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bigha-fkr__choice strong,
.bigha-fkr__mini-choice strong,
.bigha-fkr__package strong,
.bigha-fkr__toggle strong,
.bigha-fkr__fixed-choice strong {
  display: block;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.15;
  text-transform: uppercase;
}

.bigha-fkr__choice small,
.bigha-fkr__mini-choice small,
.bigha-fkr__package small,
.bigha-fkr__toggle small,
.bigha-fkr__fixed-choice small {
  display: block;
  margin-top: 8px;
  color: #817f7c;
  font-size: 13px;
  line-height: 1.42;
}

.bigha-fkr__choice.is-selected small,
.bigha-fkr__mini-choice.is-selected small,
.bigha-fkr__package.is-selected small {
  color: rgba(255, 255, 255, 0.76);
}

.bigha-fkr__field-row {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  align-items: end;
  gap: 28px;
  margin-top: 26px;
  padding: 26px;
  border-left: 3px solid var(--bigha-accent);
  background: #fff;
}

.bigha-fkr__field,
.bigha-fkr__select-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bigha-fkr__field > span,
.bigha-fkr__select-label > span {
  color: var(--bigha-dark);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bigha-fkr__field input,
.bigha-fkr__select-label select {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid #c9c8c6;
  border-radius: 0;
  color: var(--bigha-dark);
  background: #fff;
  box-shadow: none;
}

.bigha-fkr__hint {
  margin: 0;
  color: var(--bigha-muted);
  font-size: 14px;
}

.bigha-fkr__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
}

.bigha-fkr button.bigha-fkr__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 51px;
  margin: 0;
  padding: 14px 24px;
  border: 1px solid var(--bigha-accent);
  border-radius: 0;
  color: #fff;
  background: var(--bigha-accent);
  box-shadow: none;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.bigha-fkr button.bigha-fkr__button:hover {
  color: #fff;
  background: var(--bigha-dark);
  border-color: var(--bigha-dark);
}

.bigha-fkr button.bigha-fkr__button--ghost {
  color: var(--bigha-dark);
  border-color: #bdbbb8;
  background: transparent;
}

.bigha-fkr button.bigha-fkr__button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.bigha-fkr__detail-block {
  width: 100%;
  min-width: 0;
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
}

.bigha-fkr__detail-block h4 {
  margin: 0 0 19px;
  color: var(--bigha-dark);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.bigha-fkr__detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  min-width: 0;
}

.bigha-fkr__detail-grid .bigha-fkr__detail-block {
  min-width: 0;
  margin-bottom: 22px;
}

.bigha-fkr__mini-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.bigha-fkr__door-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bigha-fkr button.bigha-fkr__mini-choice {
  min-height: 92px;
  padding: 16px 14px;
}

.bigha-fkr button.bigha-fkr__door-choice {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 108px;
}

.bigha-fkr__door-choice svg {
  flex: 0 0 70px;
  width: 70px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bigha-fkr__package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bigha-fkr button.bigha-fkr__package {
  min-height: 350px;
  padding: 0 21px 24px;
}

.bigha-fkr__toggle-stack {
  display: grid;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.bigha-fkr .bigha-fkr__toggle {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  align-items: center;
  gap: 14px;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 74px;
  cursor: pointer;
}

.bigha-fkr .bigha-fkr__toggle > div {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}

.bigha-fkr .bigha-fkr__toggle strong,
.bigha-fkr .bigha-fkr__toggle small {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.bigha-fkr__toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.bigha-fkr__toggle > span {
  position: relative;
  display: block;
  width: 46px;
  height: 24px;
  border: 1px solid #b9b7b4;
  background: #e7e6e5;
  transition: background 160ms ease, border-color 160ms ease;
}

.bigha-fkr__toggle > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  content: "";
  transition: transform 160ms ease;
}

.bigha-fkr__toggle input:checked + span {
  border-color: var(--bigha-accent);
  background: var(--bigha-accent);
}

.bigha-fkr__toggle input:checked + span::after {
  transform: translateX(22px);
}

.bigha-fkr__toggle input:focus-visible + span {
  outline: 3px solid color-mix(in srgb, var(--bigha-accent) 36%, transparent);
  outline-offset: 3px;
}

.bigha-fkr__toggle input:disabled + span,
.bigha-fkr__toggle input:disabled ~ div {
  opacity: 0.42;
}

.bigha-fkr__fixed-choice {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
  padding: 28px 30px;
  color: #fff;
  background: var(--bigha-accent);
}

.bigha-fkr__fixed-choice > span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bigha-fkr__fixed-choice small {
  color: rgba(255, 255, 255, 0.75);
}

.bigha-fkr__result {
  color: #fff;
  background: var(--bigha-dark);
}

.bigha-fkr__result-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
}

.bigha-fkr__result-price,
.bigha-fkr__result-summary {
  padding: clamp(30px, 5vw, 58px);
}

.bigha-fkr__result-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bigha-accent);
}

.bigha-fkr__result-kicker {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.bigha-fkr__result-price > strong {
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 0.92;
  text-transform: uppercase;
}

.bigha-fkr__result-price em {
  font-size: 0.52em;
  font-style: normal;
  letter-spacing: 0;
}

.bigha-fkr__result-price small {
  font-size: 0.24em;
  letter-spacing: 1px;
}

.bigha-fkr__result-summary h3 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
}

.bigha-fkr__result-summary > p {
  margin: 15px 0 22px;
  color: rgba(255, 255, 255, 0.68);
}

.bigha-fkr__result-summary ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bigha-fkr__result-summary li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.bigha-fkr__result-summary li::before {
  position: absolute;
  top: 17px;
  left: 1px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--bigha-accent);
  border-left: 2px solid var(--bigha-accent);
  content: "";
  transform: rotate(-45deg);
}

.bigha-fkr__included {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bigha-fkr__included span {
  position: relative;
  padding: 21px 24px 21px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bigha-fkr__included span::before {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--bigha-accent);
  border-left: 2px solid var(--bigha-accent);
  content: "";
  transform: rotate(-45deg);
}

.bigha-fkr__model-note {
  margin: 0;
  padding: 18px clamp(24px, 5vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: color-mix(in srgb, var(--bigha-accent) 34%, var(--bigha-dark));
  font-size: 14px;
}

.bigha-fkr__disclaimer {
  padding: 26px clamp(24px, 5vw, 58px) 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bigha-fkr__disclaimer strong {
  color: #fff;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  letter-spacing: 1.1px;
}

.bigha-fkr__disclaimer p {
  max-width: 980px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.bigha-fkr__nav--result {
  align-items: stretch;
}

.bigha-fkr__nav--result .bigha-fkr__button:last-child {
  min-width: min(100%, 270px);
}

.bigha-fkr-form-highlight {
  animation: bighaFormHighlight 1.8s ease;
}

@keyframes bighaFormHighlight {
  0%, 100% { box-shadow: none; }
  35% { box-shadow: 0 0 0 5px rgba(48, 112, 116, 0.34); }
}

@media (max-width: 1024px) {
  .bigha-fkr__cards--vehicles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bigha-fkr__mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .bigha-fkr {
    padding: 30px 20px 34px;
  }

  .bigha-fkr__progress li {
    min-width: 0;
    font-size: 0;
  }

  .bigha-fkr__progress li span {
    font-size: 12px;
  }

  .bigha-fkr__cards--vehicles,
  .bigha-fkr__cards--three,
  .bigha-fkr__package-grid,
  .bigha-fkr__detail-grid,
  .bigha-fkr__result-main {
    grid-template-columns: 1fr;
  }

  .bigha-fkr button.bigha-fkr__choice {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  .bigha-fkr__choice svg {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .bigha-fkr__choice small {
    margin-top: 4px;
  }

  .bigha-fkr__field-row {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 21px;
  }

  .bigha-fkr__fixed-choice {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .bigha-fkr__included {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__included span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .bigha-fkr__nav {
    flex-direction: column-reverse;
  }

  .bigha-fkr__nav > span {
    display: none;
  }

  .bigha-fkr button.bigha-fkr__button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .bigha-fkr__cards--vehicles,
  .bigha-fkr__mini-grid,
  .bigha-fkr__door-grid {
    grid-template-columns: 1fr;
  }

  .bigha-fkr button.bigha-fkr__mini-choice {
    min-height: 0;
  }

  .bigha-fkr__step-title {
    gap: 10px;
  }

  .bigha-fkr__step-title > span {
    min-width: 34px;
    font-size: 24px;
  }
}

/* BIGHA Experience 2.0 */
.bigha-fkr__progress button {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
}

.bigha-fkr__progress button[aria-disabled="true"] {
  cursor: default;
}

.bigha-fkr__vehicle-experience {
  position: relative;
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bigha-dark);
  background-size: 32px 32px;
}

.bigha-fkr__vehicle-experience::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(48, 112, 116, 0.45);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bigha-fkr__vehicle-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.bigha-fkr__vehicle-head > div {
  min-width: 0;
}

.bigha-fkr__stage-kicker {
  display: block;
  margin-bottom: 7px;
  color: #8fc0c2;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.bigha-fkr__vehicle-head strong {
  display: block;
  max-width: 650px;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(27px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1;
  text-transform: uppercase;
}

.bigha-fkr__coverage-label {
  flex: 0 1 auto;
  max-width: 320px;
  padding: 9px 12px;
  border: 1px solid rgba(143, 192, 194, 0.42);
  color: #d4eded;
  background: rgba(48, 112, 116, 0.18);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.7px;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.bigha-fkr__vehicle-map {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(270px, 42vw, 440px);
  margin: 18px auto 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 72%, rgba(48, 112, 116, 0.1), transparent 34%),
    linear-gradient(145deg, #fff 0%, #f6f7f6 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.bigha-fkr__vehicle-map::before {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  padding: 6px 8px;
  color: rgba(24, 23, 26, 0.54);
  background: rgba(255, 255, 255, 0.78);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.1px;
  content: "LIVE-PAKETANSICHT";
}

.bigha-fkr__vehicle-map img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 220ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bigha-fkr__vehicle-coverage {
  position: absolute;
  inset: 7% 2% 4%;
  z-index: 2;
  display: block;
  background: linear-gradient(110deg, rgba(48, 112, 116, 0.7), rgba(53, 151, 157, 0.93));
  opacity: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 350ms ease, clip-path 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bigha-fkr__vehicle-map.is-front .bigha-fkr__vehicle-coverage {
  clip-path: polygon(58% 18%, 100% 35%, 100% 86%, 53% 86%, 59% 65%, 68% 45%);
  opacity: 0.86;
}

.bigha-fkr__vehicle-map.is-extended .bigha-fkr__vehicle-coverage {
  clip-path: polygon(25% 25%, 100% 35%, 100% 88%, 13% 88%, 20% 76%, 51% 70%, 59% 50%);
  opacity: 0.8;
}

.bigha-fkr__vehicle-map.is-fullbody .bigha-fkr__vehicle-coverage {
  clip-path: polygon(5% 35%, 23% 20%, 67% 17%, 99% 37%, 99% 88%, 5% 88%);
  opacity: 0.78;
}

.bigha-fkr__vehicle-map.is-colorppf .bigha-fkr__vehicle-coverage {
  background: linear-gradient(115deg, rgba(43, 102, 106, 0.82), rgba(63, 143, 148, 0.98));
  opacity: 0.9;
}

.bigha-fkr__vehicle-map.is-rendered-package .bigha-fkr__vehicle-coverage {
	display: none;
}

.bigha-fkr__scan-line {
  position: absolute;
  top: 3%;
  bottom: 3%;
  left: 3%;
  z-index: 4;
  width: 2px;
  display: block;
  background: #66b6ba;
  opacity: 0;
  box-shadow: 0 0 14px 4px rgba(102, 182, 186, 0.6);
  pointer-events: none;
}

.bigha-fkr.is-visual-updating .bigha-fkr__scan-line {
  animation: bighaVehicleScan 500ms ease both;
}

@keyframes bighaVehicleScan {
  0% { left: 3%; opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { left: 97%; opacity: 0; }
}

.bigha-fkr.is-visual-updating .bigha-fkr__vehicle-map img {
  animation: bighaVehicleImageIn 420ms ease both;
}

@keyframes bighaVehicleImageIn {
  0% { opacity: 0.62; transform: scale(0.985); }
  100% { opacity: 1; transform: scale(1); }
}

.bigha-fkr__coverage-legend {
  position: relative;
  z-index: 2;
  min-height: 22px;
  margin: -5px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-align: center;
}

.bigha-fkr__category-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.bigha-fkr__category-strip button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 82px;
  margin: 0;
  padding: 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 11px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.bigha-fkr__category-strip button:hover,
.bigha-fkr__category-strip button.is-selected {
  border-color: #8fc0c2;
  color: #fff;
  background: rgba(48, 112, 116, 0.55);
}

.bigha-fkr__category-strip svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.bigha-fkr__category-strip span {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.bigha-fkr__live-price {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(34px, 5vw, 62px);
  padding: 18px 22px;
  border-left: 4px solid var(--bigha-accent);
  background: #fff;
}

.bigha-fkr__live-price > div {
  min-width: 0;
}

.bigha-fkr__live-price span {
  display: block;
  color: var(--bigha-accent);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.bigha-fkr__live-price strong {
  display: block;
  margin-top: 3px;
  color: var(--bigha-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(26px, 4vw, 39px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.bigha-fkr__live-price p {
  min-width: 0;
  margin: 0;
  color: var(--bigha-muted);
  font-size: 13px;
}

.bigha-fkr__live-price.is-updating strong {
  animation: bighaPriceTick 280ms ease;
}

@keyframes bighaPriceTick {
  0% { opacity: 0.25; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.bigha-fkr.is-result-step .bigha-fkr__vehicle-experience,
.bigha-fkr.is-result-step .bigha-fkr__live-price {
  display: none;
}

.bigha-fkr__finder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border-left: 3px solid var(--bigha-accent);
  background: #fff;
}

.bigha-fkr__field small {
  display: block;
  color: var(--bigha-muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.bigha-fkr__package {
  position: relative;
  overflow: hidden;
}

.bigha-fkr__package-visual {
  display: block;
  width: calc(100% + 42px);
  aspect-ratio: 1000 / 606;
  margin: 0 -21px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--bigha-border);
  background: #f7f7f6;
}

.bigha-fkr__package-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 320ms ease;
}

.bigha-fkr__package:hover .bigha-fkr__package-visual img {
  transform: scale(1.025);
}

.bigha-fkr__package-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 25px;
  margin: 0;
  padding: 5px 8px;
  color: #fff;
  background: var(--bigha-accent);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(24, 23, 26, 0.18);
}

.bigha-fkr__package-badge--quiet {
  color: var(--bigha-dark);
  background: #e9e8e6;
}

.bigha-fkr__package.is-selected .bigha-fkr__package-badge {
  color: var(--bigha-dark);
  background: #fff;
}

.bigha-fkr__package em {
  display: block;
  margin-top: 17px;
  color: var(--bigha-accent);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
}

.bigha-fkr__package.is-selected em {
  color: #fff;
}

.bigha-fkr__package-comparison {
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
}

.bigha-fkr__comparison-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 19px;
}

.bigha-fkr__comparison-head h4 {
  margin: 0;
  color: var(--bigha-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 29px;
  line-height: 1;
}

.bigha-fkr__comparison-head p {
  max-width: 430px;
  margin: 0;
  color: var(--bigha-muted);
  font-size: 12px;
}

.bigha-fkr__table-wrap {
  overflow-x: auto;
}

.bigha-fkr__package-comparison table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  color: var(--bigha-dark);
  font-size: 13px;
}

.bigha-fkr__package-comparison th,
.bigha-fkr__package-comparison td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--bigha-border);
  text-align: center;
}

.bigha-fkr__package-comparison th:first-child,
.bigha-fkr__package-comparison td:first-child {
  text-align: left;
}

.bigha-fkr__comparison-price td {
  color: var(--bigha-accent);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.bigha-fkr__comparison-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.bigha-fkr__comparison-actions button {
  min-height: 40px;
  margin: 0;
  padding: 9px;
  border: 1px solid var(--bigha-border);
  border-radius: 0;
  color: var(--bigha-dark);
  background: transparent;
  box-shadow: none;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}

.bigha-fkr__comparison-actions button:hover {
  border-color: var(--bigha-accent);
  color: var(--bigha-accent);
}

.bigha-fkr__result-badge {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 6px 9px;
  color: #fff;
  background: var(--bigha-accent);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
}

.bigha-fkr__sales-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.bigha-fkr__sales-proof span {
  padding: 13px 18px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
}

.bigha-fkr__recommendation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(24px, 5vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: color-mix(in srgb, var(--bigha-accent) 22%, var(--bigha-dark));
}

.bigha-fkr__recommendation > div {
  min-width: 0;
}

.bigha-fkr__recommendation span,
.bigha-fkr__recommendation strong {
  display: block;
}

.bigha-fkr__recommendation span {
  color: #8fc0c2;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.bigha-fkr__recommendation strong {
  margin-top: 4px;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 28px;
}

.bigha-fkr__recommendation p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.bigha-fkr__recommendation button {
  min-height: 44px;
  margin: 0;
  padding: 11px 15px;
  border: 1px solid #8fc0c2;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.8px;
  cursor: pointer;
}

.bigha-fkr__workshop-scan {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  place-content: center;
  min-height: 390px;
  padding: 40px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, transparent 0, rgba(48, 112, 116, 0.3) 50%, transparent 100%),
    var(--bigha-dark);
  text-align: center;
}

.bigha-fkr__workshop-scan[hidden] {
  display: none !important;
}

.bigha-fkr__workshop-scan::before {
  position: absolute;
  top: 0;
  left: -10%;
  width: 3px;
  height: 100%;
  background: #8fc0c2;
  box-shadow: 0 0 32px 11px rgba(143, 192, 194, 0.5);
  content: "";
}

.bigha-fkr__workshop-scan.is-running::before {
  animation: bighaWorkshopScan 1050ms ease-in-out both;
}

@keyframes bighaWorkshopScan {
  from { left: -10%; }
  to { left: 110%; }
}

.bigha-fkr__workshop-scan > span {
  color: #8fc0c2;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 1.7px;
}

.bigha-fkr__workshop-scan > strong {
  margin: 10px 0 21px;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(31px, 5vw, 54px);
  line-height: 0.95;
}

.bigha-fkr__workshop-scan ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bigha-fkr__workshop-scan li {
  padding: 7px 9px;
  border: 1px solid rgba(143, 192, 194, 0.32);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.bigha-fkr__panel[data-step="4"] {
  position: relative;
}

.bigha-fkr__result-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.bigha-fkr__result-actions .bigha-fkr__button {
  width: 100%;
  min-width: 0;
  padding-right: 14px;
  padding-left: 14px;
}

.bigha-fkr__callback {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 40px);
  border-top: 4px solid var(--bigha-accent);
  background: #fff;
}

.bigha-fkr__callback[hidden] {
  display: none !important;
}

.bigha-fkr__callback h3 {
  margin: 0;
  color: var(--bigha-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 37px;
  line-height: 1;
}

.bigha-fkr__callback > div p {
  margin: 12px 0 0;
  color: var(--bigha-muted);
  font-size: 13px;
}

.bigha-fkr__callback form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.bigha-fkr__callback-privacy,
.bigha-fkr__callback-status,
.bigha-fkr__callback form > .bigha-fkr__button {
  grid-column: 1 / -1;
}

.bigha-fkr__callback-privacy {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--bigha-muted);
  font-size: 11px;
}

.bigha-fkr__callback-privacy input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}

.bigha-fkr__callback-privacy a {
  color: var(--bigha-accent);
}

.bigha-fkr__callback-status {
  min-height: 20px;
  margin: 0;
  font-size: 12px;
}

.bigha-fkr__callback-status.is-error {
  color: #a02222;
}

.bigha-fkr__callback-status.is-success {
  color: #246d41;
}

.bigha-fkr__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.bigha-fkr__toast {
  position: relative;
  margin: 12px 0 0;
  padding: 12px 15px;
  color: #fff;
  background: var(--bigha-accent);
  font-size: 12px;
  text-align: center;
}

.bigha-fkr__toast[hidden] {
  display: none !important;
}

@media (max-width: 1024px) {
  .bigha-fkr__category-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bigha-fkr__result-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .bigha-fkr__progress button {
    font-size: 0;
  }

  .bigha-fkr__progress button span {
    font-size: 12px;
  }

  .bigha-fkr__vehicle-head,
  .bigha-fkr__comparison-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bigha-fkr__coverage-label {
    max-width: none;
    text-align: left;
  }

  .bigha-fkr__vehicle-map {
    height: clamp(230px, 62vw, 355px);
    margin-top: 15px;
  }

  .bigha-fkr__vehicle-map::before {
    right: 9px;
    bottom: 9px;
  }

  .bigha-fkr__category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bigha-fkr__category-strip button {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 58px;
    padding: 9px 11px;
    text-align: left;
  }

  .bigha-fkr__category-strip svg {
    flex: 0 0 28px;
  }

  .bigha-fkr__live-price,
  .bigha-fkr__finder-grid,
  .bigha-fkr__callback,
  .bigha-fkr__recommendation {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__comparison-actions,
  .bigha-fkr__sales-proof {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__recommendation button {
    width: 100%;
  }

  .bigha-fkr__workshop-scan {
    min-height: 460px;
    padding: 28px 20px;
  }

  .bigha-fkr__workshop-scan ul {
    flex-direction: column;
  }

  .bigha-fkr__result-actions,
  .bigha-fkr__callback form {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__callback-privacy,
  .bigha-fkr__callback-status,
  .bigha-fkr__callback form > .bigha-fkr__button {
    grid-column: auto;
  }
}

/* BIGHA Guided Experience 2.3 */
.bigha-fkr {
  max-width: 1380px;
  padding: clamp(28px, 4vw, 56px);
  overflow: visible;
}

.bigha-fkr__config-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  grid-template-rows: auto auto;
  align-items: start;
  gap: 20px clamp(22px, 3vw, 38px);
  width: 100%;
  min-width: 0;
}

.bigha-fkr__config-layout > .bigha-fkr__panel {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  min-width: 0;
}

.bigha-fkr__config-layout > .bigha-fkr__vehicle-experience {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  margin: 0;
  padding: clamp(19px, 2.4vw, 28px);
}

.bigha-fkr__config-layout > .bigha-fkr__live-price {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  margin: 0;
}

.bigha-fkr__vehicle-head {
  gap: 14px;
}

.bigha-fkr__vehicle-head strong {
  font-size: clamp(25px, 3vw, 38px);
}

.bigha-fkr__coverage-label {
  max-width: 190px;
  font-size: 10px;
}

.bigha-fkr__vehicle-map {
  height: clamp(230px, 25vw, 330px);
  margin: 16px auto 13px;
}

.bigha-fkr__vehicle-map img {
  position: absolute !important;
  inset: 10px !important;
  display: block !important;
  width: calc(100% - 20px) !important;
  max-width: none !important;
  height: calc(100% - 20px) !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
}

.bigha-fkr__coverage-legend {
  min-height: 0;
  margin: -2px 0 0;
  line-height: 1.45;
}

.bigha-fkr__live-price {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px 20px;
}

.bigha-fkr__live-price strong {
  font-size: clamp(25px, 3vw, 35px);
}

.bigha-fkr__step-title {
  margin-bottom: 22px;
}

.bigha-fkr__step-title > div,
.bigha-fkr__section-head > div,
.bigha-fkr__config-head > div,
.bigha-fkr__config-group,
.bigha-fkr__door-choice > span {
  min-width: 0;
}

.bigha-fkr__finder-grid {
  gap: 14px;
  padding: 22px;
}

.bigha-fkr__category-picker {
  margin-top: 16px;
}

.bigha-fkr__section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.bigha-fkr__section-head h4 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.bigha-fkr__section-head p {
  max-width: 380px;
  margin: 0;
  color: var(--bigha-muted);
  font-size: 12px;
  line-height: 1.45;
}

.bigha-fkr__category-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.bigha-fkr__category-strip button {
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
  min-height: 68px;
  padding: 10px 12px;
  border-color: var(--bigha-border);
  color: var(--bigha-dark);
  background: #fff;
  font-size: 11px;
  text-align: left;
}

.bigha-fkr__category-strip button:hover,
.bigha-fkr__category-strip button.is-selected {
  border-color: var(--bigha-accent);
  color: #fff;
  background: var(--bigha-accent);
}

.bigha-fkr__category-strip svg {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
}

.bigha-fkr__category-strip span {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  writing-mode: horizontal-tb !important;
}

.bigha-fkr__cards--three {
  gap: 10px;
}

.bigha-fkr button.bigha-fkr__choice {
  min-height: 174px;
  padding: 21px 18px 19px;
}

.bigha-fkr__choice svg {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.bigha-fkr__detail-block {
  margin-bottom: 16px;
  padding: clamp(20px, 2.5vw, 27px);
  overflow: visible;
}

.bigha-fkr__config-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  width: 100%;
  min-width: 0;
  margin-bottom: 18px;
}

.bigha-fkr__config-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--bigha-accent);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}

.bigha-fkr__config-head h4 {
  margin: 1px 0 0;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.bigha-fkr__config-head p {
  width: 100%;
  min-width: 0;
  margin: 5px 0 0;
  color: var(--bigha-muted);
  font-size: 12px;
  line-height: 1.45;
}

.bigha-fkr__mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.bigha-fkr button.bigha-fkr__mini-choice {
  position: relative;
  min-width: 0;
  min-height: 62px;
  padding: 14px 16px;
}

.bigha-fkr button.bigha-fkr__mini-choice.is-selected::after {
  position: absolute;
  top: 8px;
  right: 9px;
  font-size: 13px;
  content: "✓";
}

.bigha-fkr__detail-grid {
  align-items: start;
  gap: 14px;
}

.bigha-fkr__config-group {
  width: 100%;
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--bigha-border);
  background: #fafafa;
}

.bigha-fkr__config-group h5 {
  margin: 0 0 12px;
  color: var(--bigha-dark);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.bigha-fkr__door-grid {
  gap: 8px;
}

.bigha-fkr button.bigha-fkr__door-choice {
  gap: 10px;
  min-height: 92px;
  padding: 13px;
}

.bigha-fkr__door-choice svg {
  flex-basis: 54px;
  width: 54px;
  height: 38px;
}

.bigha-fkr__toggle-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bigha-fkr .bigha-fkr__toggle {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 88px;
  margin: 0 !important;
  padding: 15px !important;
  border: 1px solid var(--bigha-border);
  background: #fff;
  text-align: left !important;
  writing-mode: horizontal-tb !important;
}

.bigha-fkr .bigha-fkr__toggle > span {
  flex: 0 0 46px !important;
  width: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  margin: 0 !important;
}

.bigha-fkr .bigha-fkr__toggle > div {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  writing-mode: horizontal-tb !important;
}

.bigha-fkr .bigha-fkr__toggle strong,
.bigha-fkr .bigha-fkr__toggle small {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: none !important;
  writing-mode: horizontal-tb !important;
}

.bigha-fkr__package-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.bigha-fkr button.bigha-fkr__package {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 18px;
  min-height: 150px;
  padding: 0 18px 0 0;
  overflow: hidden;
}

.bigha-fkr__package-visual {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 148px;
  margin: 0;
  aspect-ratio: auto;
  border-right: 1px solid var(--bigha-border);
  border-bottom: 0;
}

.bigha-fkr__package-visual img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 7px !important;
  object-fit: contain !important;
  object-position: center !important;
}

.bigha-fkr__package strong {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  min-width: 0;
  padding-top: 22px;
}

.bigha-fkr__package small {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  min-width: 0;
  margin-bottom: 20px;
}

.bigha-fkr__package em {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  white-space: nowrap;
}

.bigha-fkr__package-badge {
  top: 9px;
  left: 9px;
}

.bigha-fkr__package-comparison {
  margin: 13px 0 0;
  padding: 0;
  border-top: 1px solid var(--bigha-border);
  background: transparent;
}

.bigha-fkr__package-comparison summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 13px 15px;
  color: var(--bigha-dark);
  background: #f5f5f4;
  cursor: pointer;
}

.bigha-fkr__package-comparison summary span {
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.bigha-fkr__package-comparison summary small {
  color: var(--bigha-muted);
  font-size: 11px;
  text-align: right;
}

.bigha-fkr__package-comparison[open] .bigha-fkr__table-wrap {
  margin-top: 12px;
}

.bigha-fkr__fixed-choice {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .bigha-fkr__config-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    column-gap: 22px;
  }

  .bigha-fkr__finder-grid,
  .bigha-fkr__detail-grid {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bigha-fkr__toggle-stack {
    grid-template-columns: 1fr;
  }

  .bigha-fkr button.bigha-fkr__package {
    grid-template-columns: minmax(160px, 0.65fr) minmax(0, 1fr);
  }

  .bigha-fkr__package em {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    margin: 0 0 17px;
  }

  .bigha-fkr__package small {
    padding-right: 84px;
  }
}

@media (max-width: 900px) {
  .bigha-fkr__config-layout {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__config-layout > .bigha-fkr__panel {
    grid-column: 1;
    grid-row: 1;
  }

  .bigha-fkr__config-layout > .bigha-fkr__vehicle-experience {
    grid-column: 1;
    grid-row: 2;
    margin-top: 8px;
  }

  .bigha-fkr__config-layout > .bigha-fkr__live-price {
    grid-column: 1;
    grid-row: 3;
  }

  .bigha-fkr__finder-grid,
  .bigha-fkr__detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bigha-fkr__category-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bigha-fkr__toggle-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .bigha-fkr {
    padding: 24px 16px 30px;
  }

  .bigha-fkr__finder-grid,
  .bigha-fkr__detail-grid,
  .bigha-fkr__toggle-stack {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .bigha-fkr__category-strip,
  .bigha-fkr__mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bigha-fkr__vehicle-map {
    height: clamp(220px, 60vw, 340px);
  }

  .bigha-fkr button.bigha-fkr__package {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding: 0 18px 20px;
  }

  .bigha-fkr__package-visual {
    grid-column: 1;
    grid-row: 1;
    width: calc(100% + 36px);
    min-height: 0;
    margin: 0 -18px 17px;
    aspect-ratio: 5 / 3;
    border-right: 0;
    border-bottom: 1px solid var(--bigha-border);
  }

  .bigha-fkr__package strong,
  .bigha-fkr__package small,
  .bigha-fkr__package em {
    grid-column: 1;
    justify-self: stretch;
    padding: 0;
  }

  .bigha-fkr__package strong { grid-row: 2; }
  .bigha-fkr__package small { grid-row: 3; margin-bottom: 0; }
  .bigha-fkr__package em { grid-row: 4; margin-top: 13px; }

  .bigha-fkr__package-comparison summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .bigha-fkr__package-comparison summary small {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .bigha-fkr__category-strip,
  .bigha-fkr__mini-grid,
  .bigha-fkr__door-grid {
    grid-template-columns: 1fr;
  }
}

/* BIGHA Guided Experience 2.4 */
.bigha-fkr__progress {
  gap: 3px;
  margin-bottom: clamp(28px, 4vw, 42px);
  padding: 4px;
  border: 1px solid var(--bigha-border);
  background: #e9e9e8;
}

.bigha-fkr__progress li {
  min-width: 0;
  padding: 0;
  background: #fff;
}

.bigha-fkr__progress li::before {
  top: auto;
  bottom: 0;
  height: 3px;
}

.bigha-fkr__progress button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 10px 14px !important;
  background: transparent !important;
}

.bigha-fkr__progress li.is-complete {
  color: var(--bigha-dark);
  background: color-mix(in srgb, var(--bigha-accent) 9%, #fff);
}

.bigha-fkr__progress li.is-active {
  color: #fff;
  background: var(--bigha-dark);
}

.bigha-fkr__progress li.is-active button {
  color: #fff;
}

.bigha-fkr__config-layout {
  grid-template-rows: auto;
  row-gap: 0;
}

.bigha-fkr__config-layout > .bigha-fkr__panel {
  grid-column: 1;
  grid-row: 1;
}

.bigha-fkr__preview-rail {
  position: sticky;
  top: 22px;
  z-index: 4;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  align-self: start;
}

.bigha-fkr__preview-rail .bigha-fkr__vehicle-experience {
  margin: 0;
  padding: clamp(19px, 2.4vw, 28px);
}

.bigha-fkr__preview-rail .bigha-fkr__live-price {
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 19px 22px 17px;
  border-top: 4px solid #8fc0c2;
  border-left: 0;
  color: #fff;
  background: var(--bigha-accent);
}

.bigha-fkr__preview-rail .bigha-fkr__live-price span,
.bigha-fkr__preview-rail .bigha-fkr__live-price strong,
.bigha-fkr__preview-rail .bigha-fkr__live-price p {
  color: #fff;
}

.bigha-fkr__preview-rail .bigha-fkr__live-price p {
  color: rgba(255, 255, 255, 0.82);
}

.bigha-fkr__live-trust {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 5px;
}

.bigha-fkr__live-trust span {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  width: auto !important;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff !important;
  background: rgba(24, 23, 26, 0.13);
  font-size: 9px !important;
  letter-spacing: 0.6px !important;
  line-height: 1.2;
  text-transform: uppercase;
}

.bigha-fkr__live-trust span::before {
  font-size: 10px;
  content: "✓";
}

.bigha-fkr.is-result-step .bigha-fkr__preview-rail {
  display: none;
}

.bigha-fkr.is-result-step .bigha-fkr__config-layout {
  display: block;
}

.bigha-fkr__selection-ribbon {
  display: grid;
  grid-template-columns: auto repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin: 0 0 15px;
  color: #fff;
  background: var(--bigha-dark);
}

.bigha-fkr__selection-kicker {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  color: #8fc0c2;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.bigha-fkr__selection-ribbon button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  min-width: 0;
  min-height: 64px;
  margin: 0;
  padding: 10px 15px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
}

.bigha-fkr__selection-ribbon button:hover {
  background: rgba(48, 112, 116, 0.42);
}

.bigha-fkr__selection-ribbon button small,
.bigha-fkr__selection-ribbon button strong,
.bigha-fkr__selection-ribbon button em {
  min-width: 0;
  font-style: normal;
  line-height: 1.2;
}

.bigha-fkr__selection-ribbon button small {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bigha-fkr__selection-ribbon button strong {
  grid-column: 1;
  overflow: hidden;
  color: #fff;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bigha-fkr__selection-ribbon button em {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #8fc0c2;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.bigha-fkr__detail-block,
.bigha-fkr__finder-grid {
  border: 1px solid color-mix(in srgb, var(--bigha-border) 88%, transparent);
  border-left: 3px solid var(--bigha-accent);
  box-shadow: 0 12px 32px rgba(24, 23, 26, 0.045);
}

.bigha-fkr__category-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bigha-fkr__cards--three {
  gap: 12px;
}

.bigha-fkr button.bigha-fkr__choice {
  position: relative;
  border-top: 3px solid transparent;
}

.bigha-fkr button.bigha-fkr__choice.is-selected {
  border-top-color: #8fc0c2;
}

.bigha-fkr button.bigha-fkr__choice.is-selected::after {
  position: absolute;
  top: 12px;
  right: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: var(--bigha-accent);
  background: #fff;
  font-size: 14px;
  content: "✓";
}

.bigha-fkr__package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bigha-fkr button.bigha-fkr__package {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  min-height: 370px;
  padding: 0;
  overflow: hidden;
  color: var(--bigha-dark) !important;
  background: #fff !important;
}

.bigha-fkr button.bigha-fkr__package.is-selected {
  border-color: var(--bigha-accent);
  box-shadow: inset 0 0 0 2px var(--bigha-accent), 0 16px 34px rgba(24, 23, 26, 0.08);
}

.bigha-fkr button.bigha-fkr__package.is-selected::after {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  color: #fff;
  background: var(--bigha-accent);
  font-size: 14px;
  content: "✓";
}

.bigha-fkr__package-visual {
  flex: 0 0 auto;
  width: 100%;
  height: 178px;
  min-height: 178px;
  margin: 0;
  aspect-ratio: auto;
  border-right: 0;
  border-bottom: 1px solid var(--bigha-border);
  background: linear-gradient(145deg, #fff, #f2f3f2);
}

.bigha-fkr__package-visual img {
  width: 100% !important;
  height: 100% !important;
  padding: 7px !important;
  object-fit: contain !important;
}

.bigha-fkr__package strong {
  align-self: auto;
  width: 100%;
  padding: 18px 17px 0;
  color: var(--bigha-dark) !important;
}

.bigha-fkr__package small,
.bigha-fkr__package.is-selected small {
  width: 100%;
  margin: 7px 0 0;
  padding: 0 17px 15px;
  color: var(--bigha-muted) !important;
}

.bigha-fkr__package em,
.bigha-fkr__package.is-selected em {
  width: 100%;
  margin: auto 0 0;
  padding: 13px 17px;
  border-top: 1px solid var(--bigha-border);
  color: var(--bigha-accent);
  background: #f5f5f4;
  font-size: 24px;
  white-space: normal;
}

.bigha-fkr__package.is-selected em {
  color: #fff;
  background: var(--bigha-accent);
}

.bigha-fkr__package.is-selected .bigha-fkr__package-badge {
  color: #fff;
  background: var(--bigha-dark);
}

@media (max-width: 1080px) {
  .bigha-fkr__category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bigha-fkr__package-grid {
    grid-template-columns: 1fr;
  }

  .bigha-fkr button.bigha-fkr__package {
    display: grid;
    grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    min-height: 170px;
  }

  .bigha-fkr__package-visual {
    grid-column: 1;
    grid-row: 1 / span 3;
    height: 100%;
    min-height: 168px;
    border-right: 1px solid var(--bigha-border);
    border-bottom: 0;
  }

  .bigha-fkr__package strong,
  .bigha-fkr__package small,
  .bigha-fkr__package em {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .bigha-fkr__config-layout {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__preview-rail {
    display: contents;
  }

  .bigha-fkr__config-layout > .bigha-fkr__panel {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }

  .bigha-fkr__preview-rail .bigha-fkr__live-price {
    position: sticky;
    top: 0;
    z-index: 12;
    grid-column: 1;
    grid-row: auto;
    order: 0;
    box-shadow: 0 12px 30px rgba(24, 23, 26, 0.18);
  }

  .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .bigha-fkr__progress {
    gap: 2px;
    padding: 3px;
  }

  .bigha-fkr__progress button {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 54px;
    padding: 7px 4px !important;
    font-size: 10px;
    text-align: center;
  }

  .bigha-fkr__progress li span {
    margin: 0;
  }

  .bigha-fkr__preview-rail .bigha-fkr__live-price {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 10px;
    padding: 12px 14px;
  }

  .bigha-fkr__preview-rail .bigha-fkr__live-price strong {
    font-size: clamp(23px, 7vw, 31px);
  }

  .bigha-fkr__preview-rail .bigha-fkr__live-price p {
    font-size: 11px;
  }

  .bigha-fkr__live-trust {
    display: none;
  }

  .bigha-fkr__selection-ribbon {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__selection-kicker {
    padding: 10px 13px 5px;
  }

  .bigha-fkr__selection-ribbon button {
    min-height: 55px;
    padding: 9px 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .bigha-fkr button.bigha-fkr__package {
    display: grid;
    grid-template-columns: minmax(122px, 0.72fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    min-height: 162px;
    padding: 0;
  }

  .bigha-fkr__package-visual {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 100%;
    height: 100%;
    min-height: 160px;
    margin: 0;
    border-right: 1px solid var(--bigha-border);
    border-bottom: 0;
  }

  .bigha-fkr__package strong,
  .bigha-fkr__package small,
  .bigha-fkr__package em {
    grid-column: 2;
  }

  .bigha-fkr__package strong {
    padding: 17px 13px 0;
    font-size: 14px;
  }

  .bigha-fkr__package small,
  .bigha-fkr__package.is-selected small {
    padding: 0 13px 10px;
    font-size: 11px;
  }

  .bigha-fkr__package em,
  .bigha-fkr__package.is-selected em {
    padding: 10px 13px;
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .bigha-fkr__category-strip {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__preview-rail .bigha-fkr__live-price {
    grid-template-columns: 1fr;
  }

  .bigha-fkr__preview-rail .bigha-fkr__live-price p {
    display: none;
  }
}

/* BIGHA Precision Fix 2.4.1 */
.bigha-fkr .bigha-fkr__door-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
}

.bigha-fkr button.bigha-fkr__door-choice {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 132px !important;
  padding: 12px 8px !important;
  text-align: center !important;
  writing-mode: horizontal-tb !important;
}

.bigha-fkr .bigha-fkr__door-choice svg {
  display: block !important;
  flex: 0 0 43px !important;
  width: 62px !important;
  min-width: 62px !important;
  max-width: 62px !important;
  height: 43px !important;
  margin: 0 auto !important;
}

.bigha-fkr .bigha-fkr__door-choice > span {
  display: block !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  writing-mode: horizontal-tb !important;
}

.bigha-fkr .bigha-fkr__door-choice strong,
.bigha-fkr .bigha-fkr__door-choice small {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  writing-mode: horizontal-tb !important;
}

.bigha-fkr .bigha-fkr__door-choice strong {
  font-size: 15px !important;
  white-space: nowrap !important;
}

.bigha-fkr .bigha-fkr__door-choice small {
  margin-top: 3px !important;
  font-size: 11px !important;
  white-space: normal !important;
}

@media (max-width: 420px) {
  .bigha-fkr .bigha-fkr__door-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .bigha-fkr button.bigha-fkr__door-choice {
    min-height: 122px !important;
  }
}

/* BIGHA Icon & Recommendation System 2.5 */
.bigha-fkr .bigha-fkr__choice > svg {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  padding: 8px;
  border: 1px solid color-mix(in srgb, var(--bigha-accent) 28%, var(--bigha-border));
  background: color-mix(in srgb, var(--bigha-accent) 7%, #fff);
  stroke-width: 1.8;
}

.bigha-fkr .bigha-fkr__choice.is-selected > svg {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.bigha-fkr .bigha-fkr__choice[data-service="vinyl"] svg circle:nth-of-type(1),
.bigha-fkr .bigha-fkr__choice[data-service="colorppf"] svg circle:nth-of-type(1) {
  fill: #e0a540;
  stroke: none;
}

.bigha-fkr .bigha-fkr__choice[data-service="vinyl"] svg circle:nth-of-type(2),
.bigha-fkr .bigha-fkr__choice[data-service="colorppf"] svg circle:nth-of-type(2) {
  fill: #8a5aa5;
  stroke: none;
}

.bigha-fkr .bigha-fkr__category-strip svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.7;
}

.bigha-fkr .bigha-fkr__door-choice svg.bigha-fkr__door-icon {
  width: 72px !important;
  min-width: 72px !important;
  max-width: 72px !important;
  height: 44px !important;
  stroke-width: 1.8 !important;
}

.bigha-fkr .bigha-fkr__door-icon--three {
  transform: translateX(-1px);
}

.bigha-fkr button.bigha-fkr__package.is-recommended:not(.is-selected) {
  border: 2px solid var(--bigha-accent);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--bigha-accent) 18%, transparent);
  transform: translateY(-4px);
}

.bigha-fkr button.bigha-fkr__package.is-recommended:hover {
  transform: translateY(-6px);
}

.bigha-fkr__package-badge--recommended {
  min-height: 32px;
  padding: 7px 11px;
  border-left: 4px solid #8fc0c2;
  color: #fff !important;
  background: var(--bigha-dark) !important;
  font-size: 10px;
  letter-spacing: 1px;
  box-shadow: 0 10px 24px rgba(24, 23, 26, 0.28);
}

.bigha-fkr__package-badge--recommended i {
  margin-right: 6px;
  color: #8fc0c2;
  font-size: 14px;
  font-style: normal;
  line-height: 1;
}

.bigha-fkr__package-badge--recommended b {
  font-weight: 600;
}

.bigha-fkr__package-badge--popular {
  color: var(--bigha-dark);
  background: #fff;
  box-shadow: 0 8px 22px rgba(24, 23, 26, 0.14);
}

.bigha-fkr__comparison-recommended {
  display: inline-flex;
  margin-top: 4px;
  padding: 3px 5px;
  color: #fff;
  background: var(--bigha-accent);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.bigha-fkr__comparison-actions button.is-recommended {
  border-color: var(--bigha-accent);
  color: #fff;
  background: var(--bigha-accent);
  font-weight: 600;
}

.bigha-fkr__comparison-actions button.is-recommended:hover {
  border-color: var(--bigha-dark);
  background: var(--bigha-dark);
}

.bigha-fkr__recommendation {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin: 22px clamp(18px, 3vw, 34px);
  padding: 22px clamp(20px, 3vw, 30px);
  overflow: hidden;
  border: 3px solid #8fc0c2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%),
    var(--bigha-accent);
  box-shadow: 0 20px 44px rgba(24, 23, 26, 0.24);
}

.bigha-fkr__recommendation::after {
  position: absolute;
  right: -65px;
  bottom: -105px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bigha-fkr__recommendation-seal {
  position: relative;
  z-index: 1;
  display: grid;
  place-content: center;
  width: 88px;
  height: 88px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: var(--bigha-dark);
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(24, 23, 26, 0.2);
}

.bigha-fkr__recommendation .bigha-fkr__recommendation-seal span {
  color: var(--bigha-accent);
  font-size: 18px;
  line-height: 1;
}

.bigha-fkr__recommendation .bigha-fkr__recommendation-seal strong {
  margin: 3px 0 0;
  color: var(--bigha-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
}

.bigha-fkr__recommendation .bigha-fkr__recommendation-seal small {
  margin-top: 2px;
  color: var(--bigha-accent);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
}

.bigha-fkr__recommendation-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.bigha-fkr__recommendation .bigha-fkr__recommendation-copy > span {
  color: #d7f0f0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.bigha-fkr__recommendation-copy h4 {
  margin: 5px 0 9px;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1;
}

.bigha-fkr__recommendation .bigha-fkr__recommendation-copy > small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
}

.bigha-fkr__recommendation .bigha-fkr__recommendation-copy > strong {
  margin-top: 2px;
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.bigha-fkr__recommendation .bigha-fkr__recommendation-copy p {
  max-width: 620px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.bigha-fkr__recommendation button {
  position: relative;
  z-index: 1;
  min-height: 50px;
  padding: 13px 17px;
  border: 2px solid #fff;
  color: var(--bigha-dark);
  background: #fff;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(24, 23, 26, 0.18);
}

.bigha-fkr__recommendation button:hover {
  color: #fff;
  background: var(--bigha-dark);
  border-color: var(--bigha-dark);
}

@media (max-width: 900px) {
  .bigha-fkr button.bigha-fkr__package.is-recommended:not(.is-selected) {
    transform: none;
  }

  .bigha-fkr button.bigha-fkr__package.is-recommended:hover {
    transform: translateY(-2px);
  }

  .bigha-fkr__recommendation {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 17px;
  }

  .bigha-fkr__recommendation-seal {
    width: 74px;
    height: 74px;
  }

  .bigha-fkr__recommendation button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .bigha-fkr .bigha-fkr__choice > svg {
    width: 56px;
    height: 56px;
  }

  .bigha-fkr__recommendation {
    grid-template-columns: 1fr;
    margin: 16px 12px;
    padding: 20px;
    text-align: left;
  }

  .bigha-fkr__recommendation-seal {
    width: 70px;
    height: 70px;
  }

  .bigha-fkr__recommendation button {
    grid-column: 1;
    white-space: normal;
  }
}

/* BIGHA Icon, Spezialmodell & Cabrio System 2.6 */
.bigha-fkr .bigha-fkr__choice > svg {
  overflow: visible;
  border: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 24%, rgba(143, 192, 194, 0.24), transparent 31%),
    color-mix(in srgb, var(--bigha-accent) 8%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--bigha-accent) 25%, var(--bigha-border)), 0 10px 24px rgba(24, 23, 26, 0.08);
}

.bigha-fkr .bigha-fkr__choice.is-selected > svg {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34), 0 10px 26px rgba(0, 0, 0, 0.16);
}

.bigha-fkr .bigha-fkr__icon .icon-sheet,
.bigha-fkr .bigha-fkr__icon .icon-shield {
  fill: #fff;
}

.bigha-fkr .bigha-fkr__choice.is-selected .icon-sheet,
.bigha-fkr .bigha-fkr__choice.is-selected .icon-shield {
  fill: rgba(255, 255, 255, 0.12);
}

.bigha-fkr .bigha-fkr__icon .icon-sheet--back {
  fill: color-mix(in srgb, var(--bigha-accent) 20%, #fff);
}

.bigha-fkr .bigha-fkr__icon .icon-sheet--middle {
  fill: color-mix(in srgb, #e0a540 18%, #fff);
}

.bigha-fkr .bigha-fkr__icon .icon-swatch--one {
  fill: #e0a540;
  stroke: none;
}

.bigha-fkr .bigha-fkr__icon .icon-swatch--two {
  fill: #8a5aa5;
  stroke: none;
}

.bigha-fkr .bigha-fkr__icon .icon-gloss {
  stroke: #8fc0c2;
  stroke-width: 2.4;
}

.bigha-fkr .bigha-fkr__icon .icon-check {
  stroke-width: 3;
}

.bigha-fkr .bigha-fkr__icon .icon-shield-line {
  opacity: 0.16;
}

.bigha-fkr .bigha-fkr__category-strip button {
  position: relative;
  isolation: isolate;
}

.bigha-fkr .bigha-fkr__category-strip button > svg {
  padding: 5px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--bigha-accent) 8%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--bigha-accent) 22%, transparent);
}

.bigha-fkr .bigha-fkr__category-strip button:hover > svg,
.bigha-fkr .bigha-fkr__category-strip button.is-selected > svg {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.bigha-fkr button.bigha-fkr__category-specialist {
  grid-column: span 2;
  min-height: 78px;
  border: 2px solid var(--bigha-accent);
  color: #fff;
  background:
    linear-gradient(105deg, rgba(48, 112, 116, 0.88), rgba(24, 23, 26, 0.98) 58%),
    var(--bigha-dark);
  box-shadow: 0 15px 34px rgba(24, 23, 26, 0.19);
}

.bigha-fkr button.bigha-fkr__category-specialist:hover,
.bigha-fkr button.bigha-fkr__category-specialist.is-selected {
  border-color: #8fc0c2;
  background: linear-gradient(105deg, var(--bigha-accent), #183b3e);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--bigha-accent) 30%, transparent);
}

.bigha-fkr button.bigha-fkr__category-specialist > .bigha-fkr__special-model-copy {
  display: grid !important;
  gap: 4px;
}

.bigha-fkr button.bigha-fkr__category-specialist strong {
  color: inherit;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.bigha-fkr button.bigha-fkr__category-specialist small {
  color: #bce0e1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

.bigha-fkr__body-style {
  margin-top: 20px;
  padding-top: 19px;
  border-top: 1px solid var(--bigha-border);
}

.bigha-fkr__body-style-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
  align-items: end;
  gap: 18px;
  margin-bottom: 13px;
}

.bigha-fkr__body-style-head strong {
  display: block;
  margin-top: 3px;
  color: var(--bigha-dark);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
}

.bigha-fkr__body-style-head p {
  margin: 0;
  color: var(--bigha-muted);
  font-size: 11px;
  line-height: 1.45;
}

.bigha-fkr__body-style-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bigha-fkr .bigha-fkr__body-style-grid button {
  display: grid !important;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center !important;
  gap: 14px;
  min-width: 0;
  min-height: 88px;
  padding: 12px 15px !important;
  border: 1px solid var(--bigha-border);
  color: var(--bigha-dark);
  background: #fff;
  text-align: left;
}

.bigha-fkr .bigha-fkr__body-style-grid button:hover,
.bigha-fkr .bigha-fkr__body-style-grid button.is-selected {
  border-color: var(--bigha-accent);
  color: #fff;
  background: var(--bigha-accent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--bigha-accent) 20%, transparent);
}

.bigha-fkr__body-style-grid .bigha-fkr__body-icon {
  display: block;
  width: 86px;
  height: 48px;
  padding: 4px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--bigha-accent) 8%, #fff);
}

.bigha-fkr__body-style-grid button.is-selected .bigha-fkr__body-icon,
.bigha-fkr__body-style-grid button:hover .bigha-fkr__body-icon {
  background: rgba(255, 255, 255, 0.12);
}

.bigha-fkr__body-style-grid span,
.bigha-fkr__body-style-grid strong,
.bigha-fkr__body-style-grid small {
  display: block !important;
  min-width: 0 !important;
  width: auto !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  writing-mode: horizontal-tb !important;
}

.bigha-fkr__body-style-grid strong {
  color: inherit;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
}

.bigha-fkr__body-style-grid small {
  margin-top: 3px;
  color: var(--bigha-muted);
  font-size: 11px;
}

.bigha-fkr__body-style-grid button.is-selected small,
.bigha-fkr__body-style-grid button:hover small {
  color: rgba(255, 255, 255, 0.76);
}

.bigha-fkr__body-icon .icon-roof {
  fill: color-mix(in srgb, var(--bigha-accent) 15%, #fff);
}

.bigha-fkr__body-icon .icon-fabric {
  fill: var(--bigha-dark);
}

.bigha-fkr__body-style-grid button.is-selected .icon-roof,
.bigha-fkr__body-style-grid button:hover .icon-roof,
.bigha-fkr__body-style-grid button.is-selected .icon-fabric,
.bigha-fkr__body-style-grid button:hover .icon-fabric {
  fill: rgba(255, 255, 255, 0.15);
}

.bigha-fkr .bigha-fkr__door-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  height: 58px;
  margin: 0 auto;
  border-radius: 12px;
  background: color-mix(in srgb, var(--bigha-accent) 7%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--bigha-accent) 20%, transparent);
}

.bigha-fkr .bigha-fkr__door-choice.is-selected .bigha-fkr__door-visual {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.bigha-fkr .bigha-fkr__door-visual > b {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--bigha-accent);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(24, 23, 26, 0.16);
}

.bigha-fkr .bigha-fkr__door-choice.is-selected .bigha-fkr__door-visual > b {
  color: var(--bigha-accent);
  background: #fff;
}

.bigha-fkr .bigha-fkr__door-icon .icon-window {
  fill: color-mix(in srgb, var(--bigha-accent) 10%, #fff);
}

.bigha-fkr .bigha-fkr__door-icon .icon-door {
  fill: none;
}

.bigha-fkr button.bigha-fkr__package.is-recommended:not(.is-selected) {
  outline: 4px solid color-mix(in srgb, var(--bigha-accent) 10%, transparent);
  outline-offset: 2px;
}

.bigha-fkr__package-badge--recommended {
  min-height: 38px;
  border-left-width: 7px;
  background: linear-gradient(90deg, var(--bigha-dark), #234b4e) !important;
  font-size: 11px;
  letter-spacing: 1.25px;
}

.bigha-fkr__package-badge--recommended i {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: var(--bigha-dark);
  background: #bce0e1;
}

.bigha-fkr__recommendation {
  padding-top: 34px;
}

.bigha-fkr__recommendation-flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 7px 15px;
  color: var(--bigha-dark);
  background: #bce0e1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.25px;
  line-height: 1;
}

@media (max-width: 760px) {
  .bigha-fkr__body-style-head {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .bigha-fkr .bigha-fkr__body-style-grid button {
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 10px !important;
  }

  .bigha-fkr__body-style-grid .bigha-fkr__body-icon {
    width: 70px;
  }
}

@media (max-width: 520px) {
  .bigha-fkr__body-style-grid {
    grid-template-columns: 1fr;
  }

  .bigha-fkr button.bigha-fkr__category-specialist {
    grid-column: span 1;
  }

  .bigha-fkr__recommendation-flag {
    right: 0;
    text-align: center;
  }
}

/* BIGHA Personal Advisor & Premium Experience 3.0 */
.bigha-fkr__advisor {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  color: #fff;
  border-color: rgba(143, 192, 194, 0.28);
  border-left-color: #8fc0c2;
  background:
    linear-gradient(135deg, rgba(48, 112, 116, 0.19), transparent 46%),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(255,255,255,.022) 40px),
    var(--bigha-dark);
  box-shadow: 0 24px 60px rgba(24, 23, 26, 0.18);
}

.bigha-fkr__advisor-summary {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.bigha-fkr__advisor-summary::-webkit-details-marker { display: none; }

.bigha-fkr__advisor-summary > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(188,224,225,.64);
  border-radius: 50%;
  color: #bce0e1;
  background: rgba(48,112,116,.24);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 27px;
  font-weight: 600;
  box-shadow: 0 0 0 6px rgba(143,192,194,.06);
}

.bigha-fkr__advisor-summary > div,
.bigha-fkr__advisor-summary > div > * {
  display: block;
  min-width: 0;
}

.bigha-fkr__advisor-summary > div > small {
  color: #8fc0c2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.bigha-fkr__advisor-summary > div > strong {
  margin-top: 4px;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1;
}

.bigha-fkr__advisor-summary > div > p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  line-height: 1.4;
}

.bigha-fkr__advisor-summary > b {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bce0e1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
  white-space: nowrap;
}

.bigha-fkr__advisor-summary > b em { font-style: normal; }
.bigha-fkr__advisor-close-label { display: none; }

.bigha-fkr__advisor-summary > b i {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(188,224,225,.4);
  border-radius: 50%;
}

.bigha-fkr__advisor-summary > b i::before,
.bigha-fkr__advisor-summary > b i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: #bce0e1;
  content: "";
  transform: translate(-50%, -50%);
}

.bigha-fkr__advisor-summary > b i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.bigha-fkr__advisor[open] .bigha-fkr__advisor-summary {
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.bigha-fkr__advisor[open] .bigha-fkr__advisor-open-label { display: none; }
.bigha-fkr__advisor[open] .bigha-fkr__advisor-close-label { display: inline; }
.bigha-fkr__advisor[open] .bigha-fkr__advisor-summary > b i::after { transform: translate(-50%, -50%) rotate(0deg); }

.bigha-fkr__advisor-content {
  position: relative;
  z-index: 2;
  padding: 0 20px 20px;
  animation: bighaAdvisorOpen 260ms ease both;
}

@keyframes bighaAdvisorOpen {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

.bigha-fkr__advisor::after {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(143, 192, 194, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(143, 192, 194, 0.035), 0 0 0 66px rgba(143, 192, 194, 0.025);
  content: "";
  pointer-events: none;
}

.bigha-fkr__advisor .bigha-fkr__config-head {
  position: relative;
  z-index: 2;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.bigha-fkr__advisor .bigha-fkr__config-head h4,
.bigha-fkr__advisor .bigha-fkr__config-head p {
  color: #fff;
}

.bigha-fkr__advisor .bigha-fkr__config-head p {
  opacity: 0.66;
}

.bigha-fkr__advisor-question {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.bigha-fkr__advisor-question-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bigha-fkr__advisor-question-head > b {
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(143, 192, 194, 0.56);
  color: #bce0e1;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 17px;
}

.bigha-fkr__advisor-question-head span,
.bigha-fkr__advisor-question-head strong,
.bigha-fkr__advisor-question-head small {
  display: block;
  min-width: 0;
}

.bigha-fkr__advisor-question-head strong {
  color: #fff;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 16px;
  letter-spacing: 0.15px;
}

.bigha-fkr__advisor-question-head small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
}

.bigha-fkr__advisor-options {
  display: grid;
  gap: 8px;
}

.bigha-fkr__advisor-options--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bigha-fkr__advisor-options--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.bigha-fkr button.bigha-fkr__advisor-choice {
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 9px !important;
  min-width: 0 !important;
  min-height: 68px !important;
  padding: 10px 11px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.045) !important;
  text-align: left !important;
  box-shadow: none !important;
}

.bigha-fkr button.bigha-fkr__advisor-choice:hover,
.bigha-fkr button.bigha-fkr__advisor-choice.is-selected {
  border-color: #8fc0c2 !important;
  background: rgba(48, 112, 116, 0.55) !important;
  transform: translateY(-1px);
}

.bigha-fkr button.bigha-fkr__advisor-choice.is-selected {
  box-shadow: inset 3px 0 0 #bce0e1, 0 8px 20px rgba(0, 0, 0, 0.16) !important;
}

.bigha-fkr__advisor-choice i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(143, 192, 194, 0.45);
  color: #bce0e1;
  background: rgba(0, 0, 0, 0.12);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-style: normal;
}

.bigha-fkr__advisor-choice span,
.bigha-fkr__advisor-choice strong,
.bigha-fkr__advisor-choice small {
  display: block !important;
  min-width: 0 !important;
  width: auto !important;
  color: inherit !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.bigha-fkr__advisor-choice strong {
  font-size: 13px !important;
  line-height: 1.15 !important;
}

.bigha-fkr__advisor-choice small {
  margin-top: 4px !important;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
}

.bigha-fkr__advisor-progress {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 4px 13px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.bigha-fkr__advisor-progress > span {
  grid-row: 1 / span 2;
  display: block;
  width: 112px;
  height: 5px;
  background: linear-gradient(90deg, #8fc0c2 var(--advisor-progress), rgba(255,255,255,.12) var(--advisor-progress));
}

.bigha-fkr__advisor-progress strong { color: #fff; font-size: 12px; }
.bigha-fkr__advisor-progress small { color: rgba(255,255,255,.58); font-size: 10px; }

.bigha-fkr__advisor-result {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 19px;
  border: 1px solid #8fc0c2;
  border-left: 6px solid #bce0e1;
  background: linear-gradient(100deg, rgba(48, 112, 116, 0.76), rgba(48, 112, 116, 0.23));
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}

.bigha-fkr__advisor-result span,
.bigha-fkr__advisor-result strong { display: block; }
.bigha-fkr__advisor-result span { color: #bce0e1; font-size: 9px; font-weight: 800; letter-spacing: 1.1px; }
.bigha-fkr__advisor-result strong { margin-top: 5px; color: #fff; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 27px; line-height: 1; }
.bigha-fkr__advisor-result p { margin: 8px 0 0; color: rgba(255,255,255,.76); font-size: 12px; line-height: 1.5; }
.bigha-fkr__advisor-result button { padding: 13px 15px; border: 0; color: var(--bigha-dark); background: #bce0e1; font-size: 10px; font-weight: 800; letter-spacing: .75px; }

.bigha-fkr__selection-chips {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: -2px 0 13px;
}

.bigha-fkr__selection-chips[hidden] { display: none; }

.bigha-fkr__selection-chips span {
  padding: 6px 9px;
  border: 1px solid rgba(143, 192, 194, 0.28);
  color: rgba(255,255,255,.78);
  background: rgba(48,112,116,.12);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .55px;
  text-transform: uppercase;
}

.bigha-fkr__impact-scene,
.bigha-fkr__specialist-scene {
  position: absolute;
  z-index: 4;
  display: block;
  pointer-events: none;
}

.bigha-fkr__impact-scene { inset: 0; opacity: 0; }
.bigha-fkr.is-ppf-effect .bigha-fkr__impact-scene { opacity: 1; }

.bigha-fkr__impact-scene i {
  position: absolute;
  top: 42%;
  right: 5%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #303034;
  box-shadow: 0 0 0 2px rgba(255,255,255,.65);
  opacity: 0;
}

.bigha-fkr__impact-scene i:nth-child(2) { top: 35%; animation-delay: 120ms !important; }
.bigha-fkr__impact-scene i:nth-child(3) { top: 55%; animation-delay: 230ms !important; }
.bigha-fkr__impact-scene i:nth-child(4) { top: 61%; animation-delay: 340ms !important; }
.bigha-fkr.is-ppf-effect .bigha-fkr__impact-scene i { animation: bighaStoneImpact 880ms ease-out both; }

.bigha-fkr__impact-scene b {
  position: absolute;
  top: 31%;
  right: 22%;
  width: 58px;
  height: 70px;
  border: 3px solid rgba(48,112,116,.72);
  border-radius: 30px 30px 38px 38px;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(48,112,116,.55));
}

.bigha-fkr__impact-scene b::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(143,192,194,.75);
  border-radius: inherit;
  content: "";
}

.bigha-fkr.is-ppf-effect .bigha-fkr__impact-scene b { animation: bighaShieldPulse 1.05s 240ms ease both; }

/* Color PPF combines the color sweep first and the PPF impact protection second. */
.bigha-fkr.is-colorppf-effect .bigha-fkr__impact-scene i:nth-child(1) { animation-delay: 1430ms !important; }
.bigha-fkr.is-colorppf-effect .bigha-fkr__impact-scene i:nth-child(2) { animation-delay: 1550ms !important; }
.bigha-fkr.is-colorppf-effect .bigha-fkr__impact-scene i:nth-child(3) { animation-delay: 1660ms !important; }
.bigha-fkr.is-colorppf-effect .bigha-fkr__impact-scene i:nth-child(4) { animation-delay: 1770ms !important; }
.bigha-fkr.is-colorppf-effect .bigha-fkr__impact-scene b { animation-delay: 1600ms !important; }

@keyframes bighaStoneImpact {
  0% { transform: translateX(0) scale(.7); opacity: 0; }
  20% { opacity: .86; }
  72% { transform: translateX(-95px) scale(1); opacity: .9; }
  82% { transform: translateX(-101px) scale(1.8); opacity: 1; }
  100% { transform: translateX(-106px) scale(.2); opacity: 0; }
}

@keyframes bighaShieldPulse {
  0%, 100% { opacity: 0; transform: scale(.86); }
  24%, 72% { opacity: .92; transform: scale(1); }
  50% { box-shadow: 0 0 0 12px rgba(143,192,194,.13); }
}

.bigha-fkr.is-coverage-effect .bigha-fkr__vehicle-map > img[data-vehicle-image] { animation: bighaCoverageGlow 780ms ease both; }
@keyframes bighaCoverageGlow {
  0% { filter: saturate(.75) brightness(1.03); }
  35% { filter: saturate(1.16) drop-shadow(0 0 9px rgba(48,112,116,.26)); }
  68% { filter: saturate(1.08) drop-shadow(0 0 18px rgba(48,112,116,.2)); }
  100% { filter: none; }
}

.bigha-fkr__specialist-scene {
  top: 12px;
  left: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(143,192,194,.55);
  color: #d9f1f1;
  background: rgba(24,23,26,.9);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(-8px);
}

.bigha-fkr__vehicle-map.is-porsche-scene,
.bigha-fkr__vehicle-map.is-specialist-scene {
  background:
    linear-gradient(rgba(143,192,194,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,192,194,.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 62%, rgba(48,112,116,.25), transparent 45%),
    linear-gradient(145deg, #202024, #111114);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.bigha-fkr__vehicle-map.is-porsche-scene::before,
.bigha-fkr__vehicle-map.is-specialist-scene::before { color: rgba(255,255,255,.68); background: rgba(24,23,26,.82); }
.bigha-fkr__vehicle-map.is-porsche-scene .bigha-fkr__specialist-scene,
.bigha-fkr__vehicle-map.is-specialist-scene .bigha-fkr__specialist-scene { animation: bighaSpecialistIn 550ms 180ms ease both; }
@keyframes bighaSpecialistIn { to { opacity: 1; transform: translateY(0); } }

.bigha-fkr__result-level {
  position: relative;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--bigha-border);
  border-left: 4px solid var(--bigha-accent);
  background: #fff;
  box-shadow: 0 18px 46px rgba(24,23,26,.07);
}

.bigha-fkr__result-level--configuration { padding: 0; overflow: hidden; }
.bigha-fkr__result-level--configuration .bigha-fkr__result-level-head { padding: 20px 22px 0; }
.bigha-fkr__result-level--configuration .bigha-fkr__included,
.bigha-fkr__result-level--configuration .bigha-fkr__sales-proof,
.bigha-fkr__result-level--configuration .bigha-fkr__model-note { margin-right: 22px; margin-left: 22px; }
.bigha-fkr__result-level--configuration > :last-child { margin-bottom: 22px; }

.bigha-fkr__result-level-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bigha-fkr__result-level-head > span {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: #fff;
  background: var(--bigha-accent);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
}

.bigha-fkr__result-level-head small,
.bigha-fkr__result-level-head h3 { display: block; margin: 0; }
.bigha-fkr__result-level-head small { color: var(--bigha-accent); font-size: 9px; font-weight: 800; letter-spacing: 1.15px; }
.bigha-fkr__result-level-head h3 { margin-top: 3px; color: var(--bigha-dark); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: clamp(23px, 3vw, 32px); line-height: 1; }

.bigha-fkr__result-level--recommendation {
  color: #fff;
  border-color: rgba(143,192,194,.3);
  background: linear-gradient(130deg, #18171a, #243f42);
}
.bigha-fkr__result-level--recommendation .bigha-fkr__result-level-head h3 { color: #fff; }
.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation { margin: 0; }

.bigha-fkr__recommendation--match { grid-template-columns: auto minmax(0,1fr); }
.bigha-fkr__recommendation--match .bigha-fkr__recommendation-copy { grid-column: 2; }

.bigha-fkr__result-level--conversion {
  border-left-width: 7px;
  background: linear-gradient(135deg, #fff 0%, #f3f8f8 100%);
}

.bigha-fkr__conversion-intro { max-width: 720px; margin: 0 0 17px; color: var(--bigha-muted); line-height: 1.55; }
.bigha-fkr__conversion-actions { display: grid; grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr); gap: 10px; }
.bigha-fkr__conversion-actions .bigha-fkr__button { width: 100%; }
.bigha-fkr__closing-benefits { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.bigha-fkr__closing-benefits span { padding: 7px 9px; border: 1px solid rgba(48,112,116,.18); color: var(--bigha-accent); background: #fff; font-size: 10px; font-weight: 700; }

.bigha-fkr__mobile-dock { display: none; }

/* Clear roof icons: neutral closed car vs. unmistakably open cabrio under the sun. */
.bigha-fkr__body-style-grid .bigha-fkr__body-icon {
  height: 58px;
  padding: 3px 5px;
  overflow: visible;
  fill: none;
  stroke: var(--bigha-dark);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: linear-gradient(145deg, #fff, color-mix(in srgb, var(--bigha-accent) 9%, #fff));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--bigha-accent) 18%, transparent);
}

.bigha-fkr__body-style-grid .bigha-fkr__body-icon--cabrio {
  background:
    radial-gradient(circle at 81% 16%, rgba(224,165,64,.18), transparent 23%),
    linear-gradient(145deg, #fff, color-mix(in srgb, var(--bigha-accent) 9%, #fff));
}

.bigha-fkr__body-icon .icon-car-shell {
  fill: color-mix(in srgb, var(--bigha-accent) 9%, #fff);
}

.bigha-fkr__body-icon .icon-solid-roof {
  fill: #fff;
  stroke: var(--bigha-accent);
  stroke-width: 2.2;
}

.bigha-fkr__body-icon .icon-open-cabin,
.bigha-fkr__body-icon .icon-detail {
  fill: none;
}

.bigha-fkr__body-icon .icon-car-shell--cabrio {
  fill: color-mix(in srgb, var(--bigha-accent) 12%, #fff);
}

.bigha-fkr__body-icon .icon-seat {
  fill: color-mix(in srgb, var(--bigha-dark) 88%, transparent);
  stroke: var(--bigha-dark);
  stroke-width: 1.9;
}

.bigha-fkr__body-icon .icon-weather--sun {
  color: #d99c33;
  fill: rgba(224,165,64,.18);
  stroke: currentColor;
  stroke-width: 1.7;
}

.bigha-fkr__body-style-grid button.is-selected .bigha-fkr__body-icon,
.bigha-fkr__body-style-grid button:hover .bigha-fkr__body-icon {
  stroke: #fff;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
}

.bigha-fkr__body-style-grid button.is-selected .icon-car-shell,
.bigha-fkr__body-style-grid button:hover .icon-car-shell,
.bigha-fkr__body-style-grid button.is-selected .icon-solid-roof,
.bigha-fkr__body-style-grid button:hover .icon-solid-roof {
  fill: rgba(255,255,255,.13);
  stroke: #fff;
}

.bigha-fkr__body-style-grid button.is-selected .icon-seat,
.bigha-fkr__body-style-grid button:hover .icon-seat {
  fill: rgba(255,255,255,.45);
  stroke: #fff;
}

.bigha-fkr__body-style-grid button.is-selected .icon-weather--sun,
.bigha-fkr__body-style-grid button:hover .icon-weather--sun {
  color: #fff;
}

/* Expandable specialist-model shelf, intentionally separated from vehicle classes. */
.bigha-fkr__category-picker > .bigha-fkr__category-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bigha-fkr__special-models {
  position: relative;
  margin-top: 22px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(143,192,194,.28);
  border-left: 5px solid #8fc0c2;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(48,112,116,.31), transparent 48%),
    repeating-linear-gradient(90deg, transparent 0, transparent 38px, rgba(255,255,255,.018) 39px),
    var(--bigha-dark);
  box-shadow: 0 20px 45px rgba(24,23,26,.14);
}

.bigha-fkr__special-models::after {
  position: absolute;
  right: -62px;
  bottom: -92px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(143,192,194,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 27px rgba(143,192,194,.025), 0 0 0 56px rgba(143,192,194,.018);
  content: "";
  pointer-events: none;
}

.bigha-fkr__special-models-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.bigha-fkr__special-models-head strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.bigha-fkr__special-models-head p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  line-height: 1.45;
}

.bigha-fkr__special-model-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist {
  position: relative;
  grid-column: auto;
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-width: 0;
  min-height: 112px;
  margin: 0;
  padding: 13px 17px;
  overflow: hidden;
  border: 1px solid rgba(143,192,194,.44);
  color: #fff;
  background: linear-gradient(110deg, rgba(48,112,116,.76), rgba(24,23,26,.72));
  text-align: left;
  cursor: pointer;
}

.bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist:hover,
.bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist.is-selected {
  border-color: #bce0e1;
  background: linear-gradient(110deg, var(--bigha-accent), #1b3639);
  box-shadow: inset 4px 0 0 #bce0e1, 0 16px 34px rgba(0,0,0,.22);
  transform: translateY(-2px);
}

.bigha-fkr .bigha-fkr__special-model-grid > button.bigha-fkr__category-specialist:only-child {
  grid-column: 1 / -1;
}

.bigha-fkr__special-model-grid .bigha-fkr__icon {
  display: block;
  width: 92px;
  height: 65px;
  padding: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.bigha-fkr .bigha-fkr__brand-logo {
  display: grid !important;
  place-items: center !important;
  box-sizing: border-box !important;
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
  height: 65px !important;
  min-height: 65px !important;
  max-height: 65px !important;
  margin: 0 !important;
  padding: 6px !important;
  overflow: hidden !important;
  border: 1px solid rgba(143,192,194,.68);
  background: #fff !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}

.bigha-fkr .bigha-fkr__brand-logo svg.bigha-fkr__brand-mark {
  position: static !important;
  display: block !important;
  box-sizing: border-box !important;
  width: 43px !important;
  min-width: 43px !important;
  max-width: 43px !important;
  height: 43px !important;
  min-height: 43px !important;
  max-height: 43px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  transform: none !important;
  fill: #18171a;
  stroke: none;
  filter: drop-shadow(0 1px 1px rgba(24,23,26,.18));
}

.bigha-fkr__category-specialist.is-selected .bigha-fkr__brand-logo,
.bigha-fkr__category-specialist:hover .bigha-fkr__brand-logo {
  border-color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.24);
  transform: translateY(-1px);
}

.bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy,
.bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy > * {
  display: block !important;
  min-width: 0 !important;
  width: auto !important;
  margin: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy small {
  color: #bce0e1 !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 1px;
}

.bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy strong {
  margin-top: 5px !important;
  color: #fff !important;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif !important;
  font-size: 28px !important;
  line-height: 1 !important;
}

.bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy em {
  margin-top: 6px !important;
  color: rgba(255,255,255,.62) !important;
  font-size: 10px !important;
  font-style: normal;
  line-height: 1.35;
}

.bigha-fkr__special-model-grid button > b {
  color: rgba(255,255,255,.12);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}

.bigha-fkr__advisor-result--instant {
  border-color: #d7bc78;
  border-left-color: #d7bc78;
  background: linear-gradient(100deg, rgba(112,88,48,.52), rgba(48,112,116,.23));
}

.bigha-fkr__advisor-result--instant > div > span {
  color: #f0dca7;
}

@media (max-width: 760px) {
  .bigha-fkr { padding-bottom: 90px; }
  .bigha-fkr__advisor-summary { grid-template-columns: 40px minmax(0,1fr); gap: 11px; min-height: 92px; padding: 15px 52px 15px 15px; }
  .bigha-fkr__advisor-summary > span { width: 40px; height: 40px; font-size: 23px; }
  .bigha-fkr__advisor-summary > div > strong { font-size: 21px; }
  .bigha-fkr__advisor-summary > div > p { font-size: 10px; }
  .bigha-fkr__advisor-summary > b { position: absolute; top: 50%; right: 14px; transform: translateY(-50%); }
  .bigha-fkr__advisor-summary > b em { display: none !important; }
  .bigha-fkr__advisor-content { padding: 0 15px 15px; }
  .bigha-fkr__advisor-options--three { grid-template-columns: 1fr; }
  .bigha-fkr__advisor-options--two { grid-template-columns: 1fr 1fr; }
  .bigha-fkr__category-picker > .bigha-fkr__category-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bigha-fkr__special-models { padding: 15px; }
  .bigha-fkr__special-models-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .bigha-fkr__special-model-grid { grid-template-columns: 1fr; }
  .bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist { grid-template-columns: 76px minmax(0,1fr); min-height: 104px; padding: 12px; }
  .bigha-fkr__special-model-grid .bigha-fkr__icon { width: 76px; height: 56px; padding: 4px; }
  .bigha-fkr .bigha-fkr__brand-logo {
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    padding: 5px !important;
  }
  .bigha-fkr .bigha-fkr__brand-logo svg.bigha-fkr__brand-mark {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
  }
  .bigha-fkr__special-model-grid button > b { display: none; }
  .bigha-fkr button.bigha-fkr__advisor-choice { min-height: 62px !important; }
  .bigha-fkr__advisor-result { grid-template-columns: 1fr; }
  .bigha-fkr__advisor-result button { width: 100%; }
  .bigha-fkr__selection-chips { flex-wrap: nowrap; justify-content: flex-start; margin-right: -12px; margin-left: -12px; padding: 0 12px 5px; overflow-x: auto; scrollbar-width: none; }
  .bigha-fkr__selection-chips::-webkit-scrollbar { display: none; }
  .bigha-fkr__selection-chips span { flex: 0 0 auto; }
  .bigha-fkr__impact-scene b { right: 19%; transform: scale(.8); }
  .bigha-fkr__specialist-scene { top: 8px; left: 8px; font-size: 8px; }
  .bigha-fkr__result-level { padding: 16px; }
  .bigha-fkr__result-level--configuration { padding: 0; }
  .bigha-fkr__result-level--configuration .bigha-fkr__result-level-head { padding: 16px 16px 0; }
  .bigha-fkr__result-level--configuration .bigha-fkr__included,
  .bigha-fkr__result-level--configuration .bigha-fkr__sales-proof,
  .bigha-fkr__result-level--configuration .bigha-fkr__model-note { margin-right: 16px; margin-left: 16px; }
  .bigha-fkr__conversion-actions { grid-template-columns: 1fr; }
  .bigha-fkr__mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
    border-top: 1px solid rgba(143,192,194,.35);
    color: #fff;
    background: rgba(24,23,26,.97);
    box-shadow: 0 -14px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
  }
  .bigha-fkr__mobile-dock > div { min-width: 0; }
  .bigha-fkr__mobile-dock span,
  .bigha-fkr__mobile-dock strong { display: block; }
  .bigha-fkr__mobile-dock span { color: #8fc0c2; font-size: 8px; font-weight: 800; letter-spacing: 1px; }
  .bigha-fkr__mobile-dock strong { margin-top: 2px; overflow: hidden; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: clamp(19px,5.8vw,26px); line-height: 1; text-overflow: ellipsis; white-space: nowrap; }
  .bigha-fkr__mobile-dock button { min-height: 45px; padding: 0 15px; border: 1px solid #8fc0c2; color: #fff; background: var(--bigha-accent); font-size: 10px; font-weight: 800; letter-spacing: .75px; }
  .bigha-fkr__mobile-dock button:disabled { cursor: not-allowed; opacity: .38; }
}

@media (max-width: 480px) {
  .bigha-fkr__advisor-options--two { grid-template-columns: 1fr; }
  .bigha-fkr__advisor-progress { grid-template-columns: 1fr; }
  .bigha-fkr__advisor-progress > span { grid-row: auto; width: 100%; }
  .bigha-fkr__result-level-head > span { width: 34px; height: 34px; }
  .bigha-fkr__closing-benefits { display: grid; }
  .bigha-fkr__mobile-dock button { max-width: 158px; }
  .bigha-fkr__category-picker > .bigha-fkr__category-strip { grid-template-columns: 1fr; }
}

/* Result cards have light and dark surfaces. Keep their text self-contained so
   Elementor/theme colours cannot turn white copy invisible on the white cards. */
.bigha-fkr__result-level--configuration,
.bigha-fkr__result-level--conversion {
  color: var(--bigha-dark);
}

.bigha-fkr__result-level--configuration .bigha-fkr__result-main,
.bigha-fkr__result-level--configuration .bigha-fkr__included,
.bigha-fkr__result-level--configuration .bigha-fkr__sales-proof {
  color: #fff;
  background: var(--bigha-dark);
}

.bigha-fkr__result-level--configuration .bigha-fkr__result-summary {
  color: #fff;
}

.bigha-fkr__result-level--conversion .bigha-fkr__conversion-intro {
  color: var(--bigha-muted);
}

.bigha-fkr__result-level--conversion .bigha-fkr__button--ghost {
  color: var(--bigha-dark);
  background: #fff;
}

/* BIGHA mobile flow 3.2: show the real-time vehicle before each choice and
   keep every control comfortably tappable without wasting vertical space. */
@media (max-width: 760px) {
  .bigha-fkr {
    padding: 20px 12px calc(104px + env(safe-area-inset-bottom));
  }

  .bigha-fkr__header {
    margin-bottom: 20px;
  }

  .bigha-fkr__header h2 {
    margin-top: 12px;
    font-size: clamp(34px, 11vw, 48px);
  }

  .bigha-fkr__header p {
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.5;
  }

  .bigha-fkr__progress {
    position: relative;
    margin-bottom: 12px;
  }

  .bigha-fkr__progress button {
    min-height: 56px;
    padding: 7px 3px !important;
    font-size: 9px;
    line-height: 1.05;
  }

  .bigha-fkr__progress li span {
    font-size: 12px;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__config-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail {
    display: contents;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience {
    order: -2;
    width: 100%;
    margin: 0 0 8px;
    padding: 14px;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__live-price {
    position: static;
    order: -1;
    width: 100%;
    margin: 0 0 18px;
    padding: 12px 14px;
    box-shadow: 0 10px 24px rgba(24,23,26,.16);
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__config-layout > .bigha-fkr__panel {
    order: 1;
  }

  .bigha-fkr__vehicle-head {
    gap: 7px;
  }

  .bigha-fkr__stage-kicker {
    margin-bottom: 4px;
    font-size: 9px;
    letter-spacing: 1.15px;
  }

  .bigha-fkr__vehicle-head strong {
    font-size: clamp(25px, 8vw, 33px);
  }

  .bigha-fkr__coverage-label {
    width: 100%;
    padding: 6px 8px;
    font-size: 9px;
  }

  .bigha-fkr__vehicle-map {
    height: clamp(178px, 55vw, 245px) !important;
    margin: 10px 0 8px;
  }

  .bigha-fkr__vehicle-map img {
    inset: 4px !important;
    width: calc(100% - 8px) !important;
    height: calc(100% - 8px) !important;
  }

  .bigha-fkr__vehicle-map::before {
    right: 7px;
    bottom: 7px;
    padding: 4px 6px;
    font-size: 8px;
  }

  .bigha-fkr__selection-chips {
    gap: 5px;
    margin: 0 -2px 8px;
    padding: 0 2px 3px;
  }

  .bigha-fkr__selection-chips span {
    padding: 5px 7px;
    font-size: 8px;
  }

  .bigha-fkr__coverage-legend {
    min-height: 0;
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
  }

  .bigha-fkr__preview-rail .bigha-fkr__live-price strong {
    font-size: clamp(24px, 7.6vw, 32px);
  }

  .bigha-fkr__preview-rail .bigha-fkr__live-price p {
    align-self: center;
    font-size: 11px;
    line-height: 1.35;
  }

  .bigha-fkr__step-title {
    gap: 10px;
    margin-bottom: 16px;
  }

  .bigha-fkr__step-title > span {
    min-width: 32px;
    font-size: 25px;
  }

  .bigha-fkr__step-title h3 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .bigha-fkr__step-title p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.45;
  }

  .bigha-fkr__detail-block {
    margin-bottom: 14px;
    padding: 16px;
  }

  .bigha-fkr__field-row {
    gap: 13px;
    margin-top: 16px;
    padding: 16px;
  }

  .bigha-fkr button.bigha-fkr__choice,
  .bigha-fkr button.bigha-fkr__mini-choice,
  .bigha-fkr button.bigha-fkr__door-choice {
    min-height: 92px;
  }

  .bigha-fkr__category-strip button {
    min-height: 62px;
  }

  .bigha-fkr__nav {
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 4px;
  }

  .bigha-fkr__nav .bigha-fkr__button {
    min-height: 52px;
  }

  .bigha-fkr__result-level {
    margin-bottom: 12px;
    padding: 16px;
  }

  .bigha-fkr__result-level-head {
    gap: 10px;
    margin-bottom: 13px;
  }

  .bigha-fkr__result-level-head h3 {
    font-size: 26px;
  }

  .bigha-fkr__result-price,
  .bigha-fkr__result-summary {
    padding: 23px 18px;
  }

  .bigha-fkr__result-level--configuration {
    overflow: hidden;
  }

  .bigha-fkr__result-level--configuration .bigha-fkr__result-main {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .bigha-fkr__result-level--configuration .bigha-fkr__result-price,
  .bigha-fkr__result-level--configuration .bigha-fkr__result-summary {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .bigha-fkr__result-level--configuration .bigha-fkr__result-summary {
    background: var(--bigha-dark);
  }

  .bigha-fkr__result-summary h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(26px, 8.8vw, 33px);
    letter-spacing: -0.25px;
    white-space: normal;
  }

  .bigha-fkr__result-summary > p,
  .bigha-fkr__result-summary ul,
  .bigha-fkr__result-summary li {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
  }

  .bigha-fkr__result-price > strong {
    font-size: clamp(44px, 14vw, 61px);
  }

  .bigha-fkr__included span {
    padding: 15px 16px 15px 42px;
    font-size: 11px;
  }

  .bigha-fkr__included span::before {
    top: 19px;
    left: 18px;
  }

  .bigha-fkr__result-level--configuration .bigha-fkr__result-main,
  .bigha-fkr__result-level--configuration .bigha-fkr__included,
  .bigha-fkr__result-level--configuration .bigha-fkr__sales-proof {
    color: #fff !important;
    background: var(--bigha-dark) !important;
  }

  .bigha-fkr__result-level--conversion,
  .bigha-fkr__result-level--conversion .bigha-fkr__conversion-intro {
    color: var(--bigha-dark) !important;
  }

  .bigha-fkr__result-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .bigha-fkr__callback {
    gap: 18px;
    margin-top: 14px;
    padding: 20px 16px;
  }

  .bigha-fkr__mobile-dock {
    min-height: 78px;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .bigha-fkr__mobile-dock button {
    min-height: 48px;
    padding: 0 16px;
  }
}

/* BIGHA color transformation and structured result experience 3.4 */
.bigha-fkr__color-reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
  will-change: clip-path, opacity;
}

.bigha-fkr__color-reveal img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: saturate(1.08) contrast(1.02);
  transform: none !important;
}

.bigha-fkr__color-reveal > i {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: -46%;
  z-index: 2;
  width: 42%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.06) 18%, rgba(255,255,255,.62) 72%, rgba(188,224,225,.88) 100%);
  box-shadow: 20px 0 42px rgba(48,112,116,.32);
  opacity: 0;
  transform: skewX(-8deg);
}

.bigha-fkr__color-divider {
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 0;
  z-index: 5;
  display: block;
  width: 3px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(48,112,116,.35), 0 0 22px 7px rgba(143,192,194,.72);
  pointer-events: none;
}

.bigha-fkr__color-divider > i {
  position: absolute;
  top: 12px;
  left: 50%;
  display: block;
  padding: 5px 7px;
  color: #fff;
  background: var(--bigha-accent);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1px;
  transform: translateX(-50%);
}

.bigha-fkr__color-state {
  position: absolute;
  top: 15px;
  z-index: 6;
  display: block;
  padding: 6px 8px;
  border: 1px solid rgba(24,23,26,.12);
  color: rgba(24,23,26,.7);
  background: rgba(255,255,255,.9);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .9px;
  opacity: 0;
  pointer-events: none;
}

.bigha-fkr__color-state--before { left: 15px; }
.bigha-fkr__color-state--after {
  right: 15px;
  color: #fff;
  border-color: rgba(143,192,194,.5);
  background: rgba(24,23,26,.9);
}

.bigha-fkr.is-vinyl-effect .bigha-fkr__color-reveal {
  animation: bighaColorReveal 1.4s cubic-bezier(.22,.78,.22,1) both;
}

.bigha-fkr.is-vinyl-effect .bigha-fkr__color-reveal img {
  animation: none;
}

.bigha-fkr.is-vinyl-effect .bigha-fkr__color-reveal > i {
  animation: bighaColorSheet 1.4s cubic-bezier(.22,.78,.22,1) both;
}

.bigha-fkr.is-vinyl-effect .bigha-fkr__color-divider {
  animation: bighaColorDivider 1.4s cubic-bezier(.22,.78,.22,1) both;
}

.bigha-fkr.is-vinyl-effect .bigha-fkr__color-state--before {
  animation: bighaColorBefore 1.4s ease both;
}

.bigha-fkr.is-vinyl-effect .bigha-fkr__color-state--after {
  animation: bighaColorAfter 1.4s ease both;
}

@keyframes bighaColorReveal {
  0%, 8% { opacity: 1; clip-path: inset(0 100% 0 0); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes bighaColorSheet {
  0%, 8% { left: -46%; opacity: 0; }
  18% { opacity: .78; }
  88% { opacity: .58; }
  100% { left: 104%; opacity: 0; }
}

@keyframes bighaColorDivider {
  0%, 8% { left: 0; opacity: 0; }
  14% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 3px); opacity: 0; }
}

@keyframes bighaColorBefore {
  0%, 12% { opacity: 1; transform: translateY(0); }
  68%, 100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes bighaColorAfter {
  0%, 72% { opacity: 0; transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.bigha-fkr__value-framing {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.3);
}

.bigha-fkr__value-framing > span,
.bigha-fkr__value-framing > strong,
.bigha-fkr__value-framing > small,
.bigha-fkr__value-framing > em {
  display: block;
}

.bigha-fkr__value-framing > span {
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.bigha-fkr__value-framing > strong {
  margin-top: 5px;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(25px,3.4vw,36px);
  font-weight: 600;
  line-height: 1;
}

.bigha-fkr__value-framing > small {
  margin-top: 7px;
  color: #d4f0f1;
  font-size: 11px;
  font-weight: 700;
}

.bigha-fkr__value-framing > p {
  margin: 13px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.42;
}

.bigha-fkr__value-framing > em {
  margin-top: 7px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-style: normal;
  line-height: 1.4;
}

/* Results: one price hero, two concise scope cards and a separate closing path. */
.bigha-fkr__result-level--configuration {
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(24,23,26,.1);
  border-left: 0;
  background: #f2f4f4 !important;
}

.bigha-fkr__result-hero {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(330px,.88fr);
  min-width: 0;
  color: #fff;
  background:
    radial-gradient(circle at 8% 12%, rgba(48,112,116,.3), transparent 38%),
    linear-gradient(128deg, #18171a 0%, #202b2d 100%);
}

.bigha-fkr__result-intro,
.bigha-fkr__result-price {
  min-width: 0;
}

.bigha-fkr__result-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px,4.2vw,48px);
}

.bigha-fkr__result-badge {
  align-self: flex-start;
  padding: 7px 9px;
  border: 1px solid rgba(143,192,194,.42);
  color: #c9e9ea !important;
  background: rgba(48,112,116,.14);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.bigha-fkr__result-intro h3 {
  max-width: 570px;
  margin: 18px 0 0 !important;
  color: #fff !important;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(34px,4.2vw,53px);
  line-height: .96;
  letter-spacing: -.4px;
  overflow-wrap: normal;
  word-break: normal;
}

.bigha-fkr__result-intro p {
  max-width: 590px;
  margin: 15px 0 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.bigha-fkr__result-hero .bigha-fkr__result-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  padding: clamp(28px,4vw,44px);
  color: #fff !important;
  background: linear-gradient(145deg, #347b7f, #285f63) !important;
}

.bigha-fkr__result-hero .bigha-fkr__result-kicker {
  color: rgba(255,255,255,.74) !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.bigha-fkr__result-hero .bigha-fkr__result-price > strong {
  display: block;
  max-width: 100%;
  margin-top: 8px;
  color: #fff !important;
  font-size: clamp(41px,5.3vw,66px);
  line-height: .92;
  letter-spacing: -1px;
  white-space: normal;
  overflow-wrap: normal;
}

.bigha-fkr__result-hero .bigha-fkr__result-price > strong em {
  color: rgba(255,255,255,.8) !important;
  font-size: .48em;
}

.bigha-fkr__result-hero .bigha-fkr__result-price > strong small {
  color: rgba(255,255,255,.78) !important;
  font-size: .25em;
  letter-spacing: .5px;
}

.bigha-fkr__result-overview {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 15px;
  padding: 22px;
}

.bigha-fkr__result-card {
  min-width: 0;
  padding: clamp(20px,2.7vw,28px);
  border: 1px solid rgba(24,23,26,.1);
  background: #fff;
  box-shadow: 0 12px 30px rgba(24,23,26,.045);
}

.bigha-fkr__result-card-head {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(24,23,26,.1);
}

.bigha-fkr__result-card-head span,
.bigha-fkr__result-card-head strong {
  display: block;
}

.bigha-fkr__result-card-head span {
  color: var(--bigha-accent) !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.bigha-fkr__result-card-head strong {
  margin-top: 5px;
  color: var(--bigha-dark) !important;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(23px,2.6vw,31px);
  line-height: 1;
}

.bigha-fkr__result-card ul {
  display: grid;
  gap: 0;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.bigha-fkr__result-card li {
  position: relative;
  margin: 0;
  padding: 9px 0 9px 25px;
  border-bottom: 1px solid rgba(24,23,26,.075);
  color: #4f595b !important;
  font-size: 12px;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.bigha-fkr__result-card li:last-child {
  border-bottom: 0;
}

.bigha-fkr__result-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: #fff;
  background: var(--bigha-accent);
  font-size: 10px;
  content: "✓";
}

.bigha-fkr__result-benefits {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  margin-top: 17px;
}

.bigha-fkr__result-benefits span {
  position: relative;
  min-width: 0;
  padding: 11px 10px 11px 31px;
  color: #263638 !important;
  background: #f3f7f7;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.bigha-fkr__result-benefits span::before {
  position: absolute;
  top: 10px;
  left: 11px;
  color: var(--bigha-accent);
  content: "✓";
}

.bigha-fkr__result-benefit--tailormade {
  grid-column: 1 / -1;
}

.bigha-fkr__result-level--configuration .bigha-fkr__model-note {
  margin-right: 22px !important;
  margin-left: 22px !important;
}

.bigha-fkr__result-level--configuration .bigha-fkr__model-note {
  margin-top: 0;
  padding: 15px 17px;
  border: 1px solid rgba(48,112,116,.18);
  color: #425052 !important;
  background: #fff;
  line-height: 1.5;
}

.bigha-fkr__result-level--recommendation,
.bigha-fkr__result-level--conversion {
  padding: clamp(20px,3vw,30px);
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation {
  grid-template-columns: 82px minmax(0,1fr) minmax(190px,auto);
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(143,192,194,.26);
  background: rgba(255,255,255,.055);
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
  grid-template-columns: 82px minmax(0,1fr);
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
  width: 72px;
  min-width: 72px;
  height: 72px;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy {
  min-width: 0;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy h4 {
  overflow-wrap: anywhere;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation button {
  width: 100%;
  max-width: 280px;
  min-height: 52px;
  margin: 0;
}

.bigha-fkr__result-level--conversion {
  color: var(--bigha-dark) !important;
  background: linear-gradient(135deg,#fff,#f2f7f7) !important;
}

.bigha-fkr__result-level--conversion .bigha-fkr__conversion-intro {
  max-width: 780px;
  color: #536062 !important;
}

.bigha-fkr__result-level--conversion .bigha-fkr__conversion-actions {
  max-width: 790px;
}

.bigha-fkr__result-level--conversion .bigha-fkr__closing-benefits span {
  color: #225a5e !important;
  background: #fff !important;
}

@media (max-width: 760px) {
  .bigha-fkr__color-state {
    top: 8px;
    padding: 5px 6px;
    font-size: 7px;
    letter-spacing: .55px;
  }

  .bigha-fkr__color-state--before { left: 8px; }
  .bigha-fkr__color-state--after { right: 8px; }

  .bigha-fkr__color-divider > i {
    top: 8px;
    padding: 4px 5px;
    font-size: 7px;
  }

  .bigha-fkr__result-level--configuration {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .bigha-fkr__result-hero {
    grid-template-columns: minmax(0,1fr);
  }

  .bigha-fkr__result-intro {
    padding: 24px 18px 22px;
  }

  .bigha-fkr__result-intro h3 {
    margin-top: 14px !important;
    font-size: clamp(31px,10vw,42px);
    line-height: .98;
    overflow-wrap: normal;
    word-break: normal;
  }

  .bigha-fkr__result-intro p {
    font-size: 12px;
    line-height: 1.5;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-price {
    padding: 24px 18px;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-price > strong {
    font-size: clamp(39px,12vw,54px);
    letter-spacing: -.5px;
  }

  .bigha-fkr__value-framing {
    margin-top: 20px;
    padding-top: 17px;
  }

  .bigha-fkr__value-framing > strong {
    font-size: clamp(24px,8vw,31px);
    overflow-wrap: anywhere;
  }

  .bigha-fkr__value-framing > p {
    font-size: 12px;
  }

  .bigha-fkr__result-overview {
    grid-template-columns: minmax(0,1fr);
    gap: 12px;
    padding: 14px;
  }

  .bigha-fkr__result-card {
    padding: 19px 16px;
  }

  .bigha-fkr__result-card-head strong {
    font-size: 27px;
  }

  .bigha-fkr__result-benefits {
    grid-template-columns: minmax(0,1fr);
  }

  .bigha-fkr__result-level--configuration .bigha-fkr__model-note {
    margin-right: 14px !important;
    margin-left: 14px !important;
  }

  .bigha-fkr__result-level--recommendation,
  .bigha-fkr__result-level--conversion {
    padding: 18px 16px;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
    grid-template-columns: 58px minmax(0,1fr);
    gap: 13px;
    padding: 15px;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
    width: 52px;
    min-width: 52px;
    height: 52px;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy {
    grid-column: 2;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation button {
    grid-column: 1 / -1;
    max-width: none;
  }

  .bigha-fkr__conversion-actions {
    grid-template-columns: minmax(0,1fr);
  }

  .bigha-fkr__closing-benefits {
    display: grid;
    grid-template-columns: minmax(0,1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bigha-fkr *,
  .bigha-fkr *::before,
  .bigha-fkr *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bigha-fkr__impact-scene,
  .bigha-fkr__scan-line,
  .bigha-fkr__color-divider,
  .bigha-fkr__color-reveal > i,
  .bigha-fkr__color-state--before {
    display: none !important;
  }

  .bigha-fkr.is-vinyl-effect .bigha-fkr__color-reveal {
    display: block !important;
    opacity: 1 !important;
    clip-path: inset(0) !important;
    animation: none !important;
  }

  .bigha-fkr.is-vinyl-effect .bigha-fkr__color-state--after {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* BIGHA final design system, SEO content and usability 3.5 */
.bigha-fkr {
  --bigha-font-body: "DM Sans", Arial, sans-serif;
  --bigha-font-heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --bigha-font-ui: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-family: var(--bigha-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: .1px;
}

.bigha-fkr h2,
.bigha-fkr h3,
.bigha-fkr h4,
.bigha-fkr h5,
.bigha-fkr h6,
.bigha-fkr__vehicle-head strong,
.bigha-fkr__live-price strong,
.bigha-fkr__result-price > strong,
.bigha-fkr__result-card-head strong {
  font-family: var(--bigha-font-heading);
}

.bigha-fkr button,
.bigha-fkr summary,
.bigha-fkr__eyebrow,
.bigha-fkr__stage-kicker,
.bigha-fkr__result-kicker,
.bigha-fkr__field > span,
.bigha-fkr__select-label > span,
.bigha-fkr__progress li {
  font-family: var(--bigha-font-ui);
}

.bigha-fkr__header h2 {
  max-width: 760px;
  font-size: 47px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.5px;
}

.bigha-fkr__header p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.5;
}

.bigha-fkr__step-title h3,
.bigha-fkr__seo-intro h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.5px;
}

.bigha-fkr__step-title p,
.bigha-fkr__section-head p,
.bigha-fkr__special-models-head p,
.bigha-fkr__body-style-head p,
.bigha-fkr__config-head p,
.bigha-fkr__live-price p,
.bigha-fkr__conversion-intro {
  font-family: var(--bigha-font-body);
  font-size: 16px;
  line-height: 1.55;
}

.bigha-fkr__section-head h4,
.bigha-fkr__special-models-head strong {
  font-family: var(--bigha-font-heading);
  font-size: 25.2px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.bigha-fkr__config-head h4,
.bigha-fkr__config-group h5,
.bigha-fkr__body-style-head strong {
  font-family: var(--bigha-font-ui);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.bigha-fkr__eyebrow,
.bigha-fkr__stage-kicker,
.bigha-fkr__result-kicker,
.bigha-fkr__selection-kicker,
.bigha-fkr__result-badge,
.bigha-fkr__result-card-head span,
.bigha-fkr__package-badge,
.bigha-fkr__live-price > div > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.bigha-fkr__intro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 23px;
}

.bigha-fkr__intro-trust span {
  position: relative;
  padding-left: 20px;
  color: #3f4c4e;
  font-family: var(--bigha-font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .7px;
  line-height: 1.35;
  text-transform: uppercase;
}

.bigha-fkr__intro-trust span::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  color: #fff;
  background: var(--bigha-accent);
  font-size: 9px;
  content: "✓";
}

.bigha-fkr__progress li,
.bigha-fkr__progress button {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.bigha-fkr__progress button {
  min-height: 44px;
}

.bigha-fkr__progress button[aria-current="step"] {
  font-weight: 600;
}

.bigha-fkr__field > span,
.bigha-fkr__select-label > span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.bigha-fkr__field > span small {
  color: var(--bigha-accent);
  font: inherit;
  font-size: 11px;
}

.bigha-fkr__field input,
.bigha-fkr__select-label select {
  min-height: 56px;
  font-family: var(--bigha-font-body);
  font-size: 16px;
  line-height: 1.4;
}

.bigha-fkr__field > small,
.bigha-fkr__select-label > small {
  color: #6a7071;
  font-family: var(--bigha-font-body);
  font-size: 13px;
  line-height: 1.45;
}

.bigha-fkr input[aria-invalid="true"] {
  border-color: #ad4d42 !important;
  box-shadow: 0 0 0 3px rgba(173,77,66,.12) !important;
}

.bigha-fkr input[aria-invalid="true"] + [data-year-feedback] {
  color: #8d352c;
  font-weight: 600;
}

.bigha-fkr button.bigha-fkr__button,
.bigha-fkr__conversion-actions .bigha-fkr__button,
.bigha-fkr__recommendation button,
.bigha-fkr__mobile-dock button {
  min-height: 52px;
  font-family: var(--bigha-font-ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bigha-fkr__choice strong,
.bigha-fkr__mini-choice strong,
.bigha-fkr__package strong,
.bigha-fkr__toggle strong,
.bigha-fkr__fixed-choice strong,
.bigha-fkr__advisor-choice strong {
  font-family: var(--bigha-font-ui);
  font-size: 18px;
  font-weight: 600;
}

.bigha-fkr__choice small,
.bigha-fkr__mini-choice small,
.bigha-fkr__package small,
.bigha-fkr__toggle small,
.bigha-fkr__fixed-choice small,
.bigha-fkr__advisor-choice small {
  font-family: var(--bigha-font-body);
  font-size: 14px;
  line-height: 1.48;
}

.bigha-fkr__category-strip button {
  min-height: 74px;
  font-family: var(--bigha-font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.bigha-fkr__vehicle-head strong {
  font-size: clamp(32px,3.5vw,47px);
}

.bigha-fkr__coverage-label,
.bigha-fkr__coverage-legend,
.bigha-fkr__selection-chips span,
.bigha-fkr__live-trust span,
.bigha-fkr__closing-benefits span {
  font-size: 12px;
  line-height: 1.4;
}

.bigha-fkr__preview-rail .bigha-fkr__live-price strong {
  font-size: clamp(30px,3.1vw,40px);
}

.bigha-fkr__result-intro h3 {
  font-size: 47px;
  line-height: 1;
}

.bigha-fkr__result-intro p,
.bigha-fkr__result-card li,
.bigha-fkr__result-card > p,
.bigha-fkr__result-level--configuration .bigha-fkr__model-note {
  font-size: 15px;
  line-height: 1.55;
}

.bigha-fkr__result-card-head strong {
  font-size: 28px;
}

.bigha-fkr__result-benefits span {
  font-family: var(--bigha-font-body);
  font-size: 14px;
  line-height: 1.42;
}

.bigha-fkr__result-level-head h3 {
  font-size: 30px;
}

.bigha-fkr__result-level-head small,
.bigha-fkr__recommendation-copy > span,
.bigha-fkr__recommendation-copy > small {
  font-family: var(--bigha-font-ui);
  font-size: 11px;
  letter-spacing: 1px;
}

.bigha-fkr__progress button:focus-visible,
.bigha-fkr summary:focus-visible,
.bigha-fkr a:focus-visible,
.bigha-fkr [tabindex="-1"]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--bigha-accent) 48%, transparent);
  outline-offset: 4px;
}

.bigha-fkr__noscript {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 4px solid #ad4d42;
  color: var(--bigha-dark);
  background: #fff;
  font-size: 16px;
}

.bigha-fkr__seo-content {
  margin-top: clamp(48px,7vw,82px);
  padding-top: clamp(34px,5vw,58px);
  border-top: 1px solid rgba(24,23,26,.16);
}

.bigha-fkr__seo-intro {
  display: grid;
  grid-template-columns: minmax(280px,.8fr) minmax(0,1.2fr);
  align-items: end;
  gap: 18px 52px;
  margin-bottom: 24px;
}

.bigha-fkr__seo-intro .bigha-fkr__eyebrow {
  grid-column: 1 / -1;
}

.bigha-fkr__seo-intro h3,
.bigha-fkr__seo-intro p {
  margin: 0;
}

.bigha-fkr__seo-intro p {
  color: #535b5c;
  font-size: 17px;
  line-height: 1.6;
}

.bigha-fkr__faq {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}

.bigha-fkr__faq details {
  min-width: 0;
  border: 1px solid rgba(24,23,26,.12);
  background: #fff;
}

.bigha-fkr__faq details[open] {
  border-color: rgba(48,112,116,.48);
  box-shadow: inset 4px 0 0 var(--bigha-accent);
}

.bigha-fkr__faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 15px 54px 15px 18px;
  color: var(--bigha-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.bigha-fkr__faq summary::-webkit-details-marker { display: none; }

.bigha-fkr__faq summary i,
.bigha-fkr__faq summary i::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 2px;
  background: var(--bigha-accent);
  content: "";
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.bigha-fkr__faq summary i::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.bigha-fkr__faq details[open] summary i::after {
  transform: rotate(0deg);
}

.bigha-fkr__faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: #565e5f;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1279px) {
  .bigha-fkr { font-size: 17px; }
  .bigha-fkr__header h2 { font-size: 36px; }
  .bigha-fkr__step-title h3,
  .bigha-fkr__seo-intro h3 { font-size: 28px; }
  .bigha-fkr__section-head h4,
  .bigha-fkr__special-models-head strong { font-size: 24px; }
  .bigha-fkr__result-intro h3 { font-size: 36px; }
}

@media (max-width: 1023px) {
  .bigha-fkr { font-size: 17px; line-height: 1.58; }
  .bigha-fkr__header h2 { font-size: 30px; line-height: 35px; }
  .bigha-fkr__step-title h3,
  .bigha-fkr__seo-intro h3 { font-size: 26px; line-height: 30px; }
  .bigha-fkr__section-head h4,
  .bigha-fkr__special-models-head strong { font-size: 22px; line-height: 26px; }
  .bigha-fkr__result-intro h3 { font-size: 30px; line-height: 35px; }
  .bigha-fkr__seo-intro { grid-template-columns: minmax(0,1fr); gap: 10px; }
}

@media (max-width: 767px) {
  .bigha-fkr {
    font-size: 16px;
    line-height: 1.54;
  }

  .bigha-fkr__header h2 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0;
  }

  .bigha-fkr__header p,
  .bigha-fkr__step-title p,
  .bigha-fkr__section-head p,
  .bigha-fkr__special-models-head p,
  .bigha-fkr__body-style-head p,
  .bigha-fkr__config-head p,
  .bigha-fkr__live-price p,
  .bigha-fkr__conversion-intro,
  .bigha-fkr__seo-intro p {
    font-size: 16px;
    line-height: 1.5;
  }

  .bigha-fkr__step-title h3,
  .bigha-fkr__seo-intro h3 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
  }

  .bigha-fkr__section-head h4,
  .bigha-fkr__special-models-head strong {
    font-size: 20px;
    line-height: 24px;
  }

  .bigha-fkr__config-head h4,
  .bigha-fkr__config-group h5,
  .bigha-fkr__body-style-head strong {
    font-size: 17px;
  }

  .bigha-fkr__intro-trust {
    display: grid;
    gap: 9px;
    margin-top: 18px;
  }

  .bigha-fkr__progress li,
  .bigha-fkr__progress button {
    font-size: 11px;
    letter-spacing: .55px;
  }

  .bigha-fkr__progress button { min-height: 48px; }

  .bigha-fkr__field input,
  .bigha-fkr__select-label select { font-size: 16px; }

  .bigha-fkr__choice strong,
  .bigha-fkr__mini-choice strong,
  .bigha-fkr__package strong,
  .bigha-fkr__toggle strong,
  .bigha-fkr__fixed-choice strong,
  .bigha-fkr__advisor-choice strong { font-size: 17px; }

  .bigha-fkr__choice small,
  .bigha-fkr__mini-choice small,
  .bigha-fkr__package small,
  .bigha-fkr__toggle small,
  .bigha-fkr__fixed-choice small,
  .bigha-fkr__advisor-choice small { font-size: 14px; }

  .bigha-fkr__result-intro h3 {
    font-size: 26px;
    line-height: 30px;
  }

  .bigha-fkr__result-card-head strong,
  .bigha-fkr__result-level-head h3 { font-size: 24px; }

  .bigha-fkr__result-card li,
  .bigha-fkr__result-benefits span,
  .bigha-fkr__result-level--configuration .bigha-fkr__model-note { font-size: 14px; }

  .bigha-fkr__seo-content {
    margin-top: 50px;
    padding-top: 34px;
  }

  .bigha-fkr__faq { grid-template-columns: minmax(0,1fr); }
  .bigha-fkr__faq summary { min-height: 60px; padding: 14px 48px 14px 15px; font-size: 15px; }
  .bigha-fkr__faq summary i,
  .bigha-fkr__faq summary i::after { right: 16px; }
  .bigha-fkr__faq summary i::after { right: 0; }
  .bigha-fkr__faq details p { padding: 0 15px 16px; font-size: 14px; }
}

@media (max-width: 479px) {
  .bigha-fkr__header h2 { font-size: 24px; line-height: 27px; }
  .bigha-fkr__step-title h3,
  .bigha-fkr__seo-intro h3 { font-size: 22px; line-height: 25px; }
  .bigha-fkr__result-intro h3 { font-size: 24px; line-height: 27px; }
}

/* BIGHA Conversion Polish 3.6.1 */
.bigha-fkr__field--model-first {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(48,112,116,.32);
  background: linear-gradient(135deg, rgba(143,192,194,.14), rgba(255,255,255,.78));
  box-shadow: inset 4px 0 0 var(--bigha-accent);
}

.bigha-fkr__field--model-first > span small {
  display: inline-block;
  margin-left: 7px;
  padding: 3px 6px;
  color: #fff;
  background: var(--bigha-accent);
  font-size: 9px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.bigha-fkr__scope-basis,
.bigha-fkr__price-basis {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 14px 0 0;
  color: #596465;
  font-family: var(--bigha-font-body);
  font-size: 12px;
  line-height: 1.5;
}

.bigha-fkr__scope-basis {
  padding: 11px 13px;
  border-left: 3px solid rgba(48,112,116,.65);
  background: rgba(143,192,194,.09);
}

.bigha-fkr__scope-basis span,
.bigha-fkr__price-basis span {
  flex: 0 0 auto;
  color: var(--bigha-accent);
  font-family: var(--bigha-font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

.bigha-fkr__price-basis {
  margin-top: 12px !important;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.67) !important;
}

.bigha-fkr__price-basis span {
  color: #bce0e1;
}

.bigha-fkr__advisor {
  border: 1px solid rgba(210,184,117,.78) !important;
  border-left: 6px solid #d2b875 !important;
  background:
    linear-gradient(112deg, rgba(210,184,117,.2), transparent 48%),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(255,255,255,.022) 40px),
    #18171a !important;
  box-shadow: 0 20px 52px rgba(24,23,26,.2), 0 0 0 4px rgba(210,184,117,.1) !important;
}

.bigha-fkr__advisor-summary > span {
  border-color: rgba(241,215,145,.8);
  color: #f1d791;
  background: rgba(210,184,117,.14);
  box-shadow: 0 0 0 6px rgba(210,184,117,.08);
}

.bigha-fkr__advisor-summary > div > small,
.bigha-fkr__advisor-summary > b,
.bigha-fkr__advisor-result span {
  color: #f1d791;
}

.bigha-fkr__advisor-summary > b i,
.bigha-fkr__advisor-choice i,
.bigha-fkr__advisor-question-head > b {
  border-color: rgba(241,215,145,.52);
  color: #f1d791;
}

.bigha-fkr__advisor-summary > b i::before,
.bigha-fkr__advisor-summary > b i::after {
  background: #f1d791;
}

.bigha-fkr button.bigha-fkr__advisor-choice:hover,
.bigha-fkr button.bigha-fkr__advisor-choice.is-selected {
  border-color: #d2b875 !important;
  background: linear-gradient(135deg, rgba(210,184,117,.23), rgba(48,112,116,.34)) !important;
}

.bigha-fkr button.bigha-fkr__advisor-choice.is-selected {
  box-shadow: inset 3px 0 0 #f1d791, 0 8px 20px rgba(0,0,0,.18) !important;
}

.bigha-fkr__advisor-progress > span {
  background: linear-gradient(90deg, #f1d791 var(--advisor-progress), rgba(255,255,255,.12) var(--advisor-progress));
}

.bigha-fkr__advisor-result {
  border-color: #d2b875;
  border-left-color: #f1d791;
  background: linear-gradient(105deg, rgba(48,112,116,.82), rgba(210,184,117,.22));
}

.bigha-fkr__advisor-result button {
  color: #18171a;
  background: #f1d791;
}

@media (max-width: 767px) {
  .bigha-fkr__field--model-first { padding: 12px; }
  .bigha-fkr__scope-basis,
  .bigha-fkr__price-basis { display: block; font-size: 13px; }
  .bigha-fkr__scope-basis span,
  .bigha-fkr__price-basis span { display: block; margin-bottom: 3px; }
  .bigha-fkr__advisor { border-left-width: 4px !important; }
}

/* BIGHA Live Studio & hierarchy refinement 3.7.0 */
.bigha-fkr {
  padding: clamp(30px, 4vw, 54px);
}

.bigha-fkr__header {
  margin-bottom: clamp(30px, 3.4vw, 44px);
}

.bigha-fkr__progress {
  margin-bottom: clamp(32px, 3.6vw, 46px);
}

.bigha-fkr__config-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(380px, .84fr);
  column-gap: clamp(26px, 3vw, 40px);
}

.bigha-fkr__step-title {
  margin-bottom: 20px;
}

.bigha-fkr__finder-grid {
  gap: 16px;
  padding: 20px;
}

.bigha-fkr__category-picker {
  margin-top: 18px;
  margin-bottom: 18px;
  padding: clamp(20px, 2.4vw, 28px);
}

.bigha-fkr__category-picker > .bigha-fkr__category-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button {
  position: relative;
  min-height: 88px;
  padding: 14px 15px;
  overflow: hidden;
  border: 1px solid #d7d9d8;
  color: var(--bigha-dark);
  background: linear-gradient(145deg, #fff, #f8f9f8);
  box-shadow: 0 9px 22px rgba(24,23,26,.045);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button::after {
  position: absolute;
  right: -18px;
  bottom: -27px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(48,112,116,.09);
  border-radius: 50%;
  content: "";
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button:hover {
  border-color: rgba(48,112,116,.66);
  color: var(--bigha-dark);
  background: #fff;
  box-shadow: 0 14px 30px rgba(24,23,26,.09);
  transform: translateY(-2px);
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button.is-selected {
  border-color: var(--bigha-accent);
  color: #fff;
  background: linear-gradient(135deg, #387d81, var(--bigha-accent));
  box-shadow: inset 4px 0 0 #bce0e1, 0 15px 32px rgba(48,112,116,.2);
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip svg {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 6px;
  border: 1px solid rgba(48,112,116,.14);
  background: rgba(48,112,116,.055);
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button.is-selected svg {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.11);
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  letter-spacing: .25px;
}

/* Spezialmodelle bleiben sichtbar, ordnen sich aber bewusst unter den Fahrzeugklassen ein. */
.bigha-fkr__special-models {
  margin-top: 18px;
  padding: 13px 14px;
  overflow: visible;
  border: 1px solid #d9dddc;
  border-left: 3px solid rgba(48,112,116,.62);
  color: var(--bigha-dark);
  background: #f7f8f8;
  box-shadow: none;
}

.bigha-fkr__special-models::after {
  display: none;
}

.bigha-fkr__special-models-head {
  align-items: center;
  margin-bottom: 9px;
}

.bigha-fkr__special-models-head .bigha-fkr__stage-kicker {
  margin-bottom: 2px;
  color: #657173;
  font-size: 8px;
  letter-spacing: 1px;
}

.bigha-fkr__special-models-head strong {
  color: #334244;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .3px;
}

.bigha-fkr__special-models-head p {
  max-width: 280px;
  color: #747c7d;
  font-size: 11px;
  line-height: 1.35;
}

.bigha-fkr__special-model-grid {
  gap: 8px;
}

.bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist,
.bigha-fkr .bigha-fkr__special-model-grid > button.bigha-fkr__category-specialist:only-child {
  grid-column: auto;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 11px;
  min-height: 72px;
  padding: 8px 11px;
  border: 1px solid #d8dcdb;
  color: var(--bigha-dark);
  background: #fff;
  box-shadow: none;
}

.bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist:hover {
  border-color: rgba(48,112,116,.58);
  color: var(--bigha-dark);
  background: #fff;
  box-shadow: 0 10px 24px rgba(24,23,26,.08);
  transform: translateY(-1px);
}

.bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist.is-selected {
  border-color: var(--bigha-accent);
  color: #fff;
  background: var(--bigha-accent);
  box-shadow: inset 3px 0 0 #bce0e1, 0 10px 24px rgba(48,112,116,.16);
}

.bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo {
  width: 60px !important;
  min-width: 60px !important;
  max-width: 60px !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  padding: 5px !important;
  border-color: #d8dcdb;
  box-shadow: none;
}

.bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo svg.bigha-fkr__brand-mark {
  width: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
}

.bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy small {
  color: #617577 !important;
  font-size: 8px !important;
  font-weight: 600;
  letter-spacing: .75px;
}

.bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy strong {
  margin-top: 2px !important;
  color: var(--bigha-dark) !important;
  font-size: 19px !important;
  font-weight: 600 !important;
}

.bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy em {
  margin-top: 2px !important;
  color: #777f80 !important;
  font-size: 9px !important;
}

.bigha-fkr__special-model-grid button.is-selected > .bigha-fkr__special-model-copy small,
.bigha-fkr__special-model-grid button.is-selected > .bigha-fkr__special-model-copy strong,
.bigha-fkr__special-model-grid button.is-selected > .bigha-fkr__special-model-copy em {
  color: #fff !important;
}

.bigha-fkr__special-model-grid button > b {
  display: none;
}

.bigha-fkr__body-style {
  margin-top: 18px;
  padding-top: 18px;
}

/* Rechte Spalte als zusammenhängendes technisches Live-Studio. */
.bigha-fkr__preview-rail {
  filter: drop-shadow(0 24px 34px rgba(24,23,26,.14));
}

.bigha-fkr__preview-rail .bigha-fkr__vehicle-experience {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(143,192,194,.18);
  border-bottom: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(66,154,160,.2), transparent 28%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    #18171a;
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.bigha-fkr__preview-rail .bigha-fkr__vehicle-experience::before {
  position: absolute;
  top: 0;
  left: 22px;
  z-index: 3;
  width: 82px;
  height: 3px;
  background: linear-gradient(90deg, #bce0e1, var(--bigha-accent));
  box-shadow: 0 0 20px rgba(143,192,194,.55);
  content: "";
}

.bigha-fkr__preview-rail .bigha-fkr__vehicle-map {
  height: clamp(270px, 27vw, 350px);
  margin: 17px 0 13px;
  border-color: rgba(188,224,225,.32);
  box-shadow: 0 25px 60px rgba(0,0,0,.3), 0 0 0 5px rgba(255,255,255,.025);
}

.bigha-fkr__vehicle-map::after {
  position: absolute;
  inset: 9px;
  z-index: 5;
  background:
    linear-gradient(#307074,#307074) left top / 27px 2px no-repeat,
    linear-gradient(#307074,#307074) left top / 2px 27px no-repeat,
    linear-gradient(#307074,#307074) right top / 27px 2px no-repeat,
    linear-gradient(#307074,#307074) right top / 2px 27px no-repeat,
    linear-gradient(#307074,#307074) left bottom / 27px 2px no-repeat,
    linear-gradient(#307074,#307074) left bottom / 2px 27px no-repeat,
    linear-gradient(#307074,#307074) right bottom / 27px 2px no-repeat,
    linear-gradient(#307074,#307074) right bottom / 2px 27px no-repeat;
  content: "";
  opacity: .55;
  pointer-events: none;
}

.bigha-fkr__preview-rail .bigha-fkr__live-price {
  position: relative;
  gap: 9px;
  padding: 20px 22px 18px;
  overflow: hidden;
  border: 1px solid rgba(188,224,225,.22);
  border-top: 4px solid #9ccacc;
  border-bottom: 0;
  background: linear-gradient(118deg, #2d7478, #285f63 68%, #234e51);
}

.bigha-fkr__preview-rail .bigha-fkr__live-price::after {
  position: absolute;
  top: -65px;
  right: -50px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bigha-fkr__preview-rail .bigha-fkr__live-price strong {
  position: relative;
  z-index: 1;
  font-size: clamp(33px, 3.2vw, 43px);
  letter-spacing: -.4px;
  text-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.bigha-fkr__preview-console {
  position: relative;
  padding: 16px 18px 17px;
  overflow: hidden;
  border: 1px solid rgba(143,192,194,.2);
  border-top: 0;
  color: #fff;
  background: linear-gradient(145deg, #18171a, #202326);
}

.bigha-fkr__preview-console::after {
  position: absolute;
  right: -44px;
  bottom: -66px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(143,192,194,.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bigha-fkr__preview-console-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #bce0e1;
  font-family: var(--bigha-font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.15px;
}

.bigha-fkr__preview-console-head span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bigha-fkr__preview-console-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fc0c2;
  box-shadow: 0 0 0 4px rgba(143,192,194,.1), 0 0 14px rgba(143,192,194,.75);
  animation: bighaStudioPulse 1.8s ease-in-out infinite;
}

.bigha-fkr__preview-console-head b {
  color: rgba(255,255,255,.58);
  font-weight: 600;
}

@keyframes bighaStudioPulse {
  0%, 100% { opacity: .62; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1); }
}

.bigha-fkr__preview-progress {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin: 11px 0 14px;
}

.bigha-fkr__preview-progress i {
  display: block;
  height: 3px;
  background: rgba(255,255,255,.12);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.bigha-fkr__preview-console[data-stage="1"] .bigha-fkr__preview-progress i:nth-child(1),
.bigha-fkr__preview-console[data-stage="2"] .bigha-fkr__preview-progress i:nth-child(-n+2),
.bigha-fkr__preview-console[data-stage="3"] .bigha-fkr__preview-progress i:nth-child(-n+3),
.bigha-fkr__preview-console[data-stage="4"] .bigha-fkr__preview-progress i:nth-child(-n+4) {
  background: linear-gradient(90deg, #6ba8ab, #bce0e1);
  box-shadow: 0 0 11px rgba(143,192,194,.26);
}

.bigha-fkr__preview-next {
  position: relative;
  z-index: 1;
}

.bigha-fkr__preview-next small,
.bigha-fkr__preview-next strong,
.bigha-fkr__preview-next p {
  display: block;
}

.bigha-fkr__preview-next small {
  color: #7faeb1;
  font-family: var(--bigha-font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

.bigha-fkr__preview-next strong {
  margin-top: 3px;
  color: #fff;
  font-family: var(--bigha-font-heading);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.bigha-fkr__preview-next p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.45;
}

.bigha-fkr__preview-signature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.bigha-fkr__preview-signature span {
  flex: 0 0 auto;
  color: #bce0e1;
  font-family: var(--bigha-font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .9px;
}

.bigha-fkr__preview-signature b {
  min-width: 0;
  color: rgba(255,255,255,.52);
  font-family: var(--bigha-font-body);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.3;
  text-align: right;
}

@media (max-width: 1120px) and (min-width: 761px) {
  .bigha-fkr__config-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    column-gap: 22px;
  }
  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button { padding: 12px 10px; }
  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip span { font-size: 12px; }
  .bigha-fkr__preview-signature { display: block; }
  .bigha-fkr__preview-signature b { display: block; margin-top: 3px; text-align: left; }
}

@media (max-width: 760px) {
  .bigha-fkr { padding: 22px 14px 92px; }
  .bigha-fkr__header { margin-bottom: 25px; }
  .bigha-fkr__progress { margin-bottom: 24px; }
  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience { order: -3; margin-bottom: 0; }
  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__live-price { order: -2; margin-bottom: 0; }
  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-console { order: -1; width: 100%; margin: 0 0 18px; }
  .bigha-fkr__preview-rail { filter: drop-shadow(0 15px 25px rgba(24,23,26,.13)); }
  .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience { padding: 14px; }
  .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience::before { left: 14px; width: 62px; }
  .bigha-fkr__preview-rail .bigha-fkr__vehicle-map { height: clamp(190px, 57vw, 250px) !important; margin: 10px 0 8px; }
  .bigha-fkr__vehicle-map::after { inset: 6px; }
  .bigha-fkr__preview-rail .bigha-fkr__live-price { padding: 14px; }
  .bigha-fkr__preview-console { padding: 12px 14px 13px; }
  .bigha-fkr__preview-progress { margin: 9px 0 10px; }
  .bigha-fkr__preview-next strong { font-size: 20px; }
  .bigha-fkr__preview-next p { font-size: 10px; }
  .bigha-fkr__preview-signature { display: none; }
  .bigha-fkr__finder-grid { gap: 12px; padding: 14px; }
  .bigha-fkr__category-picker { padding: 15px; }
  .bigha-fkr__category-picker > .bigha-fkr__category-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button { min-height: 72px; padding: 9px; }
  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip svg { flex-basis: 34px; width: 34px; height: 34px; padding: 4px; }
  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip span { font-size: 12px; }
  .bigha-fkr__special-models { padding: 11px; }
  .bigha-fkr__special-models-head { display: block; margin-bottom: 8px; }
  .bigha-fkr__special-models-head p { margin-top: 3px; font-size: 10px; }
  .bigha-fkr__special-model-grid { grid-template-columns: 1fr; }
  .bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist,
  .bigha-fkr .bigha-fkr__special-model-grid > button.bigha-fkr__category-specialist:only-child { grid-template-columns: 54px minmax(0, 1fr); min-height: 64px; padding: 6px 9px; }
  .bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo { width: 54px !important; min-width: 54px !important; max-width: 54px !important; height: 46px !important; min-height: 46px !important; max-height: 46px !important; }
  .bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo svg.bigha-fkr__brand-mark { width: 31px !important; min-width: 31px !important; max-width: 31px !important; height: 31px !important; min-height: 31px !important; max-height: 31px !important; }
  .bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy strong { font-size: 18px !important; }
  .bigha-fkr__body-style { margin-top: 16px; padding-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .bigha-fkr__preview-console-head i { animation: none; }
  .bigha-fkr__preview-progress i { transition: none; }
}

/* Clear, premium required-field treatment 3.7.1 */
.bigha-fkr__field--required > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.bigha-fkr .bigha-fkr__required-marker {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  margin: 0 !important;
  padding: 3px 7px !important;
  border: 1px solid rgba(155,68,58,.22);
  border-radius: 999px;
  color: #8f3f36 !important;
  background: #f7e9e7 !important;
  font-family: var(--bigha-font-ui) !important;
  font-size: 9px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: .65px !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.bigha-fkr__field--required input:not([type="checkbox"]) {
  border-left: 3px solid #a04a40;
  background: linear-gradient(90deg, rgba(160,74,64,.035), #fff 18%);
}

.bigha-fkr__field--required input:not([type="checkbox"]):focus {
  border-left-color: var(--bigha-accent);
}

.bigha-fkr__callback-privacy--required {
  padding: 11px 12px;
  border-left: 3px solid #a04a40;
  background: rgba(160,74,64,.045);
}

.bigha-fkr__callback-privacy--required > span {
  line-height: 1.55;
}

.bigha-fkr__callback-privacy--required .bigha-fkr__required-marker {
  margin-right: 5px !important;
  vertical-align: 1px;
}

@media (max-width: 760px) {
  .bigha-fkr .bigha-fkr__required-marker { padding: 3px 6px !important; font-size: 8px !important; }
  .bigha-fkr__callback-privacy--required { padding: 10px; }
}

/* Animated final vehicle reveal 3.7.1 */
.bigha-fkr__result-vehicle {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(220px, .58fr);
  min-width: 0;
  margin: 0 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(143,192,194,.26);
  color: #fff;
  background: #18171a;
  box-shadow: 0 22px 48px rgba(24,23,26,.16);
  animation: bighaResultVehicleCardIn 620ms cubic-bezier(.2,.8,.2,1) both;
}

.bigha-fkr__result-vehicle-stage {
  position: relative;
  min-width: 0;
  min-height: 330px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 78%, rgba(48,112,116,.12), transparent 34%),
    linear-gradient(145deg, #fff, #f3f5f4);
  isolation: isolate;
}

.bigha-fkr__result-vehicle-stage::before,
.bigha-fkr__result-vehicle-stage::after {
  position: absolute;
  z-index: 4;
  content: "";
  pointer-events: none;
}

.bigha-fkr__result-vehicle-stage::before {
  inset: 10px;
  background:
    linear-gradient(#307074,#307074) left top / 34px 2px no-repeat,
    linear-gradient(#307074,#307074) left top / 2px 34px no-repeat,
    linear-gradient(#307074,#307074) right top / 34px 2px no-repeat,
    linear-gradient(#307074,#307074) right top / 2px 34px no-repeat,
    linear-gradient(#307074,#307074) left bottom / 34px 2px no-repeat,
    linear-gradient(#307074,#307074) left bottom / 2px 34px no-repeat,
    linear-gradient(#307074,#307074) right bottom / 34px 2px no-repeat,
    linear-gradient(#307074,#307074) right bottom / 2px 34px no-repeat;
  opacity: .48;
}

.bigha-fkr__result-vehicle-stage::after {
  right: 9%;
  bottom: 11%;
  left: 9%;
  height: 15%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(24,23,26,.18), transparent 68%);
  filter: blur(9px);
  opacity: 0;
  animation: bighaResultShadowIn 760ms 220ms ease forwards;
}

.bigha-fkr__result-vehicle-stage > img {
  position: absolute !important;
  inset: 12px !important;
  z-index: 2;
  display: block !important;
  width: calc(100% - 24px) !important;
  max-width: none !important;
  height: calc(100% - 24px) !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 0;
  transform: translateY(16px) scale(.96);
  filter: saturate(.75) contrast(.96);
  animation: bighaResultVehicleIn 850ms 120ms cubic-bezier(.16,.8,.2,1) forwards;
}

.bigha-fkr__result-vehicle-stage > .bigha-fkr__result-vehicle-neutral {
  z-index: 2;
}

.bigha-fkr__result-vehicle-stage > .bigha-fkr__result-vehicle-final {
  z-index: 3;
}

.bigha-fkr__result-vehicle-kicker,
.bigha-fkr__result-vehicle-ready {
  position: absolute;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--bigha-font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
}

.bigha-fkr__result-vehicle-kicker {
  top: 20px;
  left: 20px;
  padding: 7px 9px;
  color: #d8eeee;
  background: rgba(24,23,26,.86);
  backdrop-filter: blur(6px);
}

.bigha-fkr__result-vehicle-kicker i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fc0c2;
  box-shadow: 0 0 10px rgba(143,192,194,.8);
}

.bigha-fkr__result-vehicle-ready {
  right: 20px;
  bottom: 20px;
  padding: 7px 9px;
  color: #fff;
  background: var(--bigha-accent);
  opacity: 0;
  transform: translateY(7px);
  animation: bighaResultReadyIn 420ms 1.05s ease forwards;
}

.bigha-fkr__result-vehicle-ready i {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.bigha-fkr__result-vehicle-scan {
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 4%;
  z-index: 7;
  width: 2px;
  background: #79bec1;
  box-shadow: 0 0 18px 5px rgba(79,166,171,.5);
  opacity: 0;
  animation: bighaResultScan 920ms 260ms ease both;
}

.bigha-fkr__result-vehicle-sweep {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  pointer-events: none;
}

.bigha-fkr__result-vehicle--color-change .bigha-fkr__result-vehicle-sweep {
  display: block;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(48,112,116,.2), rgba(188,224,225,.72), transparent);
  mix-blend-mode: multiply;
  transform: translateX(-125%);
  animation: bighaResultColorSweep 1.05s 320ms cubic-bezier(.2,.78,.2,1) both;
}

.bigha-fkr__result-vehicle--color-change .bigha-fkr__result-vehicle-stage > .bigha-fkr__result-vehicle-final {
  clip-path: inset(0 100% 0 0);
  animation: bighaResultColorReveal 1.05s 320ms cubic-bezier(.2,.78,.2,1) forwards, bighaResultColorFinish 560ms 1.15s ease forwards;
}

.bigha-fkr__result-vehicle-impact {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: none;
  pointer-events: none;
}

.bigha-fkr__result-vehicle--ppf .bigha-fkr__result-vehicle-impact {
  display: block;
}

.bigha-fkr__result-vehicle-impact i {
  position: absolute;
  right: 1%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4d5051;
  box-shadow: 0 0 0 2px rgba(255,255,255,.38);
  opacity: 0;
}

.bigha-fkr__result-vehicle-impact i:nth-child(1) { top: 36%; animation: bighaResultImpact 720ms 650ms ease-out both; }
.bigha-fkr__result-vehicle-impact i:nth-child(2) { top: 49%; animation: bighaResultImpact 680ms 790ms ease-out both; }
.bigha-fkr__result-vehicle-impact i:nth-child(3) { top: 60%; animation: bighaResultImpact 700ms 900ms ease-out both; }

.bigha-fkr__result-vehicle-impact b {
  position: absolute;
  top: 29%;
  right: 17%;
  width: 70px;
  height: 106px;
  border: 2px solid rgba(105,180,184,.75);
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(circle, rgba(143,192,194,.2), transparent 64%);
  box-shadow: 0 0 22px rgba(105,180,184,.24), inset 0 0 18px rgba(105,180,184,.16);
  opacity: 0;
  transform: scale(.8);
  animation: bighaResultShield 720ms 850ms ease both;
}

.bigha-fkr__result-vehicle figcaption {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 28px 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 110% 10%, rgba(48,112,116,.35), transparent 38%),
    linear-gradient(145deg, #18171a, #202326);
}

.bigha-fkr__result-vehicle figcaption::before {
  position: absolute;
  top: 0;
  left: 25px;
  width: 68px;
  height: 3px;
  background: #8fc0c2;
  content: "";
}

.bigha-fkr__result-vehicle figcaption span,
.bigha-fkr__result-vehicle figcaption strong,
.bigha-fkr__result-vehicle figcaption small {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
}

.bigha-fkr__result-vehicle figcaption span {
  color: #8fc0c2;
  font-family: var(--bigha-font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
}

.bigha-fkr__result-vehicle figcaption strong {
  margin-top: 8px;
  color: #fff;
  font-family: var(--bigha-font-heading);
  font-size: clamp(29px,3.2vw,42px);
  font-weight: 600;
  line-height: .96;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.bigha-fkr__result-vehicle figcaption small {
  margin-top: 12px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.45;
}

@keyframes bighaResultVehicleCardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bighaResultVehicleIn {
  from { opacity: 0; transform: translateY(16px) scale(.96); filter: saturate(.65) contrast(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: saturate(.9) contrast(1); }
}

@keyframes bighaResultColorFinish {
  from { filter: saturate(.9) contrast(1); }
  to { filter: saturate(1.15) contrast(1.03); }
}

@keyframes bighaResultColorReveal {
  0% { opacity: 1; clip-path: inset(0 100% 0 0); transform: translateY(0) scale(1); filter: saturate(.86) contrast(1); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0) scale(1); filter: saturate(1.05) contrast(1.02); }
}

@keyframes bighaResultShadowIn {
  from { opacity: 0; transform: scale(.72); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bighaResultScan {
  0% { left: 4%; opacity: 0; }
  16%, 82% { opacity: 1; }
  100% { left: 96%; opacity: 0; }
}

@keyframes bighaResultColorSweep {
  0% { transform: translateX(-125%); opacity: 0; }
  16%, 82% { opacity: 1; }
  100% { transform: translateX(570%); opacity: 0; }
}

@keyframes bighaResultImpact {
  0% { right: 1%; opacity: 0; transform: scale(.6); }
  18% { opacity: 1; }
  72% { right: 20%; opacity: 1; transform: scale(1); }
  100% { right: 23%; opacity: 0; transform: scale(.35); }
}

@keyframes bighaResultShield {
  0% { opacity: 0; transform: scale(.8); }
  45% { opacity: .92; transform: scale(1.08); }
  100% { opacity: .45; transform: scale(1); }
}

@keyframes bighaResultReadyIn {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .bigha-fkr__result-vehicle { grid-template-columns: minmax(0,1fr); margin: 0 14px 14px; }
  .bigha-fkr__result-vehicle-stage { min-height: 235px; }
  .bigha-fkr__result-vehicle-kicker { top: 13px; left: 13px; max-width: calc(100% - 26px); font-size: 8px; }
  .bigha-fkr__result-vehicle-ready { right: 13px; bottom: 13px; font-size: 8px; }
  .bigha-fkr__result-vehicle-impact b { top: 30%; right: 13%; width: 52px; height: 80px; }
  .bigha-fkr__result-vehicle figcaption { padding: 20px 18px; }
  .bigha-fkr__result-vehicle figcaption::before { left: 18px; }
  .bigha-fkr__result-vehicle figcaption strong { font-size: 29px; }
  .bigha-fkr__result-vehicle figcaption small { margin-top: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .bigha-fkr__result-vehicle,
  .bigha-fkr__result-vehicle-stage::after,
  .bigha-fkr__result-vehicle-stage > img,
  .bigha-fkr__result-vehicle-kicker i,
  .bigha-fkr__result-vehicle-ready,
  .bigha-fkr__result-vehicle-scan,
  .bigha-fkr__result-vehicle-sweep,
  .bigha-fkr__result-vehicle-impact i,
  .bigha-fkr__result-vehicle-impact b {
    animation: none !important;
    opacity: 1;
    transform: none;
    clip-path: none;
  }
  .bigha-fkr__result-vehicle-scan,
  .bigha-fkr__result-vehicle-sweep,
  .bigha-fkr__result-vehicle-impact { display: none !important; }
}

/* Mobile guided flow 3.8.0: one decision per view, full functionality on demand. */
.bigha-fkr__mobile-intro,
.bigha-fkr__mobile-category-toggle {
  display: none;
}

.bigha-fkr__special-models > summary,
.bigha-fkr__result-card > summary,
.bigha-fkr__disclaimer > summary {
  list-style: none;
}

.bigha-fkr__special-models > summary::-webkit-details-marker,
.bigha-fkr__result-card > summary::-webkit-details-marker,
.bigha-fkr__disclaimer > summary::-webkit-details-marker {
  display: none;
}

.bigha-fkr__special-models-head {
  cursor: pointer;
}

.bigha-fkr__special-models-head > i,
.bigha-fkr__result-card-head > i,
.bigha-fkr__disclaimer summary > i {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(48,112,116,.24);
  border-radius: 50%;
}

.bigha-fkr__special-models-head > i::before,
.bigha-fkr__special-models-head > i::after,
.bigha-fkr__result-card-head > i::before,
.bigha-fkr__result-card-head > i::after,
.bigha-fkr__disclaimer summary > i::before,
.bigha-fkr__disclaimer summary > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%,-50%);
}

.bigha-fkr__special-models-head > i::after,
.bigha-fkr__result-card-head > i::after,
.bigha-fkr__disclaimer summary > i::after {
  transform: translate(-50%,-50%) rotate(90deg);
  transition: transform 180ms ease;
}

.bigha-fkr__special-models[open] .bigha-fkr__special-models-head > i::after,
.bigha-fkr__result-card[open] .bigha-fkr__result-card-head > i::after,
.bigha-fkr__disclaimer[open] summary > i::after {
  transform: translate(-50%,-50%) rotate(0);
}

.bigha-fkr__result-card-head {
  cursor: pointer;
}

.bigha-fkr__result-card-head > i {
  display: none;
}

.bigha-fkr__result-card-body {
  min-width: 0;
}

.bigha-fkr__disclaimer {
  display: block;
}

.bigha-fkr__disclaimer summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.bigha-fkr__disclaimer summary > span {
  color: #737b7c;
  font-size: 11px;
}

.bigha-fkr__disclaimer summary > i {
  display: none;
  margin-left: auto;
  color: var(--bigha-accent);
}

@media (max-width: 760px) {
  .bigha-fkr {
    padding: 14px 10px calc(92px + env(safe-area-inset-bottom));
  }

  .bigha-fkr__header {
    margin-bottom: 14px;
  }

  .bigha-fkr__header .bigha-fkr__eyebrow {
    font-size: 9px;
  }

  .bigha-fkr__header h2 {
    margin-top: 7px;
    font-size: clamp(30px,9.5vw,38px);
    line-height: .96;
  }

  .bigha-fkr__header > p:not(.bigha-fkr__mobile-intro),
  .bigha-fkr__intro-trust {
    display: none;
  }

  .bigha-fkr__header .bigha-fkr__mobile-intro {
    display: block;
    margin: 8px 0 0;
    color: #596465;
    font-family: var(--bigha-font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15px;
    line-height: 1.25;
  }

  .bigha-fkr__progress {
    gap: 4px;
    margin-bottom: 10px;
  }

  .bigha-fkr__progress li::before {
    display: none;
  }

  .bigha-fkr__progress button {
    min-height: 42px;
    padding: 5px 2px !important;
    font-size: 8px;
    letter-spacing: .2px;
    line-height: 1;
  }

  .bigha-fkr__progress li span {
    margin-bottom: 2px;
    font-size: 10px;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience {
    margin: 0 0 9px;
    padding: 9px;
    filter: none;
  }

  .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience::before {
    left: 9px;
    width: 48px;
  }

  .bigha-fkr__vehicle-head {
    min-height: 28px;
  }

  .bigha-fkr__vehicle-head .bigha-fkr__stage-kicker,
  .bigha-fkr__coverage-label,
  .bigha-fkr__selection-chips,
  .bigha-fkr__coverage-legend,
  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__live-price,
  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-console {
    display: none !important;
  }

  .bigha-fkr__vehicle-head strong {
    font-size: clamp(21px,6.8vw,27px);
    line-height: 1;
  }

  .bigha-fkr__preview-rail .bigha-fkr__vehicle-map {
    height: clamp(138px,42vw,178px) !important;
    margin: 5px 0 0;
    box-shadow: 0 12px 28px rgba(0,0,0,.2);
  }

  .bigha-fkr:not(.has-category) .bigha-fkr__preview-rail .bigha-fkr__vehicle-map {
    height: 108px !important;
    opacity: .74;
  }

  .bigha-fkr__vehicle-map::before,
  .bigha-fkr__vehicle-map::after,
  .bigha-fkr__color-state,
  .bigha-fkr__specialist-scene {
    display: none !important;
  }

  .bigha-fkr__step-title {
    gap: 8px;
    margin-bottom: 10px;
  }

  .bigha-fkr__step-title > span {
    min-width: 27px;
    font-size: 20px;
  }

  .bigha-fkr__step-title h3 {
    font-size: clamp(26px,8vw,32px);
    line-height: 1;
  }

  .bigha-fkr__step-title p,
  .bigha-fkr__section-head > p,
  .bigha-fkr__body-style-head > p,
  .bigha-fkr__config-head p {
    display: none;
  }

  .bigha-fkr__finder-grid {
    gap: 8px;
    padding: 10px;
    border-left-width: 2px;
  }

  .bigha-fkr__field--model-first {
    padding: 9px;
  }

  .bigha-fkr__field > span {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .bigha-fkr__field input {
    min-height: 48px;
    padding: 10px 11px;
  }

  .bigha-fkr__finder-grid .bigha-fkr__field > small {
    display: none;
  }

  .bigha-fkr__finder-grid .bigha-fkr__field:focus-within > small,
  .bigha-fkr__finder-grid .bigha-fkr__field input[aria-invalid="true"] + small {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.35;
  }

  .bigha-fkr__category-picker {
    margin: 9px 0 10px;
    padding: 11px;
  }

  .bigha-fkr__section-head {
    margin-bottom: 8px;
  }

  .bigha-fkr__section-head .bigha-fkr__stage-kicker {
    display: none;
  }

  .bigha-fkr__section-head h4 {
    font-size: 19px;
    line-height: 1;
  }

  .bigha-fkr__mobile-category-toggle:not([hidden]) {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto 22px;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    margin-bottom: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(48,112,116,.38);
    color: #fff;
    background: linear-gradient(135deg,#347b7f,#285f63);
    text-align: left;
  }

  .bigha-fkr__mobile-category-toggle span {
    min-width: 0;
    font-family: var(--bigha-font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    overflow-wrap: anywhere;
    text-transform: uppercase;
  }

  .bigha-fkr__mobile-category-toggle small {
    color: rgba(255,255,255,.62);
    font-family: var(--bigha-font-ui);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .55px;
  }

  .bigha-fkr__mobile-category-toggle i {
    position: relative;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
  }

  .bigha-fkr__mobile-category-toggle i::before,
  .bigha-fkr__mobile-category-toggle i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 1px;
    background: #fff;
    content: "";
    transform: translate(-50%,-50%);
  }

  .bigha-fkr__mobile-category-toggle[aria-expanded="false"] i::after {
    transform: translate(-50%,-50%) rotate(90deg);
  }

  .bigha-fkr.is-mobile-category-collapsed .bigha-fkr__category-strip,
  .bigha-fkr.is-mobile-category-collapsed .bigha-fkr__special-models {
    display: none;
  }

  .bigha-fkr__category-picker > .bigha-fkr__category-strip {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 6px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button {
    min-height: 62px;
    padding: 7px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip svg {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip span {
    font-size: 11px;
    line-height: 1.1;
  }

  .bigha-fkr__special-models {
    margin-top: 8px;
    padding: 0;
  }

  .bigha-fkr__special-models-head {
    display: grid;
    grid-template-columns: minmax(0,1fr) 24px;
    min-height: 51px;
    margin: 0;
    padding: 8px 9px;
  }

  .bigha-fkr__special-models-head > p {
    display: none;
  }

  .bigha-fkr__special-models-head strong {
    font-size: 16px;
  }

  .bigha-fkr__special-models-head > i {
    display: block;
    color: var(--bigha-accent);
  }

  .bigha-fkr__special-model-grid {
    padding: 0 8px 8px;
  }

  .bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist,
  .bigha-fkr .bigha-fkr__special-model-grid > button.bigha-fkr__category-specialist:only-child {
    grid-template-columns: 48px minmax(0,1fr);
    min-height: 58px;
    padding: 5px 7px;
  }

  .bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo {
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }

  .bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo svg.bigha-fkr__brand-mark {
    width: 29px !important;
    min-width: 29px !important;
    max-width: 29px !important;
    height: 29px !important;
    min-height: 29px !important;
    max-height: 29px !important;
  }

  .bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy strong {
    font-size: 16px !important;
  }

  .bigha-fkr__special-model-grid button > .bigha-fkr__special-model-copy em {
    display: none;
  }

  .bigha-fkr__body-style {
    margin-top: 10px;
    padding-top: 10px;
  }

  .bigha-fkr__body-style-head {
    margin-bottom: 7px;
  }

  .bigha-fkr__body-style-head .bigha-fkr__stage-kicker {
    display: none;
  }

  .bigha-fkr__body-style-head strong {
    font-size: 14px;
  }

  .bigha-fkr__body-style-grid {
    gap: 6px;
  }

  .bigha-fkr .bigha-fkr__body-style-grid button {
    grid-template-columns: 44px minmax(0,1fr) !important;
    gap: 6px;
    min-height: 60px;
    padding: 6px !important;
  }

  .bigha-fkr__body-style-grid .bigha-fkr__body-icon {
    width: 44px;
    height: 34px;
    padding: 1px;
  }

  .bigha-fkr__body-style-grid strong {
    font-size: 12px;
    line-height: 1.1;
  }

  .bigha-fkr__body-style-grid small {
    display: none !important;
  }

  .bigha-fkr__cards--three {
    grid-template-columns: minmax(0,1fr);
    gap: 7px;
  }

  .bigha-fkr button.bigha-fkr__choice {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0,1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 1px 10px;
    min-height: 70px;
    padding: 8px 38px 8px 10px;
    text-align: left;
  }

  .bigha-fkr .bigha-fkr__choice > svg {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 45px;
    height: 45px;
    margin: 0;
    padding: 6px;
  }

  .bigha-fkr__choice strong {
    grid-column: 2;
    grid-row: 1;
    font-size: 17px;
    line-height: 1.05;
  }

  .bigha-fkr__choice small {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
  }

  .bigha-fkr button.bigha-fkr__choice.is-selected::after {
    position: absolute;
    top: 50%;
    right: 11px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 50%;
    color: #fff;
    content: "✓";
    transform: translateY(-50%);
  }

  .bigha-fkr__panel > .bigha-fkr__nav [data-next],
  .bigha-fkr__panel > .bigha-fkr__nav [data-calculate] {
    display: none;
  }

  .bigha-fkr__panel[data-step="1"] > .bigha-fkr__nav {
    display: none;
  }

  .bigha-fkr__panel[data-step="2"] > .bigha-fkr__nav,
  .bigha-fkr__panel[data-step="3"] > .bigha-fkr__nav {
    display: block;
    margin-top: 9px;
    padding: 0;
  }

  .bigha-fkr__panel > .bigha-fkr__nav [data-back] {
    width: auto;
    min-height: 38px;
    padding: 0;
    border: 0;
    color: #647173;
    background: transparent;
    font-size: 9px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .bigha-fkr__selection-ribbon {
    display: none;
  }

  .bigha-fkr__detail-block {
    margin-bottom: 9px;
    padding: 11px;
  }

  .bigha-fkr__config-head {
    gap: 8px;
    margin-bottom: 9px;
  }

  .bigha-fkr__config-head > span {
    width: 29px;
    min-width: 29px;
    height: 29px;
    font-size: 11px;
  }

  .bigha-fkr__config-head h4 {
    font-size: 18px;
    line-height: 1;
  }

  .bigha-fkr__mini-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 5px;
  }

  .bigha-fkr button.bigha-fkr__mini-choice {
    min-height: 48px !important;
    padding: 7px 8px;
  }

  .bigha-fkr__mini-choice strong {
    font-size: 14px;
  }

  .bigha-fkr__detail-grid {
    gap: 8px;
  }

  .bigha-fkr__config-group {
    padding: 10px;
  }

  .bigha-fkr__config-group h5 {
    margin-bottom: 7px;
    font-size: 13px;
  }

  .bigha-fkr .bigha-fkr__toggle {
    grid-template-columns: 42px minmax(0,1fr) !important;
    gap: 9px;
    min-height: 54px;
    padding: 8px;
  }

  .bigha-fkr .bigha-fkr__toggle > span {
    width: 40px;
    height: 22px;
  }

  .bigha-fkr .bigha-fkr__toggle > span::after {
    top: 2px;
  }

  .bigha-fkr .bigha-fkr__toggle input:checked + span::after {
    transform: translateX(18px);
  }

  .bigha-fkr .bigha-fkr__toggle strong {
    font-size: 14px;
    line-height: 1.15;
  }

  .bigha-fkr .bigha-fkr__toggle small {
    display: none !important;
  }

  .bigha-fkr__door-grid {
    gap: 6px;
  }

  .bigha-fkr button.bigha-fkr__door-choice {
    display: grid;
    grid-template-columns: 51px minmax(0,1fr);
    gap: 6px;
    min-height: 66px !important;
    padding: 6px;
  }

  .bigha-fkr__door-choice svg {
    width: 49px;
    height: 34px;
  }

  .bigha-fkr__door-choice small {
    display: none;
  }

  .bigha-fkr__package-grid {
    grid-template-columns: minmax(0,1fr);
    gap: 7px;
  }

  .bigha-fkr button.bigha-fkr__package {
    display: grid;
    grid-template-columns: 96px minmax(0,1fr);
    grid-template-rows: auto auto auto;
    column-gap: 9px;
    min-height: 112px;
    padding: 0 9px 0 0;
  }

  .bigha-fkr__package-visual {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: stretch;
    width: 96px;
    height: 100%;
    min-height: 110px;
    border-right: 1px solid var(--bigha-border);
    border-bottom: 0;
  }

  .bigha-fkr__package strong {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding: 20px 0 0;
    font-size: 16px;
    line-height: 1;
  }

  .bigha-fkr__package small,
  .bigha-fkr__package.is-selected small {
    display: -webkit-box;
    grid-column: 2;
    grid-row: 2;
    margin: 3px 0 0;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .bigha-fkr__package em {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    margin: 4px 0 8px;
    font-size: 19px;
  }

  .bigha-fkr__package-badge {
    top: 5px;
    left: 5px;
    max-width: 88px;
    padding: 4px 5px;
    font-size: 6px;
    line-height: 1.05;
  }

  .bigha-fkr button.bigha-fkr__package.is-selected::after {
    top: 7px;
    right: 7px;
    width: 21px;
    height: 21px;
    font-size: 10px;
  }

  .bigha-fkr__package-comparison summary {
    min-height: 45px;
    padding: 9px 10px;
  }

  .bigha-fkr__package-comparison summary small {
    display: none;
  }

  .bigha-fkr__scope-basis {
    margin-top: 8px;
    padding: 8px 9px;
    font-size: 10px;
    line-height: 1.35;
  }

  .bigha-fkr__advisor-summary {
    grid-template-columns: 34px minmax(0,1fr);
    min-height: 70px;
    padding: 10px 43px 10px 10px;
  }

  .bigha-fkr__advisor-summary > span {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .bigha-fkr__advisor-summary > div > strong {
    font-size: 17px;
  }

  .bigha-fkr__advisor-summary > div > p {
    display: none;
  }

  .bigha-fkr__advisor-content {
    padding: 0 9px 10px;
  }

  .bigha-fkr__advisor-question {
    padding: 9px 0;
  }

  .bigha-fkr__advisor-question-head {
    gap: 7px;
    margin-bottom: 7px;
  }

  .bigha-fkr__advisor-question-head > b {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .bigha-fkr__advisor-question-head strong {
    font-size: 13px;
    line-height: 1.15;
  }

  .bigha-fkr__advisor-question-head small,
  .bigha-fkr__advisor-choice small {
    display: none;
  }

  .bigha-fkr__advisor-options--three {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 5px;
  }

  .bigha-fkr button.bigha-fkr__advisor-choice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 70px !important;
    padding: 6px 4px;
    text-align: center;
  }

  .bigha-fkr__advisor-choice i {
    width: 23px;
    height: 23px;
    margin: 0 auto;
    font-size: 11px;
  }

  .bigha-fkr__advisor-choice strong {
    font-size: 11px;
    line-height: 1.08;
  }

  .bigha-fkr__advisor-progress,
  .bigha-fkr__advisor-result {
    margin-top: 9px;
    padding: 10px;
  }

  .bigha-fkr__fixed-choice {
    padding: 10px;
  }

  .bigha-fkr__mobile-dock {
    min-height: 68px;
    gap: 8px;
    padding: 8px max(10px,env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px,env(safe-area-inset-left));
  }

  .bigha-fkr__mobile-dock span {
    font-size: 7px;
    letter-spacing: .65px;
  }

  .bigha-fkr__mobile-dock strong {
    font-size: clamp(18px,5.5vw,23px);
  }

  .bigha-fkr__mobile-dock button,
  .bigha-fkr__mobile-dock button[disabled] {
    max-width: 145px;
    min-height: 45px;
    padding: 0 10px;
    font-size: 9px;
    line-height: 1.1;
  }

  /* Result: price and final car first; supporting detail opens only on demand. */
  .bigha-fkr.is-result-step .bigha-fkr__header,
  .bigha-fkr.is-result-step .bigha-fkr__progress {
    display: none;
  }

  .bigha-fkr__workshop-scan {
    margin-bottom: 8px;
    padding: 12px;
  }

  .bigha-fkr__result-level {
    margin-bottom: 9px;
  }

  .bigha-fkr__result-intro {
    padding: 17px 14px 14px;
  }

  .bigha-fkr__result-badge {
    padding: 5px 7px;
    font-size: 7px;
  }

  .bigha-fkr__result-intro h3 {
    margin-top: 9px !important;
    font-size: clamp(27px,8.6vw,34px);
  }

  .bigha-fkr__result-intro p {
    display: -webkit-box;
    margin-top: 8px !important;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-price {
    padding: 17px 14px;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-price > strong {
    margin-top: 5px;
    font-size: clamp(37px,11.5vw,48px);
  }

  .bigha-fkr__value-framing {
    margin-top: 13px;
    padding-top: 11px;
  }

  .bigha-fkr__value-framing > strong {
    font-size: clamp(21px,6.8vw,27px);
  }

  .bigha-fkr__value-framing > small,
  .bigha-fkr__value-framing > p,
  .bigha-fkr__value-framing > em {
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.3;
  }

  .bigha-fkr__result-vehicle {
    margin: 0 9px 9px;
  }

  .bigha-fkr__result-vehicle-stage {
    min-height: 180px;
  }

  .bigha-fkr__result-vehicle-kicker {
    top: 8px;
    left: 8px;
    padding: 5px 6px;
    font-size: 6px;
  }

  .bigha-fkr__result-vehicle-ready {
    right: 8px;
    bottom: 8px;
    padding: 5px 6px;
    font-size: 6px;
  }

  .bigha-fkr__result-vehicle figcaption {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 3px 9px;
    padding: 12px 13px;
  }

  .bigha-fkr__result-vehicle figcaption::before {
    left: 13px;
    width: 44px;
  }

  .bigha-fkr__result-vehicle figcaption span {
    grid-column: 1 / -1;
    font-size: 6px;
  }

  .bigha-fkr__result-vehicle figcaption strong {
    margin-top: 2px;
    font-size: 22px;
  }

  .bigha-fkr__result-vehicle figcaption small {
    margin-top: 2px;
    font-size: 9px;
    text-align: right;
  }

  .bigha-fkr__result-overview {
    gap: 6px;
    padding: 9px;
  }

  .bigha-fkr__result-card {
    padding: 0;
  }

  .bigha-fkr__result-card-head {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr) 27px;
    min-height: 58px;
    padding: 10px 11px;
    border-bottom: 0;
  }

  .bigha-fkr__result-card-head span,
  .bigha-fkr__result-card-head strong {
    grid-column: 1;
  }

  .bigha-fkr__result-card-head span {
    font-size: 7px;
  }

  .bigha-fkr__result-card-head strong {
    margin-top: 2px;
    font-size: 20px;
  }

  .bigha-fkr__result-card-head > i {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--bigha-accent);
  }

  .bigha-fkr__result-card[open] .bigha-fkr__result-card-head {
    border-bottom: 1px solid rgba(24,23,26,.1);
  }

  .bigha-fkr__result-card-body {
    padding: 0 11px 11px;
  }

  .bigha-fkr__result-card li {
    padding: 7px 0 7px 21px;
    font-size: 11px;
  }

  .bigha-fkr__result-card li::before {
    top: 7px;
    width: 15px;
    height: 15px;
  }

  .bigha-fkr__result-benefits {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 5px;
    margin-top: 10px;
  }

  .bigha-fkr__result-benefits span {
    padding: 8px 7px 8px 23px;
    font-size: 9px;
  }

  .bigha-fkr__result-benefits span::before {
    top: 7px;
    left: 8px;
  }

  .bigha-fkr__result-level--recommendation,
  .bigha-fkr__result-level--conversion {
    padding: 13px 11px;
  }

  .bigha-fkr__result-level-head {
    gap: 7px;
    margin-bottom: 9px;
  }

  .bigha-fkr__result-level-head > span {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .bigha-fkr__result-level-head h3 {
    font-size: 21px;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
    grid-template-columns: 42px minmax(0,1fr);
    gap: 8px;
    padding: 10px;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .bigha-fkr__recommendation-copy h4 {
    font-size: 19px;
  }

  .bigha-fkr__recommendation-copy p {
    font-size: 10px;
    line-height: 1.35;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation button {
    min-height: 43px;
    font-size: 9px;
  }

  .bigha-fkr__conversion-intro {
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 1.4;
  }

  .bigha-fkr__conversion-actions {
    gap: 6px;
  }

  .bigha-fkr__conversion-actions .bigha-fkr__button {
    min-height: 45px;
    font-size: 9px;
  }

  .bigha-fkr__closing-benefits {
    display: none;
  }

  .bigha-fkr__disclaimer {
    margin-top: 8px;
    padding: 0;
  }

  .bigha-fkr__disclaimer summary {
    min-height: 48px;
    padding: 9px 11px;
  }

  .bigha-fkr__disclaimer summary strong {
    font-size: 9px;
  }

  .bigha-fkr__disclaimer summary > span {
    display: none;
  }

  .bigha-fkr__disclaimer summary > i {
    display: block;
  }

  .bigha-fkr__disclaimer p {
    margin: 0;
    padding: 0 11px 11px;
    font-size: 10px;
    line-height: 1.45;
  }

  .bigha-fkr__result-actions {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 6px;
    margin-top: 9px;
  }

  .bigha-fkr__result-actions .bigha-fkr__button {
    min-height: 40px;
    padding: 7px;
    font-size: 8px;
  }

  .bigha-fkr__callback {
    margin-top: 9px;
    padding: 14px 11px;
  }
}

@media (max-width: 360px) {
  .bigha-fkr__mobile-category-toggle {
    grid-template-columns: minmax(0,1fr) 22px;
  }

  .bigha-fkr__mobile-category-toggle small {
    display: none;
  }

  .bigha-fkr__result-vehicle figcaption {
    grid-template-columns: minmax(0,1fr);
  }

  .bigha-fkr__result-vehicle figcaption small {
    text-align: left;
  }
}

/* BIGHA UX release 4.0.0: progressive choices, trustworthy handoff and compact mobile flow. */
.bigha-fkr :is(button, input, select, textarea, summary, a):focus-visible {
  outline: 3px solid rgba(48,112,116,.32);
  outline-offset: 3px;
}

.bigha-fkr__manufacturer-recommendation {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
  min-height: 92px;
  padding: 15px 17px;
  border: 1px solid rgba(48,112,116,.28);
  color: var(--bigha-dark);
  background: linear-gradient(135deg,rgba(48,112,116,.1),rgba(255,255,255,.9));
  text-align: left;
}

.bigha-fkr__manufacturer-recommendation > i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: var(--bigha-accent);
  box-shadow: 0 10px 22px rgba(48,112,116,.2);
  font-style: normal;
  font-size: 19px;
}

.bigha-fkr__manufacturer-recommendation > span,
.bigha-fkr__manufacturer-recommendation :is(small,strong,em) {
  display: block;
  min-width: 0;
}

.bigha-fkr__manufacturer-recommendation small {
  color: var(--bigha-accent);
  font-family: var(--bigha-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.bigha-fkr__manufacturer-recommendation strong {
  margin-top: 2px;
  font-family: var(--bigha-font-heading);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.bigha-fkr__manufacturer-recommendation em {
  margin-top: 5px;
  color: var(--bigha-muted);
  font-family: var(--bigha-font-body);
  font-size: 12px;
  font-style: normal;
  line-height: 1.4;
}

.bigha-fkr__manufacturer-recommendation.is-selected {
  border-color: var(--bigha-accent);
  box-shadow: inset 4px 0 0 var(--bigha-accent);
}

.bigha-fkr__manufacturer-options {
  margin-top: 10px;
  border: 1px solid var(--bigha-border);
  background: #fff;
}

.bigha-fkr__manufacturer-options > summary {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto 24px;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 10px 13px;
  cursor: pointer;
  list-style: none;
}

.bigha-fkr__manufacturer-options > summary::-webkit-details-marker { display: none; }
.bigha-fkr__manufacturer-options > summary span { font-family: var(--bigha-font-ui); font-size: 12px; font-weight: 700; letter-spacing: .5px; }
.bigha-fkr__manufacturer-options > summary small { color: var(--bigha-muted); font-size: 11px; }
.bigha-fkr__manufacturer-options > summary i { position: relative; width: 24px; height: 24px; border: 1px solid rgba(48,112,116,.28); border-radius: 50%; }
.bigha-fkr__manufacturer-options > summary i::before,
.bigha-fkr__manufacturer-options > summary i::after { position: absolute; top: 50%; left: 50%; width: 8px; height: 1px; background: var(--bigha-accent); content: ""; transform: translate(-50%,-50%); }
.bigha-fkr__manufacturer-options > summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.bigha-fkr__manufacturer-options[open] > summary i::after { transform: translate(-50%,-50%); }
.bigha-fkr__manufacturer-options > .bigha-fkr__mini-grid { padding: 0 12px 12px; }

.bigha-fkr__conditional-door-count {
  margin-top: 11px;
  padding: 13px;
  border: 1px solid rgba(48,112,116,.2);
  background: #f7f9f9;
}

.bigha-fkr__conditional-door-count > span {
  display: block;
  margin-bottom: 10px;
  color: var(--bigha-accent);
  font-family: var(--bigha-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
}

.bigha-fkr__advisor-complete {
  display: grid;
  grid-template-columns: 36px minmax(0,1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 8px 10px;
  border: 1px solid rgba(241,215,145,.28);
  color: #fff;
  background: rgba(255,255,255,.035);
  text-align: left;
}

.bigha-fkr__advisor-complete > b { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(241,215,145,.55); border-radius: 50%; color: #f1d791; }
.bigha-fkr__advisor-complete > span { min-width: 0; }
.bigha-fkr__advisor-complete small,
.bigha-fkr__advisor-complete strong { display: block; }
.bigha-fkr__advisor-complete small { color: rgba(241,215,145,.72); font-family: var(--bigha-font-ui); font-size: 8px; letter-spacing: .7px; }
.bigha-fkr__advisor-complete strong { margin-top: 2px; overflow-wrap: anywhere; font-family: var(--bigha-font-ui); font-size: 14px; line-height: 1.15; }
.bigha-fkr__advisor-complete > em { color: #f1d791; font-family: var(--bigha-font-ui); font-size: 9px; font-style: normal; font-weight: 700; letter-spacing: .6px; }

.bigha-fkr__recommendation-delta {
  display: inline-flex !important;
  align-items: center;
  margin-top: 7px !important;
  padding: 4px 7px;
  border: 1px solid rgba(48,112,116,.28);
  color: var(--bigha-accent) !important;
  background: rgba(48,112,116,.08);
  font-family: var(--bigha-font-ui) !important;
  font-size: 10px !important;
  font-style: normal;
  font-weight: 700;
}

.bigha-fkr__proof-strip {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  margin: 0 14px 14px;
}

.bigha-fkr__proof-card {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 84px;
  padding: 13px 15px;
  border: 1px solid rgba(48,112,116,.22);
  color: var(--bigha-dark) !important;
  background: #fff;
  text-decoration: none !important;
}

.bigha-fkr__proof-card > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; background: var(--bigha-accent); font-family: var(--bigha-font-ui); font-size: 17px; }
.bigha-fkr__proof-card--review > span { width: auto; color: #b88920; background: transparent; font-size: 12px; letter-spacing: 1px; }
.bigha-fkr__proof-card :is(div,blockquote) { min-width: 0; margin: 0; }
.bigha-fkr__proof-card :is(small,strong,em,cite,p) { display: block; margin: 0; color: inherit; }
.bigha-fkr__proof-card small { color: var(--bigha-accent); font-family: var(--bigha-font-ui); font-size: 8px; font-weight: 700; letter-spacing: .7px; }
.bigha-fkr__proof-card strong { margin-top: 3px; overflow-wrap: anywhere; font-family: var(--bigha-font-heading); font-size: 20px; line-height: 1; text-transform: uppercase; }
.bigha-fkr__proof-card em,
.bigha-fkr__proof-card cite { margin-top: 4px; color: var(--bigha-muted); font-family: var(--bigha-font-body); font-size: 10px; font-style: normal; line-height: 1.3; }
.bigha-fkr__proof-card blockquote p { font-size: 11px; line-height: 1.4; }

.bigha-fkr.is-offer-form-visible .bigha-fkr__mobile-dock,
.bigha-fkr.is-callback-open .bigha-fkr__mobile-dock { opacity: 0; pointer-events: none; transform: translateY(110%); }
.bigha-fkr-form-highlight { outline: 3px solid rgba(48,112,116,.35); outline-offset: 7px; }

@media (hover: hover) {
  .bigha-fkr__manufacturer-recommendation:hover,
  .bigha-fkr__proof-card:hover { border-color: var(--bigha-accent); transform: translateY(-1px); }
}

@media (max-width: 760px) {
  .bigha-fkr:not([data-current-step="1"]) > .bigha-fkr__header { display: none; }

  .bigha-fkr__panel,
  .bigha-fkr__detail-block,
  .bigha-fkr__result-level,
  .bigha-fkr__result-card,
  .bigha-fkr__manufacturer-options,
  .bigha-fkr__proof-card { min-width: 0; max-width: 100%; overflow: hidden; }

  .bigha-fkr__body-style-grid { grid-template-columns: minmax(0,1fr); }
  .bigha-fkr__body-style-grid [data-body-style="closed"] { display: none !important; }
  .bigha-fkr .bigha-fkr__body-style-grid [data-body-style="cabrio"] { grid-template-columns: 54px minmax(0,1fr) auto !important; width: 100%; min-height: 62px; }
  .bigha-fkr .bigha-fkr__body-style-grid [data-body-style="cabrio"]::after { color: var(--bigha-accent); content: "OPTIONAL"; font-family: var(--bigha-font-ui); font-size: 8px; font-weight: 700; letter-spacing: .6px; }
  .bigha-fkr .bigha-fkr__body-style-grid [data-body-style="cabrio"].is-selected::after { color: #fff; content: "AUSGEWÄHLT"; }

  .bigha-fkr__manufacturer-recommendation { grid-template-columns: 42px minmax(0,1fr); gap: 10px; min-height: 76px; padding: 11px; }
  .bigha-fkr__manufacturer-recommendation > i { width: 42px; height: 42px; font-size: 16px; }
  .bigha-fkr__manufacturer-recommendation strong { font-size: 20px; }
  .bigha-fkr__manufacturer-recommendation em { display: none; }
  .bigha-fkr__manufacturer-options > summary { grid-template-columns: minmax(0,1fr) 24px; min-height: 48px; padding: 9px 10px; }
  .bigha-fkr__manufacturer-options > summary small { display: none; }
  .bigha-fkr__manufacturer-options > .bigha-fkr__mini-grid { grid-template-columns: repeat(2,minmax(0,1fr)); padding: 0 9px 9px; }

  .bigha-fkr__conditional-door-count { padding: 10px; }
  .bigha-fkr__conditional-door-count > span { font-size: 10px; line-height: 1.25; }

  .bigha-fkr__advisor-complete { grid-template-columns: 30px minmax(0,1fr) auto; gap: 8px; min-height: 50px; padding: 7px 8px; }
  .bigha-fkr__advisor-complete > b { width: 28px; height: 28px; }
  .bigha-fkr__advisor-complete strong { font-size: 13px; }
  .bigha-fkr__advisor-complete > em { font-size: 8px; }
  .bigha-fkr__advisor-progress small { display: none; }

  .bigha-fkr__proof-strip { grid-template-columns: minmax(0,1fr); gap: 7px; margin: 0 10px 10px; }
  .bigha-fkr__proof-card { grid-template-columns: 36px minmax(0,1fr); gap: 9px; min-height: 68px; padding: 10px; }
  .bigha-fkr__proof-card > span { width: 36px; height: 36px; font-size: 14px; }
  .bigha-fkr__proof-card strong { font-size: 18px; }
  .bigha-fkr__proof-card em { display: none; }
  .bigha-fkr__proof-card blockquote p { font-size: 11px; }

  .bigha-fkr__result-level--conversion .bigha-fkr__conversion-actions { grid-template-columns: minmax(0,1fr); }
  .bigha-fkr__result-level--conversion .bigha-fkr__conversion-actions .bigha-fkr__button { width: 100%; }
  .bigha-fkr__closing-benefits { gap: 5px; }
  .bigha-fkr__closing-benefits span { font-size: 9px; }

  .bigha-fkr__mobile-dock { transition: opacity 180ms ease, transform 180ms ease; }
}

@media (max-width: 380px) {
  .bigha-fkr__manufacturer-options > .bigha-fkr__mini-grid { grid-template-columns: minmax(0,1fr); }
  .bigha-fkr__advisor-complete > em { display: none; }
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy h4 { font-size: 20px; }
}

/* Mobile rhythm and recommendation containment 3.8.1 */
@media (max-width: 760px) {
  .bigha-fkr {
    --bigha-mobile-space-xs: 6px;
    --bigha-mobile-space-sm: 10px;
    --bigha-mobile-space-md: 14px;
    --bigha-mobile-space-lg: 18px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 16px 12px calc(94px + env(safe-area-inset-bottom));
    overflow-x: clip;
    font-family: var(--bigha-font-body);
    font-size: 15px;
    line-height: 1.45;
  }

  .bigha-fkr *,
  .bigha-fkr *::before,
  .bigha-fkr *::after {
    box-sizing: border-box;
  }

  .bigha-fkr__header {
    margin-bottom: var(--bigha-mobile-space-md);
  }

  .bigha-fkr__header h2 {
    margin-top: 8px;
    font-family: var(--bigha-font-heading);
    font-size: clamp(31px, 9.4vw, 38px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.2px;
  }

  .bigha-fkr__header .bigha-fkr__mobile-intro {
    margin-top: 9px;
    font-family: var(--bigha-font-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
  }

  .bigha-fkr__progress {
    gap: 5px;
    margin-bottom: 12px;
  }

  .bigha-fkr__progress button {
    min-height: 44px;
    padding: 6px 3px !important;
    font-family: var(--bigha-font-ui);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .25px;
  }

  .bigha-fkr__progress li span {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .bigha-fkr__config-layout,
  .bigha-fkr__panel,
  .bigha-fkr__preview-rail,
  .bigha-fkr__result,
  .bigha-fkr__result-level {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience {
    margin: 0 0 12px;
    padding: 12px;
  }

  .bigha-fkr__vehicle-head {
    min-height: 30px;
  }

  .bigha-fkr__vehicle-head strong {
    font-family: var(--bigha-font-heading);
    font-size: clamp(22px, 6.8vw, 27px);
    font-weight: 600;
  }

  .bigha-fkr__preview-rail .bigha-fkr__vehicle-map {
    height: clamp(145px, 43vw, 180px) !important;
    margin-top: 7px;
  }

  .bigha-fkr:not(.has-category) .bigha-fkr__preview-rail .bigha-fkr__vehicle-map {
    height: 112px !important;
  }

  .bigha-fkr__step-title {
    gap: 9px;
    margin: 2px 0 13px;
  }

  .bigha-fkr__step-title > span {
    min-width: 29px;
    font-family: var(--bigha-font-heading);
    font-size: 22px;
  }

  .bigha-fkr__step-title h3 {
    font-family: var(--bigha-font-heading);
    font-size: clamp(27px, 8vw, 32px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
  }

  .bigha-fkr__finder-grid {
    gap: 10px;
    padding: 12px;
  }

  .bigha-fkr__field--model-first {
    padding: 10px;
  }

  .bigha-fkr__field > span,
  .bigha-fkr__field--model-first > span {
    margin-bottom: 6px;
    font-family: var(--bigha-font-ui);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
  }

  .bigha-fkr__field input {
    min-height: 50px;
    padding: 11px 12px;
    font-family: var(--bigha-font-body);
    font-size: 16px;
    line-height: 1.2;
  }

  .bigha-fkr .bigha-fkr__required-marker {
    padding: 3px 6px !important;
    font-size: 8px !important;
    letter-spacing: .45px !important;
  }

  .bigha-fkr__category-picker {
    margin: 12px 0;
    padding: 12px;
  }

  .bigha-fkr__section-head {
    margin-bottom: 10px;
  }

  .bigha-fkr__section-head h4 {
    font-family: var(--bigha-font-heading);
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
  }

  .bigha-fkr__mobile-category-toggle:not([hidden]) {
    min-height: 54px;
    margin-bottom: 10px;
    padding: 10px 11px;
  }

  .bigha-fkr__mobile-category-toggle span {
    font-family: var(--bigha-font-heading);
    font-size: 19px;
    line-height: 1;
  }

  .bigha-fkr__mobile-category-toggle small {
    font-size: 8px;
    line-height: 1.15;
  }

  .bigha-fkr__category-picker > .bigha-fkr__category-strip {
    gap: 7px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button {
    min-height: 66px;
    padding: 8px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip span {
    font-family: var(--bigha-font-ui);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.15;
  }

  .bigha-fkr__special-models {
    margin-top: 10px;
  }

  .bigha-fkr__special-models-head {
    min-height: 54px;
    padding: 10px;
  }

  .bigha-fkr__special-models-head strong {
    font-family: var(--bigha-font-heading);
    font-size: 18px;
  }

  .bigha-fkr__body-style {
    margin-top: 12px;
    padding-top: 12px;
  }

  .bigha-fkr__body-style-head {
    margin-bottom: 9px;
  }

  .bigha-fkr__body-style-head strong {
    font-family: var(--bigha-font-ui);
    font-size: 15px;
    line-height: 1.2;
  }

  .bigha-fkr__body-style-grid {
    gap: 7px;
  }

  .bigha-fkr .bigha-fkr__body-style-grid button {
    min-height: 64px;
    padding: 8px !important;
  }

  .bigha-fkr__body-style-grid strong {
    font-family: var(--bigha-font-ui);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
  }

  .bigha-fkr__cards--three {
    gap: 9px;
  }

  .bigha-fkr button.bigha-fkr__choice {
    min-height: 76px;
    gap: 2px 11px;
    padding: 10px 40px 10px 11px;
  }

  .bigha-fkr__choice strong {
    font-family: var(--bigha-font-ui);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.08;
  }

  .bigha-fkr__choice small {
    font-family: var(--bigha-font-body);
    font-size: 12px;
    line-height: 1.25;
  }

  .bigha-fkr__detail-block {
    margin-bottom: 11px;
    padding: 13px;
  }

  .bigha-fkr__config-head {
    gap: 9px;
    margin-bottom: 11px;
  }

  .bigha-fkr__config-head > span {
    width: 31px;
    min-width: 31px;
    height: 31px;
    font-size: 12px;
  }

  .bigha-fkr__config-head h4 {
    font-family: var(--bigha-font-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
  }

  .bigha-fkr__mini-grid,
  .bigha-fkr__door-grid,
  .bigha-fkr__detail-grid,
  .bigha-fkr__toggle-stack {
    gap: 7px;
  }

  .bigha-fkr button.bigha-fkr__mini-choice {
    min-height: 52px !important;
    padding: 9px 10px;
  }

  .bigha-fkr__mini-choice strong,
  .bigha-fkr .bigha-fkr__toggle strong {
    font-family: var(--bigha-font-ui);
    font-size: 15px;
    font-weight: 600;
  }

  .bigha-fkr__config-group {
    padding: 11px;
  }

  .bigha-fkr__config-group h5 {
    margin-bottom: 9px;
    font-family: var(--bigha-font-ui);
    font-size: 14px;
  }

  .bigha-fkr .bigha-fkr__toggle {
    min-height: 58px;
    padding: 10px;
  }

  .bigha-fkr button.bigha-fkr__door-choice {
    min-height: 70px !important;
    padding: 8px;
  }

  .bigha-fkr__package-grid {
    gap: 9px;
  }

  .bigha-fkr button.bigha-fkr__package {
    grid-template-columns: 100px minmax(0,1fr);
    column-gap: 11px;
    min-height: 120px;
    padding-right: 11px;
  }

  .bigha-fkr__package-visual {
    width: 100px;
    min-height: 118px;
  }

  .bigha-fkr__package strong {
    padding-top: 23px;
    font-family: var(--bigha-font-ui);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.05;
  }

  .bigha-fkr__package small,
  .bigha-fkr__package.is-selected small {
    margin-top: 4px;
    font-family: var(--bigha-font-body);
    font-size: 11px;
    line-height: 1.25;
  }

  .bigha-fkr__package em {
    margin: 5px 0 9px;
    font-family: var(--bigha-font-heading);
    font-size: 21px;
    line-height: 1;
  }

  .bigha-fkr__package-badge {
    max-width: 94px;
    padding: 5px 6px;
    font-family: var(--bigha-font-ui);
    font-size: 7.5px;
    letter-spacing: .35px;
    line-height: 1.1;
  }

  .bigha-fkr__scope-basis {
    margin-top: 10px;
    padding: 9px 10px;
    font-size: 11px;
    line-height: 1.4;
  }

  .bigha-fkr__advisor-summary {
    min-height: 76px;
    padding: 12px 45px 12px 11px;
  }

  .bigha-fkr__advisor-summary > div > strong {
    font-family: var(--bigha-font-heading);
    font-size: 19px;
    line-height: 1;
  }

  .bigha-fkr__advisor-content {
    padding: 0 11px 12px;
  }

  .bigha-fkr__advisor-question {
    padding: 11px 0;
  }

  .bigha-fkr__advisor-question-head {
    margin-bottom: 9px;
  }

  .bigha-fkr__advisor-question-head strong {
    font-family: var(--bigha-font-ui);
    font-size: 14px;
  }

  .bigha-fkr__advisor-options--three {
    gap: 6px;
  }

  .bigha-fkr button.bigha-fkr__advisor-choice {
    min-height: 74px !important;
    padding: 7px 5px;
  }

  .bigha-fkr__advisor-choice strong {
    font-family: var(--bigha-font-ui);
    font-size: 11px;
    line-height: 1.12;
  }

  .bigha-fkr__mobile-dock {
    min-height: 72px;
    gap: 10px;
    padding: 10px max(12px,env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(12px,env(safe-area-inset-left));
  }

  .bigha-fkr__mobile-dock span {
    font-family: var(--bigha-font-ui);
    font-size: 8px;
    letter-spacing: .7px;
  }

  .bigha-fkr__mobile-dock strong {
    font-family: var(--bigha-font-heading);
    font-size: clamp(20px, 5.8vw, 25px);
    font-weight: 600;
    line-height: 1;
  }

  .bigha-fkr__mobile-dock button,
  .bigha-fkr__mobile-dock button[disabled] {
    max-width: 152px;
    min-height: 48px;
    padding: 0 12px;
    font-family: var(--bigha-font-ui);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.15;
  }

  .bigha-fkr__result-intro,
  .bigha-fkr__result-hero .bigha-fkr__result-price,
  .bigha-fkr__result-level--recommendation,
  .bigha-fkr__result-level--conversion {
    padding: 15px 13px;
  }

  .bigha-fkr__result-intro h3 {
    font-family: var(--bigha-font-heading);
    font-size: clamp(28px, 8.8vw, 35px);
  }

  .bigha-fkr__result-intro p {
    font-size: 11px;
    line-height: 1.4;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-price > strong {
    font-family: var(--bigha-font-heading);
    font-size: clamp(39px, 11.8vw, 50px);
  }

  .bigha-fkr__value-framing > strong {
    font-family: var(--bigha-font-heading);
    font-size: clamp(23px, 7vw, 29px);
  }

  .bigha-fkr__value-framing > small,
  .bigha-fkr__value-framing > p,
  .bigha-fkr__value-framing > em {
    font-family: var(--bigha-font-body);
    font-size: 10px;
    line-height: 1.35;
  }

  .bigha-fkr__result-vehicle {
    margin: 0 10px 10px;
  }

  .bigha-fkr__result-vehicle-stage {
    min-height: 186px;
  }

  .bigha-fkr__result-vehicle-kicker,
  .bigha-fkr__result-vehicle-ready {
    padding: 6px 7px;
    font-family: var(--bigha-font-ui);
    font-size: 8px;
  }

  .bigha-fkr__result-vehicle figcaption {
    padding: 13px 14px;
  }

  .bigha-fkr__result-vehicle figcaption span {
    font-size: 8px;
  }

  .bigha-fkr__result-vehicle figcaption strong {
    font-family: var(--bigha-font-heading);
    font-size: 24px;
  }

  .bigha-fkr__result-vehicle figcaption small {
    font-size: 10px;
  }

  .bigha-fkr__result-overview {
    gap: 8px;
    padding: 10px;
  }

  .bigha-fkr__result-card-head {
    min-height: 62px;
    padding: 11px 12px;
  }

  .bigha-fkr__result-card-head span {
    font-size: 8px;
  }

  .bigha-fkr__result-card-head strong {
    font-family: var(--bigha-font-heading);
    font-size: 22px;
  }

  .bigha-fkr__result-card-body {
    padding: 0 12px 12px;
  }

  .bigha-fkr__result-level-head {
    gap: 9px;
    margin-bottom: 11px;
  }

  .bigha-fkr__result-level-head h3 {
    font-family: var(--bigha-font-heading);
    font-size: 23px;
    line-height: 1;
  }

  .bigha-fkr__result-level--recommendation {
    overflow: hidden;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
    display: grid;
    grid-template-columns: 48px minmax(0,1fr) !important;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 !important;
    padding: 14px !important;
    overflow: hidden !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-flag {
    position: static;
    grid-column: 1 / -1;
    width: auto;
    min-width: 0;
    max-width: none;
    margin: -14px -14px 2px;
    padding: 8px 10px;
    overflow-wrap: anywhere;
    font-family: var(--bigha-font-ui);
    font-size: 8px;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
    grid-column: 1;
    display: grid;
    place-items: center;
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal span {
    display: block;
    margin: 0;
    font-size: 22px;
    line-height: 1;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal strong,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal small {
    display: none;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match .bigha-fkr__recommendation-copy {
    grid-column: 2;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .bigha-fkr__recommendation .bigha-fkr__recommendation-copy > span,
  .bigha-fkr__recommendation .bigha-fkr__recommendation-copy > small {
    font-family: var(--bigha-font-ui);
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .65px;
    overflow-wrap: anywhere;
  }

  .bigha-fkr__recommendation-copy h4 {
    max-width: 100%;
    margin: 4px 0 6px;
    overflow-wrap: anywhere;
    font-family: var(--bigha-font-heading);
    font-size: 22px;
    line-height: 1;
  }

  .bigha-fkr__recommendation .bigha-fkr__recommendation-copy > strong {
    display: block;
    max-width: 100%;
    margin-top: 3px;
    overflow-wrap: anywhere;
    font-family: var(--bigha-font-heading);
    font-size: 24px;
    line-height: 1;
  }

  .bigha-fkr__recommendation .bigha-fkr__recommendation-copy p {
    max-width: 100%;
    margin-top: 6px;
    overflow-wrap: anywhere;
    font-family: var(--bigha-font-body);
    font-size: 11px;
    line-height: 1.4;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation button {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    overflow-wrap: anywhere;
    font-family: var(--bigha-font-ui);
    font-size: 10px;
    line-height: 1.2;
    white-space: normal;
  }

  .bigha-fkr__conversion-intro {
    font-size: 12px;
    line-height: 1.45;
  }

  .bigha-fkr__conversion-actions {
    gap: 8px;
  }

  .bigha-fkr__conversion-actions .bigha-fkr__button {
    min-height: 48px;
    padding: 10px 12px;
    font-family: var(--bigha-font-ui);
    font-size: 10px;
  }

  .bigha-fkr__disclaimer summary,
  .bigha-fkr__result-actions .bigha-fkr__button {
    min-height: 44px;
  }
}

/* BIGHA rendered-layout regression pass 4.1.0
 * This regression layer deliberately owns
 * the current responsive geometry so Elementor/theme rules cannot squeeze
 * labels, cards, the advisor or the result CTA outside their surfaces. */
.bigha-fkr,
.bigha-fkr__config-layout,
.bigha-fkr__config-layout > *,
.bigha-fkr__panel,
.bigha-fkr__preview-rail,
.bigha-fkr__preview-rail > *,
.bigha-fkr__detail-block,
.bigha-fkr__result,
.bigha-fkr__result-level,
.bigha-fkr__result-level > * {
  min-width: 0;
  max-width: 100%;
}

.bigha-fkr {
  width: 100%;
  margin-inline: auto;
  overflow-x: clip;
}

.bigha-fkr :is(button, summary, label, div, span, strong, small, em, p, h2, h3, h4) {
  min-width: 0;
}

.bigha-fkr :is(button, summary, strong, small, em, p, h2, h3, h4) {
  word-break: normal;
  overflow-wrap: normal;
}

.bigha-fkr__config-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .64fr);
  column-gap: clamp(24px, 2.5vw, 34px);
}

.bigha-fkr__preview-rail,
.bigha-fkr__preview-rail .bigha-fkr__vehicle-experience,
.bigha-fkr__preview-rail .bigha-fkr__live-price,
.bigha-fkr__preview-console {
  width: 100%;
  overflow: hidden;
}

.bigha-fkr__vehicle-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 44%);
  align-items: start;
  gap: 12px;
}

.bigha-fkr__vehicle-head > div,
.bigha-fkr__vehicle-head strong,
.bigha-fkr__coverage-label {
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

.bigha-fkr__vehicle-head strong {
  font-size: clamp(30px, 2.75vw, 39px);
  line-height: .94;
  overflow-wrap: break-word;
}

.bigha-fkr__coverage-label {
  padding: 9px 10px;
  font-size: 10px;
  line-height: 1.25;
  text-align: right;
  overflow-wrap: anywhere;
}

.bigha-fkr__selection-chips,
.bigha-fkr__live-trust {
  max-width: 100%;
  flex-wrap: wrap;
}

.bigha-fkr__selection-chips span,
.bigha-fkr__live-trust span {
  max-width: 100%;
  white-space: normal;
}

.bigha-fkr__preview-rail .bigha-fkr__live-price strong {
  max-width: 100%;
  font-size: clamp(30px, 2.65vw, 38px);
  line-height: 1.03;
  white-space: normal;
  overflow-wrap: break-word;
}

.bigha-fkr__preview-next :is(strong, p),
.bigha-fkr__preview-signature :is(span, b) {
  max-width: 100%;
  white-space: normal;
}

.bigha-fkr__category-picker > .bigha-fkr__section-head,
.bigha-fkr__body-style-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 5px;
}

.bigha-fkr__category-picker > .bigha-fkr__section-head > p,
.bigha-fkr__body-style-head > p {
  width: 100%;
  max-width: 700px;
  margin: 0;
}

.bigha-fkr__category-picker > .bigha-fkr__category-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  text-align: left;
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip svg {
  margin: 0;
}

.bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip span {
  width: 100%;
  max-width: 100%;
  line-height: 1.14;
  white-space: normal;
  overflow-wrap: break-word;
}

.bigha-fkr__special-models,
.bigha-fkr__special-model-grid,
.bigha-fkr__category-specialist,
.bigha-fkr__special-model-copy {
  min-width: 0;
  max-width: 100%;
}

.bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo {
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  background: #fff !important;
  isolation: isolate;
}

.bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo svg.bigha-fkr__brand-mark {
  position: static !important;
  inset: auto !important;
  display: block !important;
  margin: 0 !important;
  transform: none !important;
}

.bigha-fkr__body-style-grid button {
  min-width: 0;
  overflow: hidden;
}

.bigha-fkr__body-style-grid button > span,
.bigha-fkr__body-style-grid button :is(strong, small) {
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

.bigha-fkr__cards--three {
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.bigha-fkr button.bigha-fkr__choice {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 15px;
  width: 100%;
  min-height: 92px;
  padding: 13px 52px 13px 15px;
  overflow: hidden;
  text-align: left;
}

.bigha-fkr .bigha-fkr__choice > svg {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  margin: 0;
}

.bigha-fkr__choice strong,
.bigha-fkr__choice small {
  grid-column: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
  white-space: normal;
}

.bigha-fkr__choice strong {
  grid-row: 1;
  font-size: 20px;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.bigha-fkr__choice small {
  grid-row: 2;
  font-size: 13px;
  line-height: 1.35;
}

.bigha-fkr__package-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 11px;
}

.bigha-fkr button.bigha-fkr__package {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 18px;
  width: 100%;
  min-height: 164px;
  padding: 0 18px 0 0;
  overflow: hidden;
  text-align: left;
}

.bigha-fkr__package-visual {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: stretch;
  width: 180px;
  height: 100%;
  min-height: 162px;
  border-right: 1px solid var(--bigha-border);
  border-bottom: 0;
}

.bigha-fkr__package :is(strong, small, em) {
  grid-column: 2;
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

.bigha-fkr__package strong {
  grid-row: 1;
  align-self: end;
  padding: 29px 0 0;
  font-size: 20px;
  line-height: 1.06;
  overflow-wrap: break-word;
}

.bigha-fkr__package small,
.bigha-fkr__package.is-selected small {
  display: block;
  grid-row: 2;
  margin: 7px 0 0;
  overflow: visible;
  font-size: 13px;
  line-height: 1.38;
  -webkit-line-clamp: unset;
}

.bigha-fkr__package em {
  grid-row: 3;
  align-self: start;
  margin: 10px 0 18px;
  font-size: 27px;
  line-height: 1;
}

.bigha-fkr__package-badge {
  top: 9px;
  left: 9px;
  width: auto;
  max-width: 160px;
  font-size: 8px;
  line-height: 1.1;
  white-space: normal;
}

.bigha-fkr__result-vehicle {
  align-items: stretch !important;
}

.bigha-fkr__result-vehicle figcaption {
  align-self: stretch !important;
  justify-self: stretch !important;
  width: 100% !important;
  height: auto !important;
  min-height: 100% !important;
  padding: 28px 25px !important;
  overflow: hidden !important;
}

.bigha-fkr__result-vehicle figcaption :is(span, strong, small) {
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

.bigha-fkr__proof-card:only-child {
  grid-column: 1 / -1;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation,
.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) !important;
  align-items: center;
  gap: 16px 20px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 20px !important;
  overflow: hidden !important;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-flag {
  position: static;
  grid-column: 1 / -1;
  width: auto;
  max-width: none;
  margin: -20px -20px 0;
  padding: 9px 14px;
  white-space: normal;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
  grid-column: 1;
  grid-row: 2;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy :is(span, small, strong, h4, p) {
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation button {
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  white-space: normal !important;
  overflow-wrap: break-word;
}

@media (min-width: 761px) and (max-width: 1120px) {
  .bigha-fkr__config-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
    column-gap: 20px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 9px;
    padding: 11px 10px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip svg {
    width: 36px;
    height: 36px;
  }

  .bigha-fkr button.bigha-fkr__package {
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 14px;
  }

  .bigha-fkr__package-visual {
    width: 150px;
  }
}

@media (max-width: 760px) {
  .bigha-fkr {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 14px 10px calc(90px + env(safe-area-inset-bottom));
    overflow-x: clip;
    font-size: 15px;
    line-height: 1.42;
  }

  .bigha-fkr *,
  .bigha-fkr *::before,
  .bigha-fkr *::after {
    box-sizing: border-box;
    min-width: 0;
  }

  .bigha-fkr__header {
    margin-bottom: 13px;
  }

  .bigha-fkr__header > p:not(.bigha-fkr__mobile-intro),
  .bigha-fkr__intro-trust {
    display: none !important;
  }

  .bigha-fkr__header .bigha-fkr__mobile-intro {
    display: block !important;
    margin: 7px 0 0;
    font-size: 12px;
    line-height: 1.3;
  }

  .bigha-fkr__header h2 {
    margin-top: 7px;
    font-size: clamp(29px, 9vw, 36px);
    line-height: .98;
  }

  .bigha-fkr__progress {
    gap: 4px;
    margin-bottom: 11px;
  }

  .bigha-fkr__progress button {
    min-height: 43px;
    padding: 5px 2px !important;
    font-size: 8px;
    line-height: 1.1;
    letter-spacing: .2px;
    white-space: normal;
  }

  .bigha-fkr__progress li span {
    margin-bottom: 2px;
    font-size: 10px;
  }

  .bigha-fkr__config-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail {
    display: contents;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience {
    order: -3;
    width: 100%;
    margin: 0 0 10px;
    padding: 10px;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__live-price,
  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-console {
    display: none !important;
  }

  .bigha-fkr__vehicle-head {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 42%);
    gap: 7px;
  }

  .bigha-fkr__vehicle-head strong {
    font-size: clamp(22px, 6.8vw, 27px);
    line-height: .95;
  }

  .bigha-fkr__coverage-label {
    padding: 6px 7px;
    font-size: 7px;
    line-height: 1.2;
  }

  .bigha-fkr__preview-rail .bigha-fkr__vehicle-map {
    width: 100%;
    height: clamp(140px, 43vw, 180px) !important;
    margin: 7px 0 0;
  }

  .bigha-fkr:not(.has-category) .bigha-fkr__preview-rail .bigha-fkr__vehicle-map {
    height: 108px !important;
  }

  .bigha-fkr__vehicle-map > img,
  .bigha-fkr__vehicle-map .bigha-fkr__color-reveal,
  .bigha-fkr__vehicle-map .bigha-fkr__color-reveal img {
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .bigha-fkr__selection-chips {
    gap: 4px;
    margin-top: 7px;
  }

  .bigha-fkr__selection-chips span {
    padding: 4px 6px;
    font-size: 7px;
    line-height: 1.2;
  }

  .bigha-fkr__coverage-legend {
    margin-top: 7px;
    font-size: 9px;
    line-height: 1.3;
  }

  .bigha-fkr__panel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .bigha-fkr__step-title {
    gap: 8px;
    margin: 1px 0 10px;
  }

  .bigha-fkr__step-title > span {
    min-width: 27px;
    font-size: 20px;
  }

  .bigha-fkr__step-title h3 {
    font-size: clamp(25px, 7.7vw, 31px);
    line-height: .98;
  }

  .bigha-fkr__step-title p,
  .bigha-fkr__section-head > p,
  .bigha-fkr__body-style-head > p,
  .bigha-fkr__config-head p {
    display: none !important;
  }

  .bigha-fkr__finder-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .bigha-fkr__field--model-first {
    padding: 9px;
  }

  .bigha-fkr__field input {
    width: 100%;
    min-height: 48px;
    padding: 10px 11px;
    font-size: 16px;
  }

  .bigha-fkr__finder-grid .bigha-fkr__field > small {
    display: none;
  }

  .bigha-fkr__finder-grid .bigha-fkr__field:focus-within > small,
  .bigha-fkr__finder-grid .bigha-fkr__field input[aria-invalid="true"] + small {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.3;
  }

  .bigha-fkr__category-picker {
    margin: 9px 0 10px;
    padding: 10px;
  }

  .bigha-fkr__section-head {
    margin-bottom: 8px;
  }

  .bigha-fkr__section-head .bigha-fkr__stage-kicker,
  .bigha-fkr__body-style-head .bigha-fkr__stage-kicker {
    display: none;
  }

  .bigha-fkr__section-head h4 {
    font-size: 19px;
    line-height: 1;
  }

  .bigha-fkr__mobile-category-toggle:not([hidden]) {
    width: 100%;
    min-height: 50px;
    margin-bottom: 7px;
    padding: 8px 9px;
  }

  .bigha-fkr__category-picker > .bigha-fkr__category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button {
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 7px;
    min-height: 62px;
    padding: 7px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip svg {
    width: 31px;
    height: 31px;
    padding: 3px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip span {
    font-size: 10.5px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .bigha-fkr__special-models {
    margin-top: 8px;
    padding: 0;
    overflow: hidden;
  }

  .bigha-fkr__special-models-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 8px;
    min-height: 50px;
    margin: 0;
    padding: 8px 9px;
  }

  .bigha-fkr__special-models-head > p {
    display: none;
  }

  .bigha-fkr__special-models-head strong {
    font-size: 16px;
    line-height: 1;
  }

  .bigha-fkr__special-model-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 0 8px 8px;
    overflow: hidden;
  }

  .bigha-fkr .bigha-fkr__special-model-grid button.bigha-fkr__category-specialist,
  .bigha-fkr .bigha-fkr__special-model-grid > button.bigha-fkr__category-specialist:only-child {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 8px;
    width: 100%;
    min-height: 58px;
    padding: 5px 7px;
    overflow: hidden;
  }

  .bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo {
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    padding: 5px !important;
  }

  .bigha-fkr .bigha-fkr__special-model-grid .bigha-fkr__brand-logo svg.bigha-fkr__brand-mark {
    width: 29px !important;
    min-width: 29px !important;
    max-width: 29px !important;
    height: 29px !important;
    min-height: 29px !important;
    max-height: 29px !important;
  }

  .bigha-fkr__body-style {
    margin-top: 9px;
    padding-top: 9px;
  }

  .bigha-fkr__body-style-head {
    margin-bottom: 7px;
  }

  .bigha-fkr__body-style-head strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .bigha-fkr__body-style-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .bigha-fkr__body-style-grid [data-body-style="closed"] {
    display: none !important;
  }

  .bigha-fkr .bigha-fkr__body-style-grid [data-body-style="cabrio"] {
    grid-template-columns: 48px minmax(0, 1fr) auto !important;
    gap: 8px;
    width: 100%;
    min-height: 60px;
    padding: 7px !important;
  }

  .bigha-fkr__body-style-grid .bigha-fkr__body-icon {
    width: 46px;
    height: 34px;
    padding: 1px;
  }

  .bigha-fkr__body-style-grid strong {
    font-size: 13px;
    line-height: 1.12;
  }

  .bigha-fkr__body-style-grid small {
    display: none !important;
  }

  .bigha-fkr__cards--three {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .bigha-fkr button.bigha-fkr__choice {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 1px 10px;
    min-height: 70px;
    padding: 8px 38px 8px 10px;
  }

  .bigha-fkr .bigha-fkr__choice > svg {
    width: 45px;
    height: 45px;
    padding: 6px;
  }

  .bigha-fkr__choice strong {
    font-size: 16px;
    line-height: 1.06;
  }

  .bigha-fkr__choice small {
    font-size: 11px;
    line-height: 1.2;
  }

  .bigha-fkr__selection-ribbon {
    display: none;
  }

  .bigha-fkr__detail-block {
    margin-bottom: 9px;
    padding: 10px;
    overflow: hidden;
  }

  .bigha-fkr__config-head {
    gap: 8px;
    margin-bottom: 9px;
  }

  .bigha-fkr__config-head > span {
    width: 29px;
    min-width: 29px;
    height: 29px;
  }

  .bigha-fkr__config-head h4 {
    font-size: 18px;
    line-height: 1;
  }

  .bigha-fkr__package-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .bigha-fkr button.bigha-fkr__package {
    grid-template-columns: 96px minmax(0, 1fr);
    column-gap: 10px;
    min-height: 116px;
    padding: 0 9px 0 0;
  }

  .bigha-fkr__package-visual {
    width: 96px;
    min-height: 114px;
  }

  .bigha-fkr__package strong {
    padding-top: 22px;
    font-size: 16px;
    line-height: 1.05;
  }

  .bigha-fkr__package small,
  .bigha-fkr__package.is-selected small {
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .bigha-fkr__package em {
    margin: 5px 0 9px;
    font-size: 19px;
  }

  .bigha-fkr__package-badge {
    top: 5px;
    left: 5px;
    max-width: 88px;
    padding: 4px 5px;
    font-size: 6px;
  }

  .bigha-fkr__advisor,
  .bigha-fkr__advisor-summary,
  .bigha-fkr__advisor-content,
  .bigha-fkr__advisor-question,
  .bigha-fkr__advisor-options,
  .bigha-fkr__advisor-choice,
  .bigha-fkr__advisor-choice > span {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .bigha-fkr__advisor {
    overflow: hidden !important;
  }

  .bigha-fkr__advisor-summary {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 9px !important;
    min-height: 70px !important;
    padding: 10px 42px 10px 10px !important;
    overflow: hidden !important;
  }

  .bigha-fkr__advisor-summary > span {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
  }

  .bigha-fkr__advisor-summary > div > p {
    display: none !important;
  }

  .bigha-fkr__advisor-summary > div > strong {
    max-width: 100% !important;
    font-size: clamp(17px, 5.1vw, 20px) !important;
    line-height: 1 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .bigha-fkr__advisor-summary > b {
    right: 9px !important;
  }

  .bigha-fkr__advisor-content {
    padding: 0 9px 10px !important;
    overflow: hidden !important;
  }

  .bigha-fkr__advisor-question {
    padding: 9px 0 !important;
  }

  .bigha-fkr__advisor-question-head {
    grid-template-columns: 27px minmax(0, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .bigha-fkr__advisor-question-head > b {
    width: 27px !important;
    min-width: 27px !important;
    height: 27px !important;
  }

  .bigha-fkr__advisor-question-head strong {
    font-size: 14px !important;
    line-height: 1.18 !important;
  }

  .bigha-fkr__advisor-question-head small,
  .bigha-fkr__advisor-choice small {
    display: none !important;
  }

  .bigha-fkr__advisor-options,
  .bigha-fkr__advisor-options--three,
  .bigha-fkr__advisor-options--two {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 6px !important;
  }

  .bigha-fkr button.bigha-fkr__advisor-choice {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 32px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 9px !important;
    min-height: 52px !important;
    padding: 8px 36px 8px 9px !important;
    overflow: hidden !important;
    text-align: left !important;
  }

  .bigha-fkr__advisor-choice i {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
  }

  .bigha-fkr__advisor-choice strong {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .bigha-fkr__result-hero {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .bigha-fkr__result-intro,
  .bigha-fkr__result-hero .bigha-fkr__result-price,
  .bigha-fkr__result-level--recommendation,
  .bigha-fkr__result-level--conversion {
    padding: 14px 11px;
  }

  .bigha-fkr__result-intro h3 {
    font-size: clamp(27px, 8.5vw, 34px);
    line-height: .98;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-price > strong {
    max-width: 100%;
    font-size: clamp(38px, 11.4vw, 48px);
    line-height: .95;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .bigha-fkr__value-framing > strong {
    max-width: 100%;
    font-size: clamp(22px, 6.8vw, 28px);
    line-height: 1;
    white-space: normal;
  }

  .bigha-fkr__result-vehicle {
    grid-template-columns: minmax(0, 1fr) !important;
    margin: 0 8px 8px;
  }

  .bigha-fkr__result-vehicle-stage {
    min-height: clamp(184px, 55vw, 230px);
  }

  .bigha-fkr__result-vehicle figcaption {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 3px !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 13px 14px !important;
  }

  .bigha-fkr__result-vehicle figcaption span,
  .bigha-fkr__result-vehicle figcaption strong,
  .bigha-fkr__result-vehicle figcaption small {
    grid-column: 1 !important;
    width: 100%;
    text-align: left !important;
  }

  .bigha-fkr__result-vehicle figcaption strong {
    margin-top: 3px;
    font-size: 24px;
  }

  .bigha-fkr__proof-strip,
  .bigha-fkr__result-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    margin-right: 8px;
    margin-left: 8px;
  }

  .bigha-fkr__proof-card,
  .bigha-fkr__result-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 9px !important;
    width: 100% !important;
    padding: 12px !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-flag {
    margin: -12px -12px 1px;
    padding: 8px 10px;
    font-size: 8px;
    line-height: 1.2;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
    grid-column: 1;
    grid-row: 2;
    width: 42px;
    min-width: 42px;
    max-width: 42px;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    overflow: hidden;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal strong,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal small {
    display: none;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy {
    grid-column: 2;
    grid-row: 2;
  }

  .bigha-fkr__recommendation-copy h4 {
    font-size: 20px;
    line-height: 1;
  }

  .bigha-fkr__recommendation .bigha-fkr__recommendation-copy > strong {
    font-size: 22px;
    line-height: 1;
  }

  .bigha-fkr__recommendation-copy p {
    font-size: 10px;
    line-height: 1.35;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation button {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 46px;
    padding: 10px;
    font-size: 9px;
  }

  .bigha-fkr__conversion-actions {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 7px;
  }

  .bigha-fkr__conversion-actions .bigha-fkr__button,
  .bigha-fkr__result-actions .bigha-fkr__button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .bigha-fkr__mobile-dock {
    z-index: 10000001;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(118px, 42%);
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100vw;
    min-height: 72px;
    padding: 9px max(10px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    overflow: hidden;
  }

  .bigha-fkr__mobile-dock > div,
  .bigha-fkr__mobile-dock strong {
    width: 100%;
    max-width: 100%;
  }

  .bigha-fkr__mobile-dock strong {
    font-size: clamp(18px, 5.6vw, 23px);
    line-height: .98;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .bigha-fkr__mobile-dock button,
  .bigha-fkr__mobile-dock button[disabled] {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    padding: 8px 9px;
    font-size: 9px;
    line-height: 1.12;
    white-space: normal;
  }

  .qlwapp__container--bottom-left {
    bottom: calc(78px + env(safe-area-inset-bottom)) !important;
  }

  .trx_addons_scroll_to_top {
    bottom: calc(82px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 360px) {
  .bigha-fkr {
    padding-right: 8px;
    padding-left: 8px;
  }

  .bigha-fkr__header h2 {
    font-size: 27px;
  }

  .bigha-fkr__progress button {
    font-size: 7px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip button {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 5px;
    padding: 6px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip svg {
    width: 28px;
    height: 28px;
  }

  .bigha-fkr .bigha-fkr__category-picker > .bigha-fkr__category-strip span {
    font-size: 9.5px;
  }

  .bigha-fkr button.bigha-fkr__package {
    grid-template-columns: 84px minmax(0, 1fr);
    column-gap: 8px;
  }

  .bigha-fkr__package-visual {
    width: 84px;
  }

  .bigha-fkr__package strong {
    font-size: 15px;
  }

  .bigha-fkr__mobile-dock {
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 6px;
  }

  .bigha-fkr__mobile-dock strong {
    font-size: 18px;
  }
}

/* Mobile advisor containment 3.8.2 */
@media (max-width: 760px) {
  .bigha-fkr__advisor,
  .bigha-fkr__advisor-summary,
  .bigha-fkr__advisor-summary > div,
  .bigha-fkr__advisor-content,
  .bigha-fkr__advisor-question,
  .bigha-fkr__advisor-question-head,
  .bigha-fkr__advisor-question-head > span,
  .bigha-fkr__advisor-options,
  .bigha-fkr button.bigha-fkr__advisor-choice,
  .bigha-fkr__advisor-choice > span {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .bigha-fkr__advisor {
    overflow: hidden !important;
  }

  .bigha-fkr__advisor-summary {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 9px !important;
    min-height: 72px !important;
    padding: 10px 44px 10px 10px !important;
    overflow: hidden !important;
  }

  .bigha-fkr__advisor-summary > span {
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    font-size: 20px !important;
  }

  .bigha-fkr__advisor-summary > div > small {
    font-size: 8px !important;
    line-height: 1.15 !important;
    letter-spacing: .9px !important;
  }

  .bigha-fkr__advisor-summary > div > strong {
    max-width: 100% !important;
    margin-top: 3px !important;
    overflow-wrap: anywhere !important;
    font-size: clamp(17px, 5.2vw, 20px) !important;
    line-height: 1 !important;
  }

  .bigha-fkr__advisor-summary > b {
    right: 10px !important;
  }

  .bigha-fkr__advisor-summary > b i {
    width: 26px !important;
    height: 26px !important;
  }

  .bigha-fkr__advisor-content {
    padding: 0 10px 11px !important;
    overflow: hidden !important;
  }

  .bigha-fkr__advisor-question {
    padding: 10px 0 !important;
    overflow: hidden !important;
  }

  .bigha-fkr__advisor-question-head {
    display: grid !important;
    grid-template-columns: 27px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .bigha-fkr__advisor-question-head > b {
    width: 27px !important;
    min-width: 27px !important;
    height: 27px !important;
    font-size: 12px !important;
  }

  .bigha-fkr__advisor-question-head strong {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    font-size: 14px !important;
    line-height: 1.18 !important;
  }

  .bigha-fkr__advisor-question-head small,
  .bigha-fkr__advisor-choice small {
    display: none !important;
  }

  .bigha-fkr__advisor-options,
  .bigha-fkr__advisor-options--three,
  .bigha-fkr__advisor-options--two {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 6px !important;
    overflow: hidden !important;
  }

  .bigha-fkr button.bigha-fkr__advisor-choice {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 32px minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 9px !important;
    min-height: 52px !important;
    padding: 8px 36px 8px 9px !important;
    overflow: hidden !important;
    text-align: left !important;
  }

  .bigha-fkr__advisor-choice i {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    font-size: 15px !important;
  }

  .bigha-fkr__advisor-choice > span {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: center !important;
    overflow: hidden !important;
  }

  .bigha-fkr__advisor-choice strong {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .bigha-fkr button.bigha-fkr__advisor-choice.is-selected::after {
    position: absolute;
    top: 50%;
    right: 10px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(241,215,145,.7);
    border-radius: 50%;
    color: #f1d791;
    content: "✓";
    font-family: var(--bigha-font-ui);
    font-size: 10px;
    transform: translateY(-50%);
  }

  .bigha-fkr__advisor-progress,
  .bigha-fkr__advisor-result {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-top: 10px !important;
    padding: 10px !important;
    overflow: hidden !important;
  }

  .bigha-fkr__advisor-result > div,
  .bigha-fkr__advisor-result button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 360px) {
  .bigha-fkr__advisor-summary > div > small {
    letter-spacing: .6px !important;
  }

  .bigha-fkr__advisor-summary > div > strong {
    font-size: 17px !important;
  }
}

@media (max-width: 360px) {
  .bigha-fkr {
    padding-right: 10px;
    padding-left: 10px;
  }

  .bigha-fkr button.bigha-fkr__package {
    grid-template-columns: 88px minmax(0,1fr);
    column-gap: 9px;
  }

  .bigha-fkr__package-visual {
    width: 88px;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
    grid-template-columns: 42px minmax(0,1fr) !important;
    padding: 12px !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-flag {
    margin: -12px -12px 2px;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
  }
}

/* 4.1.0 cascade seal: these declarations intentionally remain at EOF.
 * They prevent older emergency breakpoints above from reintroducing the
 * exact narrow-screen overflows found in the rendered live-page audit. */
@media (max-width: 760px) {
  .bigha-fkr__advisor,
  .bigha-fkr__advisor-summary,
  .bigha-fkr__advisor-content,
  .bigha-fkr__advisor-question,
  .bigha-fkr__advisor-options,
  .bigha-fkr button.bigha-fkr__advisor-choice {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .bigha-fkr__advisor-options,
  .bigha-fkr__advisor-options--three,
  .bigha-fkr__advisor-options--two {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 360px) {
  .bigha-fkr {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .bigha-fkr button.bigha-fkr__package {
    grid-template-columns: 84px minmax(0, 1fr) !important;
  }

  .bigha-fkr__package-visual {
    width: 84px !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    padding: 12px !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-flag {
    margin: -12px -12px 1px !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }
}

/* BIGHA refinement release 4.1.1
 * Stable package alignment, calmer recommendations and a roomier mobile flow. */
.bigha-fkr .bigha-fkr__contrast-toggle {
  padding: 16px 18px !important;
  border: 1px solid rgba(48, 112, 116, .42);
  background: linear-gradient(135deg, rgba(48, 112, 116, .09), rgba(255, 255, 255, .96));
  box-shadow: inset 4px 0 0 var(--bigha-accent);
}

.bigha-fkr .bigha-fkr__contrast-toggle strong {
  color: var(--bigha-dark);
  font-size: 16px;
  line-height: 1.15;
}

.bigha-fkr .bigha-fkr__contrast-toggle small {
  margin-top: 5px !important;
  color: #4e5556;
  font-size: 13px;
  line-height: 1.42;
}

.bigha-fkr .bigha-fkr__contrast-toggle em {
  display: inline-flex;
  width: auto;
  margin-top: 8px;
  padding: 5px 8px;
  color: #fff;
  background: var(--bigha-accent);
  font-family: var(--bigha-font-ui);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .7px;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation,
.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
  grid-template-columns: 64px minmax(0, 1fr) !important;
  gap: 14px 18px !important;
  padding: 18px !important;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-flag {
  display: none !important;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy p {
  margin-bottom: 0;
}

.bigha-fkr__result-level--recommendation .bigha-fkr__recommendation button {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  min-height: 48px;
}

@media (min-width: 761px) {
  .bigha-fkr button.bigha-fkr__package,
  .bigha-fkr button.bigha-fkr__package.is-selected {
    display: grid !important;
    grid-template-columns: clamp(150px, 29%, 180px) minmax(0, 1fr) max-content !important;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: stretch !important;
    column-gap: 18px !important;
    row-gap: 0 !important;
    min-height: 164px !important;
    padding: 0 18px 0 0 !important;
    text-align: left !important;
  }

  .bigha-fkr button.bigha-fkr__package .bigha-fkr__package-visual {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    align-self: stretch !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 162px !important;
    border-right: 1px solid var(--bigha-border) !important;
    border-bottom: 0 !important;
  }

  .bigha-fkr button.bigha-fkr__package > strong,
  .bigha-fkr button.bigha-fkr__package.is-selected > strong {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: end !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 26px 0 5px !important;
  }

  .bigha-fkr button.bigha-fkr__package > small,
  .bigha-fkr button.bigha-fkr__package.is-selected > small {
    display: block !important;
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 24px !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
  }

  .bigha-fkr button.bigha-fkr__package > em,
  .bigha-fkr button.bigha-fkr__package.is-selected > em {
    grid-column: 3 !important;
    grid-row: 1 / 3 !important;
    align-self: center !important;
    justify-self: end !important;
    width: auto !important;
    min-width: 110px;
    margin: 0 !important;
    padding: 12px 0 12px 16px !important;
    border-top: 0 !important;
    border-left: 1px solid var(--bigha-border) !important;
    color: var(--bigha-accent) !important;
    background: transparent !important;
    font-size: clamp(20px, 2vw, 26px) !important;
    line-height: 1 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 760px) {
  .bigha-fkr {
    padding: 16px 12px calc(100px + env(safe-area-inset-bottom)) !important;
    line-height: 1.48;
  }

  .bigha-fkr__header {
    margin-bottom: 16px !important;
  }

  .bigha-fkr__progress {
    margin-bottom: 15px !important;
  }

  .bigha-fkr:not(.is-result-step) .bigha-fkr__preview-rail .bigha-fkr__vehicle-experience {
    margin-bottom: 14px !important;
    padding: 13px !important;
  }

  .bigha-fkr__step-title {
    margin-bottom: 14px !important;
  }

  .bigha-fkr__finder-grid {
    gap: 11px !important;
    padding: 13px !important;
  }

  .bigha-fkr__category-picker,
  .bigha-fkr__detail-block {
    margin-bottom: 13px !important;
    padding: 13px !important;
  }

  .bigha-fkr__cards--three,
  .bigha-fkr__package-grid,
  .bigha-fkr__toggle-stack {
    gap: 10px !important;
  }

  .bigha-fkr .bigha-fkr__contrast-toggle {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  .bigha-fkr .bigha-fkr__contrast-toggle strong {
    font-size: 15px !important;
  }

  .bigha-fkr .bigha-fkr__contrast-toggle small {
    display: block !important;
    margin-top: 5px !important;
    font-size: 12px !important;
    line-height: 1.38 !important;
  }

  .bigha-fkr .bigha-fkr__contrast-toggle em {
    margin-top: 7px;
    font-size: 8px;
    letter-spacing: .45px;
  }

  .bigha-fkr__panel[data-step="2"] > .bigha-fkr__nav,
  .bigha-fkr__panel[data-step="3"] > .bigha-fkr__nav {
    display: flex !important;
    justify-content: flex-start !important;
    margin-top: 15px !important;
  }

  .bigha-fkr__panel > .bigha-fkr__nav [data-back] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 118px !important;
    min-height: 44px !important;
    padding: 9px 15px !important;
    border: 1px solid #9da6a6 !important;
    color: var(--bigha-dark) !important;
    background: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: .7px !important;
    text-decoration: none !important;
  }

  .bigha-fkr__panel > .bigha-fkr__nav [data-back]::before {
    margin-right: 8px;
    content: "←";
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
  }

  .bigha-fkr button.bigha-fkr__package,
  .bigha-fkr button.bigha-fkr__package.is-selected {
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    align-items: stretch !important;
    column-gap: 11px !important;
    row-gap: 0 !important;
    min-height: 126px !important;
    padding: 0 11px 0 0 !important;
    text-align: left !important;
  }

  .bigha-fkr button.bigha-fkr__package .bigha-fkr__package-visual {
    grid-column: 1 !important;
    grid-row: 1 / 4 !important;
    align-self: stretch !important;
    width: 96px !important;
    height: 100% !important;
    min-height: 124px !important;
    border-right: 1px solid var(--bigha-border) !important;
    border-bottom: 0 !important;
  }

  .bigha-fkr button.bigha-fkr__package > strong,
  .bigha-fkr button.bigha-fkr__package.is-selected > strong {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: end !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 23px 30px 4px 0 !important;
    font-size: 16px !important;
    line-height: 1.08 !important;
  }

  .bigha-fkr button.bigha-fkr__package > small,
  .bigha-fkr button.bigha-fkr__package.is-selected > small {
    display: -webkit-box !important;
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    font-size: 10.5px !important;
    line-height: 1.28 !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
  }

  .bigha-fkr button.bigha-fkr__package > em,
  .bigha-fkr button.bigha-fkr__package.is-selected > em {
    grid-column: 2 !important;
    grid-row: 3 !important;
    align-self: start !important;
    width: 100% !important;
    margin: 8px 0 11px !important;
    padding: 8px 0 0 !important;
    border-top: 1px solid var(--bigha-border) !important;
    border-left: 0 !important;
    color: var(--bigha-accent) !important;
    background: transparent !important;
    font-size: 19px !important;
    line-height: 1 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .bigha-fkr__result-intro,
  .bigha-fkr__result-hero .bigha-fkr__result-price,
  .bigha-fkr__result-level--recommendation,
  .bigha-fkr__result-level--conversion {
    padding: 16px 14px !important;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-kicker {
    display: block !important;
    width: 100% !important;
    margin-bottom: 0 !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
    letter-spacing: .65px !important;
    white-space: nowrap !important;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-price-line {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 5px !important;
    font-size: clamp(22px, 7.4vw, 31px) !important;
    line-height: 1 !important;
    letter-spacing: -.35px !important;
    white-space: nowrap !important;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-price-line small {
    font-size: 9px !important;
    letter-spacing: .25px !important;
  }

  .bigha-fkr__result-vehicle {
    margin: 0 12px 12px !important;
  }

  .bigha-fkr__proof-strip,
  .bigha-fkr__result-overview {
    gap: 10px !important;
    margin-right: 12px !important;
    margin-left: 12px !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation,
  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation--match {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 14px !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-seal {
    grid-row: 1 !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation-copy {
    grid-row: 1 !important;
  }

  .bigha-fkr__recommendation-copy h4 {
    font-size: 19px !important;
  }

  .bigha-fkr__recommendation-copy p {
    margin-top: 5px !important;
    font-size: 11px !important;
    line-height: 1.38 !important;
  }

  .bigha-fkr__result-level--recommendation .bigha-fkr__recommendation button {
    grid-row: 2 !important;
    min-height: 46px !important;
    font-size: 9px !important;
  }

  .bigha-fkr__mobile-dock {
    min-height: 76px !important;
    padding: 10px max(12px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left)) !important;
  }

  .qlwapp__container--bottom-left {
    bottom: calc(84px + env(safe-area-inset-bottom)) !important;
  }

  .trx_addons_scroll_to_top {
    bottom: calc(88px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 360px) {
  .bigha-fkr {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .bigha-fkr__category-picker,
  .bigha-fkr__detail-block,
  .bigha-fkr__finder-grid {
    padding: 12px !important;
  }

  .bigha-fkr button.bigha-fkr__package,
  .bigha-fkr button.bigha-fkr__package.is-selected {
    grid-template-columns: 88px minmax(0, 1fr) !important;
    column-gap: 9px !important;
  }

  .bigha-fkr button.bigha-fkr__package .bigha-fkr__package-visual {
    width: 88px !important;
  }

  .bigha-fkr button.bigha-fkr__package > strong,
  .bigha-fkr button.bigha-fkr__package.is-selected > strong {
    padding-right: 26px !important;
    font-size: 15px !important;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-kicker {
    font-size: 8px !important;
    letter-spacing: .4px !important;
  }

  .bigha-fkr__result-hero .bigha-fkr__result-price-line {
    font-size: clamp(21px, 7.1vw, 25px) !important;
  }
}

/* BIGHA finder-field consistency 4.1.2
 * Both required vehicle fields deliberately share one visual component. */
.bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field,
.bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field--model-first {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 15px !important;
  border: 1px solid rgba(48, 112, 116, .32) !important;
  background: linear-gradient(135deg, rgba(143, 192, 194, .14), rgba(255, 255, 255, .78)) !important;
  box-shadow: inset 4px 0 0 var(--bigha-accent) !important;
}

.bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field > span {
  width: 100%;
  margin: 0 0 9px !important;
  padding: 0 !important;
}

.bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field > input:not([type="checkbox"]) {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 12px 15px !important;
  border-top-width: 1px !important;
  border-right-width: 1px !important;
  border-bottom-width: 1px !important;
  box-sizing: border-box !important;
  text-indent: 0 !important;
}

.bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field > input::placeholder {
  padding: 0 !important;
  color: #898986 !important;
  opacity: 1 !important;
  text-indent: 0 !important;
}

.bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field:focus-within {
  border-color: rgba(48, 112, 116, .72) !important;
  background: linear-gradient(135deg, rgba(143, 192, 194, .2), #fff) !important;
}

@media (max-width: 760px) {
  .bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field,
  .bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field--model-first {
    padding: 12px !important;
  }

  .bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field > span {
    margin-bottom: 8px !important;
  }

  .bigha-fkr .bigha-fkr__finder-grid > label.bigha-fkr__field > input:not([type="checkbox"]) {
    min-height: 52px !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
  }
}
