: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);
}
.lnd-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.lnd-scroll-hint:hover {
  color: var(--land-blue);
  bottom: 25px;
}
.lnd-scroll-hint i {
  font-size: 2rem;
  animation: bounceDown 2s infinite;
}
@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, 0.3) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(29, 78, 216, 0.2) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(59, 130, 246, 0.1) 0,
      transparent 60%
    );
  filter: blur(40px);
  pointer-events: none;
  animation: pulseHeroGlow 10s ease-in-out infinite alternate;
}
@keyframes pulseHeroGlow {
  0% {
    opacity: 1;
    transform: translateY(0);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
.lnd-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.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-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-blue-200);
  padding: 8px 18px;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.lnd-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--color-blue-600);
  border-radius: 3px;
  animation: blink 1.8s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.lnd-h1 {
  font-family: Outfit, sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #ffffff !important;
  margin-bottom: 24px;
}
.lnd-h1 .accent {
  background: linear-gradient(90deg, var(--color-blue-400), var(--color-blue-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lnd-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 500px;
  margin-bottom: 36px;
}
.lnd-btns {
  display: flex;
  gap: 20px;
  flex-direction: row;
}
.lnd-btn-primary {
  background: linear-gradient(135deg, var(--land-blue), var(--land-indigo));
  color: var(--color-white);
  border: none;
  padding: 16px 36px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  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 0.35s ease;
  z-index: -1;
}
.lnd-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.6);
  color: var(--color-white);
}
.lnd-btn-primary:hover::before {
  opacity: 1;
}
.lnd-btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 32px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  backdrop-filter: blur(10px);
}
.lnd-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  transform: translateY(-4px) scale(1.02);
}
.lnd-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lnd-avatars {
  display: flex;
}
.lnd-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-left: -12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lnd-avatars img:hover {
  transform: translateY(-5px);
  z-index: 2;
  border-color: var(--land-blue);
}
.lnd-avatars img:first-child {
  margin-left: 0;
}
.lnd-stars {
  color: var(--color-amber-500);
  font-size: 0.9rem;
  line-height: 1.5;
}
.lnd-social-text {
  font-size: 0.82rem;
  color: var(--land-text);
  line-height: 1.4;
}
.lnd-social-text strong {
  color: var(--color-white);
}
.lnd-mock {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.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 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.6s ease;
}
.lnd-mock:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-15px);
  box-shadow:
    0 40px 100px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.lnd-mock-bar {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lnd-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.lnd-mock-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}
.lnd-mock-body {
  padding: 20px;
}
.lnd-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.lnd-stat-tile {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 3px;
  padding: 12px 10px;
  text-align: center;
}
.lnd-stat-tile .val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-white);
}
.lnd-stat-tile .lbl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.lnd-stat-tile .delta {
  font-size: 0.65rem;
  color: var(--color-emerald-400);
  margin-top: 2px;
  font-weight: 700;
}
.lnd-cal-heading {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  margin-bottom: 10px;
}
.lnd-appt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.lnd-appt:last-child {
  border-bottom: none;
}
.lnd-appt-time {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  min-width: 38px;
}
.lnd-appt-bar {
  width: 3px;
  height: 34px;
  border-radius: 3px;
  flex-shrink: 0;
}
.lnd-appt-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-white);
}
.lnd-appt-svc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}
.lnd-appt-badge {
  margin-left: auto;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border-radius: 3px;
}
.lnd-ticker {
  background: var(--land-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 44px;
  height: 100%;
}
.lnd-ticker-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
  padding: 0 10px;
}
.lnd-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.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 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--land-blue);
  margin-bottom: 16px;
}
.lnd-h2 {
  font-family: Outfit, sans-serif;
  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-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, 0.6);
}
.lnd-features-bg {
  background: var(--color-bg-main);
}
.lnd-feat-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  padding: 40px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}
.lnd-feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lnd-feat-card:hover {
  transform: translateY(-12px);
  background: var(--color-white);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.12);
}
.lnd-feat-card:hover::before {
  opacity: 1;
}
.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: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  position: relative;
  z-index: 2;
}
.lnd-feat-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-text-main);
  margin-bottom: 10px;
}
.lnd-feat-desc {
  font-size: 0.92rem;
  color: var(--color-slate-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.lnd-feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--land-blue);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 3px;
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.lnd-feat-chip .chip-stat {
  font-size: 0.9rem;
}
.lnd-why-bg {
  background: linear-gradient(
    150deg,
    var(--land-dark) 0,
    var(--land-surface) 100%
  );
  position: relative;
  overflow: hidden;
}
.lnd-why-bg::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.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, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.lnd-benefit-item:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.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, 0.35);
}
.lnd-benefit-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}
.lnd-benefit-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.6;
}
.lnd-benefit-text strong {
  color: var(--color-white);
}
.lnd-price-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 36px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.lnd-price-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
}
.lnd-price-tag {
  font-family: Outfit, sans-serif;
  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: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.lnd-price-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.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 {
  position: relative;
}
.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;
  position: relative;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  position: relative;
}
.lnd-step-num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 3px;
  border: 2px dashed rgba(37, 99, 235, 0.3);
}
.lnd-step-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-text-main);
  margin-bottom: 10px;
}
.lnd-step-desc {
  font-size: 0.9rem;
  color: var(--color-slate-600);
  line-height: 1.65;
}
.lnd-faq-bg {
  background: var(--color-bg-main);
}
.lnd-faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.lnd-faq-item.open {
  border-color: rgba(37, 99, 235, 0.25);
}
.lnd-faq-btn {
  width: 100%;
  background: 0 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--color-text-main);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}
.lnd-faq-btn:hover {
  color: var(--land-blue);
}
.lnd-faq-btn .icon {
  width: 28px;
  height: 28px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--land-blue);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.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: 0.95rem;
  color: var(--color-slate-700);
  line-height: 1.7;
}
.lnd-faq-item.open .lnd-faq-body {
  display: block;
}
.lnd-cta-section {
  background: linear-gradient(
    135deg,
    var(--land-blue) 0,
    var(--land-indigo) 100%
  );
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.lnd-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lnd-cta-h {
  font-family: Outfit, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.lnd-cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 40px;
}
.lnd-btn-white {
  background: #020617;
  color: #ffffff;
  border: none;
  padding: 18px 44px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.lnd-btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}
.lnd-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.lnd-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}
.lnd-cta-trust-item i {
  color: rgba(255, 255, 255, 0.5);
}
.lnd-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  background: rgba(37, 99, 235, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 56px;
  height: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 3px;
  overflow: hidden;
  animation: fabIn 0.8s 0.8s both;
}
.lnd-fab span {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lnd-fab:hover {
  width: auto;
  padding: 0 24px;
  gap: 12px;
  background: var(--land-blue);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.5);
  transform: translateY(-5px);
}
.lnd-fab:hover span {
  max-width: 200px;
  opacity: 1;
}
@media (max-width: 768px) {
  .lnd-fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}
@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, 0.5);
  transform: translateY(-5px);
}
.lnd-fab:hover span {
  max-width: 200px;
  opacity: 1;
}
.lnd-fab-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.lnd-fab:hover .lnd-fab-icon {
  transform: rotate(15deg) scale(1.1);
}
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.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, 0.4);
  z-index: 2;
  pointer-events: none;
}
.d-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  padding: 15px 20px 15px 48px;
  font-size: 0.96rem;
  color: var(--color-text-light);
  outline: 0;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.d-search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.d-search-input:focus {
  border-color: rgba(37, 99, 235, 0.6);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.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, 0.06);
  border-radius: 3px;
  box-shadow: 0 24px 64px rgba(0, 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;
  text-decoration: none;
  transition: background 0.2s;
  color: var(--color-text-main);
}
.d-search-item:hover {
  background: rgba(37, 99, 235, 0.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: 0.92rem;
}
.d-search-city {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.welcome-promo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2070;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
.welcome-promo-modal.active {
  display: flex !important;
}
.welcome-promo-card {
  max-width: 500px;
  width: 90%;
  position: relative;
  background: rgba(6, 12, 26, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 3px !important;
  color: var(--color-white) !important;
  padding: 3rem !important;
  text-align: center;
}
.welcome-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: 0 0;
  border: none;
  color: var(--color-white);
  opacity: 0.7;
  font-size: 1.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.welcome-modal-close:hover {
  opacity: 1;
}
.welcome-promo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-400));
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.welcome-promo-title {
  color: var(--color-white) !important;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.welcome-promo-desc {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
  margin-bottom: 35px;
}
.welcome-cta-btn {
  border-radius: 3px !important;
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-400)) !important;
  color: var(--color-white) !important;
  border: none !important;
}
.welcome-secondary-btn {
  border-radius: 3px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--color-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.welcome-promo-footer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}
body.is-landing-page .main-content {
  background: var(--color-bg-main) !important;
}

@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);
}
.catalog-hero {
  padding: 120px 0 100px;
  background: var(--color-bg-main);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.catalog-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;
}
.text-gradient {
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-600));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.filter-chip {
  padding: 10px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  color: var(--text-muted) !important;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 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);
}
.filter-chips-wrapper {
  max-height: 120px;
  overflow-y: auto;
  padding: 5px;
  scrollbar-width: thin;
}
@media (min-width: 992px) {
  .filter-chips-wrapper {
    max-height: none;
    overflow-y: visible;
  }
}
.company-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.company-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-color);
}
.card-img-wrapper {
  height: 160px;
  background: var(--color-slate-100);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-img-wrapper i {
  color: var(--color-slate-300);
  font-size: 3rem;
  transition: all 0.3s ease;
}
.card-logo {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  z-index: 2;
}
.card-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.company-card:hover .card-img-wrapper i {
  color: var(--primary-color);
  transform: translateY(-4px);
}
.category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color) !important;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-color);
}
.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main) !important;
}
.rating-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--color-amber-500);
  margin-bottom: 12px;
  font-weight: 600;
}
.address-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.desc-truncate {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}
.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: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  font-size: 0.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, 0.3);
}
.lnd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}
.lnd-gallery-item {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  background: var(--color-bg-main);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.lnd-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.lnd-gal-bar {
  height: 28px;
  background: var(--color-slate-200);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.lnd-gal-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
}
.lnd-gal-url {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.65rem;
  color: var(--color-text-muted);
  font-family: monospace;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 12px;
  border-radius: 3px;
}
.lnd-gallery-body {
  flex: 1;
  position: relative;
  background: var(--color-slate-100);
  padding: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  gap: 12px;
  z-index: 5;
}
.m-nav-i {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: var(--color-slate-100);
}
.m-nav-i.active {
  background: var(--color-blue-600);
}
.m-top-stats {
  display: flex;
  gap: 10px;
  z-index: 4;
  margin-left: 48px;
}
.m-stat-card {
  flex: 1;
  background: var(--color-white);
  border-radius: 3px;
  padding: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.m-stat-v {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text-main);
}
.m-stat-l {
  font-size: 0.6rem;
  color: var(--color-text-muted);
  font-weight: 700;
  text-transform: uppercase;
}
.m-main-card {
  flex: 1;
  background: var(--color-white);
  border-radius: 3px;
  margin-left: 48px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 4;
}
.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: 0.8;
  border-radius: 3px;
}
.m-cal-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.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: 0.6;
}
.m-res-item-full {
  display: flex;
  align-items: center;
  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: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  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: 0.6rem;
  margin-bottom: 4px;
}
.m-rev-user {
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 2px;
}
.m-rev-txt {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  font-style: italic;
}
.lnd-gallery-item:hover .m-main-card {
  transform: translateY(-2px);
  transition: transform 0.4s ease;
}
.lnd-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95) 0,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  z-index: 10;
  transition: all 0.4s ease;
  transform: translateY(10px);
}
.lnd-gallery-item:hover .lnd-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.lnd-gallery-title {
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.lnd-gallery-cat {
  color: var(--color-blue-400);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.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, 0.05) 0,
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(29, 78, 216, 0.04) 0,
      transparent 40%
    );
  pointer-events: none;
}
.lnd-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 3px;
  padding: 13px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lnd-cat-item:hover {
  border-color: rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}
.lnd-side-hustle-box {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(29, 78, 216, 0.06)
  );
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 3px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.lnd-side-hustle-box:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}
.lnd-side-hustle-box-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.lnd-side-hustle-box-title {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
}
.lnd-side-hustle-box-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}
.lnd-stat-chip {
  flex: 1;
  min-width: 110px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 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, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}
.lnd-stat-chip-value {
  font-family: Outfit, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.lnd-stat-chip-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.lnd-doc-hero {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.lnd-doc-hero::before {
  display: none;
}
.lnd-doc-hero-grid {
  display: none;
}
.lnd-doc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.lnd-doc-hero-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: #2563eb;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}
.lnd-doc-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: #2563eb;
  padding: 5px 16px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lnd-doc-hero-title {
  font-family: Outfit, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  letter-spacing: -1.5px;
  margin-bottom: 0;
  line-height: 1.1;
}
.lnd-doc-wrap {
  background: #ffffff;
  padding: 0 0 100px;
  min-height: 60vh;
}
.lnd-doc-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 3px;
  box-shadow: none;
  padding: 52px;
  margin-top: -44px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .lnd-doc-card {
    padding: 28px 20px;
  }
  .lnd-doc-hero {
    padding: 100px 0 60px;
  }
}
.lnd-doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--land-blue);
  padding: 6px 16px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lnd-doc-title {
  font-family: Outfit, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
  margin-bottom: 0;
}
.lnd-doc-content p,
.lnd-doc-content ul,
.lnd-doc-content li {
  color: #334155;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.lnd-doc-heading {
  font-family: Outfit, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  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, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.lnd-doc-footer-note {
  font-size: 0.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, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.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, 0.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-family: Outfit, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.lnd-final-cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.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, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
}
.lnd-final-cta-trust-item i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
footer#kontakt.landing-footer {
  background: var(--color-bg-main) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
  margin-top: 0 !important;
}
footer#kontakt.landing-footer .text-muted,
footer#kontakt.landing-footer li.text-muted {
  color: rgba(255, 255, 255, 0.45) !important;
}
footer#kontakt.landing-footer .text-main,
footer#kontakt.landing-footer h5 {
  color: rgba(255, 255, 255, 0.9) !important;
}
footer#kontakt.landing-footer a.text-muted {
  color: rgba(255, 255, 255, 0.45) !important;
  transition: color 0.2s ease;
}
footer#kontakt.landing-footer a.text-muted:hover {
  color: var(--color-blue-400) !important;
}
footer#kontakt.landing-footer p.text-muted {
  color: rgba(255, 255, 255, 0.45) !important;
}
footer#kontakt.landing-footer .bg-light {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.55) !important;
}
footer#kontakt.landing-footer .bg-light:hover {
  background: rgba(255, 255, 255, 0.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, 0.07) !important;
}
footer#kontakt.landing-footer .pt-5.border-top p {
  color: rgba(255, 255, 255, 0.3) !important;
}
footer#kontakt.landing-footer img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.85;
}
.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: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}
.lnd-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.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, 0.25) 0,
      transparent 45%
    ),
    radial-gradient(
      circle at 20% 70%,
      rgba(29, 78, 216, 0.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, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.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-white) !important;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.dash-page-hero .dash-h1 .dash-username {
  background: linear-gradient(90deg, var(--color-blue-400), var(--color-blue-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dash-page-hero .dash-lead {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.93rem;
  margin-bottom: 20px;
}
.dash-page-hero .dash-h4 {
  color: rgba(255, 255, 255, 0.9) !important;
}
.dash-hero-icon-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.dash-hero-icon-ring {
  width: 100px;
  height: 100px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 20px rgba(37, 99, 235, 0.05),
    0 0 0 40px rgba(37, 99, 235, 0.03);
}
@media (max-width: 767px) {
  .dash-page-hero {
    padding: 28px 24px;
  }
}
.lnd-advanced-search {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 32px;
  transition: all 0.4s ease;
}
.search-fields-container {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
}
.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4px 16px;
  text-align: left;
  min-width: 0;
}
.search-field label {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}
.search-field input,
.search-field select {
  border: none;
  background: 0 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--color-white);
  outline: 0;
  font-weight: 600;
  width: 100%;
}
.search-field select option {
  background: var(--color-bg-main);
  color: var(--color-white);
}
.search-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 8px;
  flex-shrink: 0;
}
.search-submit-btn {
  background: var(--color-white);
  color: var(--color-black);
  border: none;
  border-radius: 3px;
  height: 56px;
  padding: 0 32px;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.search-submit-btn:hover {
  background: var(--land-blue);
  color: var(--color-white);
}
@media (max-width: 768px) {
  .lnd-advanced-search {
    flex-direction: column;
    padding: 16px;
  }
  .search-fields-container {
    flex-direction: column;
    gap: 16px;
  }
  .search-divider {
    display: none;
  }
  .search-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }
}
.lnd-search-trigger {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.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: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 28px 0 40px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.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 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 3px;
}
.lnd-search-trigger:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-3px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.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, 0.35);
  transition: all 0.3s ease;
  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: 0.98rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
  letter-spacing: -0.1px;
  transition: color 0.3s ease;
}
.lnd-search-trigger:hover .trigger-inner span {
  color: rgba(255, 255, 255, 0.65);
}
.trigger-hint {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.lnd-search-trigger:hover .trigger-hint {
  color: var(--color-blue-300);
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}
@media (max-width: 768px) {
  .lnd-search-trigger {
    height: 56px;
    padding: 0 16px;
    margin-bottom: 32px;
  }
  .trigger-hint {
    display: none;
  }
}
.voucher-active-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999999999;
  align-items: center;
  justify-content: center;
  background: rgba(4, 9, 20, 0.95) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
}
.voucher-active-modal.active {
  display: flex !important;
}
.voucher-active-card {
  max-width: 550px;
  width: 90%;
  position: relative;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 3px !important;
  color: var(--color-white) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  padding: 3rem !important;
  text-align: center;
}
.voucher-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: 0 0;
  border: none;
  color: var(--color-white);
  opacity: 0.5;
  font-size: 1.5rem;
  transition: opacity 0.3s;
  cursor: pointer;
}
.voucher-modal-close:hover {
  opacity: 1;
}
.voucher-active-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-emerald-500), var(--color-emerald-500));
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
  animation: pulseGreen 2s infinite;
}
.voucher-active-title {
  color: var(--color-white) !important;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1.5px;
  font-family: Outfit, sans-serif;
  font-size: 2.2rem;
}
.voucher-active-desc {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.voucher-cta-btn {
  border-radius: 3px !important;
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-400)) !important;
  color: var(--color-white) !important;
  border: none !important;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
.voucher-secondary-btn {
  border-radius: 3px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.tmplt-modal .tmplt-card {
  max-width: 600px;
  width: 90%;
  margin: auto;
  background: var(--color-white);
  border-radius: 3px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem !important;
}
.tmplt-title {
  color: var(--color-text-main) !important;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.tmplt-desc {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tmplt-nav-pills {
  background: var(--color-slate-100);
  border-radius: 3px;
  padding: 6px;
  display: flex;
}
.tmplt-nav-pills .nav-link {
  border-radius: 3px !important;
}
.tmplt-nav-link-inactive {
  color: var(--color-text-muted) !important;
  background: 0 0 !important;
}
.tmplt-preview-placeholder {
  height: 180px;
  background: var(--color-bg-main);
  border: 2px dashed var(--color-border-light);
  border-radius: 3px;
}
.tmplt-item-title {
  color: var(--color-text-main);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.tmplt-item-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tmplt-cta-btn {
  border-radius: 3px !important;
}
.lnd-partners {
  padding: 60px 0;
  background: var(--color-bg-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.lnd-partner-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.3s ease;
}
.lnd-partner-track:hover {
  opacity: 0.8;
  filter: grayscale(0.5);
}
.lnd-partner-img {
  height: 32px;
  object-fit: contain;
}
.lnd-stats-bg {
  background: var(--color-bg-main);
  padding: 80px 0;
  position: relative;
}
.lnd-stat-big-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}
.lnd-stat-big-card:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-5px);
}
.lnd-stat-number {
  font-family: Outfit, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--color-white), var(--color-slate-400));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lnd-stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--land-blue);
}
.lnd-testimonials-bg {
  background: var(--color-bg-main);
  padding: 100px 0;
}
.lnd-testi-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.lnd-testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.lnd-testi-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-main);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}
.lnd-testi-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lnd-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 3px;
  object-fit: cover;
  border: 2px solid var(--land-blue);
}
.lnd-testi-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-text-main);
}
.lnd-testi-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.lnd-mobile-section {
  background: var(--color-white);
  padding: 100px 0;
  overflow: hidden;
}
.lnd-phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: var(--color-black);
  border-radius: 3px;
  border: 8px solid var(--color-border-main);
  margin: 0 auto;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.lnd-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.lnd-phone-header {
  height: 20px;
  background: var(--color-slate-100);
  border-radius: 3px;
  width: 60%;
}
.lnd-phone-card {
  height: 120px;
  background: var(--color-bg-main);
  border-radius: 3px;
  border: 1px solid var(--color-border-light);
}

footer#kontakt.landing-footer {
  background: var(--land-dark) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
  margin-top: 0 !important;
}
footer#kontakt.landing-footer .text-muted,
footer#kontakt.landing-footer li.text-muted {
  color: rgba(255, 255, 255, 0.45) !important;
}
footer#kontakt.landing-footer .text-main,
footer#kontakt.landing-footer h5 {
  color: rgba(255, 255, 255, 0.9) !important;
}
footer#kontakt.landing-footer a.text-muted {
  color: rgba(255, 255, 255, 0.45) !important;
  transition: color 0.2s ease;
}
footer#kontakt.landing-footer a.text-muted:hover {
  color: var(--color-blue-400) !important;
}
footer#kontakt.landing-footer p.text-muted {
  color: rgba(255, 255, 255, 0.45) !important;
}
footer#kontakt.landing-footer .bg-light {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.55) !important;
}
footer#kontakt.landing-footer .bg-light:hover {
  background: rgba(255, 255, 255, 0.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, 0.07) !important;
}
footer#kontakt.landing-footer .pt-5.border-top p {
  color: rgba(255, 255, 255, 0.3) !important;
}
footer#kontakt.landing-footer img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.85;
}

body.is-gdpr-page.is-landing-page .header.header-glass:not(.sticky) {
  background: rgba(0, 0, 0, 1) !important;
}
