: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, 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-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: 16px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 12px;
}
.lnd-mock-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 14px;
}
.lnd-mock-mini-title {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  margin-bottom: 12px;
}
.lnd-mock-result-card {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.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, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-400);
  font-weight: 800;
  font-size: 0.9rem;
}
.lnd-mock-result-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--color-white);
}
.lnd-mock-result-card p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  line-height: 1.3;
}
.lnd-mock-rating {
  color: var(--color-amber-500);
  font-weight: 700;
  font-size: 0.68rem;
  margin-top: 4px;
}
.lnd-mock-map {
  min-height: 200px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    rgba(15, 23, 42, 0.4);
  background-size: 30px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.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,0.4);
}
.lnd-mock-pin:nth-child(1) { 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, 0.1);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-white);
}
.lnd-mock-floating-stat {
  position: absolute;
  right: -20px;
  bottom: 40px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 12px 16px;
  border-radius: 3px;
  min-width: 140px;
  transform: translateZ(20px);
}
.lnd-mock-floating-stat strong {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  color: var(--color-blue-400);
  line-height: 1;
}
.lnd-mock-floating-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 0.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, 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-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-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;
}
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);
}
.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);
}
.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);
}
.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-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-text-main) !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-lead {
  color: var(--color-text-muted) !important;
  font-size: 0.93rem;
  margin-bottom: 20px;
}
.dash-page-hero .dash-h4 {
  color: var(--color-text-main) !important;
}
@media (max-width: 767px) {
  .dash-page-hero {
    padding: 28px 24px;
  }
}
.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;
  }
}
.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, 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;
}
