
/* Klus Consultancy Projectverkenner V4.1 */
:root {
  --kc-pe-ink: #172235;
  --kc-pe-muted: #657184;
  --kc-pe-line: rgba(23,34,53,.12);
  --kc-pe-paper: #f6f7f7;
  --kc-pe-panel: #fff;
  --kc-pe-accent: #e66e2f;
  --kc-pe-accent-dark: #ba4e1f;
  --kc-pe-blue: #18395a;
  --kc-pe-radius: 24px;
  --kc-pe-shadow: 0 22px 70px rgba(20,31,47,.09);
}

html.kc-startup-lock-v41:not(.kc-user-intent-v41) {
  scroll-behavior: auto !important;
}

body.kc-home-calm-v41 {
  --kc-home-motion-distance: 16px;
}

body.kc-home-calm-v41 .reveal,
body.kc-home-calm-v41 [data-reveal] {
  opacity: 0;
  transform: translate3d(0,var(--kc-home-motion-distance),0);
  transition:
    opacity .68s cubic-bezier(.2,.68,.2,1),
    transform .68s cubic-bezier(.2,.68,.2,1);
  transition-delay: min(var(--reveal-delay, 0ms), 180ms) !important;
}

body.kc-home-calm-v41 .reveal.is-visible,
body.kc-home-calm-v41 [data-reveal].is-visible,
body.kc-home-calm-v41 .reveal.visible,
body.kc-home-calm-v41 [data-reveal].visible {
  opacity: 1;
  transform: none;
}

body.kc-home-calm-v41 [class*="float"],
body.kc-home-calm-v41 [class*="parallax"],
body.kc-home-calm-v41 .hero-orbit,
body.kc-home-calm-v41 .hero-float {
  animation-duration: 18s !important;
  animation-timing-function: ease-in-out !important;
  transform: none;
}

body.kc-home-calm-v41 .card,
body.kc-home-calm-v41 .service-card,
body.kc-home-calm-v41 .project-card {
  transition: border-color .24s ease, box-shadow .24s ease, background-color .24s ease !important;
}

body.kc-home-calm-v41 .card:hover,
body.kc-home-calm-v41 .service-card:hover,
body.kc-home-calm-v41 .project-card:hover {
  transform: none !important;
  box-shadow: 0 16px 42px rgba(22,33,51,.09) !important;
}

.kc-project-explorer-v41 {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 20px;
  overflow: clip;
  color: var(--kc-pe-ink);
  background:
    radial-gradient(circle at 13% 10%, rgba(230,110,47,.08), transparent 30%),
    linear-gradient(180deg,#f9faf9 0%,#f1f3f2 100%);
}

.kc-project-explorer-v41::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image: radial-gradient(rgba(23,34,53,.17) .65px, transparent .65px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom,transparent,#000 18%,#000 82%,transparent);
}

.kc-pe-shell {
  position: relative;
  width: min(1180px,100%);
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: clamp(26px,4vw,42px);
  background: rgba(255,255,255,.92);
  box-shadow: var(--kc-pe-shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.kc-pe-intro {
  padding: clamp(40px,7vw,84px);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.kc-pe-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--kc-pe-accent-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.kc-pe-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.kc-pe-intro h2,
.kc-pe-stage-head h3,
.kc-pe-success h3,
.kc-saved-project h1 {
  margin: 0;
  color: var(--kc-pe-ink);
  font-family: inherit;
  letter-spacing: -.045em;
  line-height: .98;
}

.kc-pe-intro h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(2.25rem,6vw,5.25rem);
}

.kc-pe-intro > p {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--kc-pe-muted);
  font-size: clamp(1rem,1.7vw,1.2rem);
  line-height: 1.72;
}

.kc-pe-entry-actions,
.kc-pe-success > div,
.kc-saved-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.kc-pe-primary,
.kc-pe-secondary,
.kc-pe-next,
.kc-pe-back {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .22s ease,border-color .22s ease,background .22s ease,color .22s ease,transform .22s ease;
}

.kc-pe-primary,
.kc-pe-next {
  color: #fff;
  background: var(--kc-pe-blue);
  box-shadow: 0 12px 30px rgba(24,57,90,.18);
}

.kc-pe-primary:hover,
.kc-pe-next:hover {
  color: #fff;
  background: #102d49;
  box-shadow: 0 15px 38px rgba(24,57,90,.25);
  transform: translateY(-1px);
}

.kc-pe-secondary,
.kc-pe-back {
  color: var(--kc-pe-ink);
  border-color: var(--kc-pe-line);
  background: rgba(255,255,255,.72);
}

.kc-pe-secondary:hover,
.kc-pe-back:hover {
  color: var(--kc-pe-ink);
  border-color: rgba(23,34,53,.25);
  background: #fff;
}

.kc-pe-privacy-line {
  margin-top: 22px !important;
  font-size: .88rem !important;
}

.kc-pe-form {
  min-height: 670px;
  border-top: 1px solid var(--kc-pe-line);
  background: var(--kc-pe-panel);
}

.kc-pe-progress {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  padding: 26px clamp(22px,5vw,64px);
  border-bottom: 1px solid var(--kc-pe-line);
  background: #fbfcfb;
}

.kc-pe-progress span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #9aa2ad;
  font-size: .7rem;
  font-weight: 700;
}

.kc-pe-progress span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 1px;
  background: var(--kc-pe-line);
}

.kc-pe-progress i {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--kc-pe-line);
  border-radius: 50%;
  background: #fff;
  font-style: normal;
  z-index: 1;
}

.kc-pe-progress .is-active,
.kc-pe-progress .is-done {
  color: var(--kc-pe-blue);
}

.kc-pe-progress .is-active i {
  color: #fff;
  border-color: var(--kc-pe-blue);
  background: var(--kc-pe-blue);
}

.kc-pe-progress .is-done i {
  color: #fff;
  border-color: var(--kc-pe-accent);
  background: var(--kc-pe-accent);
}

.kc-pe-stage {
  width: min(980px,calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px,6vw,72px) 0 32px;
  animation: kcPeStageIn .42s cubic-bezier(.2,.68,.2,1);
}

@keyframes kcPeStageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.kc-pe-stage-head {
  max-width: 690px;
  margin-bottom: 34px;
}

.kc-pe-stage-head > span {
  color: var(--kc-pe-accent-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.kc-pe-stage-head h3 {
  margin-top: 10px;
  font-size: clamp(1.9rem,4vw,3.25rem);
  line-height: 1.05;
}

.kc-pe-stage-head p {
  margin: 16px 0 0;
  color: var(--kc-pe-muted);
  line-height: 1.65;
}

.kc-pe-project-grid,
.kc-pe-choice-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 13px;
}

.kc-pe-project-card {
  min-height: 156px;
  padding: 23px;
  text-align: left;
  border: 1px solid var(--kc-pe-line);
  border-radius: 20px;
  color: var(--kc-pe-ink);
  background: #fff;
  cursor: pointer;
  transition: border-color .22s ease,box-shadow .22s ease,background .22s ease;
}

.kc-pe-project-card:hover,
.kc-pe-project-card.is-selected {
  border-color: rgba(230,110,47,.58);
  box-shadow: 0 13px 34px rgba(20,31,47,.08);
  background: #fffaf7;
}

.kc-pe-project-card strong,
.kc-pe-project-card small {
  display: block;
}

.kc-pe-project-card strong {
  margin-top: 22px;
  font-size: 1.08rem;
}

.kc-pe-project-card small {
  margin-top: 6px;
  color: var(--kc-pe-muted);
  line-height: 1.45;
}

.kc-pe-project-icon {
  display: block;
  width: 34px;
  height: 26px;
  border: 2px solid var(--kc-pe-blue);
  border-top-width: 6px;
  border-radius: 4px;
  opacity: .82;
}

.kc-pe-project-card[data-kc-project-type="dakkapel"] .kc-pe-project-icon {
  clip-path: polygon(0 100%,0 36%,20% 36%,32% 0,76% 0,88% 36%,100% 36%,100% 100%);
}

.kc-pe-dimensions,
.kc-pe-contact-grid,
.kc-pe-address-fields {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}

.kc-pe-dimensions label,
.kc-pe-contact-grid label,
.kc-pe-address-fields label,
.kc-pe-story {
  position: relative;
  display: grid;
  gap: 9px;
  color: var(--kc-pe-ink);
  font-size: .84rem;
  font-weight: 800;
}

.kc-pe-dimensions input,
.kc-pe-contact-grid input,
.kc-pe-address-fields input,
.kc-pe-story textarea,
.kc-admin-project-explorer input,
.kc-admin-project-explorer select,
.kc-admin-project-explorer textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid rgba(23,34,53,.16);
  border-radius: 13px;
  outline: none;
  color: var(--kc-pe-ink);
  background: #fff;
  font: inherit;
  transition: border-color .2s ease,box-shadow .2s ease;
}

.kc-pe-story textarea {
  min-height: 190px;
  resize: vertical;
  line-height: 1.6;
}

.kc-pe-dimensions input:focus,
.kc-pe-contact-grid input:focus,
.kc-pe-address-fields input:focus,
.kc-pe-story textarea:focus {
  border-color: var(--kc-pe-accent);
  box-shadow: 0 0 0 4px rgba(230,110,47,.1);
}

.kc-pe-dimensions em {
  position: absolute;
  right: 15px;
  bottom: 18px;
  color: var(--kc-pe-muted);
  font-size: .77rem;
  font-style: normal;
}

.kc-pe-live-shape {
  position: relative;
  min-height: 300px;
  margin-top: 30px;
  border: 1px solid var(--kc-pe-line);
  border-radius: 24px;
  background:
    linear-gradient(rgba(24,57,90,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(24,57,90,.06) 1px,transparent 1px),
    #f9fbfa;
  background-size: 24px 24px;
  overflow: hidden;
}

.kc-pe-house {
  position: absolute;
  inset: 42px 12% 58px;
  display: grid;
  grid-template-columns: 58% 42%;
  border: 3px solid var(--kc-pe-blue);
  border-radius: 5px;
  transform-origin: center;
  transition: grid-template-columns .3s ease,inset .3s ease;
}

.kc-pe-house span {
  display: grid;
  place-items: center;
  font-weight: 800;
}

.kc-pe-existing { color: var(--kc-pe-blue); background: rgba(24,57,90,.06); }
.kc-pe-new-volume { color: var(--kc-pe-accent-dark); border-left: 2px dashed var(--kc-pe-accent); background: rgba(230,110,47,.1); }

.kc-pe-measure {
  position: absolute;
  color: var(--kc-pe-muted);
  font-size: .75rem;
  font-weight: 800;
}
.kc-pe-measure-width { left: 12%; right: 12%; bottom: 24px; border-top: 1px solid currentColor; text-align: center; }
.kc-pe-measure-depth { top: 42px; bottom: 58px; right: 7%; border-left: 1px solid currentColor; }
.kc-pe-measure span { padding: 3px 8px; background: #f9fbfa; }

.kc-pe-choice {
  display: block;
  cursor: pointer;
}
.kc-pe-choice input { position: absolute; opacity: 0; pointer-events: none; }
.kc-pe-choice span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 13px 16px;
  border: 1px solid var(--kc-pe-line);
  border-radius: 14px;
  font-size: .86rem;
  font-weight: 750;
  background: #fff;
  transition: border-color .2s ease,background .2s ease;
}
.kc-pe-choice input:checked + span {
  border-color: var(--kc-pe-accent);
  background: #fff7f2;
}

.kc-pe-finish {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  border: 0;
}
.kc-pe-finish legend { grid-column: 1/-1; margin-bottom: 4px; font-weight: 850; }
.kc-pe-finish input { position: absolute; opacity: 0; }
.kc-pe-finish label span {
  display: grid;
  gap: 5px;
  padding: 17px;
  border: 1px solid var(--kc-pe-line);
  border-radius: 15px;
  cursor: pointer;
}
.kc-pe-finish input:checked + span { border-color: var(--kc-pe-blue); background: #f3f7fa; }
.kc-pe-finish small { color: var(--kc-pe-muted); font-weight: 500; }

.kc-pe-story small { justify-self: end; color: var(--kc-pe-muted); font-weight: 500; }

.kc-pe-timing { margin-top: 26px; }
.kc-pe-timing > span { display: block; margin-bottom: 12px; font-weight: 850; }
.kc-pe-timing > div { display: flex; flex-wrap: wrap; gap: 9px; }
.kc-pe-timing label input { position: absolute; opacity: 0; }
.kc-pe-timing label span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--kc-pe-line);
  border-radius: 999px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 750;
}
.kc-pe-timing input:checked + span { color: #fff; border-color: var(--kc-pe-blue); background: var(--kc-pe-blue); }

.kc-pe-upload {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 44px 24px;
  border: 1.5px dashed rgba(24,57,90,.32);
  border-radius: 22px;
  text-align: center;
  background: #f7fafb;
  cursor: pointer;
}
.kc-pe-upload input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.kc-pe-upload-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--kc-pe-blue);
  font-size: 1.5rem;
}
.kc-pe-upload small { color: var(--kc-pe-muted); font-weight: 500; }
.kc-pe-photo-list { display: grid; gap: 8px; margin-top: 14px; }
.kc-pe-photo-list article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--kc-pe-line);
  border-radius: 12px;
  font-size: .82rem;
}
.kc-pe-photo-list button { border: 0; color: #a23e28; background: transparent; cursor: pointer; }

.kc-pe-estimate-card {
  padding: clamp(25px,5vw,48px);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg,#152a42,#1d4b70);
  box-shadow: 0 24px 54px rgba(24,57,90,.19);
}
.kc-pe-estimate-card > span,
.kc-pe-estimate-card > strong,
.kc-pe-estimate-card > small { display: block; }
.kc-pe-estimate-card > span { opacity: .72; font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.kc-pe-estimate-card > strong { margin-top: 10px; font-size: clamp(2rem,5vw,4.4rem); letter-spacing: -.055em; }
.kc-pe-estimate-card > small { max-width: 650px; margin-top: 14px; opacity: .72; line-height: 1.55; }
.kc-pe-estimate-meter { height: 5px; margin-top: 28px; border-radius: 99px; background: rgba(255,255,255,.14); overflow: hidden; }
.kc-pe-estimate-meter i { display: block; width: 45%; height: 100%; border-radius: inherit; background: var(--kc-pe-accent); transition: width .4s ease; }

.kc-pe-address-card {
  margin-top: 18px;
  border: 1px solid var(--kc-pe-line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.kc-pe-address-card summary {
  display: flex;
  padding: 21px 22px;
  cursor: pointer;
  list-style: none;
}
.kc-pe-address-card summary::-webkit-details-marker { display: none; }
.kc-pe-address-card summary span { display: grid; gap: 5px; }
.kc-pe-address-card summary small { color: var(--kc-pe-muted); font-weight: 500; }
.kc-pe-address-body { padding: 0 22px 24px; border-top: 1px solid var(--kc-pe-line); }
.kc-pe-address-body > p { color: var(--kc-pe-muted); line-height: 1.6; }
.kc-pe-address-fields { grid-template-columns: 2fr .7fr 1fr 1.2fr; }
.kc-pe-address-status { min-height: 22px; color: var(--kc-pe-muted); font-size: .85rem; }

.kc-pe-satellite { margin-top: 18px; }
.kc-pe-satellite-map {
  position: relative;
  aspect-ratio: 16/9;
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px;
  background: #d5dad9;
}
.kc-pe-satellite-tiles {
  position: absolute;
  inset: -256px;
  display: grid;
  grid-template-columns: repeat(5,256px);
  grid-template-rows: repeat(5,256px);
  justify-content: center;
  align-content: center;
  transform: scale(1.05);
}
.kc-pe-satellite-tiles img { width: 256px; height: 256px; object-fit: cover; }
.kc-pe-plan-underlay {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38%;
  height: 34%;
  border: 3px solid #fff;
  background: rgba(230,110,47,.52);
  box-shadow: 0 0 0 2px rgba(20,31,47,.36),0 14px 30px rgba(0,0,0,.2);
  transform: translate(-50%,-50%);
  transform-origin: center;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.kc-pe-satellite-controls {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 13px;
  margin-top: 13px;
}
.kc-pe-satellite-controls label { display: grid; gap: 5px; font-size: .74rem; font-weight: 800; }
.kc-pe-satellite > small { display: block; margin-top: 12px; color: var(--kc-pe-muted); line-height: 1.55; }

.kc-pe-open-planner { margin-top: 18px; }

.kc-pe-contact-grid { grid-template-columns: 1fr 1fr; }
.kc-pe-contact-optional { grid-column: 1/-1; }
.kc-pe-contact-grid em { color: var(--kc-pe-muted); font-style: normal; font-weight: 500; }
.kc-pe-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; color: var(--kc-pe-muted); font-size: .82rem; line-height: 1.5; }
.kc-pe-consent input { margin-top: 3px; }
.kc-pe-final-summary { margin-top: 22px; padding: 18px; border: 1px solid var(--kc-pe-line); border-radius: 15px; background: #f7f9f8; font-size: .84rem; line-height: 1.6; }
.kc-pe-save { width: 100%; margin-top: 16px; }
.kc-pe-form-status { min-height: 24px; color: var(--kc-pe-muted); text-align: center; }

.kc-pe-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(980px,calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 36px;
}
.kc-pe-navigation > span { color: var(--kc-pe-muted); font-size: .78rem; font-weight: 800; }
.kc-pe-back { justify-self: start; }
.kc-pe-next { justify-self: end; }

.kc-pe-success {
  padding: clamp(50px,8vw,92px);
  text-align: center;
}
.kc-pe-success-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #fff;
  background: #2f7c61;
  font-size: 1.6rem;
}
.kc-pe-success h3 { font-size: clamp(2rem,4vw,3.4rem); }
.kc-pe-success p { max-width: 620px; margin: 18px auto 0; color: var(--kc-pe-muted); line-height: 1.65; }

.kc-saved-project {
  min-height: 75vh;
  padding: clamp(90px,12vw,160px) 20px;
  color: var(--kc-pe-ink);
  background: #f3f5f4;
}
.kc-saved-project > section {
  width: min(920px,100%);
  margin: 0 auto;
  padding: clamp(34px,6vw,72px);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--kc-pe-shadow);
}
.kc-saved-project h1 { max-width: 760px; font-size: clamp(2.4rem,6vw,5.4rem); }
.kc-saved-project > section > p { color: var(--kc-pe-muted); line-height: 1.7; }
.kc-saved-project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 32px; }
.kc-saved-project-grid article { padding: 17px; border: 1px solid var(--kc-pe-line); border-radius: 15px; }
.kc-saved-project-grid span,.kc-saved-project-grid strong { display: block; }
.kc-saved-project-grid span { color: var(--kc-pe-muted); font-size: .75rem; }
.kc-saved-project-grid strong { margin-top: 5px; }
.kc-saved-note { margin-top: 28px; padding: 18px; border-radius: 16px; background: #f6f8f7; }
.kc-saved-note p { margin-bottom: 0; color: var(--kc-pe-muted); line-height: 1.55; }

.kc-planner-address-v41 {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid var(--kc-pe-line);
  border-radius: 20px;
  color: var(--kc-pe-ink);
  background: #fff;
}
.kc-planner-address-v41 h3 { margin: 0; }
.kc-planner-address-v41 > p { color: var(--kc-pe-muted); line-height: 1.6; }
.kc-planner-address-v41 .kc-pe-address-fields { margin-top: 16px; }

.kc-customer-address-reason-v41 {
  margin: 12px 0 20px;
  padding: 14px 16px;
  border-left: 3px solid var(--kc-pe-accent);
  border-radius: 0 12px 12px 0;
  color: var(--kc-pe-muted);
  background: #fff7f2;
  font-size: .85rem;
  line-height: 1.55;
}

.kc-admin-project-explorer .form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}
.kc-admin-project-explorer .form-grid .full { grid-column: 1/-1; }
.kc-admin-project-explorer section { padding: 24px 0; border-bottom: 1px solid rgba(23,34,53,.1); }
.kc-admin-project-explorer label { display: grid; gap: 8px; }
.kc-admin-project-explorer .checkbox { display: flex; align-items: center; }
.kc-admin-project-explorer .checkbox input { width: auto; min-height: auto; }

@media (max-width: 820px) {
  .kc-pe-progress b { display: none; }
  .kc-pe-project-grid,.kc-pe-choice-grid { grid-template-columns: 1fr 1fr; }
  .kc-pe-address-fields { grid-template-columns: 1fr 1fr; }
  .kc-pe-satellite-controls { grid-template-columns: 1fr; }
  .kc-saved-project-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .kc-project-explorer-v41 { padding-inline: 10px; }
  .kc-pe-shell { border-radius: 26px; }
  .kc-pe-intro { padding: 38px 20px 44px; }
  .kc-pe-entry-actions,.kc-pe-success > div { display: grid; }
  .kc-pe-primary,.kc-pe-secondary { width: 100%; }
  .kc-pe-progress { padding-inline: 15px; }
  .kc-pe-progress span:not(:last-child)::after { left: calc(50% + 15px); width: calc(100% - 30px); }
  .kc-pe-progress i { width: 28px; height: 28px; }
  .kc-pe-stage,.kc-pe-navigation { width: calc(100% - 28px); }
  .kc-pe-project-grid,.kc-pe-choice-grid,.kc-pe-dimensions,.kc-pe-finish,.kc-pe-contact-grid,.kc-pe-address-fields { grid-template-columns: 1fr; }
  .kc-pe-contact-optional { grid-column: auto; }
  .kc-pe-live-shape { min-height: 250px; }
  .kc-pe-satellite-map { min-height: 250px; aspect-ratio: 1/1; }
  .kc-pe-navigation { grid-template-columns: 1fr 1fr; }
  .kc-pe-navigation > span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  body.kc-home-calm-v41 .reveal,
  body.kc-home-calm-v41 [data-reveal] { opacity: 1; transform: none; }
}

.kc-pe-anchor-alias{position:absolute;top:0;left:0;width:1px;height:1px;pointer-events:none;}
