/* Onboarding anfitrión — efecto WOW estilo Airbnb */

.ho-page-body .site-header,
.ho-page-body .site-footer,
.ho-page-body .chat-dock {
  display: none;
}

.ho-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(62, 163, 93, 0.18), transparent 55%),
    linear-gradient(180deg, #f8faf9 0%, #fff 45%, #f4f9f6 100%);
}

.ho-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.ho-topbar__progress {
  height: 6px;
  border-radius: 9999px;
  background: #e5e7eb;
  overflow: hidden;
}

.ho-topbar__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ho-topbar__step {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  white-space: nowrap;
}

.ho-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 3rem;
}

.ho-main__inner {
  width: 100%;
  max-width: 720px;
}

.ho-main__inner--wide {
  max-width: 960px;
}

.ho-page--spaces .ho-main {
  align-items: flex-start;
  padding: 1rem 1.25rem 1.25rem;
}

.ho-page--spaces .ho-title {
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.ho-page--spaces .ho-main__inner--wide {
  max-width: 920px;
}

.ho-page--pricing .ho-main {
  align-items: flex-start;
  padding: 1rem 1.25rem 1.25rem;
}

.ho-page--pricing .ho-title {
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.ho-animate-in {
  animation: ho-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ho-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.ho-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.ho-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111;
}

.ho-lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #374151;
}

.ho-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.ho-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: #374151;
}

.ho-checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.ho-welcome__visual {
  position: relative;
  height: 180px;
  margin-bottom: 1.75rem;
}

.ho-welcome--simple .ho-lead {
  margin-top: 0;
}

.ho-pick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .ho-pick-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
}

.ho-pick {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 112px;
  padding: 1.15rem 0.75rem;
  border: 1.5px solid #eceef0;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  color: #1f2937;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease;
}

.ho-pick__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: #f9fafb;
  color: #6b7280;
  transition: color 0.2s, background 0.2s, transform 0.25s ease;
}

.ho-pick__svg {
  width: 1.75rem;
  height: 1.75rem;
}

.ho-pick__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
}

.ho-pick:hover {
  border-color: #d1d5db;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  transform: translateY(-2px);
}

.ho-pick:hover .ho-pick__icon {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.ho-pick.is-selected {
  border-color: var(--brand);
  background: #fff;
  box-shadow:
    0 0 0 1px var(--brand),
    0 10px 28px rgba(62, 163, 93, 0.12);
  transform: translateY(-2px);
}

.ho-pick.is-selected .ho-pick__icon {
  color: var(--brand-dark);
  background: var(--brand-soft);
  transform: scale(1.05);
}

.ho-pick.is-selected .ho-pick__label {
  color: var(--brand-dark);
}

.ho-pick.is-selected::after {
  content: "";
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.ho-hint--above {
  margin: -0.75rem 0 1.25rem;
}

.ho-location-card {
  padding: 1.25rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.ho-location-card__badge {
  margin: 0 0 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  background: var(--brand-soft);
  font-size: 0.8125rem;
  color: var(--brand-dark);
}

.ho-space-stack {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 860px) {
  .ho-space-stack {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 0.75rem;
  }

  .ho-space-block--area {
    grid-column: 1 / -1;
  }
}

.ho-space-block {
  padding: 0.85rem 1rem 0.8rem;
  border: 1px solid #eceef0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  animation: ho-space-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--block-i, 0) * 0.05s);
}

.ho-space-block--soft {
  background: linear-gradient(180deg, #fff 0%, #f9fbf9 100%);
}

@keyframes ho-space-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.ho-space-block__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.ho-space-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  flex-shrink: 0;
}

.ho-space-block__svg {
  width: 1.15rem;
  height: 1.15rem;
}

.ho-space-block__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.ho-space-block__hint {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
}

.ho-space-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ho-space-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 9999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  color: #374151;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s,
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s;
}

.ho-space-pill-btn--wide {
  padding: 0 0.85rem;
}

.ho-space-pill-btn:hover {
  border-color: #c5dcc9;
  transform: translateY(-1px);
}

.ho-space-pill-btn.is-active {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  box-shadow: 0 6px 16px rgba(62, 163, 93, 0.22);
}

.ho-space-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.ho-space-custom__input {
  width: 5.5rem;
  padding: 0.45rem 0.65rem;
  border: 1.5px solid var(--brand);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  background: #fff;
}

.ho-space-custom__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(62, 163, 93, 0.15);
}

.ho-space-custom__hint {
  font-size: 0.75rem;
  color: #6b7280;
}

.ho-space-pills--area .ho-space-pill-btn {
  min-width: 2.35rem;
  height: 2.35rem;
  font-size: 0.8125rem;
}

.ho-space-block .ho-error {
  margin: 0.5rem 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .ho-space-block {
    animation: none;
  }

  .ho-space-pill-btn {
    transition: none;
  }
}

.ho-amenity-search {
  margin-bottom: 1rem;
}

.ho-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: #fff;
}

.ho-input--sm {
  width: auto;
  min-width: 4.5rem;
  padding: 0.5rem 0.65rem;
}

.ho-amenity-more {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
}

.ho-amenity-more summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
}

.ho-amenity.is-hidden {
  display: none;
}

.ho-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.25rem 0 0.5rem;
  cursor: pointer;
}

.ho-toggle__label {
  font-weight: 600;
  font-size: 0.9375rem;
}

.ho-price-stack {
  display: grid;
  gap: 0.75rem;
}

.ho-price-hero {
  padding: 1.25rem 1.15rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #fff 0%, #f4fbf6 100%);
  border: 1.5px solid rgba(62, 163, 93, 0.22);
  box-shadow: 0 8px 28px rgba(62, 163, 93, 0.1);
  text-align: center;
}

.ho-price-hero__label {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.ho-price-hero__input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  max-width: 100%;
}

.ho-price-hero__currency {
  font-size: 2rem;
  font-weight: 800;
  color: #9ca3af;
}

.ho-price-hero__input input {
  width: 7rem;
  padding: 0.15rem 0.25rem;
  border: none;
  background: transparent;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  font-family: inherit;
  text-align: center;
  color: #111827;
  letter-spacing: -0.03em;
}

.ho-price-hero__input input:focus {
  outline: none;
}

.ho-price-hero__hint {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #374151;
}

.ho-price-hero__explain {
  margin: 0.45rem auto 0;
  max-width: 28rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #6b7280;
}

.ho-price-info {
  margin-top: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #f4f9f6;
  border: 1px solid rgba(62, 163, 93, 0.15);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #374151;
}

.ho-price-info p {
  margin: 0 0 0.45rem;
}

.ho-price-info p:last-child {
  margin-bottom: 0;
}

.ho-price-info__tip {
  color: var(--brand-dark);
}

.ho-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.ho-price-card {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eceef0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.ho-price-card__label {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #374151;
}

.ho-price-card__input {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ho-price-card__input span {
  font-size: 1rem;
  font-weight: 700;
  color: #9ca3af;
}

.ho-price-card__input input {
  width: 100%;
  padding: 0.35rem 0.25rem;
  border: none;
  border-bottom: 2px solid #e5e7eb;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: inherit;
  color: #111827;
}

.ho-price-card__input input:focus {
  outline: none;
  border-bottom-color: var(--brand);
}

.ho-price-card__hint {
  margin: 0.35rem 0 0;
  font-size: 0.6875rem;
  color: #9ca3af;
}

.ho-price-block {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eceef0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.ho-price-block__head {
  margin-bottom: 0.65rem;
}

.ho-price-block__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #111827;
}

.ho-price-block__hint {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
}

.ho-price-block--flex {
  padding: 0;
  overflow: hidden;
}

.ho-price-flex__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: none;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.ho-price-flex__toggle-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ho-price-flex__toggle-text strong {
  font-size: 0.9375rem;
  color: #111827;
}

.ho-price-flex__toggle-text small {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.35;
}

.ho-price-flex__switch {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #e5e7eb;
  flex-shrink: 0;
  transition: background 0.2s;
}

.ho-price-flex__switch::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.ho-price-block--flex.is-open .ho-price-flex__switch {
  background: var(--brand);
}

.ho-price-block--flex.is-open .ho-price-flex__switch::after {
  transform: translateX(1.25rem);
}

.ho-price-flex__panel {
  padding: 0 1rem 1rem;
  border-top: 1px solid #f1f3f5;
}

.ho-price-tier-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.ho-price-tier {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.5rem 0.65rem;
  padding: 0.75rem;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #eceef0;
}

@media (max-width: 640px) {
  .ho-price-tier {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .ho-price-tier__price {
    grid-column: 1 / -1;
  }
}

.ho-price-tier__beds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.ho-price-tier__label,
.ho-price-tier__suffix {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
}

.ho-space-pills--tier .ho-space-pill-btn {
  min-width: 2rem;
  height: 2rem;
  font-size: 0.8125rem;
}

.ho-price-tier__price {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
}

.ho-price-tier__price input {
  width: 4.5rem;
  padding: 0.4rem 0.45rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  background: #fff;
}

.ho-price-tier__price input:focus {
  outline: none;
  border-color: var(--brand);
}

.ho-price-tier__remove {
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  border-radius: 9999px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
}

.ho-price-tier-add {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.65rem;
  border: 1.5px dashed #d1d5db;
  border-radius: 12px;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--brand-dark);
  cursor: pointer;
}

.ho-price-tier-add:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.ho-price-footnote {
  margin: 0;
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
}

.ho-price-callout {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef8f1 0%, #f7fcf9 100%);
  border: 1px solid #cfe8d7;
}

.ho-price-callout__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: #1a5c32;
  font-size: 0.95rem;
}

.ho-price-callout__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4b5563;
}

.hw-video-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.hw-video-block__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.hw-video-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.hw-video-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.hw-video-preview {
  width: 100%;
  display: block;
  max-height: 280px;
  background: #111;
}

.hw-upload-zone--video {
  margin-top: 0.75rem;
}

.ho-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.ho-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 20px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.ho-dropzone.is-dragover {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.ho-dropzone__inner {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.ho-dropzone__icon {
  font-size: 2.5rem;
}

.ho-dropzone__title {
  margin: 0.75rem 0 0.25rem;
  font-weight: 700;
  font-size: 1.0625rem;
}

.ho-dropzone__hint {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.ho-dropzone__link {
  border: none;
  background: none;
  color: var(--brand-dark);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  font-size: inherit;
}

.ho-photo-manager {
  display: grid;
  gap: 1rem;
}

.ho-photo-manager--has-photos .ho-dropzone {
  padding: 0.85rem 1rem;
}

.ho-photo-manager--has-photos .ho-dropzone__icon,
.ho-photo-manager--has-photos .ho-dropzone__title {
  display: none;
}

.ho-photo-manager--has-photos .ho-dropzone__hint {
  margin: 0;
  font-size: 0.82rem;
}

.ho-photo-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.ho-btn-add-photos {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(62, 163, 93, 0.35);
  border-radius: 999px;
  background: #fff;
  color: #2d7a45;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ho-btn-add-photos:hover {
  background: #f3faf5;
  border-color: #3ea35d;
}

.ho-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.ho-photo-thumb.is-removed {
  display: none;
}

.ho-photo-thumb {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: grab;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.ho-photo-thumb.is-dragging {
  opacity: 0.55;
  cursor: grabbing;
}

.ho-photo-thumb.is-drag-over {
  box-shadow: 0 0 0 2px var(--brand, #3ea35d);
  transform: scale(1.02);
}

.ho-photo-thumb__badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(62, 163, 93, 0.92);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  pointer-events: none;
}

.ho-photo-thumb__x {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 2;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.ho-photo-thumb__x:hover {
  background: #c13515;
  transform: scale(1.05);
}

.ho-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ho-photo-thumb__delete {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: center;
  padding: 0.35rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  font-size: 0.75rem;
  color: #fff;
  cursor: pointer;
}

.ho-photo-thumb__delete input {
  margin-right: 0.25rem;
}

.ho-welcome__card {
  position: absolute;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.ho-welcome__card--1 {
  inset: 0 28% 20% 0;
  background-image: linear-gradient(135deg, #2d7a45, #3ea35d);
  transform: rotate(-4deg);
}

.ho-welcome__card--2 {
  inset: 12% 8% 8% 35%;
  background-image: linear-gradient(135deg, #1e5631, #2d7a45);
  transform: rotate(3deg);
}

.ho-welcome__card--3 {
  width: 88px;
  height: 88px;
  right: 0;
  bottom: 0;
  border-radius: 9999px;
  background: #fff;
  border: 4px solid var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.ho-welcome__card--3::after {
  content: '🏡';
}

.ho-form--hidden {
  display: none;
}

.ho-field,
.ho-field-row .ho-field {
  margin-bottom: 1.15rem;
}

.ho-field label,
.ho-field-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111;
}

.ho-form .hw-input,
.ho-form .hw-select,
.ho-form .hw-number,
.ho-form .hw-textarea,
.ho-form select,
.ho-form input[type="text"],
.ho-form input[type="email"],
.ho-form input[type="number"],
.ho-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.ho-form textarea {
  min-height: 140px;
  resize: vertical;
}

.ho-form select:focus,
.ho-form input:focus,
.ho-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(62, 163, 93, 0.15);
}

.ho-hint {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.45;
}

.ho-error,
.ho-error-block {
  color: #b91c1c;
  font-size: 0.875rem;
}

.ho-error-block {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #fef2f2;
  margin-bottom: 1rem;
}

.ho-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.85rem;
}

.ho-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .ho-type-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .ho-type-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.ho-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-height: 148px;
  padding: 1.15rem 0.85rem 1rem;
  border: 2px solid #e8ece9;
  border-radius: 18px;
  background: linear-gradient(165deg, #fff 0%, #f6faf7 100%);
  cursor: pointer;
  text-align: center;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.22s, box-shadow 0.22s;
  overflow: hidden;
}

.ho-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(62, 163, 93, 0.14), transparent 68%);
  transition: opacity 0.22s;
  pointer-events: none;
}

.ho-type-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ho-type-card__check {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  background: var(--brand);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}

.ho-type-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  font-size: 1.5rem;
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px rgba(62, 163, 93, 0.12);
}

.ho-type-card__label {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}

.ho-type-card__desc {
  font-size: 0.75rem;
  line-height: 1.35;
  color: #6b7280;
  max-width: 11rem;
}

.ho-type-card:hover {
  transform: translateY(-4px);
  border-color: #c5dcc9;
  box-shadow: 0 14px 32px rgba(62, 163, 93, 0.12);
}

.ho-type-card:has(input:checked) {
  border-color: var(--brand);
  box-shadow: 0 16px 36px rgba(62, 163, 93, 0.18);
  transform: translateY(-4px);
}

.ho-type-card:has(input:checked)::before {
  opacity: 1;
}

.ho-type-card:has(input:checked) .ho-type-card__check {
  opacity: 1;
  transform: scale(1);
}

.ho-type-card:has(input:checked) .ho-type-card__icon {
  background: #fff;
  box-shadow: 0 6px 16px rgba(62, 163, 93, 0.18);
}

.ho-type-card--apartment .ho-type-card__icon { background: #e8f4ec; }
.ho-type-card--house .ho-type-card__icon { background: #eef6ff; }
.ho-type-card--villa .ho-type-card__icon { background: #fff4e8; }
.ho-type-card--studio .ho-type-card__icon { background: #f3efff; }
.ho-type-card--cabin .ho-type-card__icon { background: #edf5ee; }

.ho-card-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ho-card-grid--2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ho-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.15rem 0.85rem;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ho-choice--tall {
  align-items: flex-start;
  text-align: left;
  padding: 1.25rem;
}

.ho-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ho-choice:has(input:checked) {
  border-color: var(--brand);
  box-shadow: 0 12px 32px rgba(62, 163, 93, 0.15);
  transform: translateY(-3px);
}

.ho-choice__icon {
  font-size: 1.75rem;
}

.ho-choice__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111;
}

.ho-choice__desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
}

.ho-radio-sr {
  position: absolute;
  opacity: 0;
}

.ho-map__canvas {
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.ho-amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
}

.ho-amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.8125rem;
  cursor: pointer;
}

.ho-amenity:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.ho-amenity-group__title {
  margin: 1.25rem 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
}

.ho-stack {
  display: grid;
  gap: 0.5rem;
}

.ho-stack-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
}

.ho-stack-item:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.ho-field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ho-field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.ho-legal {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.ho-legal-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid #e8ece9;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.ho-legal-card:hover {
  border-color: #c5dcc9;
  background: #fafcfb;
}

.ho-legal-card:has(input:checked) {
  border-color: var(--brand);
  background: linear-gradient(165deg, #fff 0%, var(--brand-soft) 100%);
  box-shadow: 0 4px 16px rgba(62, 163, 93, 0.12);
}

.ho-legal-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ho-legal-card__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
  border: 2px solid #d1d5db;
  border-radius: 7px;
  background: #fff;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.ho-legal-card__box::after {
  content: "";
  width: 0.35rem;
  height: 0.6rem;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg) scale(0);
  margin-top: -0.1rem;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ho-legal-card:has(input:checked) .ho-legal-card__box {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  transform: scale(1.05);
}

.ho-legal-card:has(input:checked) .ho-legal-card__box::after {
  transform: rotate(45deg) scale(1);
}

.ho-legal-card:has(input:focus-visible) {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.ho-legal-card__text {
  font-size: 0.875rem;
  line-height: 1.45;
  color: #374151;
}

.ho-legal-card__text a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ho-legal-card__text a:hover {
  color: var(--brand);
}

.ho-summary {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  border: 1px solid var(--brand-muted);
}

.ho-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  bottom: 0;
}

.ho-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}

.ho-btn--ghost {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}

.ho-btn--primary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  box-shadow: 0 8px 24px rgba(62, 163, 93, 0.35);
}

.ho-btn--wow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(62, 163, 93, 0.4);
}

.ho-address-suggestions {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.ho-address-suggestions li {
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  cursor: pointer;
}

.ho-address-suggestions li:hover {
  background: var(--brand-soft);
}
