/* Kitchen Persona Navigator — Scoped Styles */
.kpn-shell {
  --bg: #ffffff;
  --surface: rgba(255,255,255,0.92);
  --surface-solid: #f9f9f9;
  --card: #ffffff;
  --text: #232323;
  --muted: #838383;
  --line: rgba(35,35,35,.10);
  --line-strong: rgba(35,35,35,.18);
  --ink: #232323;
  --accent: #232323;
  --accent-soft: rgba(35,35,35,.06);
  --shadow: 0 22px 60px rgba(35,35,35,.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --max: 1220px;

  --kpn-hero-bg: var(--ink);
  --kpn-cta-bg: var(--ink);

  box-sizing: border-box;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.5em;
  font-size: 16px;
  color: var(--text);
}
.kpn-shell *, .kpn-shell *::before, .kpn-shell *::after { box-sizing: border-box; }
.kpn-shell img { display: block; max-width: 100%; }
.kpn-shell button { font: inherit; }
.kpn-shell a { color: inherit; text-decoration: none; }

/* ─── HERO ─── */
.kpn-shell .hero {
  position: relative;
  min-height: 38vh;
  padding: 24px 24px 64px;
  background:
    linear-gradient(180deg, rgba(35,35,35,.52), rgba(35,35,35,.72)),
    var(--kpn-hero-bg);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  overflow: hidden;
}
.kpn-shell .hero__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
}
.kpn-shell .hero__panel {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 18px 18px 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.kpn-shell .hero h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 85%;
}
.kpn-shell .hero p {
  margin: 8px 0 0;
  max-width: 54ch;
  color: rgba(255,255,255,.84);
  line-height: 1.56;
  font-size: .98rem;
}
.kpn-shell .hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.kpn-shell .meta-card {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.kpn-shell .meta-card strong {
  display: block;
  font-size: .8rem;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
.kpn-shell .meta-card span { display: none; }
.kpn-shell .hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.kpn-shell .hero__subaction {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
}

/* ─── BUTTONS ─── */
.kpn-shell .btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 15px 28px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .01em;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.kpn-shell .btn:hover { opacity: .88; }
.kpn-shell .btn--white { background: #fff; color: var(--ink); }
.kpn-shell .btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.34); }
.kpn-shell .btn--dark { background: var(--ink); color: #fff; }
.kpn-shell .btn--soft { background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.kpn-shell .btn-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 17px;
  height: 13px;
  transition: transform .2s ease;
}
.kpn-shell .btn:hover .btn-arrow { transform: translateX(3px); }

/* ─── MAIN / APP ─── */
.kpn-shell .main {
  margin-top: -44px;
  padding: 0 0 64px;
}
.kpn-shell .main.kpn-no-hero {
  margin-top: 0;
  padding-top: 0;
}
.kpn-shell .main,
.kpn-shell .hero__inner {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}
.kpn-shell .app {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(35,35,35,.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 16px 16px 18px;
  overflow: hidden;
}
.kpn-shell .app__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px 6px;
}
.kpn-shell .app__label {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.kpn-shell .app__eyebrow {
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.kpn-shell .app__label .app__eyebrow { margin-right: 2px; }
.kpn-shell .app__head p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}
.kpn-shell .restart-btn {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.82);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: .92rem;
}
.kpn-shell .restart-btn svg {
  width: 15px;
  height: 15px;
}

/* ─── TRACKER ─── */
.kpn-shell .tracker {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #F9F9F9;
  padding: 14px;
  margin-bottom: 18px;
}
.kpn-shell .tracker__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.kpn-shell .tracker__title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -.02em;
}
.kpn-shell .tracker__meta {
  color: var(--muted);
  font-size: .9rem;
}
.kpn-shell .progress-line {
  position: relative;
  height: 8px;
  background: #F1F2F3;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.kpn-shell .progress-line > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #444, var(--ink));
  border-radius: 999px;
  transition: width .28s ease;
}
.kpn-shell .step-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
.kpn-shell .step-pill {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kpn-shell .step-pill small {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}
.kpn-shell .step-pill strong {
  font-size: 1rem;
  line-height: 1.15;
}
.kpn-shell .step-pill span {
  color: var(--muted);
  font-size: .82rem;
  margin-top: 3px;
}
.kpn-shell .step-pill.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 12px 22px rgba(35,35,35,.16);
}
.kpn-shell .step-pill.active small,
.kpn-shell .step-pill.active span { color: rgba(255,255,255,.74); }
.kpn-shell .step-pill.done {
  border-color: rgba(35,35,35,.25);
  background: rgba(35,35,35,.06);
}

/* ─── QUIZ CARD ─── */
.kpn-shell .quiz-card, .kpn-shell .result-shell {
  background: transparent;
  border: none;
  padding: 24px;
}
.kpn-shell .quiz-card__head {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.kpn-shell .quiz-card__copy { max-width: 980px; }
.kpn-shell .quiz-card__eyebrow {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
}
.kpn-shell .quiz-card h3 {
  margin: 6px 0 0;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  max-width: 80%;
}
.kpn-shell .quiz-card__guide {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
  font-size: 1.02rem;
}
.kpn-shell .quiz-card__hint-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.kpn-shell .quiz-card__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

/* ─── ANSWERS ─── */
.kpn-shell .answers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.kpn-shell .answer {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.kpn-shell .answer:hover {
  transform: translateY(-2px);
  border-color: rgba(35,35,35,.18);
  box-shadow: 0 16px 34px rgba(35,35,35,.07);
}
.kpn-shell .answer.selected {
  border-color: rgba(35,35,35,.55);
  box-shadow: 0 0 0 3px rgba(35,35,35,.10);
}
.kpn-shell .answer__image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.kpn-shell .answer__image {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.kpn-shell .answer__zoom-icon {
  display: none;
}
.kpn-shell .answer__body {
  padding: 14px 14px 12px;
}
.kpn-shell .answer__body h4 {
  margin: 0 0 6px;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.kpn-shell .answer__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  white-space: normal;
  word-wrap: break-word;
}

/* ─── QUIZ NAV ─── */
.kpn-shell .quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
}
.kpn-shell .mini-count {
  color: var(--muted);
  font-size: .92rem;
}

/* ─── RESULTS ─── */
.kpn-shell .result-shell {
  background: transparent;
  border: none;
  padding: 24px;
}
.kpn-shell .result-intro {
  margin-bottom: 14px;
}
.kpn-shell .result-card {
  border-radius: 20px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.kpn-shell .result-card__eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.kpn-shell .result-card h3 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  max-width: 80%;
}
.kpn-shell .result-card p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.56;
}
.kpn-shell .result-card__actions {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: flex-end;
}

/* ─── STRONGEST MATCHES ─── */
.kpn-shell .strong-matches {
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 14px;
  margin-bottom: 14px;
}
.kpn-shell .strong-matches h4 {
  margin: 0 0 12px;
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.kpn-shell .match-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.kpn-shell .match-card {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 8px 12px;
  align-items: end;
  min-height: 86px;
}
.kpn-shell .match-card small {
  display: block;
  color: rgba(255,255,255,.56);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .68rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.kpn-shell .match-card strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
}
.kpn-shell .match-card .btn {
  align-self: end;
  justify-self: end;
  margin-top: 0;
  padding: 8px 13px;
  white-space: nowrap;
  font-size: .95rem;
}

/* ─── INSPIRATION CAROUSEL ─── */
.kpn-shell .inspiration-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0 14px;
}
.kpn-shell .inspiration-head h3 {
  margin: 0 0 6px;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.kpn-shell .inspiration-head p {
  margin: 0;
  color: var(--muted);
}
.kpn-shell .carousel-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 14px;
  overflow: hidden;
}
.kpn-shell .swiper {
  overflow: visible;
}
.kpn-shell .swiper-slide {
  width: 330px;
  height: auto;
}
.kpn-shell .insp-card {
  appearance: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: left;
  white-space: normal;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  cursor: pointer;
}
.kpn-shell .insp-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}
.kpn-shell .insp-card img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform .35s ease;
}
.kpn-shell .insp-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: 0;
  transition: background .35s ease, opacity .35s ease;
  pointer-events: none;
}
.kpn-shell .insp-card:hover img {
  transform: scale(1.05);
}
.kpn-shell .insp-card:hover .insp-card__overlay {
  background: rgba(0,0,0,.32);
  opacity: 1;
}
.kpn-shell .insp-card__body {
  padding: 12px 13px 13px;
}
.kpn-shell .insp-card__body small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .67rem;
  margin-bottom: 5px;
}
.kpn-shell .insp-card__body strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.kpn-shell .insp-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  white-space: normal;
  word-wrap: break-word;
}
/* ─── INSPIRATION CTA CARD ─── */
.kpn-shell .swiper-slide--cta {
  width: 330px;
  height: auto;
}
.kpn-shell .insp-cta-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}
.kpn-shell .insp-cta-card__photo {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}
.kpn-shell .insp-cta-card__body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.kpn-shell .insp-cta-card__body small {
  display: block;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .67rem;
  font-weight: 700;
}
.kpn-shell .insp-cta-card__body strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
}
.kpn-shell .insp-cta-card__body p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
  font-size: .9rem;
  white-space: normal;
  word-wrap: break-word;
}
.kpn-shell .insp-cta-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.kpn-shell .swiper-nav {
  display: flex;
  gap: 10px;
}
.kpn-shell .swiper-button-custom {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.kpn-shell .swiper-button-custom svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.kpn-shell .swiper-button-disabled {
  opacity: .45;
  pointer-events: none;
}

/* ─── CTA BAND ─── */
.kpn-shell .cta-band {
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(90deg, rgba(35,35,35,.98), rgba(35,35,35,.88)), var(--kpn-cta-bg);
}
.kpn-shell .cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 44%);
  pointer-events: none;
}
.kpn-shell .cta-band__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 18px;
  align-items: end;
}
.kpn-shell .cta-band h4 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  max-width: 80%;
}
.kpn-shell .cta-band p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255,255,255,.82);
  line-height: 1.62;
}
.kpn-shell .cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* ─── UTILITY ─── */
.kpn-shell .hidden { display: none !important; }

/* ─── MODALS / FANCYBOX ─── */
.fancybox__container .match-fancybox {
  width: min(1080px, calc(100vw - 40px));
  max-width: 1080px;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #f9f9f9;
  color: var(--text);
}
.gallery-caption {
  padding: 16px 18px 20px;
  background: #fff;
  color: #232323;
}
.gallery-caption strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.gallery-caption p {
  margin: 0;
  color: #838383;
  line-height: 1.55;
}
.match-fancybox-wrapper .match-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  min-height: min(76vh, 820px);
}
.match-fancybox-wrapper .match-modal-media {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.match-fancybox-wrapper .match-modal-media img {
  width: 100%;
  height: min(68vh, 760px);
  object-fit: cover;
  border-radius: 20px;
}
.match-fancybox-wrapper .match-modal-panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.match-fancybox-wrapper .match-modal-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.match-fancybox-wrapper .match-modal-tab {
  border: 1px solid rgba(35,35,35,.10);
  background: #fff;
  color: #232323;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
}
.match-fancybox-wrapper .match-modal-tab.active {
  background: #232323;
  color: #fff;
  border-color: #232323;
}
.match-fancybox-wrapper .match-modal-copy small {
  display: block;
  color: #838383;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: 8px;
}
.match-fancybox-wrapper .match-modal-copy h4 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #232323;
}
.match-fancybox-wrapper .match-modal-copy p {
  margin: 0;
  color: #838383;
  line-height: 1.62;
  font-size: 1rem;
}
.match-fancybox-wrapper .match-modal-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.match-fancybox-wrapper .mini-panel {
  border: 1px solid rgba(35,35,35,.10);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
}
.match-fancybox-wrapper .mini-panel strong {
  display: block;
  font-size: .92rem;
  margin-bottom: 4px;
  color: #232323;
}
.match-fancybox-wrapper .mini-panel span {
  color: #838383;
  font-size: .86rem;
  line-height: 1.45;
}

/* ─── FANCYBOX BUTTON RESETS ─── */
.fancybox__container .btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 15px 28px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .01em;
  color: #232323;
  background: #fff;
  text-decoration: none;
  line-height: 1.4;
  font-family: inherit;
}
.fancybox__container .btn:hover { opacity: .88; }
.fancybox__container .btn--dark { background: #232323; color: #fff; }
.fancybox__container .btn--white { background: #fff; color: #232323; }
.fancybox__container .btn-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

/* ─── TOOLTIP ─── */
.kpn-shell .tooltip-pop {
  position: absolute;
  top: 52px;
  right: 0;
  width: min(360px, calc(100vw - 48px));
  min-width: 280px;
  max-width: calc(100vw - 48px);
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(35,35,35,.10);
  padding: 14px 16px;
  z-index: 12;
}
.kpn-shell .tooltip-pop strong {
  display: block;
  margin-bottom: 6px;
  font-size: .95rem;
}
.kpn-shell .tooltip-pop p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: .94rem;
  overflow-wrap: anywhere;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET  (641 – 1040px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 1040px) {
  .kpn-shell .cta-band__content,
  .match-modal-layout {
    grid-template-columns: 1fr;
  }
  .match-modal-media img {
    height: min(42vh, 420px);
  }
  .kpn-shell .hero {
    min-height: 32vh;
    padding: 22px 20px 56px;
  }
  .kpn-shell .hero h1 {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    max-width: none;
  }
  .kpn-shell .hero p {
    font-size: .92rem;
  }
  .kpn-shell .quiz-card h3 {
    font-size: 1.65rem;
    max-width: none;
  }
  .kpn-shell .quiz-card__guide {
    font-size: .94rem;
  }
  .kpn-shell .answers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .kpn-shell .answer__image {
    aspect-ratio: 3/2;
  }
  .kpn-shell .answer__body h4 {
    font-size: 1.02rem;
  }
  .kpn-shell .answer__body p {
    font-size: .88rem;
  }
  .kpn-shell .step-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .kpn-shell .step-pill {
    padding: 8px 10px;
    min-height: 56px;
  }
  .kpn-shell .step-pill strong {
    font-size: .9rem;
  }
  .kpn-shell .step-pill span {
    font-size: .76rem;
  }
  .kpn-shell .tracker {
    padding: 12px;
    margin-bottom: 14px;
  }
  .kpn-shell .match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kpn-shell .result-card h3 {
    font-size: 1.6rem;
  }
  .kpn-shell .result-card p {
    font-size: .92rem;
  }
  .kpn-shell .cta-band h4 {
    font-size: 1.6rem;
  }
  .kpn-shell .cta-band p {
    font-size: .92rem;
  }
  .kpn-shell .inspiration-head h3 {
    font-size: 1.3rem;
  }
  .kpn-shell .swiper-slide {
    width: 280px;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 640px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .kpn-shell .hero {
    padding: 16px 12px 52px;
    min-height: auto;
  }
  .kpn-shell .hero__inner, .kpn-shell .main {
    width: min(var(--max), calc(100% - 16px));
  }
  .kpn-shell .hero h1 {
    font-size: 1.55rem;
    line-height: 1.02;
    max-width: none;
    margin: 8px 0 0;
  }
  .kpn-shell .hero p {
    display: none;
  }
  .kpn-shell .hero__panel {
    padding: 14px 14px 16px;
    border-radius: 22px;
  }
  .kpn-shell .hero__meta {
    gap: 6px;
    margin-top: 10px;
  }
  .kpn-shell .meta-card {
    padding: 5px 9px;
  }
  .kpn-shell .meta-card strong {
    font-size: .72rem;
  }
  .kpn-shell .hero__actions {
    margin-top: 12px;
    gap: 10px;
  }
  .kpn-shell .hero__subaction {
    display: none;
  }
  .kpn-shell .btn {
    padding: 13px 20px;
    font-size: .9rem;
  }
  .kpn-shell .btn-arrow {
    width: 15px;
    height: 11px;
    margin-left: 8px;
  }
  .kpn-shell .main {
    margin-top: -36px;
    padding: 0 0 40px;
  }
  .kpn-shell .app {
    border-radius: 22px;
    padding: 10px 10px 14px;
  }
  .kpn-shell .app__head {
    padding: 8px 10px 4px;
  }
  .kpn-shell .app__label {
    align-items: flex-start;
    gap: 4px 8px;
    flex-direction: column;
  }
  .kpn-shell .app__eyebrow {
    font-size: .76rem;
  }
  .kpn-shell .app__head p {
    display: none;
  }
  .kpn-shell .tracker {
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 12px;
  }
  .kpn-shell .tracker__top {
    margin-bottom: 8px;
  }
  .kpn-shell .tracker__title {
    font-size: .86rem;
  }
  .kpn-shell .tracker__meta {
    font-size: .8rem;
  }
  .kpn-shell .progress-line {
    height: 6px;
    margin-bottom: 8px;
  }
  .kpn-shell .step-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
  }
  .kpn-shell .step-pill {
    padding: 6px 6px;
    min-height: auto;
    border-radius: 10px;
    opacity: .38;
    transition: opacity .25s ease, transform .25s ease;
  }
  .kpn-shell .step-pill.active {
    opacity: 1;
    transform: scale(1.02);
  }
  .kpn-shell .step-pill.done {
    opacity: .55;
  }
  .kpn-shell .step-pill small {
    font-size: .58rem;
    margin-bottom: 1px;
  }
  .kpn-shell .step-pill strong {
    font-size: .74rem;
  }
  .kpn-shell .step-pill span {
    display: none;
  }
  .kpn-shell .quiz-card {
    padding: 14px 12px;
    border-radius: 18px;
  }
  .kpn-shell .quiz-card__head {
    gap: 10px;
    margin-bottom: 12px;
  }
  .kpn-shell .quiz-card__eyebrow {
    font-size: .74rem;
  }
  .kpn-shell .quiz-card h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    max-width: none;
    margin: 4px 0 0;
  }
  .kpn-shell .quiz-card__guide {
    margin: 8px 0 0;
    font-size: .86rem;
    line-height: 1.45;
  }
  .kpn-shell .quiz-card__hint {
    width: 30px;
    height: 30px;
    font-size: .82rem;
  }
  /* Answer cards: horizontal layout for mobile */
  .kpn-shell .answers {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .kpn-shell .answer {
    display: grid;
    grid-template-columns: 88px 1fr;
    border-radius: 14px;
    overflow: hidden;
  }
  .kpn-shell .answer__image-wrap {
    cursor: zoom-in;
  }
  .kpn-shell .answer__image {
    aspect-ratio: 1/1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  .kpn-shell .answer__zoom-icon {
    display: flex;
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(0,0,0,.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    pointer-events: none;
  }
  .kpn-shell .answer__zoom-icon svg {
    width: 13px;
    height: 13px;
  }
  .kpn-shell .answer__body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .kpn-shell .answer__body h4 {
    font-size: .95rem;
    margin-bottom: 3px;
  }
  .kpn-shell .answer__body p {
    font-size: .82rem;
    line-height: 1.35;
  }
  .kpn-shell .quiz-nav {
    padding-top: 12px;
  }
  .kpn-shell .mini-count {
    font-size: .84rem;
  }
  /* Results page — mobile */
  .kpn-shell .result-shell {
    padding: 14px 10px;
  }
  .kpn-shell .result-intro {
    margin-bottom: 10px;
  }
  .kpn-shell .result-card {
    border-radius: 16px;
    padding: 14px;
  }
  .kpn-shell .result-card h3 {
    font-size: 1.35rem;
    max-width: none;
  }
  .kpn-shell .result-card p {
    font-size: .86rem;
    line-height: 1.48;
  }
  .kpn-shell .strong-matches {
    border-radius: 18px;
    padding: 12px;
    margin-bottom: 10px;
  }
  .kpn-shell .strong-matches h4 {
    font-size: .95rem;
    margin-bottom: 10px;
  }
  .kpn-shell .match-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .kpn-shell .match-card {
    padding: 10px 12px;
    border-radius: 12px;
    min-height: 68px;
  }
  .kpn-shell .match-card strong {
    font-size: 1.05rem;
  }
  .kpn-shell .match-card .btn {
    padding: 7px 12px;
    font-size: .86rem;
  }
  .kpn-shell .inspiration-head {
    margin: 14px 0 10px;
  }
  .kpn-shell .inspiration-head h3 {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  .kpn-shell .inspiration-head p {
    font-size: .84rem;
  }
  .kpn-shell .carousel-wrap {
    border-radius: 18px;
    padding: 10px;
  }
  .kpn-shell .swiper-slide {
    width: 220px;
  }
  .kpn-shell .swiper-slide--cta {
    width: 220px;
  }
  .kpn-shell .insp-cta-card {
    border-radius: 14px;
  }
  .kpn-shell .insp-cta-card__body {
    padding: 12px 12px 14px;
    gap: 10px;
  }
  .kpn-shell .insp-cta-card__body p {
    font-size: .84rem;
  }
  .kpn-shell .insp-card {
    border-radius: 14px;
  }
  .kpn-shell .insp-card img {
    aspect-ratio: 4/3;
  }
  .kpn-shell .insp-card__body {
    padding: 10px 11px 11px;
  }
  .kpn-shell .insp-card__body strong {
    font-size: .94rem;
    margin-bottom: 4px;
  }
  .kpn-shell .insp-card__body p {
    font-size: .82rem;
  }
  .kpn-shell .swiper-button-custom {
    width: 36px;
    height: 36px;
  }
  .kpn-shell .cta-band {
    border-radius: 18px;
    padding: 18px 16px;
    margin-top: 12px;
  }
  .kpn-shell .cta-band h4 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .kpn-shell .cta-band p {
    font-size: .84rem;
    line-height: 1.5;
  }
  .kpn-shell .cta-band__actions {
    justify-content: flex-start;
    margin-top: 6px;
  }
  .kpn-shell .tooltip-pop {
    right: 0;
    top: 42px;
    padding: 12px 14px;
  }
  .kpn-shell .tooltip-pop strong {
    font-size: .88rem;
  }
  .kpn-shell .tooltip-pop p {
    font-size: .86rem;
  }
  /* Modal — mobile: overlapping card pattern */
  .match-fancybox-wrapper .match-modal-shell {
    overflow: hidden;
    border-radius: 20px;
  }
  .match-fancybox-wrapper .match-modal-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .match-fancybox-wrapper .match-modal-media {
    max-height: 200px;
    overflow: hidden;
  }
  .match-fancybox-wrapper .match-modal-media img {
    height: 200px;
    border-radius: 0;
  }
  .match-fancybox-wrapper .match-modal-panel {
    position: relative;
    z-index: 2;
    margin-top: -24px;
    border-radius: 20px 20px 0 0;
    background: #f9f9f9;
    padding: 18px 16px 16px;
    gap: 12px;
  }
  .match-fancybox-wrapper .match-modal-copy {
    margin-top: 10px !important;
  }
  .match-fancybox-wrapper .match-modal-copy small {
    margin-bottom: 4px;
    font-size: .68rem;
  }
  .match-fancybox-wrapper .match-modal-copy h4 {
    font-size: 1.35rem;
    margin-bottom: 6px;
  }
  .match-fancybox-wrapper .match-modal-copy p {
    font-size: .84rem;
    line-height: 1.48;
  }
  .match-fancybox-wrapper .match-modal-tab {
    padding: 7px 12px;
    font-size: .86rem;
  }
  .match-fancybox-wrapper .match-modal-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .match-fancybox-wrapper .mini-panel {
    padding: 9px 10px;
    border-radius: 11px;
  }
  .match-fancybox-wrapper .mini-panel strong {
    font-size: .78rem;
    margin-bottom: 2px;
  }
  .match-fancybox-wrapper .mini-panel span {
    font-size: .74rem;
    line-height: 1.36;
  }
  /* Gallery lightbox — mobile */
  .fancybox__container .fancybox__toolbar {
    padding: 8px 6px;
  }
  .gallery-caption {
    padding: 12px 16px 14px;
  }
  .gallery-caption strong {
    font-size: .92rem;
    margin-bottom: 3px;
  }
  .gallery-caption p {
    font-size: .82rem;
    line-height: 1.44;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONE  (≤ 400px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .kpn-shell .hero h1 {
    font-size: 1.35rem;
  }
  .kpn-shell .meta-card {
    padding: 4px 8px;
  }
  .kpn-shell .meta-card strong {
    font-size: .68rem;
  }
  .kpn-shell .quiz-card h3 {
    font-size: 1.12rem;
  }
  .kpn-shell .quiz-card__guide {
    font-size: .82rem;
  }
  .kpn-shell .answer {
    grid-template-columns: 72px 1fr;
  }
  .kpn-shell .answer__body h4 {
    font-size: .88rem;
  }
  .kpn-shell .answer__body p {
    font-size: .78rem;
  }
  .kpn-shell .step-pill small {
    font-size: .54rem;
  }
  .kpn-shell .step-pill strong {
    font-size: .68rem;
  }
  .kpn-shell .result-card h3 {
    font-size: 1.2rem;
  }
  .kpn-shell .cta-band h4 {
    font-size: 1.15rem;
  }
  .kpn-shell .swiper-slide {
    width: 190px;
  }
  .kpn-shell .swiper-slide--cta {
    width: 190px;
  }
}
