@charset "UTF-8";
.locale-switcher {
  display: flex;
  align-items: center;
  margin-right: 0.75rem;
}

.locale-switcher-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  background: transparent;
  border: 1px solid var(--platform-border, #e2e8f0);
  border-radius: 6px;
  color: var(--platform-text, #374151);
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.locale-switcher-btn:hover {
  background: var(--platform-hover, rgba(0, 0, 0, 0.05));
  border-color: var(--platform-border-hover, #d1d5db);
}

.locale-flag {
  font-size: 1.125rem;
  line-height: 1;
}

.locale-label {
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
  top: 2px;
}
@media (min-width: 768px) {
  .locale-label {
    display: inline;
  }
}

@media (max-width: 767px) {
  .locale-label-mobile {
    display: none;
  }
}

[data-theme=dark] .locale-switcher-btn {
  border-color: #334155;
  color: #e2e8f0;
}
[data-theme=dark] .locale-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #475569;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .locale-switcher-btn {
    border-color: #334155;
    color: #e2e8f0;
  }
  :root:not([data-theme=light]) .locale-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #475569;
  }
}
.platform-menu {
  position: relative;
}

.platform-menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: transparent;
  border: 1px solid var(--platform-border, #e2e8f0);
  border-radius: 8px;
  color: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.platform-menu-trigger:hover {
  background: var(--platform-hover, rgba(255, 255, 255, 0.1));
}

.platform-menu-avatar {
  width: 32px;
  height: 32px;
  background: #2b5d6a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.platform-menu-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-menu-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  min-width: 0;
}
@media (max-width: 768px) {
  .platform-menu-info {
    display: none;
  }
}

.platform-menu-email {
  font-size: 0.8125rem;
  color: var(--platform-text, inherit);
  font-weight: 500;
}

.platform-menu-workspace {
  font-size: 0.6875rem;
  color: var(--platform-text-muted, #64748b);
}

.platform-menu-chevron {
  opacity: 0.5;
  margin-left: 0.25rem;
}

.platform-menu-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 240px;
  background: var(--platform-surface, white);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--platform-border, rgba(0, 0, 0, 0.08));
  z-index: 1000;
  overflow: hidden;
  animation: platform-menu-fade-in 0.15s ease-out;
}

.platform-menu-dropdown-hidden {
  display: none;
}

@keyframes platform-menu-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.platform-menu-section {
  padding: 0.375rem;
}

.platform-menu-section-title {
  padding: 0.5rem 0.75rem 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.platform-menu-divider {
  height: 1px;
  background: var(--platform-border, #e5e7eb);
  margin: 0.25rem 0;
}

.platform-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background-color 0.1s;
}
.platform-menu-item:hover {
  background: #f1f5f9;
  color: #1e293b;
}
.platform-menu-item svg {
  color: #64748b;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.platform-menu-item-active {
  background: rgba(43, 93, 106, 0.08);
  color: #2b5d6a;
}
.platform-menu-item-active svg {
  color: #2b5d6a;
}

.platform-menu-item-danger {
  color: #dc2626;
}
.platform-menu-item-danger svg {
  color: #dc2626;
}
.platform-menu-item-danger:hover {
  background: #fef2f2;
}

.platform-menu-check {
  color: #2b5d6a !important;
}

.platform-menu-check-placeholder {
  width: 16px;
  height: 16px;
}

.platform-menu-theme-toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.platform-theme-icon-light,
.platform-theme-label-light {
  display: inline;
}

.platform-theme-icon-dark,
.platform-theme-label-dark {
  display: none;
}

[data-theme=dark] .platform-theme-icon-light,
[data-theme=dark] .platform-theme-label-light {
  display: none;
}
[data-theme=dark] .platform-theme-icon-dark,
[data-theme=dark] .platform-theme-label-dark {
  display: inline;
}
[data-theme=dark] .platform-menu-dropdown {
  background: #1e293b;
  border-color: #334155;
}
[data-theme=dark] .platform-menu-item {
  color: #e2e8f0;
}
[data-theme=dark] .platform-menu-item:hover {
  background: #334155;
  color: #f8fafc;
}
[data-theme=dark] .platform-menu-item svg {
  color: #94a3b8;
}
[data-theme=dark] .platform-menu-item-active {
  background: rgba(43, 93, 106, 0.25);
  color: #7ecad8;
}
[data-theme=dark] .platform-menu-item-active svg {
  color: #7ecad8;
}
[data-theme=dark] .platform-menu-item-danger {
  color: #f87171;
}
[data-theme=dark] .platform-menu-item-danger svg {
  color: #f87171;
}
[data-theme=dark] .platform-menu-item-danger:hover {
  background: #450a0a;
}
[data-theme=dark] .platform-menu-section-title {
  color: #64748b;
}
[data-theme=dark] .platform-menu-divider {
  background: #334155;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .platform-theme-icon-light,
  :root:not([data-theme=light]) .platform-theme-label-light {
    display: none;
  }
  :root:not([data-theme=light]) .platform-theme-icon-dark,
  :root:not([data-theme=light]) .platform-theme-label-dark {
    display: inline;
  }
  :root:not([data-theme=light]) .platform-menu-dropdown {
    background: #1e293b;
    border-color: #334155;
  }
  :root:not([data-theme=light]) .platform-menu-item {
    color: #e2e8f0;
  }
  :root:not([data-theme=light]) .platform-menu-item:hover {
    background: #334155;
    color: #f8fafc;
  }
  :root:not([data-theme=light]) .platform-menu-item svg {
    color: #94a3b8;
  }
  :root:not([data-theme=light]) .platform-menu-item-active {
    background: #1e3a5a;
    color: #60a5fa;
  }
  :root:not([data-theme=light]) .platform-menu-item-active svg {
    color: #60a5fa;
  }
  :root:not([data-theme=light]) .platform-menu-item-danger {
    color: #f87171;
  }
  :root:not([data-theme=light]) .platform-menu-item-danger svg {
    color: #f87171;
  }
  :root:not([data-theme=light]) .platform-menu-item-danger:hover {
    background: #450a0a;
  }
  :root:not([data-theme=light]) .platform-menu-section-title {
    color: #64748b;
  }
  :root:not([data-theme=light]) .platform-menu-divider {
    background: #334155;
  }
}
.platform-menu-badge {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.platform-menu-badge--count {
  min-width: 1.25rem;
  justify-content: center;
  padding: 0.0625rem 0.375rem;
  background: var(--in-primary, #2b5d6a);
  color: #fff;
}

.platform-menu-badge-info {
  background: #dbeafe;
  color: #1e40af;
}

.platform-menu-badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.platform-menu-badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

[data-theme=dark] .platform-menu-badge-info {
  background: #1e3a5f;
  color: #93c5fd;
}
[data-theme=dark] .platform-menu-badge-warning {
  background: #451a03;
  color: #fcd34d;
}
[data-theme=dark] .platform-menu-badge-danger {
  background: #450a0a;
  color: #fca5a5;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .platform-menu-badge-info {
    background: #1e3a5f;
    color: #93c5fd;
  }
  :root:not([data-theme=light]) .platform-menu-badge-warning {
    background: #451a03;
    color: #fcd34d;
  }
  :root:not([data-theme=light]) .platform-menu-badge-danger {
    background: #450a0a;
    color: #fca5a5;
  }
}
:root {
  --platform-surface: #ffffff;
  --platform-border: #e5e8ec;
  --platform-text: #2d3947;
  --platform-text-muted: #687484;
  --platform-hover: rgba(43, 93, 106, 0.08);
  --theme-primary: #2b5d6a;
  --theme-bg-secondary: #f7f6f2;
  --theme-border: #e5e8ec;
  --in-primary: #2b5d6a;
  --in-primary-hover: #1d4049;
  --in-primary-light: #e6efef;
  --in-text: #2d3947;
  --in-text-muted: #687484;
  --in-muted: #687484;
  --in-border: #e5e8ec;
  --in-light: #f7f6f2;
  --in-surface: #ffffff;
  --in-surface-elevated: #ffffff;
  --in-info: #2b5d6a;
  --in-info-light: #e6efef;
  --in-warning: #b88509;
  --in-warning-light: #fbf2d8;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: #f7f6f2;
  color: #2d3947;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2b5d6a;
  text-decoration: none;
}

a:hover {
  color: #1d4049;
  text-decoration: underline;
}

h1, h2, h3, h4 {
  color: #151e2a;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.375rem;
  line-height: 1.3;
}

p {
  margin: 0 0 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.kb-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.kb-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.kb-header {
  padding: 24px 0;
  border-bottom: 1px solid #e5e8ec;
  background: rgba(247, 246, 242, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1100;
}
.kb-header .kb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.kb-header .locale-switcher-btn {
  color: #151e2a !important;
  border-color: #687484 !important;
}
.kb-header .locale-switcher-btn:hover {
  border-color: #2b5d6a !important;
  color: #2b5d6a !important;
}

.kb-wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.kb-wordmark:hover {
  text-decoration: none;
}
.kb-wordmark img {
  height: 32px;
  width: auto;
  display: block;
}

@media (max-width: 880px) {
  .kb-wordmark img {
    height: 28px;
  }
}
body.kb-page--map .kb-wordmark img {
  height: 28px;
}

.kb-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e6efef;
  color: #1d4049;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kb-badge--success {
  background: #dff2e6;
  color: #2e7d55;
}
.kb-badge--warn {
  background: #fbf2d8;
  color: #b88509;
}
.kb-badge--gratis {
  background: #dff2e6;
  color: #2e7d55;
}

.kb-gratis-block {
  margin-block-end: 12px;
}
.kb-gratis-block__explain {
  margin: 6px 0 0;
  font-size: 0.875rem;
  color: #687484;
}

.kb-main {
  flex: 1;
}

.kb-footer {
  padding: 56px 0 28px;
  border-top: 1px solid #e5e8ec;
  color: #687484;
  font-size: 0.9rem;
  background: transparent;
}
.kb-footer a {
  color: #687484;
  text-decoration: none;
}
.kb-footer a:hover {
  color: #2b5d6a;
  text-decoration: underline;
}

.kb-footer__cols {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e8ec;
}

@media (max-width: 880px) {
  .kb-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .kb-footer__col--brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  .kb-footer__cols {
    grid-template-columns: 1fr;
  }
}
.kb-footer__brand {
  display: inline-block;
  line-height: 0;
}
.kb-footer__brand img {
  height: 28px;
  width: auto;
  display: block;
}

.kb-footer__tagline {
  margin: 12px 0 0;
  color: #687484;
  max-width: 28ch;
}

.kb-footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #151e2a;
  margin: 0 0 12px;
}

.kb-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.kb-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  font-size: 0.8rem;
}

.kb-section {
  padding: 80px 0;
}

.kb-section--tight {
  padding: 48px 0;
}

.kb-section--accent {
  background: #e6efef;
}

.kb-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0 96px;
}

.kb-hero__eyebrow {
  display: inline-block;
  color: #2b5d6a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.kb-hero__title {
  margin-bottom: 20px;
}

.kb-hero__lede {
  font-size: 1.25rem;
  color: #2d3947;
  margin-bottom: 32px;
}

.kb-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kb-hero__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(21, 30, 42, 0.06);
  aspect-ratio: 4/5;
  background: #ffffff;
}
.kb-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 880px) {
  .kb-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0;
  }
  .kb-hero__image {
    aspect-ratio: 16/11;
  }
  h1 {
    font-size: 2.25rem;
  }
}
.kb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.kb-btn:hover {
  text-decoration: none;
}

.kb-btn--primary {
  background: #2b5d6a;
  color: #ffffff;
}
.kb-btn--primary:hover {
  background: #1d4049;
  color: #ffffff;
}

.kb-btn--ghost {
  background: transparent;
  border-color: #e5e8ec;
  color: #151e2a;
}
.kb-btn--ghost:hover {
  border-color: #2b5d6a;
  color: #2b5d6a;
}

.kb-btn--block {
  display: flex;
  width: 100%;
}

.kb-btn--small {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.kb-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kb-intent-card {
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(21, 30, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}
.kb-intent-card:hover {
  box-shadow: 0 4px 14px rgba(21, 30, 42, 0.06);
  transform: translateY(-2px);
  text-decoration: none;
}
.kb-intent-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.kb-intent-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kb-intent-card__body {
  padding: 28px;
}
.kb-intent-card__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2b5d6a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.kb-intent-card__title {
  margin-bottom: 10px;
}
.kb-intent-card__text {
  color: #2d3947;
  margin-bottom: 20px;
}
.kb-intent-card__cta {
  color: #2b5d6a;
  font-weight: 600;
}

@media (max-width: 760px) {
  .kb-intent-grid {
    grid-template-columns: 1fr;
  }
}
.kb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.kb-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #2b5d6a;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}
.kb-step__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.kb-step__text {
  color: #2d3947;
}

@media (max-width: 760px) {
  .kb-steps {
    grid-template-columns: 1fr;
  }
}
.kb-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  align-items: center;
  margin: 56px 0;
}
.kb-feature--reverse .kb-feature__media {
  order: 2;
}
.kb-feature__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 1px 2px rgba(21, 30, 42, 0.04);
}
.kb-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kb-feature__title {
  margin-bottom: 12px;
}
.kb-feature__text {
  color: #2d3947;
}

@media (max-width: 820px) {
  .kb-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .kb-feature--reverse .kb-feature__media {
    order: 0;
  }
}
.kb-form-shell {
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e5e8ec;
  box-shadow: 0 1px 2px rgba(21, 30, 42, 0.04);
}

.kb-field {
  margin-bottom: 20px;
}

.kb-field__label {
  display: block;
  font-weight: 600;
  color: #151e2a;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.kb-field__hint {
  display: block;
  font-size: 0.85rem;
  color: #687484;
  margin-top: 4px;
}

.kb-input, .kb-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  font: inherit;
  color: #151e2a;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.kb-input:focus, .kb-textarea:focus {
  outline: none;
  border-color: #2b5d6a;
  box-shadow: 0 0 0 3px rgba(43, 93, 106, 0.12);
}

.kb-textarea {
  min-height: 120px;
  resize: vertical;
}

.kb-radio-group {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 560px) {
  .kb-radio-group {
    grid-template-columns: 1fr;
  }
}
.kb-radio {
  position: relative;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  display: block;
}
.kb-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.kb-radio__title {
  display: block;
  font-weight: 600;
  color: #151e2a;
  font-size: 0.95rem;
}
.kb-radio__text {
  display: block;
  font-size: 0.85rem;
  color: #687484;
  margin-top: 2px;
}
.kb-radio:has(input:checked) {
  border-color: #2b5d6a;
  background: #e6efef;
}
.kb-radio:hover {
  border-color: #2b5d6a;
}

.kb-multiselect__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  font: inherit;
  color: #151e2a;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.kb-multiselect__trigger span {
  flex: 1;
}
.kb-multiselect__trigger:hover {
  border-color: #2b5d6a;
}
.kb-multiselect__trigger[aria-expanded=true] {
  border-color: #2b5d6a;
  box-shadow: 0 0 0 3px rgba(43, 93, 106, 0.12);
}

.kb-multiselect__panel {
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e5e8ec;
  border-radius: 6px;
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.kb-multiselect__panel:not([hidden]) {
  display: flex;
}

.kb-wizard-intro {
  margin-bottom: 28px;
}
.kb-wizard-intro__heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #151e2a;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.kb-wizard-intro__lede {
  color: #687484;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

.kb-addr-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border: 1px solid #e5e8ec;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 4px 0;
  margin: 0;
  max-height: 240px;
  overflow-y: auto;
}

.kb-addr-option {
  padding: 8px 14px;
  font-size: 0.9rem;
  cursor: pointer;
  color: #2d3947;
}
.kb-addr-option:hover {
  background: #e6efef;
  color: #1d4049;
}

.kb-orgnr-status {
  display: block;
  font-size: 0.8rem;
  min-height: 1.2em;
  margin-top: 4px;
}
.kb-orgnr-status--ok {
  color: #2e7d55;
}
.kb-orgnr-status--err {
  color: #b44e3a;
}
.kb-orgnr-status--loading {
  color: #687484;
}

.kb-details {
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  margin-bottom: 24px;
}
.kb-details__summary {
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #687484;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.kb-details__summary::-webkit-details-marker {
  display: none;
}
.kb-details__summary::before {
  content: "▸ ";
  font-size: 0.75rem;
}
.kb-details[open] .kb-details__summary::before {
  content: "▾ ";
}
.kb-details__body {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kb-errors {
  background: #fbecea;
  border: 1px solid #f2c6bf;
  color: #b44e3a;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.kb-errors ul {
  margin: 0;
  padding-left: 20px;
}

.kb-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.kb-fieldset:last-of-type {
  margin-bottom: 12px;
}

.kb-legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #687484;
  padding: 0;
  margin-bottom: 14px;
}

.kb-checkbox-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 640px) {
  .kb-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .kb-checkbox-grid {
    grid-template-columns: 1fr;
  }
}
.kb-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #151e2a;
  transition: border-color 0.15s, background 0.15s;
}
.kb-checkbox input[type=checkbox] {
  accent-color: #2b5d6a;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.kb-checkbox:hover {
  border-color: #2b5d6a;
}
.kb-checkbox:has(input:checked) {
  border-color: #2b5d6a;
  background: #e6efef;
}

.kb-visning-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  margin-bottom: 8px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.kb-visning-row:hover {
  border-color: #2b5d6a;
  box-shadow: 0 2px 8px rgba(43, 93, 106, 0.08);
}
.kb-visning-row__main {
  flex: 1;
  min-width: 0;
}
.kb-visning-row__sub {
  font-size: 0.85rem;
  color: #687484;
  margin: 2px 0 0;
}
.kb-visning-row__slot {
  font-size: 0.85rem;
  color: #2b5d6a;
  font-weight: 600;
  margin: 4px 0 0;
}
.kb-visning-row__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.kb-visning-row__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #2b5d6a;
  color: #fff;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}
.kb-visning-row__status {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 20px;
  background: #f7f6f2;
  color: #687484;
}
.kb-visning-row__status--confirmed {
  background: #dff2e6;
  color: #2e7d55;
}
.kb-visning-row__status--requested {
  background: #fbf2d8;
  color: #b88509;
}
.kb-visning-row__status--declined {
  background: #f6e0db;
  color: #b44e3a;
}
.kb-visning-row__status--expired {
  background: #f7f6f2;
  color: #687484;
}
.kb-visning-row__arrow {
  color: #687484;
  font-size: 0.9rem;
}

.kb-visning-detail {
  max-width: 680px;
}
.kb-visning-detail__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e8ec;
}
.kb-visning-detail__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #151e2a;
}
.kb-visning-detail__meta {
  font-size: 0.875rem;
  color: #687484;
  margin: 0;
}
.kb-visning-detail__status {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: #f7f6f2;
  color: #687484;
  flex-shrink: 0;
  font-weight: 600;
}
.kb-visning-detail__status--confirmed {
  background: #dff2e6;
  color: #2e7d55;
}
.kb-visning-detail__status--requested {
  background: #fbf2d8;
  color: #b88509;
}
.kb-visning-detail__status--declined {
  background: #f6e0db;
  color: #b44e3a;
}
.kb-visning-detail__status--expired {
  background: #f7f6f2;
  color: #687484;
}
.kb-visning-detail__section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e8ec;
}
.kb-visning-detail__section:last-child {
  border-bottom: none;
}
.kb-visning-detail__label, .kb-visning-detail__confirm_label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #687484;
  margin: 0 0 8px;
}
.kb-chat__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e5e8ec;
}
.kb-chat__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #687484;
  margin: 0;
}
.kb-chat__with {
  font-size: 0.8rem;
  color: #687484;
  margin: 0;
}
.kb-chat__messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 360px;
  overflow-y: auto;
  padding: 4px 2px 16px;
  scroll-behavior: smooth;
}
.kb-chat__bubble {
  display: flex;
  flex-direction: column;
  max-width: 72%;
}
.kb-chat__bubble--own {
  align-self: flex-end;
  align-items: flex-end;
}
.kb-chat__bubble--other {
  align-self: flex-start;
  align-items: flex-start;
}
.kb-chat__name {
  font-size: 0.72rem;
  font-weight: 600;
  color: #687484;
  margin-bottom: 3px;
  padding: 0 4px;
}
.kb-chat__text {
  margin: 0;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}
.kb-chat__bubble--own .kb-chat__text {
  background: #2b5d6a;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.kb-chat__bubble--other .kb-chat__text {
  background: #f7f6f2;
  border: 1px solid #e5e8ec;
  color: #2d3947;
  border-bottom-left-radius: 4px;
}
.kb-chat__time {
  font-size: 0.7rem;
  color: #687484;
  margin-top: 3px;
  padding: 0 4px;
}
.kb-chat__empty {
  font-size: 0.875rem;
  color: #687484;
  text-align: center;
  padding: 24px 0;
}
.kb-chat__error {
  font-size: 0.825rem;
  color: #b44e3a;
  margin-bottom: 8px;
}
.kb-chat__compose {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  padding-top: 4px;
}
.kb-chat__input {
  flex: 1;
  resize: none;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  min-height: 40px;
  max-height: 140px;
  background: #fff;
  transition: border-color 0.15s;
}
.kb-chat__input:focus {
  outline: none;
  border-color: #2b5d6a;
  box-shadow: 0 0 0 3px rgba(43, 93, 106, 0.12);
}
.kb-chat__send {
  flex-shrink: 0;
  align-self: flex-end;
}

.kb-contact-reveal {
  margin-top: 12px;
  padding: 12px 16px;
  background: #e6efef;
  border: 1px solid rgba(43, 93, 106, 0.2);
  border-radius: 6px;
  font-size: 0.875rem;
}
.kb-contact-reveal p {
  margin: 0 0 4px;
}
.kb-contact-reveal p:last-child {
  margin: 0;
}
.kb-contact-reveal__heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1d4049;
  margin-bottom: 8px !important;
}
.kb-contact-reveal__verified {
  display: block;
  font-size: 0.8rem;
  color: #687484;
}

.kb-onboarding {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 0;
}

.kb-onboarding__card {
  background: #fff;
  border: 1px solid #e5e8ec;
  border-radius: 16px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.kb-onboarding__title {
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.kb-onboarding__lede {
  color: #687484;
  font-size: 0.95rem;
  margin: 0 0 32px;
}

.kb-onboarding__choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kb-onboarding__choice {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 20px;
  background: #f7f6f2;
  border: 2px solid #e5e8ec;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.kb-onboarding__choice:hover {
  border-color: #2b5d6a;
  background: #e6efef;
}
.kb-onboarding__choice strong {
  display: block;
  font-size: 1rem;
  color: #151e2a;
  margin-bottom: 2px;
}
.kb-onboarding__choice span {
  font-size: 0.85rem;
  color: #687484;
}

.kb-onboarding__choice-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.kb-cross-link {
  margin: 32px auto;
  padding: 28px 24px;
  background: #e6efef;
  border-radius: 16px;
  text-align: center;
}
.kb-cross-link__eyebrow {
  display: block;
  font-size: 0.85rem;
  color: #687484;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.kb-cross-link__title {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
}
.kb-cross-link__text {
  color: #2d3947;
  margin: 0 0 16px 0;
}

.kb-vision-cta {
  margin-top: 32px;
  text-align: center;
  color: #687484;
}
.kb-vision-cta__link {
  color: #2b5d6a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.kb-vision-cta__link:hover {
  color: rgb(28.2818791946, 61.1677852349, 69.7181208054);
}

.kb-nav {
  display: flex;
  gap: 20px;
}
.kb-nav__link {
  color: #2d3947;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}
.kb-nav__link:hover {
  color: #2b5d6a;
}

.kb-checkbox--compact, .kb-radio--compact {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.kb-checkbox--compact + .kb-checkbox--compact {
  margin-top: 6px;
}

.kb-radio--compact {
  display: block;
  margin-bottom: 6px;
}
.kb-radio--compact__title {
  font-weight: 500;
}

.kb-browse {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 880px) {
  .kb-browse {
    grid-template-columns: 1fr;
  }
}
.kb-filter {
  position: sticky;
  top: 24px;
}
.kb-filter__form {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e5e8ec;
  box-shadow: 0 1px 2px rgba(21, 30, 42, 0.04);
}
.kb-filter__heading {
  font-size: 1rem;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #687484;
}
.kb-filter__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.kb-filter__actions {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}
.kb-filter__actions--row {
  grid-template-columns: repeat(3, 1fr);
}

.kb-filter__mobile-toggle {
  display: none;
  appearance: none;
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  color: #151e2a;
  cursor: pointer;
  text-align: left;
}
.kb-filter__mobile-toggle:hover {
  background: #e6efef;
}

.kb-filter__mobile-toggle-label--show {
  display: inline;
}

.kb-filter__mobile-toggle-label--hide {
  display: none;
}

.kb-filter__mobile-toggle[aria-expanded=true] .kb-filter__mobile-toggle-label--show {
  display: none;
}
.kb-filter__mobile-toggle[aria-expanded=true] .kb-filter__mobile-toggle-label--hide {
  display: inline;
}

@media (max-width: 880px) {
  .kb-filter__mobile-toggle {
    display: block;
  }
  .kb-filter {
    display: none;
    position: static;
    top: auto;
  }
  .kb-filter__mobile-toggle[aria-expanded=true] + .kb-filter {
    display: block;
  }
}
.kb-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #e5e8ec;
}

.kb-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #687484;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}
.kb-tab:hover {
  color: #2d3947;
  text-decoration: none;
}
.kb-tab--active {
  color: #2b5d6a;
  border-bottom-color: #2b5d6a;
}
.kb-tab__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #e6efef;
  color: #1d4049;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}
.kb-tab--active .kb-tab__badge {
  background: #2b5d6a;
  color: #fff;
}

.kb-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.kb-active-filter {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #e6efef;
  color: #1d4049;
  border: 1px solid rgba(43, 93, 106, 0.25);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.kb-active-filter:hover {
  background: rgb(214.4512195122, 229.0487804878, 229.0487804878);
  border-color: #2b5d6a;
  color: #1d4049;
  text-decoration: none;
}
.kb-active-filter__x {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.6;
}
.kb-active-filter--reset {
  background: transparent;
  color: #687484;
  border-color: #e5e8ec;
}
.kb-active-filter--reset:hover {
  background: #f7f6f2;
  color: #2d3947;
  border-color: #687484;
}

.kb-results__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.kb-results__count {
  color: #687484;
  margin: 0;
}

.kb-view-toggle {
  display: inline-flex;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}
.kb-view-toggle__btn {
  padding: 8px 16px;
  color: #2d3947;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}
.kb-view-toggle__btn + .kb-view-toggle__btn {
  border-left: 1px solid #e5e8ec;
}
.kb-view-toggle__btn:hover {
  background: #e6efef;
}
.kb-view-toggle__btn--active {
  background: #2b5d6a;
  color: #ffffff;
}
.kb-view-toggle__btn--active:hover {
  background: #2b5d6a;
  color: #ffffff;
}

.kb-map {
  height: 600px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e5e8ec;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 720px) {
  .kb-map {
    height: 480px;
  }
}
.kb-listing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 720px) {
  .kb-listing-grid {
    grid-template-columns: 1fr;
  }
}
.kb-listing-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 16px;
  text-decoration: none;
  color: #151e2a;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.kb-listing-card:hover {
  border-color: #2b5d6a;
  box-shadow: 0 1px 2px rgba(21, 30, 42, 0.04);
  transform: translateY(-1px);
}
.kb-listing-card__photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e6efef;
}
.kb-listing-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kb-listing-card > .kb-listing-card__head,
.kb-listing-card > h3.kb-listing-card__title,
.kb-listing-card > p.kb-listing-card__summary,
.kb-listing-card > .kb-listing-card__meta {
  padding-left: 20px;
  padding-right: 20px;
}
.kb-listing-card > .kb-listing-card__head {
  padding-top: 20px;
}
.kb-listing-card > .kb-listing-card__meta {
  padding-bottom: 20px;
}
.kb-listing-card__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #687484;
}
.kb-listing-card__district {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.kb-listing-card__sqm {
  font-weight: 600;
  color: #2b5d6a;
}
.kb-listing-card__title {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: #151e2a;
}
.kb-listing-card__summary {
  color: #2d3947;
  font-size: 0.95rem;
  margin: 0 0 12px 0;
}
.kb-listing-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #687484;
}
.kb-listing-card--mine {
  border-color: #2b5d6a;
  border-width: 2px;
}
.kb-listing-card__mine-badge {
  display: block;
  background: #2b5d6a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.kb-empty {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border: 1px dashed #e5e8ec;
  border-radius: 16px;
}
.kb-empty__title {
  margin: 0 0 8px 0;
}
.kb-empty__text {
  color: #2d3947;
  margin: 0 0 20px 0;
}

.kb-listing-detail {
  margin: 0 auto;
}
.kb-listing-detail__breadcrumb {
  color: #687484;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.kb-listing-detail__breadcrumb a {
  color: #687484;
  text-decoration: none;
}
.kb-listing-detail__breadcrumb a:hover {
  color: #2b5d6a;
}
.kb-listing-detail__title {
  margin: 0 0 12px 0;
  font-size: 2rem;
}
.kb-listing-detail__summary {
  color: #2d3947;
  font-size: 1.125rem;
  margin: 0 0 24px 0;
}
.kb-listing-detail__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: #e6efef;
  border-radius: 16px;
  margin-bottom: 32px;
}
.kb-listing-detail__section {
  margin-bottom: 32px;
}
.kb-listing-detail__section-title {
  font-size: 1.125rem;
  margin: 0 0 12px 0;
}
.kb-listing-detail__description {
  color: #2d3947;
  line-height: 1.6;
}

.kb-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .kb-detail-layout {
    grid-template-columns: 1fr;
  }
}

.kb-detail-layout__sidebar {
  position: sticky;
  top: 24px;
}

.kb-cta-card {
  background: #fff;
  border: 1px solid #e5e8ec;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.kb-cta-card__facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e8ec;
}
.kb-cta-card__fact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.kb-cta-card__fact-label {
  font-size: 0.85rem;
  color: #687484;
}
.kb-cta-card__fact-value {
  font-size: 1rem;
  font-weight: 700;
  color: #151e2a;
}
.kb-cta-card__company {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #2d3947;
}
.kb-cta-card__org-number {
  font-size: 0.8rem;
  color: #687484;
}
.kb-cta-card__hint {
  font-size: 0.875rem;
  color: #687484;
  margin: 0;
}

.kb-viewing-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e5e8ec;
  max-width: 640px;
}

.kb-detail-hero {
  margin: 16px 0 28px;
  display: grid;
  gap: 12px;
}
.kb-detail-hero__main {
  aspect-ratio: 16/9;
  background: #e5e8ec;
  border-radius: 16px;
  overflow: hidden;
}
.kb-detail-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kb-detail-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 700px) {
  .kb-detail-hero__thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kb-detail-hero__thumb {
  aspect-ratio: 4/3;
  background: #e5e8ec;
  border-radius: 10px;
  overflow: hidden;
}
.kb-detail-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kb-detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.kb-detail-title-row__heading {
  flex: 1 1 auto;
  min-width: 0;
}
.kb-detail-title-row__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.kb-detail-title {
  margin: 0 0 4px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #151e2a;
  line-height: 1.15;
}

.kb-detail-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #687484;
}

.kb-detail-summary {
  margin: 4px 0 20px;
  font-size: 1.05rem;
  color: #2d3947;
  line-height: 1.5;
  max-width: 720px;
}

.kb-detail-keyfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 36px;
}
@media (max-width: 700px) {
  .kb-detail-keyfacts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.kb-keyfact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  padding: 14px 16px;
}
.kb-keyfact__icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.kb-keyfact__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.kb-keyfact__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #687484;
  margin-bottom: 2px;
}
.kb-keyfact__value {
  font-size: 1rem;
  font-weight: 700;
  color: #151e2a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kb-detail-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin: 0;
}
@media (max-width: 600px) {
  .kb-detail-facts-grid {
    grid-template-columns: 1fr;
  }
}
.kb-detail-facts-grid__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px dashed #e5e8ec;
  padding-bottom: 8px;
}
.kb-detail-facts-grid__label {
  font-size: 0.85rem;
  color: #687484;
  margin: 0;
}
.kb-detail-facts-grid__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #151e2a;
  margin: 0;
  text-align: right;
}

.kb-cta-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e8ec;
}

.kb-cta-card__price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #151e2a;
}

.kb-cta-card__price-period {
  font-size: 0.85rem;
  color: #687484;
}

.kb-analytics {
  background: #fff;
  border: 1px solid #e5e8ec;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
}
.kb-analytics__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.kb-analytics__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #151e2a;
}
.kb-analytics__eyebrow {
  font-size: 0.8rem;
  color: #687484;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kb-analytics__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .kb-analytics__kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kb-analytics__charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 700px) {
  .kb-analytics__charts {
    grid-template-columns: 1fr;
  }
}
.kb-analytics__chart {
  background: #f7f6f2;
  border-radius: 10px;
  padding: 14px 16px;
}
.kb-analytics__chart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #2d3947;
  font-weight: 600;
}
.kb-analytics__chart-total {
  font-variant-numeric: tabular-nums;
  color: #151e2a;
}
.kb-analytics__requesters {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e5e8ec;
}
.kb-analytics__requesters-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3947;
  margin-bottom: 10px;
}
.kb-analytics__requesters-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kb-analytics__requester {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #f7f6f2;
  border-radius: 6px;
  font-size: 0.9rem;
}
.kb-analytics__requester-email {
  color: #2d3947;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 12px;
}
.kb-analytics__requester-count {
  color: #151e2a;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.kb-kpi {
  background: #f7f6f2;
  border-radius: 10px;
  padding: 14px 16px;
}
.kb-kpi__label {
  font-size: 0.75rem;
  color: #687484;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.kb-kpi__value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #151e2a;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kb-kpi__unit {
  font-size: 0.95rem;
  color: #687484;
  font-weight: 500;
  margin-left: 4px;
}
.kb-kpi__sub {
  font-size: 0.75rem;
  color: #687484;
  margin-top: 4px;
}

@media (max-width: 560px) {
  .kb-listing-detail__facts {
    grid-template-columns: 1fr;
  }
}
.kb-fact__label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #687484;
  margin-bottom: 2px;
}
.kb-fact__value {
  display: block;
  font-weight: 600;
  color: #151e2a;
}

.kb-disclaimer-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  background: #ffffff;
  color: #2b5d6a;
  border: 1px solid #2b5d6a;
  border-radius: 999px;
  cursor: help;
  vertical-align: middle;
}

.kb-stale-warning {
  margin: 0 0 24px 0;
  padding: 12px 16px;
  background: #fff8ee;
  border: 1px solid #f0d9aa;
  color: #7a4f15;
  border-radius: 10px;
  font-size: 0.9rem;
}
.kb-stale-warning__date {
  color: #aa7a3f;
}

.kb-flash {
  max-width: 1200px;
  margin: 24px auto;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 500;
}
.kb-flash--notice {
  background: #e6efef;
  color: #2b5d6a;
  border: 1px solid #2b5d6a;
}
.kb-flash--alert {
  background: #fbecea;
  color: #b44e3a;
  border: 1px solid #f2c6bf;
}

.kb-readonly {
  padding: 12px 14px;
  background: #e6efef;
  border-radius: 10px;
  margin: 0;
  line-height: 1.5;
}

.kb-photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}
.kb-photo-strip__item {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 10px;
  background: #e6efef;
}
.kb-photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kb-danger-zone {
  margin-top: 32px;
  padding: 20px;
  border: 1px dashed #b44e3a;
  border-radius: 10px;
  background: #fff8f7;
}
.kb-danger-zone__title {
  margin: 0 0 6px 0;
  color: #b44e3a;
  font-size: 1rem;
}
.kb-danger-zone__text {
  margin: 0 0 14px 0;
  color: #2d3947;
  font-size: 0.9rem;
}

.kb-btn--danger {
  background: #b44e3a;
  color: #ffffff;
  border-color: #b44e3a;
}
.kb-btn--danger:hover {
  background: rgb(149.1428571429, 64.6285714286, 48.0571428571);
  border-color: rgb(149.1428571429, 64.6285714286, 48.0571428571);
}

.kb-owner-hint {
  margin-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #687484;
}

.kb-prices {
  margin: 0 auto;
}
.kb-prices__now {
  padding: 24px;
  background: #e6efef;
  border-radius: 16px;
  margin-bottom: 24px;
}
.kb-prices__eyebrow {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2b5d6a;
  font-weight: 600;
  margin-bottom: 4px;
}
.kb-prices__heading {
  margin: 0 0 8px 0;
}
.kb-prices__text {
  color: #2d3947;
  margin: 0 0 16px 0;
}
.kb-prices__disclaimer {
  margin-top: 32px;
  padding: 18px 20px;
  background: #fff8ee;
  border: 1px solid #f0d9aa;
  border-radius: 10px;
  color: #7a4f15;
}

.kb-prices__principles {
  margin: 16px 0 0 0;
  padding-left: 20px;
  color: #2d3947;
}
.kb-prices__principles li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.kb-prices__cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.kb-match-show__title {
  margin: 0 0 12px 0;
}
.kb-match-show__lede {
  color: #2d3947;
  margin-bottom: 24px;
}

.kb-match-card {
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}
.kb-match-card__header {
  padding: 12px 20px;
  background: #e6efef;
  border-bottom: 1px solid #e5e8ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.kb-match-card__shadow-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #687484;
  border: 1px solid #e5e8ec;
  background: #ffffff;
  padding: 2px 10px;
  border-radius: 999px;
}
.kb-match-card__body {
  padding: 20px;
}
.kb-match-card__text {
  color: #2d3947;
  margin: 0;
}

.kb-match-anon {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 16px;
  margin: 0 0 16px 0;
}
.kb-match-anon dt {
  color: #687484;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.kb-match-anon dd {
  margin: 0;
  color: #151e2a;
}

.kb-match-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.kb-match-actions form {
  margin: 0;
}

.kb-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kb-badge--inline {
  display: inline-block;
  padding: 6px 12px;
  background: #e6efef;
  color: #2b5d6a;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.kb-contact-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 16px;
}
.kb-contact-card__org {
  margin: 0 0 12px 0;
  font-size: 1.05rem;
}

.kb-link {
  color: #2b5d6a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.kb-link:hover {
  color: rgb(28.2818791946, 61.1677852349, 69.7181208054);
}

.kb-matches {
  margin: 32px 0;
  text-align: left;
}
.kb-matches__title {
  margin: 0 0 4px 0;
  font-size: 1.4rem;
}
.kb-matches__intro {
  color: #687484;
  margin: 0 0 20px 0;
  font-size: 0.95rem;
}

.kb-match-score {
  font-weight: 700;
  color: #2b5d6a;
}

.kb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
}
.kb-gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e6efef;
}
.kb-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kb-gallery__item--hero {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

@media (max-width: 560px) {
  .kb-gallery {
    grid-template-columns: 1fr;
  }
  .kb-gallery__item--hero {
    grid-column: span 1;
  }
}
.kb-thanks {
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.kb-thanks__title {
  margin-bottom: 16px;
}
.kb-thanks__text {
  color: #2d3947;
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.kb-wizard__title {
  margin: 0 0 8px 0;
}

.kb-wizard__lede {
  color: #2d3947;
  margin: 0 0 24px 0;
}

.kb-wizard__nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e8ec;
}

.kb-resend-form {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.kb-resend-form__link {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #687484;
  text-decoration: underline;
  cursor: pointer;
}
.kb-resend-form__link:hover {
  color: #151e2a;
}

.kb-wizard-progress {
  margin-bottom: 32px;
}
.kb-wizard-progress__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.kb-wizard-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 10px;
  border: 1px solid #e5e8ec;
  background: #ffffff;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.kb-wizard-progress__step--current {
  border-color: #2b5d6a;
  background: #2b5d6a;
  color: #ffffff;
}
.kb-wizard-progress__step--done {
  border-color: #2b5d6a;
  background: #e6efef;
  color: #2b5d6a;
}
.kb-wizard-progress__step--upcoming {
  color: #687484;
}
.kb-wizard-progress__num {
  font-weight: 700;
  font-size: 0.95rem;
}
.kb-wizard-progress__num--ai {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18) inset, 0 1px 4px rgba(139, 92, 246, 0.3);
}
.kb-wizard-progress__num--ai::before {
  content: "✨";
  font-size: 0.85em;
}
.kb-wizard-progress__step--ai {
  border-color: rgba(139, 92, 246, 0.45);
}
.kb-wizard-progress__step--ai.kb-wizard-progress__step--upcoming {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
}
.kb-wizard-progress__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.kb-wizard-progress__counter {
  margin: 12px 0 0 0;
  color: #687484;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 720px) {
  .kb-wizard-progress__label {
    display: none;
  }
}
.kb-required, .kb-optional {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: middle;
  margin-bottom: 6px;
}

.kb-required {
  background: transparent;
  color: #2b5d6a;
  border: 0;
}

.kb-optional {
  background: transparent;
  color: #687484;
  border: 0;
  margin-bottom: 6px;
}

.kb-optional-block {
  margin: -6px 0 14px 0;
  color: #687484;
  font-size: 0.9rem;
  font-style: italic;
}

.kb-org-results {
  list-style: none;
  margin: 4px 0 16px 0;
  padding: 0;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  background: #ffffff;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 1px 2px rgba(21, 30, 42, 0.04);
}
.kb-org-results__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #e5e8ec;
  align-items: center;
}
.kb-org-results__row:last-child {
  border-bottom: none;
}
.kb-org-results__row:hover, .kb-org-results__row:focus {
  background: #e6efef;
  outline: none;
}
.kb-org-results__name {
  font-weight: 600;
  color: #151e2a;
}
.kb-org-results__num {
  color: #687484;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}
.kb-org-results__status {
  color: #b44e3a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kb-org-results__empty {
  padding: 14px;
  color: #687484;
  font-size: 0.9rem;
  text-align: center;
}

.kb-mapview {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: calc(100vh - 80px);
  width: 100%;
}
.kb-mapview--sidebar-collapsed {
  grid-template-columns: 0 1fr;
}

@media (max-width: 720px) {
  .kb-mapview {
    grid-template-columns: 1fr;
    height: calc(100vh - 64px);
  }
}
.kb-mapview__sidebar {
  background: #ffffff;
  border-right: 1px solid #e5e8ec;
  overflow-y: auto;
  padding: 20px;
  transition: padding 0.15s;
}
.kb-mapview--sidebar-collapsed .kb-mapview__sidebar {
  padding: 0;
  overflow: hidden;
  border-right: none;
}

@media (max-width: 720px) {
  .kb-mapview__sidebar {
    position: fixed;
    top: var(--kb-header-h, 64px);
    left: 0;
    right: 0;
    bottom: 0;
    max-height: none;
    z-index: 1000;
    border-right: none;
    border-bottom: 1px solid #e5e8ec;
    box-shadow: 0 1px 2px rgba(21, 30, 42, 0.04);
    padding-bottom: 80px;
  }
  .kb-mapview--sidebar-collapsed .kb-mapview__sidebar {
    display: none;
  }
}
.kb-mapview__close {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px 8px;
  margin-left: auto;
  cursor: pointer;
  color: #687484;
}
.kb-mapview__close:hover {
  color: #151e2a;
}

@media (max-width: 720px) {
  .kb-mapview__close {
    display: inline-flex;
  }
}
.kb-mapview__heading-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.kb-mapview__heading {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #151e2a;
}

.kb-mapview__map {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.kb-mapview__toggle {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 500;
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(21, 30, 42, 0.04);
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: #151e2a;
}
.kb-mapview__toggle:hover {
  background: #e6efef;
}

.kb-mapview__toggle-label--show {
  display: none;
}

.kb-mapview__toggle-label--hide {
  display: inline;
}

.kb-mapview--sidebar-collapsed .kb-mapview__toggle-label--show {
  display: inline;
}

.kb-mapview--sidebar-collapsed .kb-mapview__toggle-label--hide {
  display: none;
}

.kb-mapview__count {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 500;
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(21, 30, 42, 0.04);
  padding: 8px 12px;
  font-size: 0.85rem;
  color: #151e2a;
  font-variant-numeric: tabular-nums;
}

.kb-mapcard {
  width: 280px;
  font-family: inherit;
  overflow: hidden;
}
.kb-mapcard__photo {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
}
.kb-mapcard__body {
  padding: 12px 4px 4px;
}
.kb-mapcard__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #151e2a;
  text-decoration: none;
  display: block;
}
.kb-mapcard__title:hover {
  color: #2b5d6a;
}
.kb-mapcard__meta {
  color: #687484;
  font-size: 0.82rem;
  margin: 0 0 6px 0;
}
.kb-mapcard__summary {
  color: #151e2a;
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0 0 8px 0;
}
.kb-mapcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 8px 0;
}
.kb-mapcard__tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: #e6efef;
  color: #2b5d6a;
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
}
.kb-mapcard__price {
  font-weight: 600;
  color: #151e2a;
  font-size: 0.88rem;
}
.kb-mapcard__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 4px;
  border-top: 1px solid #e5e8ec;
  margin-top: 8px;
}
.kb-mapcard__nav-btn {
  background: none;
  border: 1px solid #e5e8ec;
  border-radius: 4px;
  padding: 2px 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #151e2a;
  line-height: 1.6;
}
.kb-mapcard__nav-btn:hover:not(:disabled) {
  border-color: #2b5d6a;
  color: #2b5d6a;
}
.kb-mapcard__nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.kb-mapcard__nav-counter {
  font-size: 0.8rem;
  color: #687484;
  font-weight: 600;
}

body.kb-page--map .kb-footer {
  display: none;
}

body.kb-page--map .kb-main {
  padding: 0;
}

body.kb-page--map .kb-header .kb-container {
  max-width: none;
  padding-left: 16px;
  padding-right: 16px;
}

.kb-map-marker {
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.kb-map-marker svg {
  display: block;
}
.kb-map-marker--multi {
  width: 38px;
  height: 52px;
}
.kb-map-marker__count {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
  white-space: nowrap;
}

.kb-nav__auth {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.kb-langmenu {
  position: relative;
  display: inline-flex;
}

.kb-langmenu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid #e5e8ec;
  border-radius: 6px;
  color: #2d3947;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.kb-langmenu__trigger:hover {
  background: rgba(43, 93, 106, 0.06);
  border-color: rgba(43, 93, 106, 0.3);
}

.kb-langmenu__chev {
  font-size: 10px;
  line-height: 1;
  opacity: 0.6;
}

.kb-langmenu__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 130px;
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(21, 30, 42, 0.06);
  z-index: 1000;
  overflow: hidden;
  padding: 4px;
}

.kb-langmenu__item {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  color: #2d3947;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.1s, color 0.1s;
}
.kb-langmenu__item:hover {
  background: rgba(43, 93, 106, 0.08);
  color: #2b5d6a;
  text-decoration: none;
}
.kb-langmenu__item.is-active {
  font-weight: 600;
  color: #2b5d6a;
  background: rgba(43, 93, 106, 0.06);
}

.kb-tenant-menu {
  position: relative;
  display: inline-flex;
}

.kb-tenant-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 220px;
}

.kb-tenant-menu__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kb-tenant-menu__chevron {
  font-size: 10px;
  line-height: 1;
  opacity: 0.7;
}

.kb-tenant-menu__panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  background: white;
  border: 1px solid #d6dde6;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 50;
  padding: 6px 0;
}

.kb-tenant-menu__toggle[aria-expanded=true] + .kb-tenant-menu__panel {
  display: block;
}

.kb-tenant-menu__section {
  padding: 4px 0;
}
.kb-tenant-menu__section + .kb-tenant-menu__section {
  border-top: 1px solid #f0f3f7;
}

.kb-tenant-menu__section-label {
  padding: 4px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #687484;
}

.kb-tenant-menu__item {
  display: block;
  width: 100%;
  padding: 8px 14px;
  font-size: 14px;
  color: #2b3a4a;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.kb-tenant-menu__item:hover {
  background: #f5f7fa;
  color: #2b5d6a;
}

.kb-tenant-menu__item--button {
  font: inherit;
}

.kb-tenant-menu__current {
  padding: 8px 14px;
  font-size: 14px;
  color: #2b3a4a;
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
}
.kb-tenant-menu__current span {
  color: #2b5d6a;
}

.kb-header__menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kb-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 36px;
  padding: 8px 6px;
  gap: 5px;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}

.kb-header__hamburger-bar {
  display: block;
  height: 2px;
  background: #151e2a;
  border-radius: 1px;
}

@media (max-width: 880px) {
  .kb-header .kb-container {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .kb-header__hamburger {
    display: inline-flex;
  }
  .kb-header__menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 0 4px;
    border-top: 1px solid #e5e8ec;
    margin-top: 4px;
  }
  .kb-header__hamburger[aria-expanded=true] + .kb-header__menu {
    display: flex;
  }
  .kb-header__menu .kb-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .kb-header__menu .kb-nav__link {
    padding: 8px 4px;
  }
  .kb-header__menu .kb-nav__auth {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
}
.kb-star-btn {
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px 10px;
  color: #687484;
}
.kb-star-btn--on {
  color: #2b5d6a;
}
.kb-star-btn:hover {
  color: #2b5d6a;
}

#kb-confirm-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#kb-confirm-modal[data-open] {
  display: flex;
}
#kb-confirm-modal .kb-confirm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}
#kb-confirm-modal .kb-confirm__card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  animation: kb-confirm-in 0.15s ease;
}
#kb-confirm-modal .kb-confirm__message {
  margin: 0 0 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #2d3947;
  line-height: 1.5;
}
#kb-confirm-modal .kb-confirm__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

@keyframes kb-confirm-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.kb-min-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.kb-min-top__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.kb-min-top__sub {
  color: #687484;
  margin: 0;
  font-size: 0.9rem;
}

.kb-min-stats {
  display: flex;
  gap: 2px;
  margin-bottom: 28px;
  background: #e5e8ec;
  border-radius: 10px;
  overflow: hidden;
}

.kb-min-stat {
  flex: 1;
  background: #ffffff;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kb-min-stat--alert .kb-min-stat__n {
  color: #2b5d6a;
}
.kb-min-stat__n {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: #151e2a;
  letter-spacing: -0.02em;
}
.kb-min-stat__l {
  font-size: 0.78rem;
  color: #687484;
  font-weight: 500;
}

@media (max-width: 600px) {
  .kb-min-stats {
    flex-wrap: wrap;
  }
  .kb-min-stat {
    flex: 1 1 45%;
  }
}
.kb-min-inbox {
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.kb-min-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 860px) {
  .kb-min-main {
    grid-template-columns: 1fr;
  }
}

.kb-min-primary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kb-min-secondary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kb-min-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .kb-min-bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .kb-min-bottom {
    grid-template-columns: 1fr;
  }
}

.kb-min-block {
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  overflow: hidden;
}
.kb-min-block--teal {
  border-color: #2b5d6a;
  border-width: 2px;
}
.kb-min-block--amber {
  border-color: #f59e0b;
  border-width: 2px;
}

.kb-min-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e8ec;
}
.kb-min-section-head__title {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #151e2a;
}

.kb-min-link {
  font-size: 0.82rem;
  color: #687484;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.kb-min-link:hover {
  color: #2b5d6a;
}

.kb-min-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  background: #e6efef;
  color: #2b5d6a;
}
.kb-min-count--teal {
  background: #2b5d6a;
  color: #fff;
}
.kb-min-count--blue {
  background: #dbeafe;
  color: #1d4ed8;
}
.kb-min-count--amber {
  background: #fef3c7;
  color: #92400e;
}

.kb-min-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.kb-min-badge--warm {
  background: #fef3c7;
  color: #92400e;
}

.kb-min-rows {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kb-min-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-bottom: 1px solid #e5e8ec;
  font-size: 0.88rem;
}
.kb-min-row:last-child {
  border-bottom: none;
}
.kb-min-row__link {
  font-weight: 600;
  color: #151e2a;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}
.kb-min-row__link:hover {
  color: #2b5d6a;
}
.kb-min-row__body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kb-min-row__primary {
  display: block;
  font-weight: 600;
  color: #151e2a;
}
.kb-min-row__sub {
  color: #687484;
  font-size: 0.82rem;
}
.kb-min-row__age {
  color: #687484;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.kb-min-pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.kb-min-pill--blue {
  background: #dbeafe;
  color: #1d4ed8;
}
.kb-min-pill--purple {
  background: #ede9fe;
  color: #6d28d9;
}

.kb-min-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 18px;
  border-bottom: 1px solid #e5e8ec;
  font-size: 0.88rem;
}
.kb-min-split:last-child {
  border-bottom: none;
}
.kb-min-split strong {
  color: #151e2a;
}

.kb-min-chart {
  padding: 16px 18px 12px;
}
.kb-min-chart__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.kb-min-chart__big {
  font-size: 2rem;
  font-weight: 800;
  color: #151e2a;
  line-height: 1;
  letter-spacing: -0.02em;
}
.kb-min-chart__desc {
  font-size: 0.82rem;
  color: #687484;
}
.kb-min-chart__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 0.72rem;
  color: #687484;
}

.kb-min-empty {
  padding: 14px 18px;
  color: #687484;
  font-size: 0.88rem;
  margin: 0;
}

.kb-min-explainer {
  padding: 8px 18px 0;
  color: #687484;
  font-size: 0.8rem;
  margin: 0;
}

.kb-min-actions {
  padding: 10px 18px;
  border-top: 1px solid #e5e8ec;
  background: #f9fafb;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.kb-sparkline-wrap {
  position: relative;
}

.kb-sparkline-bar {
  transition: opacity 0.1s;
}

.kb-sparkline-tip {
  position: absolute;
  transform: translate(-50%, -100%);
  background: #151e2a;
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
  font-size: 0.78rem;
  line-height: 1.4;
}
.kb-sparkline-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #151e2a;
}
.kb-sparkline-tip__date {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
}
.kb-sparkline-tip__count {
  display: block;
  font-weight: 700;
}

.kb-pagination {
  margin-top: 20px;
}
.kb-pagination__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.kb-pagination__item {
  display: flex;
}
.kb-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #e5e8ec;
  background: #ffffff;
  color: #151e2a;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.1s, background 0.1s;
}
.kb-pagination__link:hover {
  border-color: #2b5d6a;
  color: #2b5d6a;
  text-decoration: none;
}
.kb-pagination__link--current {
  background: #2b5d6a;
  border-color: #2b5d6a;
  color: #fff;
  cursor: default;
}
.kb-pagination__item--nav .kb-pagination__link {
  color: #687484;
  font-size: 1rem;
}
.kb-pagination__item--nav .kb-pagination__link:hover {
  color: #2b5d6a;
  border-color: #2b5d6a;
}
.kb-pagination__item--gap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  color: #687484;
  font-size: 0.875rem;
}
