*,
*::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;
  --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: #1a1a1a;
  background: #eef1f4;
  -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 {
  background-color: #fff;
  border-bottom: 1px solid #e2e6ea;
  background-image: linear-gradient(
    90deg,
    #e32851,
    #ff932c,
    var(--krovo-blue)
  );
  background-size: 100% 3px;
  background-position: bottom;
  background-repeat: no-repeat;
}

.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;
}

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

.header-nav a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--krovo-blue);
  text-decoration: none;
  white-space: nowrap;
}

.header-nav a:hover {
  text-decoration: underline;
}

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

.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 #e2e6ea;
  border-radius: 0.625rem;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lang-nav__toggle:hover {
  border-color: #cfd5dc;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.06);
}

.lang-nav__toggle[aria-expanded="true"] {
  border-color: var(--krovo-blue);
  box-shadow: 0 0 0 2px var(--krovo-blue-soft);
}

.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 #e2e6ea;
  border-radius: 0.625rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
}

.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.5rem 3rem;
}

.card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgb(0 0 0 / 0.06);
  padding: clamp(1.25rem, 3vw, 2rem);
}

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

.section-block h2 {
  font-size: 1.375rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-block p {
  margin: 0 0 1rem;
  color: #333;
}

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

.how-steps__item {
  position: relative;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.how-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.75rem;
  right: 0;
  width: 1px;
  height: calc(100% - 3rem);
  min-height: 4rem;
  background: linear-gradient(180deg, #e2e6ea, transparent);
}

.how-steps__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.875rem;
  border-radius: 50%;
  background: var(--krovo-blue-soft);
  color: var(--krovo-blue);
}

.how-steps__item:nth-child(2) .how-steps__icon {
  background: var(--krovo-orange-soft);
  color: var(--krovo-orange);
}

.how-steps__item:nth-child(3) .how-steps__icon {
  background: var(--krovo-pink-soft);
  color: var(--krovo-pink);
}

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

.how-steps__item h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.how-steps__item p {
  margin: 0;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.5;
  max-width: 18rem;
  margin-inline: auto;
}

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

  .how-steps__item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    height: 1px;
    min-height: 0;
    background: #e8eef3;
  }

  .how-steps__item {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    column-gap: 0.875rem;
    row-gap: 0.35rem;
    align-items: start;
    padding: 1.125rem 0.75rem;
  }

  .how-steps__icon {
    grid-area: icon;
    margin-bottom: 0;
    width: 2.75rem;
    height: 2.75rem;
  }

  .how-steps__item h3 {
    grid-area: title;
    align-self: center;
    margin: 0;
  }

  .how-steps__item p {
    grid-area: text;
    max-width: none;
    margin-inline: 0;
    font-size: 0.9rem;
  }
}

.hero-card {
  border: 1px solid #e2e8ee;
  box-shadow: 0 4px 28px rgb(0 0 0 / 0.07);
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
}

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

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

.search-mock {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border: 1px solid #d0d8e0;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgb(0 121 194 / 0.08);
}

.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 #e8ebef;
}

.search-mock__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  background: var(--krovo-blue-soft);
  color: var(--krovo-blue);
}

.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: #8a939c;
  pointer-events: none;
  user-select: none;
  line-height: 1.35;
}

.search-mock__cta {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
}

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

.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 #eef1f4;
  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.9375rem;
  font-weight: 600;
  color: #9aa3ad;
  letter-spacing: -0.01em;
}

.waitlist-divider {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid #eef1f4;
  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 #ccc;
  border-radius: 0.375rem;
  background: #fff;
}

.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 #d8dde3;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgb(0 0 0 / 0.04);
}

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

.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: #555;
  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 #d8dde3;
    border-radius: 0.5rem;
  }

  .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: 0.5rem;
  }
}

.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: 0.375rem;
  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.25rem 0 1rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.55;
}

.demo-note {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #666;
}

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

.compare-demo__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
}

.compare-demo__sources {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compare-demo__sources li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0.875rem;
  background: #f7f9fb;
  border: 1px solid #e8eef3;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
}

.compare-demo__portal {
  font-weight: 600;
  color: #333;
}

.compare-demo__unified {
  padding: 1rem 1.125rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, var(--krovo-blue-soft) 0%, #fff 100%);
  border: 1px solid #c5e0f0;
}

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

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

.compare-demo__krovo-label {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.compare-demo__unified-price {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.compare-demo__unified-meta {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #555;
}

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

.listing-card {
  padding: 1rem 1.125rem;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 0.625rem;
  box-shadow: 0 1px 4px rgb(0 0 0 / 0.04);
}

.listing-card__badge {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  color: #777;
}

.listing-card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.listing-card__meta {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: #555;
}

.listing-card__price {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--krovo-blue-dark);
}

.listing-card__source {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #666;
}

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

.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 {
  font-weight: 600;
  color: var(--krovo-blue);
  text-decoration: none;
}

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

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.875rem;
  color: #666;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: #aaa;
}

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

.city-link-list a {
  font-weight: 600;
  color: var(--krovo-blue);
}

.city-page__actions {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
}

.waitlist--inline {
  margin-top: 0.5rem;
}

.feature-grid__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

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

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

.feature-grid li {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgb(0 0 0 / 0.06);
  padding: 1.25rem;
}

.feature-grid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  background: var(--krovo-blue-soft);
  color: var(--krovo-blue);
}


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

.feature-grid h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.feature-grid p {
  margin: 0;
  font-size: 0.9375rem;
  color: #555;
}

.faq-accordion {
  border: 1px solid #e2e6ea;
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e2e6ea;
}

.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: var(--krovo-blue-soft);
  box-shadow: inset 3px 0 0 var(--krovo-blue);
  border-bottom-color: transparent;
}

.faq-item[open] summary {
  color: var(--krovo-blue-dark);
  background: var(--krovo-blue-soft);
  padding-bottom: 0.375rem;
  transition: background-color 0.2s ease, 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(--krovo-blue);
}

.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: var(--krovo-blue-soft);
  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: #f7f9fb;
}

.faq-item[open] summary:hover {
  background: var(--krovo-blue-soft);
}

.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: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--krovo-blue-soft);
  border: 1px solid #d4e8f5;
  border-radius: 0.75rem;
  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: 1rem;
}

.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: 0.75rem;
  padding: 1.375rem 1.25rem;
  background-image: linear-gradient(
      90deg,
      #e32851,
      #ff932c,
      var(--krovo-blue)
    ),
    linear-gradient(145deg, #1e2a33 0%, #1a2229 100%);
  background-size: 100% 3px, auto;
  background-position: top, center;
  background-repeat: no-repeat;
}

.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: 0.5rem;
  }
}

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: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.125rem;
  border-radius: 50%;
  background: #e8f7ee;
  color: #1a8f4a;
}

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

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

.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: 1.5rem;
  margin: 0 0 1rem;
}

.prose h2 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.5rem;
}

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

@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 #e8ebef;
    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: #f7f9fb;
    border-top: 1px solid #e8ebef;
  }

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

/* --- 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: 0.625rem;
  }

  .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: 0 2px 12px rgb(0 0 0 / 0.06);
  }

  .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 {
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border-radius: 0.625rem;
    box-shadow: 0 2px 12px rgb(0 0 0 / 0.06);
    overflow: hidden;
  }

  .feature-grid li {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.875rem;
    row-gap: 0.25rem;
    align-items: start;
    padding: 0.9375rem 1rem;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid #e8ebef;
  }

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

  .feature-grid__icon {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: start;
    margin-bottom: 0;
    margin-top: 0.0625rem;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
  }

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

  .feature-grid h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.3;
  }

  .feature-grid p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #5a5a5a;
  }

  .feature-grid li:has(> .feature-grid__link) {
    display: block;
    padding: 0;
  }

  .feature-grid__link {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.875rem;
    row-gap: 0.25rem;
    align-items: start;
    padding: 0.9375rem 1rem;
  }

  .feature-grid__link .feature-grid__icon {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: start;
    margin-bottom: 0;
    margin-top: 0.0625rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .feature-grid__link h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.3;
  }

  .feature-grid__link p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #5a5a5a;
    margin: 0;
  }

  #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;
    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;
  }
}

@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;
  }
}
