.lnd-badge,
.lnd-h1 {
  margin-bottom: 24px
}

.lnd-badge,
.lnd-btn-ghost {
  backdrop-filter: blur(10px)
}

.lnd-h1 .accent,
.text-gradient {
  -webkit-text-fill-color: transparent
}

.btn-book-premium,
.d-search-item,
.filter-chip,
.lnd-btn-ghost,
.lnd-btn-white {
  text-decoration: none
}

.lnd-h1,
.lnd-h2,
.lnd-price-tag,
.lnd-side-hustle-box-title,
.m-stat-v {
  font-family: Outfit, sans-serif
}


:root {
  --land-blue: var(--color-primary, var(--color-blue-500));
  --land-indigo: var(--color-primary-dark, var(--color-blue-600));
  --land-dark: var(--color-slate-950);
  --land-surface: var(--color-slate-900);
  --land-glass: rgba(255, 255, 255, 0.06);
  --land-border: rgba(255, 255, 255, 0.12);
  --land-text: rgba(255, 255, 255, 0.95);
  --land-radius: 3px;
  --land-shadow: 0 30px 60px rgba(0, 0, 0, 0.4)
}

@keyframes bounceDown {

  0%,
  100%,
  20%,
  50%,
  80% {
    transform: translateY(0)
  }

  40% {
    transform: translateY(-8px)
  }

  60% {
    transform: translateY(-4px)
  }
}

.lnd-hero {
  min-height: 100vh;
  background: var(--land-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px
}

.lnd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, .3) 0, transparent 50%), radial-gradient(circle at 20% 80%, rgba(29, 78, 216, .2) 0, transparent 50%), radial-gradient(circle at 50% 50%, rgba(59, 130, 246, .1) 0, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: 10s ease-in-out infinite alternate pulseHeroGlow
}

@keyframes pulseHeroGlow {
  0% {
    opacity: 1;
    transform: translateY(0);
    opacity: .8
  }

  100% {
    transform: translateY(-4px);
    opacity: 1
  }
}

.lnd-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 80%, transparent);
  pointer-events: none
}

.lnd-btn-primary,
.lnd-mock-map {
  position: relative;
  overflow: hidden
}

.lnd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, .15);
  border: 1px solid rgba(59, 130, 246, .3);
  color: var(--color-blue-200);
  padding: 8px 18px;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase
}

.lnd-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--color-blue-600);
  border-radius: 3px;
  animation: 1.8s infinite blink
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.lnd-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff !important
}

.lnd-h1 .accent {
  background: linear-gradient(90deg, var(--color-blue-400), var(--color-blue-300));
  -webkit-background-clip: text;
  background-clip: text
}

.lnd-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .95) !important;
  max-width: 500px;
  margin-bottom: 36px
}

.lnd-btns {
  display: flex;
  gap: 20px;
  flex-direction: row
}

.lnd-btn-ghost,
.lnd-btn-primary {
  display: inline-flex;
  align-items: center
}

.lnd-btn-primary {
  background: linear-gradient(135deg, var(--land-blue), var(--land-indigo));
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(37, 99, 235, .4);
  gap: 12px;
  z-index: 1
}

.lnd-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--land-indigo), var(--land-blue));
  opacity: 0;
  transition: opacity .35s;
  z-index: -1
}

.lnd-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 99, 235, .6);
  color: var(--color-white)
}

.lnd-btn-primary:hover::before,
.lnd-feat-card:hover::before {
  opacity: 1
}

.lnd-btn-ghost {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 16px 32px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s;
  gap: 10px
}

.lnd-mock-avatar,
.lnd-mock-bar {
  display: flex;
  align-items: center
}

.lnd-btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .5);
  color: var(--color-white);
  transform: translateY(-4px) scale(1.02)
}

.lnd-mock {
  background: rgba(15, 23, 42, .6);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  max-width: 520px;
  margin-left: auto;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), box-shadow .6s
}

.lnd-mock:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-15px);
  box-shadow: 0 40px 100px rgba(37, 99, 235, .3), inset 0 1px 0 rgba(255, 255, 255, .2)
}

.lnd-mock-bar {
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 20px;
  gap: 12px
}

.lnd-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px
}

.lnd-mock-url {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  padding: 5px 12px;
  font-size: .72rem;
  color: rgba(255, 255, 255, .35)
}

.lnd-mock-body {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 12px
}

.lnd-mock-panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 3px;
  padding: 14px
}

.lnd-mock-mini-title {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .35);
  font-weight: 700;
  margin-bottom: 12px
}

.lnd-mock-result-card {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 3px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, .02);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px
}

.lnd-mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background: rgba(37, 99, 235, .15);
  justify-content: center;
  color: var(--color-blue-400);
  font-weight: 800;
  font-size: .9rem
}

.lnd-ticker,
.lnd-ticker-track {
  display: flex;
  align-items: center
}

.lnd-mock-result-card strong {
  display: block;
  font-size: .82rem;
  color: var(--color-white)
}

.lnd-mock-result-card p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .4);
  font-size: .68rem;
  line-height: 1.3
}

.lnd-mock-rating {
  color: var(--color-amber-500);
  font-weight: 700;
  font-size: .68rem;
  margin-top: 4px
}

.lnd-mock-map {
  min-height: 200px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), rgba(15, 23, 42, .4);
  background-size: 30px 30px;
  border: 1px solid rgba(255, 255, 255, .05)
}

.lnd-mock-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--color-blue-500);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .4)
}

.lnd-feat-card,
.lnd-ticker {
  height: 100%;
  overflow: hidden
}

.lnd-mock-pin:first-child {
  left: 24%;
  top: 31%
}

.lnd-mock-pin:nth-child(2) {
  left: 63%;
  top: 18%
}

.lnd-mock-pin:nth-child(3) {
  left: 52%;
  top: 64%
}

.lnd-mock-pin:nth-child(4) {
  left: 79%;
  top: 55%
}

.lnd-mock-map-bubble {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, .15);
  font-size: .68rem;
  font-weight: 700;
  color: var(--color-white)
}

.lnd-mock-floating-stat {
  position: absolute;
  right: -20px;
  bottom: 40px;
  background: rgba(15, 23, 42, .85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  padding: 12px 16px;
  border-radius: 3px;
  min-width: 140px;
  transform: translateZ(20px)
}

.lnd-feat-card,
.lnd-feat-icon,
.lnd-price-card,
.lnd-step-card,
.lnd-step-num,
.lnd-steps-track,
.lnd-why-bg {
  position: relative
}

.lnd-mock-floating-stat strong {
  font-size: 1.6rem;
  letter-spacing: -.04em;
  color: var(--color-blue-400);
  line-height: 1
}

.lnd-mock-floating-stat span {
  display: block;
  color: rgba(255, 255, 255, .5);
  font-weight: 700;
  font-size: .68rem;
  margin-top: 4px
}

@media (max-width:680px) {
  .lnd-mock-body {
    grid-template-columns: 1fr
  }

  .lnd-mock-floating-stat {
    right: 10px;
    bottom: 20px
  }
}

.lnd-ticker {
  background: var(--land-dark);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  min-height: 44px
}

.lnd-ticker-track {
  gap: 80px;
  width: max-content;
  animation: 35s linear infinite ticker;
  white-space: nowrap;
  will-change: transform;
  padding: 0 10px
}

.lnd-section-label,
.lnd-ticker-item {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase
}

.lnd-ticker-item {
  gap: 12px;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .5px
}

.lnd-ticker-item i {
  color: var(--color-blue-600);
  margin-right: 2px
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-33.3333%)
  }
}

.lnd-section {
  padding: 100px 0
}

.lnd-section-label {
  gap: 8px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--land-blue);
  margin-bottom: 16px
}

.lnd-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-text-main);
  line-height: 1.15
}

.lnd-benefit-label,
.lnd-stat-chip-label {
  text-transform: uppercase;
  letter-spacing: 1px
}

.lnd-benefit-text strong,
.lnd-h2.light {
  color: var(--color-white)
}

.lnd-subtitle {
  font-size: 1rem;
  color: var(--color-slate-600);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 12px
}

.lnd-subtitle.light {
  color: rgba(255, 255, 255, .6)
}

.lnd-faq-bg,
.lnd-features-bg {
  background: var(--color-bg-main)
}

.lnd-feat-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 3px;
  padding: 40px;
  transition: .5s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .04)
}

.lnd-feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, .03), transparent);
  opacity: 0;
  transition: opacity .5s
}

.lnd-feat-card:hover {
  transform: translateY(-12px);
  background: var(--color-white);
  border-color: rgba(37, 99, 235, .2);
  box-shadow: 0 30px 60px rgba(37, 99, 235, .12)
}

.lnd-feat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-indigo-600));
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, .3);
  z-index: 2
}

.lnd-feat-title,
.lnd-step-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-text-main);
  margin-bottom: 10px
}

.lnd-feat-desc {
  font-size: .92rem;
  color: var(--color-slate-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px
}

.lnd-faq-btn .icon,
.lnd-faq-btn:hover,
.lnd-feat-chip {
  color: var(--land-blue)
}

.lnd-feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, .06);
  font-size: .75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 3px;
  border: 1px solid rgba(37, 99, 235, .12)
}

.lnd-feat-chip .chip-stat {
  font-size: .9rem
}

.lnd-why-bg {
  background: linear-gradient(150deg, var(--land-dark) 0, var(--land-surface) 100%);
  overflow: hidden
}

.lnd-why-bg::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, .12), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none
}

.lnd-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 3px;
  margin-bottom: 14px;
  transition: .3s
}

.lnd-benefit-item:hover {
  background: rgba(37, 99, 235, .1);
  border-color: rgba(37, 99, 235, .2);
  transform: translateX(6px)
}

.lnd-benefit-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--land-blue), var(--land-indigo));
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .35)
}

.lnd-benefit-label {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 3px
}

.lnd-benefit-text {
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
  line-height: 1.6
}

.lnd-price-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 3px;
  padding: 36px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
  overflow: hidden
}

.lnd-price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .2);
  border-color: rgba(96, 165, 250, .4)
}

.lnd-price-tag {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.5
}

.lnd-price-tag sup {
  font-size: 1.5rem;
  vertical-align: super;
  font-weight: 700
}

.lnd-price-tag sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 400
}

.lnd-price-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.lnd-faq-btn,
.lnd-step-num {
  align-items: center;
  display: flex
}

.lnd-price-feature:last-of-type {
  border-bottom: none
}

.lnd-price-feature i {
  color: var(--color-emerald-400);
  width: 18px
}

.lnd-steps-bg {
  background: var(--color-white)
}

.lnd-steps-track::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--land-blue), var(--land-indigo));
  z-index: 0
}

@media (max-width:991px) {
  .lnd-steps-track::before {
    display: none
  }
}

.lnd-step-card {
  text-align: center;
  z-index: 1;
  padding: 0 16px
}

.lnd-step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--land-blue), var(--land-indigo));
  color: var(--color-white);
  border-radius: 3px;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, .4)
}

.lnd-step-num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 3px;
  border: 2px dashed rgba(37, 99, 235, .3)
}

.lnd-step-desc {
  font-size: .9rem;
  color: var(--color-slate-600);
  line-height: 1.65
}

.lnd-faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 3px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s
}

.lnd-faq-item.open {
  border-color: rgba(37, 99, 235, .25)
}

.lnd-faq-btn {
  width: 100%;
  background: 0 0;
  border: none;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  font-size: .96rem;
  color: var(--color-text-main);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color .3s
}

.lnd-btn-white,
.lnd-faq-btn .icon {
  transition: .3s;
  align-items: center
}

.lnd-faq-btn .icon {
  width: 28px;
  height: 28px;
  background: rgba(37, 99, 235, .08);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0
}

.lnd-faq-item.open .icon {
  background: var(--land-blue);
  color: var(--color-white);
  transform: rotate(45deg)
}

.lnd-faq-body {
  display: none;
  padding: 0 24px 20px;
  font-size: .95rem;
  color: var(--color-slate-700);
  line-height: 1.7
}

.lnd-faq-item.open .lnd-faq-body {
  display: block
}

.lnd-btn-white {
  background: #020617;
  color: #fff;
  border: none;
  padding: 18px 44px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15)
}

.lnd-fab,
.lnd-fab-icon {
  display: flex;
  align-items: center;
  transition: .5s cubic-bezier(.16, 1, .3, 1)
}

.lnd-btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  color: #fff
}

.lnd-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  background: rgba(37, 99, 235, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, .2);
  width: 56px;
  height: 56px;
  padding: 0;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 99, 235, .4);
  border-radius: 3px;
  overflow: hidden;
  animation: .8s .8s both fabIn
}

.lnd-fab span {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: .5s cubic-bezier(.16, 1, .3, 1)
}

@keyframes fabIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fabFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.lnd-fab:hover {
  width: auto;
  padding: 0 24px;
  gap: 12px;
  background: var(--land-blue);
  box-shadow: 0 20px 40px rgba(37, 99, 235, .5);
  transform: translateY(-5px)
}

.lnd-fab:hover span {
  max-width: 200px;
  opacity: 1
}

.lnd-fab-icon {
  width: 24px;
  height: 24px;
  justify-content: center;
  flex-shrink: 0
}

.lnd-fab:hover .lnd-fab-icon {
  transform: rotate(15deg) scale(1.1)
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s, transform .65s
}

.reveal-up.revealed {
  opacity: 1;
  transform: none
}

.d-search-wrap {
  position: relative;
  max-width: 520px;
  margin-bottom: 24px
}

.d-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .4);
  z-index: 2;
  pointer-events: none
}

.d-search-input {
  width: 100%;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 3px;
  padding: 15px 20px 15px 48px;
  font-size: .96rem;
  color: var(--color-text-light);
  outline: 0;
  transition: .25s;
  backdrop-filter: blur(8px)
}

.d-search-input::placeholder {
  color: rgba(255, 255, 255, .3)
}

.d-search-input:focus {
  border-color: rgba(37, 99, 235, .6);
  background: rgba(255, 255, 255, .11);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .15)
}

.d-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 3px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .15);
  max-height: 370px;
  overflow-y: auto;
  z-index: 3000;
  padding: 8px
}

.d-search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 3px;
  transition: background .2s;
  color: var(--color-text-main)
}

.d-search-item:hover {
  background: rgba(37, 99, 235, .06);
  color: var(--color-text-main)
}

.d-search-item img {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0
}

.d-search-name {
  font-weight: 700;
  font-size: .92rem
}

.d-search-city {
  font-size: .76rem;
  color: var(--color-text-muted);
  margin-top: 2px
}

@media (max-width:576px) {
  .lnd-btns {
    flex-direction: column !important;
    gap: 12px !important
  }

  .lnd-btn-ghost,
  .lnd-btn-primary {
    width: 100% !important;
    justify-content: center !important
  }

  .lnd-h1 {
    font-size: 2.2rem !important
  }
}

:root {
  --primary-color: var(--color-blue-600);
  --primary-hover: var(--color-blue-700);
  --bg-light: var(--color-slate-50);
  --bg-white: var(--color-white);
  --text-main: var(--color-slate-900);
  --text-muted: var(--color-slate-600);
  --border-color: var(--color-border-light);
  --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-600));
  background-clip: text;
  -webkit-background-clip: text
}

.filter-chip {
  padding: 10px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  color: var(--text-muted) !important;
  font-size: .92rem;
  font-weight: 700;
  transition: .3s cubic-bezier(.16, 1, .3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .04)
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--color-white) !important;
  box-shadow: var(--shadow-md)
}

.btn-book-premium {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--primary-color);
  border: none;
  border-radius: 3px;
  color: var(--color-white);
  font-weight: 600;
  margin-top: auto;
  transition: .2s;
  text-align: center;
  font-size: .95rem
}

.btn-book-premium:hover {
  background: var(--primary-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, .3)
}

.m-side-nav {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  background: var(--color-white);
  border-right: 1px solid rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  gap: 12px;
  z-index: 5
}

.m-main-card,
.m-top-stats {
  margin-left: 48px;
  z-index: 4
}

.m-nav-i {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: var(--color-slate-100)
}

.m-main-card,
.m-stat-card {
  background: var(--color-white);
  border-radius: 3px
}

.m-nav-i.active {
  background: var(--color-blue-600)
}

.m-top-stats {
  display: flex;
  gap: 10px
}

.m-stat-card {
  flex: 1;
  padding: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04)
}

.m-stat-v {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text-main)
}

.m-stat-l {
  font-size: .6rem;
  color: var(--color-text-muted);
  font-weight: 700;
  text-transform: uppercase
}

.m-main-card {
  flex: 1;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05)
}

.m-chart-viz {
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-top: 20px
}

.m-chart-bar {
  flex: 1;
  background: var(--color-blue-600);
  opacity: .8;
  border-radius: 3px
}

.m-cal-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.m-res-circ,
.m-res-item-full {
  align-items: center;
  display: flex
}

.m-cal-line {
  height: 20px;
  background: var(--color-bg-main);
  border-radius: 3px;
  position: relative;
  overflow: hidden
}

.m-cal-block {
  position: absolute;
  top: 2px;
  bottom: 2px;
  border-radius: 3px;
  background: var(--color-blue-600);
  opacity: .6
}

.m-res-item-full {
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-slate-100)
}

.m-res-circ {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: var(--color-slate-200);
  font-size: .6rem;
  font-weight: 800;
  justify-content: center
}

.m-rev-card {
  border-left: 3px solid var(--color-amber-500);
  padding-left: 10px
}

.m-rev-stars {
  color: var(--color-amber-500);
  font-size: .6rem;
  margin-bottom: 4px
}

.m-rev-user {
  font-weight: 800;
  font-size: .75rem;
  margin-bottom: 2px
}

.m-rev-txt {
  font-size: .65rem;
  color: var(--color-text-muted);
  font-style: italic
}

.lnd-light-section {
  background: linear-gradient(180deg, var(--color-blue-50) 0, var(--color-bg-main) 50%, var(--color-blue-50) 100%);
  position: relative
}

.lnd-light-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(37, 99, 235, .05) 0, transparent 40%), radial-gradient(circle at 10% 90%, rgba(29, 78, 216, .04) 0, transparent 40%);
  pointer-events: none
}

.lnd-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(37, 99, 235, .1);
  border-radius: 3px;
  padding: 13px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text-main);
  transition: .25s cubic-bezier(.4, 0, .2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px)
}

.lnd-cat-item:hover {
  border-color: rgba(37, 99, 235, .28);
  background: rgba(37, 99, 235, .04);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, .1)
}

.lnd-side-hustle-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, .06), rgba(29, 78, 216, .06));
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 3px;
  padding: 24px;
  margin-bottom: 20px;
  transition: .3s
}

.lnd-side-hustle-box:hover {
  border-color: rgba(37, 99, 235, .25);
  box-shadow: 0 8px 24px rgba(37, 99, 235, .08)
}

.lnd-side-hustle-box-icon {
  font-size: 1.4rem;
  margin-bottom: 10px
}

.lnd-side-hustle-box-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 8px
}

.lnd-side-hustle-box-text {
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0
}

.lnd-doc-hero-title,
.lnd-stat-chip-value {
  font-family: Outfit, sans-serif;
  line-height: 1.1
}

.lnd-stat-chip {
  flex: 1;
  min-width: 110px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 3px;
  padding: 16px 12px;
  text-align: center;
  transition: .25s cubic-bezier(.4, 0, .2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px)
}

.lnd-stat-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .1);
  border-color: rgba(37, 99, 235, .18)
}

.lnd-stat-chip-value {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px
}

.lnd-stat-chip-label {
  font-size: .7rem;
  color: var(--color-text-muted);
  font-weight: 700
}

.lnd-doc-hero {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px
}

.lnd-doc-hero-icon,
.lnd-doc-hero-label {
  align-items: center;
  background: rgba(37, 99, 235, .15);
  color: #2563eb
}

.lnd-doc-hero-grid,
.lnd-doc-hero::before {
  display: none
}

.lnd-doc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center
}

.lnd-doc-hero-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(37, 99, 235, .35);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, .2)
}

.lnd-doc-badge,
.lnd-doc-hero-label {
  display: inline-flex;
  gap: 8px;
  text-transform: uppercase
}

.lnd-doc-hero-label {
  border: 1px solid rgba(37, 99, 235, .35);
  padding: 5px 16px;
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 20px
}

.lnd-doc-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  letter-spacing: -1.5px;
  margin-bottom: 0
}

.lnd-doc-wrap {
  background: #fff;
  padding: 0 0 100px;
  min-height: 60vh
}

.lnd-doc-card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, .08);
  border-radius: 3px;
  box-shadow: none;
  padding: 52px;
  margin-top: -44px;
  position: relative;
  z-index: 2
}

.lnd-doc-badge {
  align-items: center;
  background: rgba(37, 99, 235, .07);
  border: 1px solid rgba(37, 99, 235, .18);
  color: var(--land-blue);
  padding: 6px 16px;
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 20px
}

.dash-page-hero .dash-h1,
.lnd-doc-heading,
.lnd-doc-title,
.lnd-final-cta-h {
  font-family: Outfit, sans-serif;
  font-weight: 800
}

.lnd-doc-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #0f172a;
  letter-spacing: -1px;
  margin-bottom: 0
}

.lnd-doc-content li,
.lnd-doc-content p,
.lnd-doc-content ul {
  color: #334155;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: .95rem
}

.lnd-doc-heading {
  font-size: 1.15rem;
  color: #0f172a;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--land-blue)
}

.lnd-doc-footer {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.lnd-doc-footer-note {
  font-size: .82rem;
  color: #64748b
}

.lnd-final-cta {
  background: linear-gradient(160deg, var(--color-blue-950) 0, var(--color-blue-700) 60%, var(--color-blue-600) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center
}

.lnd-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none
}

.lnd-final-cta::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, .07), transparent 70%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none
}

.lnd-final-cta-inner {
  position: relative;
  z-index: 1
}

.lnd-final-cta-h {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff !important;
  letter-spacing: -1.5px;
  margin-bottom: 16px
}

.lnd-final-cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75
}

.lnd-final-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px
}

.lnd-final-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  font-weight: 600
}

.lnd-final-cta-trust-item i {
  color: rgba(255, 255, 255, .9);
  font-size: 1rem
}

.lnd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--land-blue) 0, var(--land-indigo) 100%);
  color: var(--color-white) !important;
  border: none;
  padding: 14px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: .3s;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, .3)
}

.lnd-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, .45);
  color: var(--color-white) !important
}

.dash-page-hero {
  background: linear-gradient(135deg, var(--color-bg-main) 0, var(--color-bg-surface) 55%, var(--color-bg-surface) 100%);
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  padding: 40px 44px;
  margin-bottom: 32px
}

.dash-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(37, 99, 235, .25) 0, transparent 45%), radial-gradient(circle at 20% 70%, rgba(29, 78, 216, .18) 0, transparent 45%);
  filter: blur(30px);
  pointer-events: none
}

.dash-page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  border-radius: 3px
}

.dash-page-hero-inner {
  position: relative;
  z-index: 2
}

.dash-page-hero .dash-h1 {
  color: var(--color-text-main) !important;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -.5px;
  margin-bottom: 8px
}

.dash-page-hero .dash-lead {
  color: var(--color-text-muted) !important;
  font-size: .93rem;
  margin-bottom: 20px
}

.dash-page-hero .dash-h4 {
  color: var(--color-text-main) !important
}

@media (max-width:767px) {
  .lnd-doc-card {
    padding: 28px 20px
  }

  .lnd-doc-hero {
    padding: 100px 0 60px
  }

  .dash-page-hero {
    padding: 28px 24px
  }
}

.lnd-search-trigger {
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 3px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 680px;
  height: 64px;
  cursor: pointer;
  transition: .4s cubic-bezier(.16, 1, .3, 1);
  margin: 28px 0 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .05);
  position: relative;
  overflow: hidden
}

.lnd-search-trigger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--land-blue), var(--color-blue-400), var(--land-blue));
  background-size: 200% 100%;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
  border-radius: 3px
}

.lnd-search-trigger:hover {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(37, 99, 235, .4);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .6), 0 0 0 1px rgba(37, 99, 235, .2), inset 0 1px 0 rgba(255, 255, 255, .08)
}

.lnd-search-trigger:hover::after {
  width: 100%
}

.trigger-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1
}

.trigger-inner i {
  font-size: 1rem;
  color: rgba(255, 255, 255, .35);
  transition: .3s;
  flex-shrink: 0
}

.lnd-search-trigger:hover .trigger-inner i {
  color: var(--color-blue-400);
  opacity: 1;
  transform: translateY(-4px)
}

.trigger-inner span {
  font-size: .98rem;
  color: rgba(255, 255, 255, .38);
  font-weight: 500;
  letter-spacing: -.1px;
  transition: color .3s
}

.lnd-search-trigger:hover .trigger-inner span {
  color: rgba(255, 255, 255, .65)
}

.trigger-hint {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .3s;
  flex-shrink: 0
}

.lnd-search-trigger:hover .trigger-hint {
  color: var(--color-blue-300);
  background: rgba(37, 99, 235, .12);
  border-color: rgba(37, 99, 235, .25)
}

@media (max-width:768px) {
  .lnd-fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px
  }

  .lnd-search-trigger {
    height: 56px;
    padding: 0 16px;
    margin-bottom: 32px
  }

  .trigger-hint {
    display: none
  }
}

.tmplt-title {
  color: var(--color-text-main) !important;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px
}

footer#kontakt.landing-footer {
  background: var(--land-dark) !important;
  border-top: 1px solid rgba(255, 255, 255, .07) !important;
  margin-top: 0 !important
}

footer#kontakt.landing-footer .text-muted,
footer#kontakt.landing-footer li.text-muted,
footer#kontakt.landing-footer p.text-muted {
  color: rgba(255, 255, 255, .45) !important
}

footer#kontakt.landing-footer .text-main,
footer#kontakt.landing-footer h5 {
  color: rgba(255, 255, 255, .9) !important
}

footer#kontakt.landing-footer a.text-muted {
  color: rgba(255, 255, 255, .45) !important;
  transition: color .2s
}

footer#kontakt.landing-footer a.text-muted:hover {
  color: var(--color-blue-400) !important
}

footer#kontakt.landing-footer .bg-light {
  background: rgba(255, 255, 255, .07) !important;
  border-color: rgba(255, 255, 255, .1) !important;
  color: rgba(255, 255, 255, .55) !important
}

footer#kontakt.landing-footer .bg-light:hover {
  background: rgba(255, 255, 255, .12) !important;
  color: var(--color-blue-400) !important
}

footer#kontakt.landing-footer .border-light,
footer#kontakt.landing-footer .border-top {
  border-color: rgba(255, 255, 255, .07) !important
}

footer#kontakt.landing-footer .pt-5.border-top p {
  color: rgba(255, 255, 255, .3) !important
}

footer#kontakt.landing-footer img {
  filter: brightness(0) invert(1) !important;
  opacity: .85
}

body.is-gdpr-page.is-landing-page .header.header-glass:not(.sticky) {
  background: #000 !important
}

/* ==========================================================================
   LANDING PAGE MOBILE FIXES
   ========================================================================== */

@media (max-width: 991px) {
  .lnd-hero {
    min-height: auto;
    padding: 140px 0 60px;
    text-align: center;
  }

  .lnd-hero .col-lg-6 {
    margin-bottom: 40px;
  }

  .lnd-h1,
  .lnd-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .lnd-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .lnd-mock {
    margin: 0 auto;
    transform: none !important;
  }

  .lnd-mock:hover {
    transform: translateY(-10px) !important;
  }

  .lnd-mock-floating-stat {
    display: none;
  }

  .lnd-steps-track {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .lnd-btns {
    flex-direction: column;
    width: 100%;
  }

  .lnd-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .lnd-price-card {
    margin-bottom: 20px;
  }
}

.lnd-hero {
  min-height: 100vh;
  background: var(--color-slate-950, #020617);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.lnd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(29, 78, 216, 0.1) 0, transparent 50%);
  filter: blur(40px);
  pointer-events: none;
}

.lnd-mock {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s var(--transition-bezier), box-shadow 0.5s ease;
}

.lnd-mock:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translate3d(0, -10px, 0) !important;
}

.lnd-feat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: transform 0.4s var(--transition-bezier), box-shadow 0.4s ease;
}

.lnd-feat-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .lnd-hero {
    min-height: auto;
    text-align: center;
    padding: 140px 0 60px;
  }

  .lnd-mock {
    transform: none !important;
    margin: 40px auto 0;
  }
}
