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

:root {
  --krovo-blue: #0079c2;
  --krovo-blue-dark: #00629b;
  --krovo-blue-soft: #e8f4fc;
  --krovo-orange: #ff932c;
  --krovo-orange-soft: #fff0e3;
  --krovo-pink: #e32851;
  --krovo-pink-soft: #fde8ed;
  --ink: #1a1a1a;
  --ink-muted: #5c6570;
  --ink-subtle: #8a939c;
  --surface: #fff;
  --surface-page: #faf9f7;
  --line: #e2e6ea;
  --line-strong: #d0d8e0;
  --radius-sm: 0.1875rem;
  --radius-md: 0.25rem;
  --section-gap: clamp(2.25rem, 5vw, 3rem);
  --content-gap: 1rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --page-gutter: 1rem;
  --touch-min: 44px;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell,
    "Noto Sans", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface-page);
  -webkit-tap-highlight-color: rgb(0 121 194 / 0.12);
}

a {
  color: var(--krovo-blue);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--krovo-blue-dark);
}

a:focus-visible {
  outline: 2px solid var(--krovo-blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  color: #fff;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  width: min(70rem, 100% - 2rem);
  margin-inline: auto;
}

.wrap--narrow {
  width: min(42rem, 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgb(255 255 255 / 0.92);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand svg,
.brand__mark {
  flex-shrink: 0;
  display: block;
  border-radius: 6px;
}

.brand:focus-visible {
  outline: 2px solid var(--krovo-blue);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-shrink: 0;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 0.15s var(--ease-out), background-color 0.15s var(--ease-out);
}

.header-nav a:hover {
  color: var(--krovo-blue-dark);
  border-color: var(--line-strong);
  background: var(--surface-page);
  text-decoration: none;
}

.header-nav a:focus-visible {
  outline: 2px solid var(--krovo-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

.header-nav a[aria-current="page"] {
  color: var(--krovo-blue-dark);
  border-color: var(--krovo-blue);
  background: var(--krovo-blue-soft);
}

.lang-nav {
  flex-shrink: 0;
  position: relative;
}

.lang-nav__dropdown {
  position: relative;
}

.lang-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.65rem 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.lang-nav__toggle:hover {
  border-color: var(--line-strong);
}

.lang-nav__toggle[aria-expanded="true"] {
  border-color: var(--krovo-blue);
}

.lang-nav__toggle:focus-visible {
  outline: 2px solid var(--krovo-blue);
  outline-offset: 2px;
}

.lang-nav__chevron {
  flex-shrink: 0;
  color: #5c6570;
  transition: transform 0.15s ease;
}

.lang-nav__toggle[aria-expanded="true"] .lang-nav__chevron {
  transform: rotate(180deg);
}

.lang-flag {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 0.08);
}

.lang-nav__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 50;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.08);
}

.lang-nav__menu a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.4375rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.12s ease;
}

.lang-nav__menu a:hover {
  background: #f3f5f7;
}

.lang-nav__menu a[aria-current="page"] {
  background: var(--krovo-blue-soft);
  color: var(--krovo-blue-dark);
  font-weight: 600;
}

.lang-nav__menu a:focus-visible {
  outline: 2px solid var(--krovo-blue);
  outline-offset: -2px;
}

@media (max-width: 400px) {
  .lang-nav__current {
    max-width: 6.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

main {
  padding-block: 1.25rem 3.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: none;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.section-block {
  margin-top: var(--section-gap);
}

.section-block h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
  font-weight: 600;
  line-height: 1.25;
}

.section-block h2 + .section-lead {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

#primjer > h2,
#primjer > .section-lead {
  text-align: center;
  margin-inline: auto;
}

#primjer > .section-lead {
  max-width: 36rem;
}

.section-block h2 + .demo-note {
  margin-top: 0;
}

.section-block p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.card:has(> .how-steps) {
  padding: 0;
  overflow: hidden;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  list-style: none;
  margin: 0;
  counter-reset: how-step;
}

.how-steps__item {
  position: relative;
  padding: 1.375rem 1.5rem;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 0.75rem;
  row-gap: 0.35rem;
  align-items: start;
  counter-increment: how-step;
}

.how-steps__item h3::before {
  content: counter(how-step) ". ";
  font-weight: 500;
  color: var(--ink-subtle);
}

.how-steps__item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.how-steps__icon {
  grid-area: icon;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0.125rem 0 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-muted);
}

.how-steps__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.how-steps__item h3 {
  grid-area: title;
  font-size: 1rem;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.how-steps__item p {
  grid-area: text;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: none;
}

@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-steps__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .how-steps__item {
    padding: 1rem 1.25rem;
  }

  .how-steps__item p {
    font-size: 0.9rem;
  }
}

.hero-card {
  border: 1px solid var(--line);
  box-shadow: none;
  background: var(--surface);
}

.hero-card h1 {
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.hero-card .lead {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--ink-muted);
  margin: 0 0 1.75rem;
  max-width: 38rem;
  line-height: 1.55;
}

.search-mock {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: none;
  cursor: default;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), min-height 0.35s var(--ease-out);
}

@media (min-width: 641px) {
  .search-mock.is-searching {
    min-height: 7.85rem;
  }
}

.search-mock__field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: min(100%, 10rem);
  padding: 0.875rem 1rem;
  border: none;
  border-right: 1px solid var(--line);
  background: var(--surface);
  transition: background-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}

.search-mock.is-filling .search-mock__field.is-pending {
  opacity: 0.55;
}

.search-mock.is-filling .search-mock__field.is-pending .search-mock__label {
  color: var(--ink-subtle);
}

.search-mock__field.is-complete {
  background: rgb(0 121 194 / 0.04);
}

.search-mock__field.is-complete .search-mock__icon {
  color: var(--krovo-blue);
}

.search-mock__field.is-active .search-mock__label {
  color: var(--krovo-blue-dark);
}

.search-mock__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--ink-subtle);
}

.search-mock__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.search-mock__content {
  min-width: 0;
  flex: 1;
}

.search-mock__field:last-of-type {
  border-right: none;
}

.search-mock__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.search-mock__value {
  display: block;
  font-size: 0.9375rem;
  color: var(--ink-subtle);
  pointer-events: none;
  user-select: none;
  line-height: 1.35;
  min-height: 1.35em;
  transition: color 0.2s var(--ease-out);
}

.search-mock__value.is-typing,
.search-mock__value.is-filled {
  color: var(--ink);
}

.search-mock__field.is-active {
  background: var(--krovo-blue-soft);
  box-shadow: inset 0 0 0 1px rgb(0 121 194 / 0.22);
}

.search-mock__field.is-active .search-mock__icon {
  color: var(--krovo-blue);
}

.search-mock__field.is-active .search-mock__value.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--krovo-blue);
  animation: compareCaretBlink 1s step-end infinite;
}

.search-mock.is-searching {
  border-color: var(--krovo-blue);
  box-shadow: 0 0 0 3px rgb(0 121 194 / 0.1);
}

.search-mock.is-searching .search-mock__field,
.search-mock.is-searching .search-mock__cta {
  opacity: 0.35;
  filter: saturate(0.85);
}

.search-mock.is-searching .search-mock__cta .btn.is-busy {
  cursor: wait;
  opacity: 1;
  filter: none;
  animation: heroSearchBtnPulse 0.9s ease-in-out infinite;
}

.search-mock__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--line);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.search-mock__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--krovo-blue), #3aa8e0);
}

.search-mock__progress.is-running {
  opacity: 1;
}

.search-mock__progress.is-running span {
  animation: heroSearchProgress 1.85s var(--ease-out) forwards;
}

.search-mock__search-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgb(255 255 255 / 0.96);
  text-align: center;
  pointer-events: none;
}

.search-mock__search-overlay.is-visible {
  display: flex;
  pointer-events: auto;
  padding: 0.55rem 0.65rem;
  gap: 0.45rem;
  opacity: 1;
  z-index: 4;
  animation: heroOverlayIn 0.35s var(--ease-out) both;
}

.search-mock__search-overlay:not(.is-visible) {
  display: none !important;
}

.search-mock__overlay-status {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--krovo-blue-dark);
  line-height: 1.35;
}

.search-mock__overlay-portals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(100%, 19rem);
}

@media (min-width: 520px) {
  .search-mock__overlay-portals {
    grid-template-columns: repeat(4, auto);
    width: auto;
    max-width: 100%;
    justify-content: center;
  }
}

.search-mock__overlay-portals li {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-page);
  color: var(--ink-subtle);
  opacity: 0.55;
  transform: translateY(2px);
  white-space: nowrap;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.search-mock__overlay-portals li.is-scanned {
  opacity: 0.92;
  transform: translateY(0);
  border-color: var(--line-strong);
  color: var(--ink-muted);
  background: var(--surface);
}

.search-mock__overlay-portals li.is-highlight {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--krovo-blue);
  color: var(--krovo-blue-dark);
  background: var(--krovo-blue-soft);
  box-shadow: 0 0 0 2px rgb(0 121 194 / 0.1);
}

.search-mock__overlay-progress {
  width: min(14rem, 100%);
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  overflow: hidden;
}

.search-mock__overlay-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--krovo-blue), #3aa8e0);
  transition: width 0.35s var(--ease-out);
}

.search-mock__dots {
  display: inline-flex;
  gap: 0.05em;
  margin-left: 0.05em;
}

.search-mock__dots span {
  opacity: 0.25;
  animation: compareDotWave 1.1s ease-in-out infinite;
}

.search-mock__dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.search-mock__dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes heroSearchBtnPulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.08);
  }
}

@keyframes heroSearchProgress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes heroOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.search-mock__cta {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  background: var(--surface);
}

.search-mock__cta .btn {
  border-radius: 0;
  min-height: 100%;
  min-width: 7.5rem;
  padding-inline: 1.75rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.hero-card .waitlist-divider {
  margin-top: 2rem;
  padding-top: 1.75rem;
}

@media (min-width: 769px) {
  .hero-card {
    padding: 2.25rem 2rem 2rem;
    text-align: center;
  }

  .hero-card h1 {
    margin-inline: auto;
    max-width: 20em;
  }

  .hero-card .lead {
    margin-inline: auto;
  }

  .hero-card .search-mock {
    max-width: 56rem;
    margin-inline: auto;
  }

  .hero-card .source-row {
    max-width: 40rem;
    margin-inline: auto;
  }

  .hero-card .waitlist-divider {
    max-width: 32rem;
    margin-inline: auto;
  }
}

.source-row {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.source-row__label {
  font-size: 0.8125rem;
  color: #888;
  margin: 0 0 0.5rem;
}

.source-row__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.source-row__list li {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.waitlist-divider {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: 1.25rem;
}

.waitlist {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.waitlist fieldset {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.waitlist legend {
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 0;
  margin-bottom: 0.75rem;
}

.waitlist label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

.waitlist__label-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.waitlist input[type="email"] {
  width: 100%;
  max-width: 22rem;
  min-height: 48px;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.15s var(--ease-out);
}

.waitlist input[type="email"]:focus-visible {
  outline: 2px solid var(--krovo-blue);
  outline-offset: 1px;
  border-color: var(--krovo-blue);
}

.waitlist--hero .waitlist__inner {
  max-width: 36rem;
  margin-inline: auto;
}

.waitlist--hero legend {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.waitlist--hero .waitlist__row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: none;
}

.waitlist--hero .waitlist__row:focus-within {
  border-color: var(--krovo-blue);
}

.waitlist--hero .waitlist__row input[type="email"] {
  flex: 1;
  min-width: 0;
  max-width: none;
  border: none;
  border-radius: 0;
  min-height: 52px;
  padding: 0.75rem 1rem;
}

.waitlist--hero .waitlist__row input[type="email"]::placeholder {
  color: #9aa3ad;
}

.waitlist--hero .waitlist__row input[type="email"]:focus-visible {
  outline: none;
  border-color: transparent;
}

.waitlist--hero .waitlist__row .btn {
  border-radius: 0;
  padding-inline: 1.5rem;
  min-height: 52px;
}

.waitlist--hero .consent {
  margin: 0.875rem 0 0;
  max-width: none;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.waitlist--hero .consent input {
  accent-color: var(--krovo-blue);
}

.consent {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  margin: 1rem 0;
  max-width: 36rem;
  font-size: 0.9375rem;
}

.consent input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .waitlist--hero .waitlist__row {
    flex-direction: column;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 0.5rem;
  }

  .waitlist--hero .waitlist__row:focus-within {
    box-shadow: none;
  }

  .waitlist--hero .waitlist__row input[type="email"] {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
  }

  .waitlist--hero .waitlist__row input[type="email"]:focus-visible {
    outline: 2px solid var(--krovo-blue);
    outline-offset: 1px;
    border-color: var(--krovo-blue);
  }

  .waitlist--hero .waitlist__row .btn {
    width: 100%;
    border-radius: var(--radius-md);
  }
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--krovo-blue);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.btn:hover {
  background-color: var(--krovo-blue-dark);
  color: #fff;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

.btn--outline {
  background: #fff;
  color: var(--krovo-blue);
  border: 1px solid var(--krovo-blue);
}

.btn--outline:hover {
  background: var(--krovo-blue-soft);
  color: var(--krovo-blue-dark);
}

.section-lead {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 42rem;
}

.demo-note {
  margin: 0 0 1.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.45;
  border-left: 3px solid var(--line-strong);
  background: rgb(0 0 0 / 0.025);
  max-width: 42rem;
}

.compare-demo.card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.compare-demo .demo-note {
  margin-bottom: 1.25rem;
  max-width: none;
}

.compare-demo.is-animating:not(.phase-results) .compare-demo__animation {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(9rem, 24vw, 12rem);
  margin: 0.25rem 0 0.5rem;
  padding: 0.5rem 0 1rem;
}

.compare-demo__animation-inner {
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.compare-demo__mock-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.compare-demo.phase-searching .compare-demo__mock-search {
  border-color: var(--krovo-blue);
  box-shadow: 0 0 0 3px rgb(0 121 194 / 0.1);
}

.compare-demo__search-icon {
  flex-shrink: 0;
  color: var(--ink-subtle);
  transition: color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.compare-demo.phase-searching .compare-demo__search-icon {
  color: var(--krovo-blue);
  animation: compareSearchPulse 0.85s ease-in-out infinite;
}

.compare-demo__query {
  display: flex;
  align-items: center;
  min-width: 0;
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.35;
}

.compare-demo__query-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compare-demo__caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 1px;
  background: var(--krovo-blue);
  opacity: 0;
  vertical-align: text-bottom;
}

.compare-demo.phase-typing .compare-demo__caret,
.compare-demo__caret.is-blink {
  opacity: 1;
  animation: compareCaretBlink 1s step-end infinite;
}

.compare-demo__search-phase {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  animation: compareReveal 0.4s var(--ease-out) both;
}

.compare-demo__status {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.35;
}

.compare-demo.phase-searching .compare-demo__status {
  color: var(--krovo-blue-dark);
}

.compare-demo__dots {
  display: inline-flex;
  gap: 0.05em;
  margin-left: 0.1em;
}

.compare-demo__dots span {
  opacity: 0.25;
  animation: compareDotWave 1.1s ease-in-out infinite;
}

.compare-demo__dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.compare-demo__dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.compare-demo__scan-portals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.compare-demo__scan-portals li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-page);
  color: var(--ink-subtle);
  opacity: 0.45;
  transform: translateY(4px);
}

.compare-demo.phase-searching .compare-demo__scan-portals li {
  animation: comparePortalScan 0.65s var(--ease-out) forwards;
}

.compare-demo.phase-searching .compare-demo__scan-portals li:nth-child(1) {
  animation-delay: 0.15s;
}

.compare-demo.phase-searching .compare-demo__scan-portals li:nth-child(2) {
  animation-delay: 0.55s;
}

.compare-demo.phase-searching .compare-demo__scan-portals li:nth-child(3) {
  animation-delay: 0.95s;
}

.compare-demo__progress {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  overflow: hidden;
}

.compare-demo__progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--krovo-blue), #3aa8e0);
  transform-origin: left center;
}

.compare-demo.phase-searching .compare-demo__progress span {
  animation: compareProgress 1.75s var(--ease-out) forwards;
}

.compare-demo.is-animating:not(.phase-results) .compare-demo__listing {
  display: none;
}

.compare-demo.phase-results .compare-demo__listing {
  animation: compareReveal 0.5s var(--ease-out) both;
}

.compare-demo.phase-results .compare-demo__title {
  animation: compareReveal 0.45s var(--ease-out) 0.05s both;
}

.compare-demo.phase-results .compare-demo__sources {
  animation: compareReveal 0.45s var(--ease-out) 0.15s both;
}

.compare-demo.phase-results .compare-demo__unified {
  animation: compareReveal 0.55s var(--ease-out) 0.3s both;
}

@keyframes compareCaretBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes compareSearchPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes compareDotWave {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes comparePortalScan {
  0% {
    opacity: 0.35;
    transform: translateY(4px);
    border-color: var(--line);
    color: var(--ink-subtle);
    background: var(--surface-page);
  }

  45% {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--krovo-blue);
    color: var(--krovo-blue-dark);
    background: var(--krovo-blue-soft);
    box-shadow: 0 0 0 2px rgb(0 121 194 / 0.08);
  }

  100% {
    opacity: 0.7;
    transform: translateY(0);
    border-color: var(--line-strong);
    color: var(--ink-muted);
    background: var(--surface);
  }
}

@keyframes compareProgress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes compareReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.compare-demo__listing {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.compare-demo__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--line);
}

.compare-demo__sources {
  list-style: none;
  margin: 0;
  padding: 0.65rem 1rem 0.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.25rem;
  row-gap: 0;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-page);
}

.compare-demo__sources::before,
.compare-demo__sources::after {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-subtle);
  padding-bottom: 0.5rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.compare-demo__sources::before {
  content: "Portal";
  grid-column: 1;
}

.compare-demo__sources::after {
  content: "Cijena";
  grid-column: 2;
  text-align: right;
}

html:lang(en) .compare-demo__sources::before {
  content: "Source";
}

html:lang(en) .compare-demo__sources::after {
  content: "Price";
}

.compare-demo__sources li {
  display: contents;
  font-size: 0.9375rem;
}

.compare-demo__portal {
  grid-column: 1;
  padding: 0.65rem 0;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.compare-demo__price {
  grid-column: 2;
  padding: 0.65rem 0;
  text-align: right;
  min-width: 6.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.compare-demo__sources li:last-child .compare-demo__portal,
.compare-demo__sources li:last-child .compare-demo__price {
  border-bottom: none;
  padding-bottom: 0.35rem;
}

.compare-demo__unified {
  margin: 0;
  padding: 1.125rem 1.25rem;
  padding-left: calc(1.25rem - 3px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--krovo-blue);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.compare-demo__krovo-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.compare-demo__krovo-logo {
  flex-shrink: 0;
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 4px;
}

.compare-demo__krovo-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.compare-demo__unified-price {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.compare-demo__unified-meta {
  margin: 0.625rem 0 0;
  padding-top: 0.625rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  line-height: 1.4;
}

@media (min-width: 720px) {
  .compare-demo__listing {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 19rem);
    grid-template-rows: auto auto;
    column-gap: 2.5rem;
    align-items: stretch;
    gap: 1.25rem 2.5rem;
  }

  .compare-demo__title {
    grid-column: 1 / -1;
    margin-bottom: -0.25rem;
  }

  .compare-demo__sources {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  .compare-demo__unified {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .compare-demo__unified::before {
    content: "";
    position: absolute;
    left: -1.35rem;
    top: 50%;
    width: 0.65rem;
    height: 0.65rem;
    border-top: 2px solid var(--line-strong);
    border-right: 2px solid var(--line-strong);
    transform: translateY(-50%) rotate(45deg);
  }
}

@media (max-width: 719px) {
  .compare-demo__unified {
    margin-top: 0.25rem;
  }
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.listing-grid > li {
  display: flex;
  min-width: 0;
}

.listing-card {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto auto auto;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: none;
  overflow: hidden;
  transition: border-color 0.15s var(--ease-out);
}

.listing-card::before {
  content: "";
  grid-column: 1 / -1;
  display: block;
  aspect-ratio: 16 / 10;
  background-color: #e8e5e0;
  background-image: linear-gradient(
      160deg,
      rgb(255 255 255 / 0.35) 0%,
      transparent 55%
    ),
    repeating-linear-gradient(
      -12deg,
      rgb(0 0 0 / 0.02) 0,
      rgb(0 0 0 / 0.02) 1px,
      transparent 1px,
      transparent 9px
    );
  border-bottom: 1px solid var(--line);
}

.listing-card:hover {
  border-color: var(--line-strong);
}

.listing-card__badge {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.625rem 1rem 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--ink-subtle);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.listing-card__title {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.35rem 1rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.listing-card__meta {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.25rem 1rem 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.4;
  flex: 1;
}

.listing-card__price {
  grid-column: 1;
  align-self: end;
  margin: 0;
  padding: 0 0 1rem 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.listing-card__source {
  grid-column: 2;
  align-self: end;
  margin: 0;
  padding: 0 1rem 1rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-subtle);
  text-align: right;
  white-space: nowrap;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.5rem 2rem;
}

.city-grid__group h3 {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
}

.city-grid__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.city-grid__group a {
  display: inline-block;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.15rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s var(--ease-out), border-color 0.15s var(--ease-out);
}

.city-grid__group a:hover {
  color: var(--krovo-blue-dark);
  border-bottom-color: var(--krovo-blue);
  text-decoration: none;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-subtle);
  border-bottom: 1px solid var(--line);
}

.breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--krovo-blue-dark);
  text-decoration: underline;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.35rem;
  color: var(--line-strong);
  font-weight: 400;
}

.city-link-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-link-list a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-page);
  transition: border-color 0.15s var(--ease-out), color 0.15s var(--ease-out);
}

.city-link-list a:hover {
  color: var(--krovo-blue-dark);
  border-color: var(--line-strong);
  text-decoration: none;
}

.city-page__actions {
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
}

.city-page__actions a {
  font-weight: 600;
  text-decoration: none;
}

.city-page__actions a:hover {
  text-decoration: underline;
}

.waitlist--inline {
  margin-top: 0;
  padding-top: 0;
}

.card.prose .waitlist--inline {
  margin-top: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.section-block.card .waitlist--inline {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.waitlist--inline legend {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.waitlist--inline .waitlist__row {
  display: flex;
  align-items: stretch;
  max-width: 28rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.waitlist--inline .waitlist__row:focus-within {
  border-color: var(--krovo-blue);
}

.waitlist--inline .waitlist__row input[type="email"] {
  flex: 1;
  min-width: 0;
  max-width: none;
  border: none;
  border-radius: 0;
  min-height: 48px;
}

.waitlist--inline .waitlist__row input[type="email"]:focus-visible {
  outline: none;
}

.waitlist--inline .waitlist__row .btn {
  border-radius: 0;
  padding-inline: 1.25rem;
  flex-shrink: 0;
}

.waitlist--inline .consent {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.footer-cta .waitlist--inline {
  margin-top: 0;
}

.footer-cta .waitlist--inline legend {
  color: #fff;
  font-size: 1.0625rem;
  margin-bottom: 0.875rem;
}

.footer-cta .waitlist--inline .waitlist__row {
  max-width: none;
  border-color: #3d5566;
  background: #0f1418;
}

.footer-cta .waitlist--inline .waitlist__row input[type="email"] {
  background: transparent;
  color: #fff;
}

.footer-cta .waitlist--inline .waitlist__row input[type="email"]::placeholder {
  color: #6b7d8a;
}

.footer-cta .waitlist--inline .consent label {
  color: #a8b4bc;
}

.footer-cta .waitlist--inline .consent a {
  color: #6eb8e8;
}

@media (max-width: 520px) {
  .waitlist--inline .waitlist__row {
    flex-direction: column;
    border: none;
    background: transparent;
    gap: 0.5rem;
    max-width: none;
  }

  .waitlist--inline .waitlist__row input[type="email"] {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
  }

  .footer-cta .waitlist--inline .waitlist__row input[type="email"] {
    border-color: #3d5566;
    background: #0f1418;
  }

  .waitlist--inline .waitlist__row .btn {
    width: 100%;
    border-radius: var(--radius-md);
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-grid li {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 1.125rem 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.35rem;
  align-items: start;
  transition: background-color 0.15s var(--ease-out);
}

.feature-grid li:hover {
  background: rgb(0 0 0 / 0.02);
}

.feature-grid li:has(> .feature-grid__link):hover {
  background: transparent;
}

.feature-grid__link:hover {
  background: rgb(0 0 0 / 0.02);
}

.feature-grid li:nth-child(2n) {
  border-right: none;
}

.feature-grid li:nth-last-child(-n + 2) {
  border-bottom: none;
}

.feature-grid__icon {
  grid-column: 1;
  grid-row: 1 / -1;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0.125rem 0 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-muted);
}

.feature-grid__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-grid h3 {
  grid-column: 2;
  grid-row: 1;
}

.feature-grid p {
  grid-column: 2;
  grid-row: 2;
}

.feature-grid li:has(> .feature-grid__link) {
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 100%;
}

.feature-grid__link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.35rem;
  align-items: start;
  flex: 1;
  width: 100%;
  min-height: 100%;
  padding: 1.125rem 1.25rem;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.15s var(--ease-out);
}

.feature-grid__link:hover h3 {
  color: var(--krovo-blue);
}

.feature-grid__link .feature-grid__icon {
  grid-column: 1;
  grid-row: 1 / -1;
}

.feature-grid__link h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.feature-grid__link p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid li {
    border-right: none;
  }

  .feature-grid li:nth-child(2n) {
    border-right: none;
  }

  .feature-grid li:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .feature-grid li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-grid li:last-child {
    border-bottom: none;
  }
}

.feature-grid h3 {
  font-size: 1rem;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.feature-grid p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.faq-accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.125rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg);
  transition: transform 0.28s ease, border-color 0.2s ease;
  margin-top: -0.2rem;
}

.faq-item[open] {
  background: transparent;
  box-shadow: none;
  border-bottom-color: var(--line);
}

.faq-item[open] summary {
  color: var(--ink);
  background: transparent;
  padding-bottom: 0.375rem;
  transition: color 0.2s ease, padding 0.28s ease;
}

.faq-item summary {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
  border-color: var(--ink-muted);
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 1.125rem;
  transition: grid-template-rows 0.32s ease, padding 0.32s ease;
}

.faq-item[open] .faq-item__body {
  grid-template-rows: 1fr;
  padding: 0 1.125rem 1rem;
  background: transparent;
  border-top: none;
}

.faq-item__body-inner {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.28s ease, transform 0.32s ease;
}

.faq-item[open] .faq-item__body-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}

.faq-item summary:hover {
  background: rgb(0 0 0 / 0.02);
}

.faq-item[open] summary:hover {
  background: rgb(0 0 0 / 0.02);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--krovo-blue);
  outline-offset: -2px;
}

.faq-item__body-inner {
  color: #444;
  font-size: 0.9375rem;
}

.faq-item__body p {
  margin: 0;
}

.promo-banner {
  margin-top: var(--section-gap);
  padding: 1.25rem 1.5rem;
  padding-left: calc(1.5rem - 3px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--krovo-blue);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.promo-banner p {
  margin: 0;
  font-weight: 600;
  flex: 1 1 auto;
  min-width: 12rem;
}

.site-footer {
  background: #141414;
  color: #b8b8b8;
  padding: 3rem 0 1.75rem;
  font-size: 0.9375rem;
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}

.site-footer a[href^="tel:"] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.site-footer a {
  color: #e8e8e8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-about p,
.footer-about__tagline {
  margin: 0;
  line-height: 1.55;
  color: #9a9a9a;
  max-width: 22rem;
}

.footer-about__powered {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #8a8a8a;
}

.footer-sagaexpert-link {
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
  text-decoration: none;
  margin-inline: 0.4rem 0.35rem;
}

.site-footer .footer-sagaexpert-link:hover {
  text-decoration: none;
  opacity: 0.88;
}

.sagaexpert-logo {
  display: block;
  height: 1.75rem;
  width: auto;
}

.footer-col h2 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid h2 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid li a {
  color: #c8c8c8;
}

.footer-brand {
  margin-bottom: 0.875rem;
}

.footer-brand .brand {
  color: #fff;
}

.footer-cta {
  border: 1px solid #2d4a5c;
  border-radius: var(--radius-md);
  padding: 1.375rem 1.25rem;
  background: #1a2229;
}

.waitlist--footer fieldset {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.waitlist--footer legend {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 0;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.waitlist--footer .waitlist__row {
  display: flex;
  align-items: stretch;
  border: 1px solid #3d5566;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #0f1418;
}

.waitlist--footer .waitlist__row:focus-within {
  border-color: var(--krovo-blue);
  box-shadow: 0 0 0 2px rgb(0 121 194 / 0.25);
}

.waitlist--footer .waitlist__row input[type="email"] {
  flex: 1;
  min-width: 0;
  max-width: none;
  min-height: 48px;
  padding: 0.625rem 0.875rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.waitlist--footer .waitlist__row input[type="email"]::placeholder {
  color: #6b7d8a;
}

.waitlist--footer .waitlist__row input[type="email"]:focus-visible {
  outline: none;
}

.waitlist--footer .waitlist__row .btn {
  border-radius: 0;
  min-height: 48px;
  padding-inline: 1.25rem;
  white-space: nowrap;
}

.waitlist--footer .consent {
  margin: 0.75rem 0 0;
  max-width: none;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.waitlist--footer .consent label {
  color: #a8b4bc;
}

.waitlist--footer .consent a {
  color: #6eb8e8;
}

.waitlist--footer .consent input {
  accent-color: var(--krovo-blue);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #2a2a2a;
  color: #666;
  font-size: 0.8125rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: minmax(12rem, 1.4fr) auto auto minmax(17rem, 22rem);
    gap: 2rem 2.5rem;
    align-items: start;
  }

  .footer-cta {
    grid-column: 4;
    grid-row: 1 / span 2;
  }
}

@media (min-width: 769px) and (max-width: 959px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .waitlist--footer .waitlist__row {
    flex-direction: column;
    border: none;
    background: transparent;
    gap: 0.5rem;
  }

  .waitlist--footer .waitlist__row:focus-within {
    box-shadow: none;
  }

  .waitlist--footer .waitlist__row input[type="email"] {
    border: 1px solid #3d5566;
    border-radius: 0.5rem;
    background: #0f1418;
    min-height: var(--touch-min);
    width: 100%;
  }

  .waitlist--footer .waitlist__row input[type="email"]:focus-visible {
    outline: 2px solid var(--krovo-blue);
    outline-offset: 1px;
    border-color: var(--krovo-blue);
  }

  .waitlist--footer .waitlist__row .btn {
    width: 100%;
    min-height: var(--touch-min);
    border-radius: var(--radius-md);
  }

  .footer-cta .waitlist--inline .waitlist__row {
    flex-direction: column;
    border: none;
    background: transparent;
    gap: 0.5rem;
  }

  .footer-cta .waitlist--inline .waitlist__row .btn {
    width: 100%;
    border-radius: var(--radius-md);
  }
}

html:has(body.status-body) {
  min-height: 100dvh;
}

body.status-body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

body.status-body > .site-header {
  flex-shrink: 0;
}

body.status-body > main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 0;
}

body.status-body .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

.status-page {
  padding-block: clamp(1.75rem, 7vh, 3.5rem) 2.5rem;
}

.status-card {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2rem);
}

.status-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 0;
  background: transparent;
  color: var(--ink-muted);
}

.status-card__icon svg {
  width: 2rem;
  height: 2rem;
}

.status-card .page-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  letter-spacing: -0.02em;
}

.status-card__lead {
  margin: 0 auto 1.5rem;
  max-width: 26rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #555;
}

.status-card__actions {
  margin: 0;
}

.status-card__actions .btn {
  width: 100%;
  max-width: 17rem;
}

@media (min-width: 480px) {
  .status-card__actions .btn {
    width: auto;
    min-width: 12rem;
  }
}

.page-title {
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.prose {
  color: var(--ink-muted);
  line-height: 1.65;
}

.prose > p,
.prose > ul {
  max-width: 65ch;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose li::marker {
  color: var(--ink-subtle);
}

.prose h2 {
  font-size: 1.125rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--ink);
  font-weight: 600;
}

.prose h2:first-child {
  margin-top: 0;
}

.section-block.card {
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.section-block.card > h2 {
  margin-bottom: 1rem;
}

.section-block.card .faq-accordion {
  border: none;
  border-radius: 0;
  margin: 0 calc(-1 * clamp(0.25rem, 1vw, 0.5rem));
}

.status-page .card:not(.status-card) {
  text-align: center;
}

.status-page .card:not(.status-card) .page-title {
  margin-bottom: 0.75rem;
}

.status-page .card:not(.status-card) p {
  margin: 0 auto 1rem;
  max-width: 26rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.status-page .card:not(.status-card) .btn {
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .search-mock {
    flex-direction: column;
  }

  .search-mock__field {
    flex: none;
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0.625rem 0.875rem;
    align-items: center;
    gap: 0.5rem;
  }

  .search-mock__field:last-of-type {
    border-bottom: none;
  }

  .search-mock__icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.3125rem;
  }

  .search-mock__content {
    flex: none;
  }

  .search-mock__label {
    margin-bottom: 0.125rem;
  }

  .search-mock__value {
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .search-mock__cta {
    width: 100%;
    padding: 0.5rem;
    background: var(--surface-page);
    border-top: 1px solid var(--line);
  }

  .search-mock__cta .btn {
    width: 100%;
    min-height: var(--touch-min);
    border-radius: 0.375rem;
  }

}

@media (max-width: 768px) {
  .search-mock.is-searching {
    min-height: 10.75rem;
  }

  .search-mock.is-searching > .search-mock__field,
  .search-mock.is-searching > .search-mock__cta {
    display: none;
  }

  .search-mock__search-overlay.is-visible {
    justify-content: center;
    padding: 0.75rem 0.65rem 0.85rem;
    animation: none;
    opacity: 1;
    transform: translateZ(0);
  }

  .search-mock__overlay-status {
    font-size: 0.8125rem;
  }

  .search-mock__overlay-portals {
    width: 100%;
    max-width: none;
    gap: 0.35rem 0.35rem;
  }

  .search-mock__overlay-portals li {
    white-space: normal;
    font-size: 0.625rem;
    padding: 0.35rem 0.4rem;
    line-height: 1.2;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* --- Mobile UI/UX --- */
@media (max-width: 768px) {
  :root {
    --page-gutter: max(0.875rem, env(safe-area-inset-left, 0px));
  }

  .wrap,
  .wrap--narrow {
    width: min(70rem, calc(100% - 2 * var(--page-gutter)));
  }

  main {
    padding-block: 1rem 2.5rem;
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0);
  }

  .site-header .wrap {
    padding-block: 0.625rem;
  }

  .brand {
    font-size: 1.125rem;
    gap: 0.5rem;
    min-width: 0;
  }

  .brand .brand__mark {
    width: 28px;
    height: 28px;
  }

  .lang-nav__toggle {
    min-height: var(--touch-min);
    min-width: var(--touch-min);
  }

  .lang-nav__menu {
    min-width: min(11.5rem, calc(100vw - var(--page-gutter) * 2));
    max-height: min(16rem, calc(100dvh - 5rem));
    overflow-y: auto;
  }

  .card {
    padding: 1.125rem 1rem;
    border-radius: var(--radius-md);
  }

  .section-block {
    margin-top: 1.5rem;
  }

  .section-block h2 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }

  .hero-card {
    text-align: left;
    padding-top: 1.375rem;
  }

  .hero-card h1 {
    font-size: clamp(1.375rem, 6.5vw, 1.75rem);
    line-height: 1.22;
    max-width: none;
    margin-inline: 0;
  }

  .hero-card .lead {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
    margin-inline: 0;
    max-width: none;
  }

  .hero-card .search-mock {
    box-shadow: none;
  }

  .hero-card .waitlist-divider {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    max-width: none;
  }

  .source-row {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .source-row__list {
    gap: 0.5rem 0.875rem;
  }

  .source-row__list li {
    font-size: 0.875rem;
  }

  .waitlist--hero legend {
    font-size: 1.0625rem;
    line-height: 1.35;
    padding-inline: 0.25rem;
  }

  .consent {
    font-size: 0.875rem;
    gap: 0.75rem;
  }

  .consent input {
    width: 1.375rem;
    height: 1.375rem;
    min-width: 1.375rem;
    margin-top: 0.125rem;
  }

  .header-nav a {
    font-size: 0.875rem;
  }

  .feature-grid h3,
  .feature-grid__link h3 {
    font-size: 0.9375rem;
    line-height: 1.3;
  }

  .feature-grid p,
  .feature-grid__link p {
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .feature-grid li,
  .feature-grid__link {
    padding: 0.9375rem 1rem;
  }

  #sto-stize h2,
  #coming h2 {
    margin-bottom: 0.75rem;
  }

  .faq-item summary {
    min-height: var(--touch-min);
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.35;
  }

  .faq-item__body {
    padding-inline: 1rem;
  }

  .faq-item[open] .faq-item__body {
    padding-inline: 1rem;
  }

  .faq-item__body-inner {
    font-size: 0.9rem;
  }

  .promo-banner {
    margin-top: 1.25rem;
    padding: 1rem;
    padding-left: calc(1rem - 3px);
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0.75rem;
  }

  .promo-banner p {
    flex: none;
    min-width: 0;
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .promo-banner .btn {
    width: 100%;
    min-height: var(--touch-min);
    flex-shrink: 0;
  }

  .site-footer {
    padding: 2rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }

  body.status-body .site-footer {
    margin-top: auto;
  }

  .site-footer .wrap {
    width: min(70rem, 100% - var(--page-gutter) * 2);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "cta cta"
      "about about"
      "legal contact";
    column-gap: 1rem;
    row-gap: 1.5rem;
    align-items: start;
  }

  .footer-cta {
    grid-area: cta;
    margin: 0;
    padding: 1.25rem 1rem 1.125rem;
    border-color: #354656;
  }

  .footer-about {
    grid-area: about;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2a2a2a;
    text-align: center;
  }

  .footer-grid > .footer-col:nth-child(2) {
    grid-area: legal;
    text-align: center;
    min-width: 0;
  }

  .footer-grid > .footer-col:nth-child(3) {
    grid-area: contact;
    text-align: center;
    min-width: 0;
    padding-left: 1rem;
    border-left: 1px solid #2a2a2a;
  }

  .footer-col h2,
  .footer-grid h2 {
    margin: 0 0 0.625rem;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-align: center;
  }

  .footer-grid ul {
    margin: 0;
  }

  .footer-grid li {
    margin: 0;
  }

  .footer-grid li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    line-height: 1.35;
    color: #e0e0e0;
    text-align: center;
    word-break: break-word;
  }

  .footer-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
  }

  .footer-brand .brand {
    font-size: 1.125rem;
  }

  .footer-brand .brand__mark {
    width: 28px;
    height: 28px;
  }

  .footer-about__tagline {
    max-width: none;
    margin-inline: auto;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #a3a3a3;
  }

  .footer-about__powered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.875rem;
    max-width: none;
    font-size: 0.75rem;
    color: #7a7a7a;
  }

  .footer-sagaexpert-link {
    display: block;
    margin: 0;
    width: fit-content;
    line-height: 0;
  }

  .sagaexpert-logo {
    height: 1.625rem;
    width: auto;
  }

  .waitlist--footer legend {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    text-align: center;
  }

  .waitlist--footer .consent {
    margin-top: 0.75rem;
    align-items: flex-start;
    gap: 0.625rem;
  }

  .waitlist--footer .consent input {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    margin-top: 0.15rem;
  }

  .waitlist--footer .consent label {
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.75rem;
    color: #777;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.3125rem;
  }

  .prose {
    font-size: 1rem;
  }
}

@media (max-width: 479px) {
  .lang-nav__current {
    display: none;
  }

  .lang-nav__toggle {
    gap: 0.25rem;
    padding-inline: 0.5rem;
  }
}

/* --- Page-type polish (all locales) --- */

::selection {
  background: rgb(0 121 194 / 0.2);
  color: var(--ink);
}

main.wrap:not(:has(.hero-card)) {
  padding-top: 1.5rem;
}

.breadcrumb + .card,
.breadcrumb + .section-block {
  margin-top: 0;
}

main.wrap > .section-block.card + .section-block.card {
  margin-top: 1.25rem;
}

.card.prose > .page-title {
  padding-bottom: 0.875rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.prose.city-page > p {
  max-width: 65ch;
}

.prose.city-page > .demo-note {
  max-width: 65ch;
  margin-top: 0.5rem;
}

.prose.city-page > .listing-grid {
  max-width: none;
  margin: 1.75rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.prose > p:last-child {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  max-width: none;
}

.prose > p:last-child a {
  font-weight: 600;
  text-decoration: none;
}

.prose > p:last-child a:hover {
  text-decoration: underline;
}

.section-block > .demo-note:first-child,
.section-block > h2 + .demo-note {
  margin-bottom: 1.25rem;
}

#mock-pretraga > .demo-note {
  margin-bottom: 1rem;
}

.status-card {
  border: 1px solid var(--line);
}

.status-card--success .status-card__icon {
  color: #16884a;
}

.status-card__lead + .status-card__actions {
  margin-top: 0.25rem;
}

.faq-item__body > p {
  margin: 0;
  padding-bottom: 0.125rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.faq-item[open] .faq-item__body > p {
  padding-top: 0.125rem;
}

.consent label a {
  font-weight: 600;
}

.waitlist legend {
  line-height: 1.35;
}

@media (min-width: 769px) {
  .wrap--narrow {
    width: min(36rem, 100% - 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .lang-nav__toggle,
  .lang-nav__chevron,
  .faq-item summary::after {
    transition: none;
  }

  .btn:active {
    transform: none;
  }

  .faq-item__body,
  .faq-item__body-inner,
  .faq-item summary::after,
  .faq-item summary {
    transition: none;
  }

  .listing-card {
    transition: none;
  }

  .compare-demo.phase-results .compare-demo__listing,
  .compare-demo.phase-results .compare-demo__title,
  .compare-demo.phase-results .compare-demo__sources,
  .compare-demo.phase-results .compare-demo__unified {
    animation: none;
  }

  .compare-demo__caret.is-blink {
    animation: none;
    opacity: 1;
  }

  .compare-demo.phase-searching .compare-demo__search-icon,
  .compare-demo__dots span,
  .compare-demo.phase-searching .compare-demo__scan-portals li,
  .compare-demo.phase-searching .compare-demo__progress span {
    animation: none;
  }

  .compare-demo.phase-searching .compare-demo__scan-portals li {
    opacity: 1;
    transform: none;
  }

  .compare-demo.phase-searching .compare-demo__progress span {
    width: 100%;
  }

  .search-mock.is-searching .search-mock__cta .btn.is-busy {
    animation: none;
  }

  .search-mock__field.is-active .search-mock__value.is-typing::after {
    animation: none;
  }

  .search-mock__progress.is-running span {
    animation: none;
    width: 100%;
  }

  .search-mock__search-overlay.is-visible {
    animation: none;
    opacity: 1;
  }

  .search-mock__dots span {
    animation: none;
    opacity: 1;
  }
}
