*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#desNav,
#mobileNav,
#footerMob,
#footerDes {
  display: none !important;
}

html,
body {
  min-height: 100vh;
  font-family: "Geist", sans-serif;
  background: #F6F5F2;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 48px 20px 80px;
}

.form-shell {
  width: 100%;
  max-width: 600px;
}

.s-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  transition: background 0.18s ease;
  flex-shrink: 0;
}
.s-icon svg {
  width: 20px;
  height: 20px;
  stroke: #444;
  transition: stroke 0.18s ease;
}

.service-card:hover .s-icon,
.service-card input:checked + .service-face .s-icon {
  background: rgba(19, 194, 101, 0.14);
}
.service-card:hover .s-icon svg,
.service-card input:checked + .service-face .s-icon svg {
  stroke: #0caa56;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 65px;
}
.topbar .logo img {
  height: auto;
  width: 150px;
  display: block;
}
@media (max-width: 770px) {
  .topbar .logo img {
    width: 100px;
  }
}

.step-track {
  display: flex;
  align-items: center;
  gap: 6px;
}

.track-node {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.09);
  transition: background 0.35s, width 0.35s;
}
.track-node.done {
  background: rgba(19, 194, 101, 0.4);
}
.track-node.active {
  background: #13c265;
  width: 44px;
}

.step {
  display: none;
}
.step.active {
  display: block;
  animation: stepIn 0.32s ease both;
}
.step.back-active {
  display: block;
  animation: stepBack 0.32s ease both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes stepBack {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.step-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #0caa56;
  margin-bottom: 8px;
  font-family: "Geist", sans-serif;
  opacity: 1;
  transform: translateY(0);
}

.step-heading {
  font-family: "Instrument Serif", serif;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: #111;
  margin-bottom: 6px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  opacity: 1;
  transform: translateY(0);
}
.step-heading span {
  font-family: "Instrument Serif", serif;
  color: #0caa56;
}

.step-sub {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 28px;
  font-family: "Geist", sans-serif;
  opacity: 1;
  transform: translateY(0);
}

.step-label,
.step-heading,
.step-sub {
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.step.active .step-label,
.step.back-active .step-label {
  animation: fadeUp 0.35s 0.05s ease both;
}
.step.active .step-heading,
.step.back-active .step-heading {
  animation: fadeUp 0.35s 0.1s ease both;
}
.step.active .step-sub,
.step.back-active .step-sub {
  animation: fadeUp 0.35s 0.15s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.field-group-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #888;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 14px;
  font-family: "Geist", sans-serif;
}
.field-group-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(0, 0, 0, 0.09);
}
.field-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.09);
}
.field-group-label:first-child {
  margin-top: 0;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.city-card {
  position: relative;
  cursor: pointer;
}
.city-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.city-card .city-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  background: #13c265;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(19, 194, 101, 0.4);
}
.city-card .city-badge svg {
  width: 11px;
  height: 11px;
}
.city-card input:checked ~ .city-badge {
  opacity: 1;
  transform: scale(1);
}
.city-card .city-face {
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  will-change: transform;
}
.city-card:hover .city-face {
  border-color: #13c265;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(19, 194, 101, 0.16);
}
.city-card input:checked ~ .city-face {
  border-color: #13c265;
  background: rgba(19, 194, 101, 0.1);
  box-shadow: 0 0 0 3px rgba(19, 194, 101, 0.22);
}
.city-card .city-thumb {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  filter: saturate(0.72) brightness(0.94);
  transition: filter 0.18s ease, transform 0.3s ease;
}
.city-card:hover .city-face .city-thumb {
  filter: saturate(0.9) brightness(1);
  transform: scale(1.04);
}
.city-card input:checked ~ .city-face .city-thumb {
  filter: saturate(1.05) brightness(1);
}
.city-card .city-name-row {
  padding: 7px 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #111;
  text-align: center;
  line-height: 1.25;
  font-family: "Geist", sans-serif;
  background: #fff;
  transition: background 0.18s ease, color 0.18s ease;
}
.city-card input:checked ~ .city-face .city-name-row {
  background: rgba(19, 194, 101, 0.1);
  color: #0caa56;
}

.city-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 8px;
  background: #f0f0ee;
  border: 1px solid transparent;
  font-size: 12.5px;
  color: #888;
  margin-bottom: 22px;
  font-family: "Geist", sans-serif;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.city-status.ok {
  background: rgba(19, 194, 101, 0.1);
  border-color: rgba(19, 194, 101, 0.2);
  color: #0caa56;
}
.city-status.err {
  background: rgba(224, 49, 49, 0.06);
  border-color: rgba(224, 49, 49, 0.2);
  color: #e03131;
}

.city-count {
  margin-left: auto;
  background: #13c265;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  display: none;
  font-family: "Geist", sans-serif;
}
.city-count.show {
  display: inline-block;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.service-card {
  position: relative;
  cursor: pointer;
}
.service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.service-card .service-face {
  padding: 13px 15px;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: #444;
  font-family: "Geist", sans-serif;
  transition: all 0.18s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.service-card:hover .service-face {
  border-color: #13c265;
  color: #111;
  box-shadow: 0 0 0 3px rgba(19, 194, 101, 0.1);
  transform: translateY(-1px);
}
.service-card input:checked ~ .service-face {
  border-color: #13c265;
  background: rgba(19, 194, 101, 0.1);
  color: #111;
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(19, 194, 101, 0.22);
}
.service-card .s-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.18s ease;
}
.service-card input:checked ~ .service-face .s-icon {
  background: rgba(19, 194, 101, 0.16);
}
.service-card .srv-tick {
  margin-left: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #13c265;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.18s, transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.service-card .srv-tick svg {
  width: 10px;
  height: 10px;
}
.service-card input:checked ~ .service-face .srv-tick {
  opacity: 1;
  transform: scale(1);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  margin-bottom: 13px;
}
.field:last-child {
  margin-bottom: 0;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
  font-family: "Geist", sans-serif;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Geist", sans-serif;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
}
.field input::-moz-placeholder, .field textarea::-moz-placeholder, .field select::-moz-placeholder {
  color: #bbb;
}
.field input::placeholder,
.field textarea::placeholder,
.field select::placeholder {
  color: #bbb;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #13c265;
  box-shadow: 0 0 0 3px rgba(19, 194, 101, 0.1);
}
.field input.err,
.field textarea.err,
.field select.err {
  border-color: #e03131;
  box-shadow: 0 0 0 3px rgba(224, 49, 49, 0.08);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.field input[readonly] {
  background: rgba(0, 0, 0, 0.025);
  color: #888;
  cursor: default;
}
.field input[readonly]:focus {
  border-color: rgba(0, 0, 0, 0.09);
  box-shadow: none;
}

.err-msg {
  font-size: 11.5px;
  color: #e03131;
  margin-top: 4px;
  min-height: 16px;
  display: block;
  font-family: "Geist", sans-serif;
}

.phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.phone-wrap:focus-within {
  border-color: #13c265;
  box-shadow: 0 0 0 3px rgba(19, 194, 101, 0.1);
}
.phone-wrap.err {
  border-color: #e03131;
  box-shadow: 0 0 0 3px rgba(224, 49, 49, 0.08);
}
.phone-wrap .phone-prefix {
  padding: 10px 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: #444;
  background: rgba(0, 0, 0, 0.03);
  border-right: 1.5px solid rgba(0, 0, 0, 0.09);
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-family: "Geist", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
}
.phone-wrap input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 1;
  padding: 10px 13px;
  font-size: 16px;
  font-family: "Geist", sans-serif;
  color: #111;
  background: transparent;
  outline: none;
  min-width: 0;
}
.phone-wrap input::-moz-placeholder {
  color: #bbb;
}
.phone-wrap input::placeholder {
  color: #bbb;
}

.summary-card {
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.05);
}

.summary-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.summary-row:last-child {
  border-bottom: none;
}

.summary-key {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888;
  flex-shrink: 0;
  width: 95px;
  padding-top: 1px;
  font-family: "Geist", sans-serif;
}

.summary-val {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  flex: 1;
  line-height: 1.5;
  font-family: "Geist", sans-serif;
}

.summary-edit {
  font-size: 12px;
  font-weight: 600;
  color: #0caa56;
  cursor: pointer;
  flex-shrink: 0;
  padding-top: 1px;
  transition: color 0.18s ease;
  font-family: "Geist", sans-serif;
}
.summary-edit:hover {
  color: #13c265;
}

.form-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 11px 22px;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn svg {
  transition: transform 0.18s ease;
}

.btn-primary {
  background: #13c265;
  color: #fff;
  flex: 1;
  box-shadow: 0 3px 12px rgba(19, 194, 101, 0.28);
}
.btn-primary:hover {
  background: #0caa56;
  box-shadow: 0 5px 18px rgba(19, 194, 101, 0.38);
  transform: translateY(-1px);
}
.btn-primary:hover svg {
  transform: translateX(3px);
}
.btn-primary:active {
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.04);
  color: #444;
  padding: 11px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.07);
  color: #111;
}
.btn-ghost:hover svg {
  transform: translateX(-3px);
}

.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(246, 245, 242, 0.95);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.loader-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.spin {
  width: 36px;
  height: 36px;
  border: 2.5px solid rgba(0, 0, 0, 0.08);
  border-top-color: #13c265;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin-bottom: 18px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader-h {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  font-weight: 400;
  color: #111;
  margin-bottom: 6px;
}

.loader-p {
  font-size: 13px;
  color: #888;
  font-family: "Geist", sans-serif;
}

@media (max-width: 480px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .row-2 {
    grid-template-columns: 1fr;
  }
  .page {
    padding: 28px 16px 60px;
  }
}/*# sourceMappingURL=for-bedrifter-partner.css.map */