:root {
  --lp-bg: #050608;
  --lp-surface: rgba(10, 14, 16, 0.78);
  --lp-border: rgba(255, 255, 255, 0.1);
  --lp-border-strong: rgba(23, 218, 105, 0.28);
  --lp-text: #f5f7f8;
  --lp-muted: #a9b3b7;
  --lp-muted-strong: #dce3e5;
  --lp-green: #17da69;
  --lp-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --lp-radius-xl: 32px;
  --lp-radius-lg: 24px;
  --lp-container: 1240px;
  --lp-header-height: 170px;
  --lp-header-height-compact: 56px;
  --lp-header-offset: 0px;
  --lp-logo-size: 150px;
  --lp-logo-size-compact: 48px;
  --lp-header-padding-y: 10px;
  --lp-header-padding-y-compact: 4px;
  --lp-header-gap: 24px;
  --lp-header-gap-compact: 10px;
  --lp-header-nav-gap: 14px;
  --lp-header-nav-gap-compact: 10px;
  --lp-header-action-gap: 14px;
  --lp-header-action-gap-compact: 10px;
  --lp-header-link-size: 0.95rem;
  --lp-header-link-size-compact: 0.84rem;
  --lp-header-btn-padding-y: 14px;
  --lp-header-btn-padding-x: 22px;
  --lp-header-btn-padding-y-compact: 9px;
  --lp-header-btn-padding-x-compact: 16px;
  --lp-header-btn-font-size-compact: 0.88rem;
}

html {
  scroll-behavior: smooth;
  height: auto;
  overflow-y: auto;
}

body.home {
  min-height: 100vh;
  background: #000;
  color: var(--lp-text);
  overflow-x: hidden;
  overflow-y: auto;
}

body.home.admin-bar .lp-header {
  top: 32px;
}

body.home.admin-bar {
  --lp-header-offset: 32px;
}

.lp-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
  color: var(--lp-text);
}

.lp-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(310deg, #000000, #17da69, #000000, #000000);
  background-size: 800% 800%;
  -webkit-animation: AnimationName 20s ease infinite;
  -moz-animation: AnimationName 20s ease infinite;
  animation: AnimationName 20s ease infinite;
  opacity: 0.42;
  pointer-events: none;
}

@-webkit-keyframes AnimationName {
  0% { background-position: 0% 75% }
  50% { background-position: 100% 26% }
  100% { background-position: 0% 75% }
}

@-moz-keyframes AnimationName {
  0% { background-position: 0% 75% }
  50% { background-position: 100% 26% }
  100% { background-position: 0% 75% }
}

@keyframes AnimationName {
  0% { background-position: 0% 75% }
  50% { background-position: 100% 26% }
  100% { background-position: 0% 75% }
}

.lp-noise,
.lp-grid-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.lp-noise {
  background:
    linear-gradient(rgba(3, 5, 6, 0.7), rgba(3, 5, 6, 0.8)),
    radial-gradient(circle at 20% 20%, rgba(23, 218, 105, 0.11), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(23, 218, 105, 0.1), transparent 26%);
  backdrop-filter: blur(16px);
}

.lp-grid-glow--one {
  background:
    radial-gradient(circle at 18% 16%, rgba(23, 218, 105, 0.18), transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(23, 218, 105, 0.12), transparent 30%);
}

.lp-grid-glow--two {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 82%);
  opacity: 0.3;
}

.lp-container {
  width: min(calc(100% - 40px), var(--lp-container));
  margin: 0 auto;
}

.lp-section {
  position: relative;
  padding: 110px 0;
}

.lp-header {
  position: fixed;
  top: var(--lp-header-offset);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: rgba(4, 6, 8, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.lp-header-inner {
  min-height: 170px;
  padding: var(--lp-header-padding-y) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lp-header-gap);
  transition: min-height 220ms ease, padding 220ms ease, gap 220ms ease;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: gap 220ms ease;
}

.lp-brand-mark {
  width: var(--tn-size);
  height: var(--tn-size);
  border-radius: 50%;
  position: relative;
  background: none;
  box-shadow: none;
  overflow: hidden;
  flex: 0 0 var(--tn-size);
}

.lp-brand-mark::after {
  content: none;
}

.lp-brand-mark.tn-logo {
  --tn-size: var(--lp-logo-size);
  transition: width 220ms ease, height 220ms ease, flex-basis 220ms ease;
}

.lp-brand-text {
  display: grid;
  gap: 2px;
}

.lp-brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: font-size 220ms ease;
}

.lp-brand-text span {
  color: var(--lp-muted);
  font-size: 0.82rem;
  transition: font-size 220ms ease, opacity 220ms ease;
}

.lp-header.is-scrolled {
  background: rgba(4, 6, 8, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.lp-header.is-scrolled .lp-header-inner {
  min-height: 100px;
  padding: var(--lp-header-padding-y-compact) 0;
  gap: var(--lp-header-gap-compact);
}

.lp-header.is-scrolled .lp-brand {
  gap: 8px;
}

.lp-header.is-scrolled .lp-brand-mark.tn-logo {
  --tn-size: var(--lp-logo-size-compact);
}

.lp-header.is-scrolled .lp-brand-text strong {
  font-size: 0.82rem;
  line-height: 1.1;
}

.lp-header.is-scrolled .lp-brand-text span {
  max-height: 0;
  font-size: 0;
  line-height: 0;
  opacity: 0;
  overflow: hidden;
}

.lp-nav,
.lp-header-actions,
.lp-toolbar-actions,
.lp-tag-row,
.lp-filter-stack,
.lp-filter-list,
.lp-categories,
.lp-hero-actions,
.lp-final-actions,
.lp-footer-links,
.lp-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-header .lp-nav {
  gap: var(--lp-header-nav-gap);
}

.lp-header .lp-header-actions {
  gap: var(--lp-header-action-gap);
}

.lp-nav a,
.lp-link-btn,
.lp-footer-links a,
.lp-socials a {
  color: var(--lp-muted-strong);
  font-size: 0.95rem;
  transition: color 180ms ease, opacity 180ms ease;
}

.lp-header .lp-nav a,
.lp-header .lp-link-btn {
  font-size: var(--lp-header-link-size);
  line-height: 1.1;
}

.lp-header .lp-btn {
  padding: var(--lp-header-btn-padding-y) var(--lp-header-btn-padding-x);
  font-size: 0.95rem;
}

.lp-nav a:hover,
.lp-link-btn:hover,
.lp-footer-links a:hover,
.lp-socials a:hover {
  color: var(--lp-text);
}

.lp-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.lp-header.is-scrolled .lp-nav {
  gap: var(--lp-header-nav-gap-compact);
}

.lp-header.is-scrolled .lp-header-actions {
  gap: var(--lp-header-action-gap-compact);
}

.lp-header.is-scrolled .lp-nav a,
.lp-header.is-scrolled .lp-link-btn {
  font-size: var(--lp-header-link-size-compact);
}

.lp-header.is-scrolled .lp-btn {
  padding: var(--lp-header-btn-padding-y-compact) var(--lp-header-btn-padding-x-compact);
  font-size: var(--lp-header-btn-font-size-compact);
  line-height: 1;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn--primary {
  color: #041109;
  background: linear-gradient(135deg, #25ff86 0%, #17da69 100%);
  box-shadow: 0 0 0 1px rgba(23, 218, 105, 0.16), 0 18px 40px rgba(23, 218, 105, 0.24);
}

.lp-btn--primary:hover {
  box-shadow: 0 0 0 1px rgba(23, 218, 105, 0.3), 0 22px 54px rgba(23, 218, 105, 0.3);
}

.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--lp-text);
  border-color: var(--lp-border);
}

.lp-btn--ghost:hover {
  border-color: rgba(23, 218, 105, 0.35);
  box-shadow: 0 0 0 1px rgba(23, 218, 105, 0.12), 0 0 25px rgba(23, 218, 105, 0.12);
}

.lp-btn--glow {
  position: relative;
}

.lp-btn--glow::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(23, 218, 105, 0.3), transparent 65%);
  z-index: -1;
  opacity: 0.55;
}

.lp-btn--block {
  width: 100%;
}

.lp-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.lp-menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.lp-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.lp-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lp-mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-mobile-panel {
  width: min(calc(100% - 40px), var(--lp-container));
  margin: 0 auto;
  padding: 0 0 18px;
  display: grid;
  gap: 10px;
}

.lp-mobile-panel a {
  border: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 14px 16px;
}

.lp-main,
.lp-footer {
  position: relative;
  z-index: 1;
}

.lp-main {
  padding-top: calc(var(--lp-header-height) + var(--lp-header-offset));
}

.lp-hero {
  min-height: calc(90vh - var(--lp-header-height) - var(--lp-header-offset));
  min-height: calc(90dvh - var(--lp-header-height) - var(--lp-header-offset));
  max-height: calc(90vh - var(--lp-header-height) - var(--lp-header-offset));
  max-height: calc(90dvh - var(--lp-header-height) - var(--lp-header-offset));
  padding: 18px 0 10px;
  display: flex;
  align-items: stretch;
}

.lp-hero .lp-container {
  width: 100%;
  max-width: none;
  padding-left: 56px;
  padding-right: 32px;
  min-height: 100%;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(700px, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.lp-hero-copy {
  display: grid;
  align-content: center;
  align-self: center;
  min-width: 0;
  padding-block: 4px;
}

.lp-kicker {
  margin: 0 0 12px;
  color: var(--lp-green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--lp-border-strong);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  color: var(--lp-muted-strong);
  margin-bottom: 14px;
}

.lp-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lp-green);
  box-shadow: 0 0 0 8px rgba(23, 218, 105, 0.12);
  animation: lpBadgePulse 2.4s ease-in-out infinite;
}

@keyframes lpBadgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(23, 218, 105, 0.12);
    opacity: 1;
  }

  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 14px rgba(23, 218, 105, 0.05);
    opacity: 0.92;
  }
}

.lp-hero-copy h1,
.lp-section-head h2,
.lp-final-cta h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.lp-hero-copy h1 {
  font-size: clamp(1.95rem, 3.8vw, 3.35rem);
  max-width: 12ch;
}

.lp-lead,
.lp-section-head p,
.lp-final-cta p,
.lp-feature-card p,
.lp-step-card p,
.lp-testimonial-card p,
.lp-faq-item p {
  color: var(--lp-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.lp-lead {
  max-width: 60ch;
  margin: 14px 0 12px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.lp-hero-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}

.lp-hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--lp-muted-strong);
  font-size: 0.92rem;
  line-height: 1.45;
}

.lp-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lp-green);
  box-shadow: 0 0 18px rgba(23, 218, 105, 0.55);
}

.lp-hero-visual {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  padding-right: 0;
}

.lp-hero-actions {
  gap: 10px;
}

.lp-hero-actions .lp-btn {
  padding: 11px 18px;
  font-size: 0.9rem;
}

.lp-floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 8, 0.6);
  backdrop-filter: blur(18px);
  padding: 12px 16px;
  color: var(--lp-muted-strong);
  box-shadow: var(--lp-shadow);
}

.lp-floating-chip--top {
  top: 30px;
  left: 0;
}

.lp-floating-chip--bottom {
  right: 8px;
  bottom: 72px;
}

.lp-product-card {
  border: 1px solid var(--lp-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--lp-shadow);
  backdrop-filter: blur(22px);
}

.lp-product-card--main {
  width: min(100%, 980px);
  border-radius: var(--lp-radius-xl);
  padding: 18px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lp-product-card--main::before,
.lp-showcase::before,
.lp-final-cta::before {
  content: "";
  position: absolute;
  inset: auto -10% 70% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(23, 218, 105, 0.22), transparent 70%);
  pointer-events: none;
}

.lp-product-card--side {
  position: absolute;
  left: -8px;
  bottom: 6px;
  width: 320px;
  border-radius: 28px;
  padding: 22px;
}

.lp-product-toolbar,
.lp-list-header,
.lp-side-title,
.lp-stats-inline,
.lp-showcase,
.lp-final-cta,
.lp-footer-inner,
.lp-section-head,
.lp-showcase-card,
.lp-showcase-sidebar,
.lp-showcase-map,
.lp-showcase-panel {
  position: relative;
}

.lp-product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.lp-toolbar-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-toolbar-search-form .lp-toolbar-actions {
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

.lp-toolbar-search,
.lp-searchbox {
  flex: 1;
  min-height: 50px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  color: var(--lp-muted);
}

.lp-toolbar-search > span:not(.lp-toolbar-icon) {
  display: none;
}

.lp-toolbar-search-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  color: var(--lp-text);
  font: inherit;
  min-width: 0;
  padding: 0;
}

.lp-toolbar-search-input::placeholder {
  color: var(--lp-muted);
  opacity: 1;
}

.lp-toolbar-search-input::-webkit-search-decoration,
.lp-toolbar-search-input::-webkit-search-cancel-button,
.lp-toolbar-search-input::-webkit-search-results-button,
.lp-toolbar-search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.lp-toolbar-icon,
.lp-searchbox-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid var(--lp-green);
  position: relative;
}

.lp-toolbar-icon::after,
.lp-searchbox-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -5px;
  bottom: -3px;
  background: var(--lp-green);
  transform: rotate(45deg);
  border-radius: 999px;
}

.lp-pill,
.lp-mini-pill,
.lp-filter-token,
.lp-filter-chip,
.lp-category-pill,
.lp-tag-row span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--lp-muted-strong);
}

.lp-pill,
.lp-mini-pill {
  padding: 9px 13px;
  font-size: 0.78rem;
}

.lp-pill,
.lp-filter-token,
.lp-filter-chip,
.lp-category-pill,
.lp-map-marker,
.lp-showcase-marker {
  cursor: pointer;
}

.lp-pill,
.lp-filter-token {
  appearance: none;
}

.lp-pill--button {
  font: inherit;
  background: transparent;
}

.lp-pill--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.is-active,
.is-on {
  border-color: rgba(23, 218, 105, 0.34);
  background: rgba(23, 218, 105, 0.12);
  box-shadow: inset 0 0 0 1px rgba(23, 218, 105, 0.1), 0 0 20px rgba(23, 218, 105, 0.08);
}

.lp-product-body {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 14px;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.lp-list-panel,
.lp-map-panel,
.lp-showcase-panel,
.lp-showcase-card,
.lp-feature-card,
.lp-step-card,
.lp-stat-card,
.lp-testimonial-card,
.lp-faq-item,
.lp-final-cta {
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(18px);
  box-shadow: var(--lp-shadow);
}

.lp-list-panel,
.lp-feature-card,
.lp-step-card,
.lp-stat-card,
.lp-testimonial-card {
  padding: 20px;
}

.lp-list-panel,
.lp-map-panel {
  height: 100%;
  min-height: 0;
}

.lp-list-panel {
  display: flex;
  flex-direction: column;
}

.lp-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.lp-list-header-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.lp-list-header-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(23, 218, 105, 0.22);
  background: rgba(23, 218, 105, 0.08);
  color: var(--lp-green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#lp-hero-results {
  display: grid;
  gap: 10px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 218, 105, 0.32) rgba(255, 255, 255, 0.04);
}

#lp-hero-results .lp-place-card + .lp-place-card {
  margin-top: 0;
}

#lp-hero-results::-webkit-scrollbar {
  width: 8px;
}

#lp-hero-results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

#lp-hero-results::-webkit-scrollbar-thumb {
  background: rgba(23, 218, 105, 0.28);
  border-radius: 999px;
}

#lp-hero-results::-webkit-scrollbar-thumb:hover {
  background: rgba(23, 218, 105, 0.42);
}

.lp-list-panel > .lp-place-card[data-hero-spot],
.lp-map-panel > .lp-map-marker[data-hero-spot] {
  display: none;
}

.lp-place-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  color: inherit;
}

.lp-place-card + .lp-place-card {
  margin-top: 14px;
}

.lp-place-card:hover,
.lp-place-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(23, 218, 105, 0.28);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24), 0 0 28px rgba(23, 218, 105, 0.08);
}

.lp-place-thumb {
  width: 100%;
  max-width: 100%;
  height: 134px;
  min-height: 0;
  aspect-ratio: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-size: auto, auto, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 18px rgba(0, 0, 0, 0.24);
  filter: saturate(1.12) contrast(1.08) brightness(1.1);
}

.lp-place-thumb.is-placeholder {
  background:
    linear-gradient(160deg, rgba(23, 218, 105, 0.1), rgba(4, 8, 10, 0.08)),
    linear-gradient(180deg, rgba(4, 8, 10, 0.02), rgba(4, 8, 10, 0.24));
}

.lp-place-thumb--one {
  background:
    linear-gradient(160deg, rgba(23, 218, 105, 0.1), rgba(4, 8, 10, 0.08)),
    linear-gradient(180deg, rgba(4, 8, 10, 0.02), rgba(4, 8, 10, 0.24)),
    url("../images/hero-rooftop.jpg");
  background-position: center, center, center 44%;
}

.lp-place-thumb--two {
  background:
    linear-gradient(160deg, rgba(23, 218, 105, 0.08), rgba(255, 161, 84, 0.08)),
    linear-gradient(180deg, rgba(4, 8, 10, 0.02), rgba(4, 8, 10, 0.2)),
    url("../images/hero-foodhall.jpg");
  background-position: center, center, center 40%;
}

.lp-place-content {
  display: grid;
  align-content: start;
  gap: 8px;
}

.lp-place-copy {
  color: var(--lp-muted);
  line-height: 1.45;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.lp-place-card.is-empty:hover {
  transform: none;
}

.lp-place-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-place-top h3,
.lp-list-header strong,
.lp-side-title strong,
.lp-feature-card h3,
.lp-step-card h3,
.lp-showcase-card strong,
.lp-stat-card strong,
.lp-testimonial-card strong,
.lp-faq-item summary,
.lp-preview-list article strong {
  margin: 0;
  color: var(--lp-text);
}

.lp-place-content p,
.lp-list-header span,
.lp-side-title span,
.lp-preview-list article span,
.lp-stat-card span,
.lp-testimonial-card span {
  color: var(--lp-muted);
}

.lp-list-header strong {
  font-size: clamp(1.2rem, 0.95rem + 0.7vw, 1.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.lp-list-header .lp-list-header-badge {
  color: var(--lp-green);
}

.lp-list-header .lp-mini-pill {
  flex: 0 0 auto;
  align-self: center;
}

.lp-stat-card strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: calc(100% - 28px);
}

.lp-stat-card span {
  display: block;
  max-width: 16ch;
  color: var(--lp-muted-strong);
  font-size: 0.98rem;
  line-height: 1.45;
}

.lp-place-top span {
  color: var(--lp-green);
  font-weight: 700;
}

.lp-tag-row span,
.lp-filter-token,
.lp-filter-chip,
.lp-category-pill {
  padding: 8px 11px;
  font-size: 0.78rem;
}

.lp-map-panel {
  min-height: 420px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(23, 218, 105, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(4, 7, 8, 0.9), rgba(11, 16, 18, 0.9));
}

.lp-hero-leaflet-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lp-map-grid,
.lp-showcase-map-surface {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
  opacity: 0.55;
}

.lp-hero-leaflet-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 52%, rgba(23, 218, 105, 0.12), transparent 42%);
  background-size: 48px 48px, 48px 48px, auto;
  mix-blend-mode: screen;
  opacity: 0.42;
  pointer-events: none;
  z-index: 401;
}

.lp-map-marker,
.lp-showcase-marker {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
  background: linear-gradient(145deg, #2fff8e, #17da69);
  box-shadow: 0 0 25px rgba(23, 218, 105, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.lp-map-marker::before,
.lp-showcase-marker::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(47, 255, 142, 0.46);
  box-shadow: 0 0 0 5px rgba(23, 218, 105, 0.1);
  pointer-events: none;
}

.lp-map-marker::after,
.lp-showcase-marker::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
}

.lp-map-marker--a { top: 28%; left: 24%; }
.lp-map-marker--b { top: 48%; left: 60%; }
.lp-map-marker--c { top: 68%; left: 42%; }

.lp-map-marker:hover,
.lp-showcase-marker:hover,
.lp-map-marker.is-selected,
.lp-showcase-marker.is-selected {
  transform: rotate(-45deg) scale(1.18);
  box-shadow: 0 0 34px rgba(23, 218, 105, 0.62);
  filter: brightness(1.08);
}

.lp-map-marker:hover::before,
.lp-showcase-marker:hover::before,
.lp-map-marker.is-selected::before,
.lp-showcase-marker.is-selected::before {
  border-color: rgba(47, 255, 142, 0.72);
  box-shadow: 0 0 0 7px rgba(23, 218, 105, 0.15);
}

.lp-map-route {
  position: absolute;
  left: 42%;
  top: 48%;
  width: min(68%, 440px);
  aspect-ratio: 1 / 1;
  height: auto;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(23, 218, 105, 0.35);
  filter: drop-shadow(0 0 18px rgba(23, 218, 105, 0.14));
  pointer-events: none;
}

.lp-map-overlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 12, 0.74);
  backdrop-filter: blur(14px);
  z-index: 500;
  max-width: min(250px, calc(100% - 28px));
}

.lp-map-overlay p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.lp-hero-leaflet-map .leaflet-tile-pane {
  filter: saturate(0.72) brightness(0.52) contrast(1.08) hue-rotate(12deg);
}

.lp-hero-leaflet-map .leaflet-control-zoom {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.lp-hero-leaflet-map .leaflet-control-zoom a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border: 0;
  color: #ecfff5;
  background: rgba(6, 12, 10, 0.82);
}

.lp-hero-leaflet-map .leaflet-control-zoom a:hover {
  background: rgba(23, 218, 105, 0.18);
  color: #ffffff;
}

.lp-hero-leaflet-map .leaflet-bottom.leaflet-right {
  right: 8px;
  bottom: 8px;
}

.lp-hero-leaflet-map .leaflet-control-attribution {
  padding: 4px 8px;
  border-radius: 999px;
  margin: 0 12px 12px 0;
  background: rgba(5, 9, 8, 0.72);
  color: rgba(232, 255, 242, 0.7);
  font-size: 0.7rem;
  backdrop-filter: blur(12px);
}

.lp-hero-leaflet-map .leaflet-control-attribution a {
  color: rgba(47, 255, 142, 0.88);
}

.lp-hero-leaflet-map .leaflet-popup-content-wrapper,
.lp-hero-leaflet-map .leaflet-popup-tip {
  background: rgba(7, 12, 10, 0.92);
  color: #effff6;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.lp-hero-leaflet-map .leaflet-popup-content {
  margin: 0;
}

.lp-hero-popup {
  display: grid;
  gap: 12px;
  width: min(240px, 70vw);
  padding: 12px;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

.lp-hero-leaflet-map .leaflet-popup-content a.lp-hero-popup,
.lp-hero-leaflet-map .leaflet-popup-content a.lp-hero-popup:visited,
.lp-hero-leaflet-map .leaflet-popup-content a.lp-hero-popup:hover,
.lp-hero-leaflet-map .leaflet-popup-content a.lp-hero-popup:focus {
  color: #effff6;
  text-decoration: none;
}

.lp-hero-popup-media {
  display: block;
  min-height: 116px;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.06);
}

.lp-hero-popup-media.is-placeholder {
  background-image:
    radial-gradient(circle at 30% 20%, rgba(47, 255, 142, 0.22), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.lp-hero-popup-copy {
  display: grid;
  gap: 8px;
  padding: 0 4px 4px;
}

.lp-hero-popup-copy strong {
  font-size: 1rem;
  color: #effff6;
  line-height: 1.25;
}

.lp-hero-popup-copy > span {
  color: rgba(232, 255, 242, 0.78);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lp-hero-popup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-hero-popup-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #effff6;
  font-size: 0.72rem;
}

.lp-side-title {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.lp-stats-inline {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.lp-stats-inline div,
.lp-preview-list article {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lp-stats-inline strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.lp-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.lp-section-head h2,
.lp-final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.lp-benefits-grid,
.lp-steps-grid,
.lp-stats-grid,
.lp-testimonials-grid {
  display: grid;
  gap: 20px;
}

.lp-benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-how-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: stretch;
}

.lp-how-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.lp-steps-grid--stack {
  grid-template-columns: 1fr;
}

.lp-how-cta {
  display: flex;
  align-items: center;
}

.lp-how-visual {
  min-height: 100%;
}

.lp-how-image {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: block;
  object-fit: cover;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-steps-grid,
.lp-testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-feature-card,
.lp-step-card,
.lp-stat-card,
.lp-testimonial-card,
.lp-category-pill,
.lp-filter-chip {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.lp-feature-card:hover,
.lp-step-card:hover,
.lp-stat-card:hover,
.lp-testimonial-card:hover,
.lp-category-pill:hover,
.lp-filter-chip:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 218, 105, 0.34);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.4), 0 0 30px rgba(23, 218, 105, 0.08);
}

.lp-stat-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 168px;
  padding: 26px 30px 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 218, 105, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
}

.lp-stat-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(23, 218, 105, 0), rgba(23, 218, 105, 0.34), rgba(23, 218, 105, 0));
  box-shadow: 0 0 24px rgba(23, 218, 105, 0.2);
  opacity: 0.85;
}

.lp-stat-card:hover {
  transform: translateY(-8px);
}

.lp-section-head--wide {
  width: min(calc(100% - 40px), var(--lp-container));
  margin: 0 auto 28px;
}

.lp-mosaic-section {
  overflow: hidden;
}

.lp-mosaic-band {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: grid;
  gap: 18px;
}

.lp-mosaic-row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 93%, transparent);
}

.lp-mosaic-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: lpMosaicLoop 48s linear infinite;
  will-change: transform;
}

.lp-mosaic-row--reverse .lp-mosaic-track {
  animation-direction: reverse;
  animation-duration: 54s;
}

.lp-mosaic-band:hover .lp-mosaic-track {
  animation-play-state: paused;
}

.lp-mosaic-tile {
  width: 340px;
  min-width: 340px;
  aspect-ratio: 16 / 10;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--lp-shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.lp-mosaic-tile.is-wide {
  width: 340px;
  min-width: 340px;
}

.lp-mosaic-tile.is-tall {
  aspect-ratio: 16 / 10;
  height: auto;
}

.lp-mosaic-tile:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(23, 218, 105, 0.32);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), 0 0 28px rgba(23, 218, 105, 0.08);
}

.lp-mosaic-media {
  position: absolute;
  inset: 0;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 320ms ease;
}

.lp-mosaic-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 9, 0.08), rgba(5, 8, 9, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(23, 218, 105, 0.12), transparent 28%);
}

.lp-mosaic-tile:hover .lp-mosaic-media {
  transform: scale(1.06);
}

.lp-mosaic-caption {
  position: absolute;
  inset: auto 16px 16px 16px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.lp-mosaic-caption strong,
.lp-mosaic-caption span {
  display: block;
}

.lp-mosaic-caption strong {
  color: var(--lp-text);
  font-size: 1.02rem;
  line-height: 1.1;
}

.lp-mosaic-caption span {
  color: var(--lp-muted-strong);
  font-size: 0.82rem;
}

.lp-listings-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent);
}

.lp-listings-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: lpListingsLoop 42s linear infinite;
  will-change: transform;
}

.lp-listings-marquee:hover .lp-listings-track {
  animation-play-state: paused;
}

.lp-live-card {
  width: 320px;
  min-width: 320px;
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--lp-shadow);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.lp-live-card:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 218, 105, 0.32);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), 0 0 28px rgba(23, 218, 105, 0.08);
}

.lp-live-card-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  display: block;
  background:
    linear-gradient(160deg, rgba(23, 218, 105, 0.22), rgba(4, 8, 10, 0.22)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 24%),
    #10181b;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lp-live-card.is-placeholder .lp-live-card-media {
  background:
    radial-gradient(circle at 24% 22%, rgba(23, 218, 105, 0.24), transparent 22%),
    linear-gradient(145deg, rgba(23, 218, 105, 0.16), rgba(255, 255, 255, 0.02)),
    #0f1517;
}

.lp-live-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(5, 8, 9, 0), rgba(5, 8, 9, 0.92));
}

.lp-live-card-price {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(4, 8, 10, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--lp-text);
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.lp-live-card-body {
  display: grid;
  gap: 12px;
  padding: 20px 20px 22px;
}

.lp-live-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--lp-green);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.lp-live-card-meta span:last-child {
  color: var(--lp-muted);
}

.lp-live-card strong {
  margin: 0;
  color: var(--lp-text);
  font-size: 1.22rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lp-live-card-text {
  color: var(--lp-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes lpListingsLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@keyframes lpMosaicLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

.lp-feature-icon,
.lp-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 218, 105, 0.25);
  background: rgba(23, 218, 105, 0.1);
  color: var(--lp-green);
  font-weight: 700;
}

.lp-showcase {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--lp-shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.lp-showcase-sidebar {
  display: grid;
  gap: 20px;
}

.lp-showcase-panel,
.lp-showcase-card--floating,
.lp-final-cta {
  padding: 22px;
}

.lp-panel-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--lp-green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.lp-preview-list {
  display: grid;
  gap: 12px;
}

.lp-preview-list article {
  cursor: pointer;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.lp-preview-list article strong,
.lp-preview-list article span {
  display: block;
  min-width: 0;
}

.lp-preview-list article.is-highlighted {
  transform: translateX(6px);
  border-color: rgba(23, 218, 105, 0.3);
  background: rgba(23, 218, 105, 0.09);
}

.lp-showcase-meta {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-showcase-map {
  min-height: 540px;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lp-border);
  background:
    radial-gradient(circle at 30% 20%, rgba(23, 218, 105, 0.14), transparent 20%),
    linear-gradient(180deg, #081012, #06090a);
}

.lp-showcase-marker--one { top: 18%; left: 28%; }
.lp-showcase-marker--two { top: 42%; left: 62%; }
.lp-showcase-marker--three { top: 64%; left: 48%; }

.lp-showcase-card--floating {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 320px;
}

.lp-showcase-card p {
  margin: 10px 0 0;
}

.lp-showcase-panel {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
}

.lp-filter-list {
  align-items: flex-start;
  gap: 12px;
}

.lp-showcase-panel .lp-panel-label {
  margin-bottom: 0;
}

.lp-filter-chip {
  flex: 0 0 auto;
  white-space: normal;
}

.lp-showcase-card strong {
  display: block;
  margin-top: 2px;
}

.lp-category-note {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--lp-muted);
  line-height: 1.7;
}

#categories.lp-section {
  padding-bottom: 36px;
}

#stats.lp-section {
  padding-top: 24px;
}

.lp-avatar {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(23, 218, 105, 0.22), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(23, 218, 105, 0.2);
  color: var(--lp-text);
  font-weight: 800;
}

.lp-faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.lp-faq-list {
  display: grid;
  gap: 14px;
}

.lp-faq-item {
  padding: 0 24px;
  overflow: hidden;
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  position: relative;
  padding-right: 34px;
  transition: color 300ms ease;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--lp-green);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), color 300ms ease;
}

.lp-faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.lp-faq-item > .lp-faq-answer {
  display: block !important;
  height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  will-change: height, opacity, transform;
  transition:
    height 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-faq-item > .lp-faq-answer > p {
  margin: 0;
  padding: 0 0 24px;
}

.lp-faq-item[open] > .lp-faq-answer {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

.lp-faq-item[open] > .lp-faq-answer > p {
  padding: 0 0 24px;
}

.lp-section--cta {
  padding-top: 40px;
}

.lp-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
}

.lp-final-actions {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  width: min(100%, 250px);
  min-width: 250px;
}

.lp-final-actions .lp-btn {
  width: 100%;
  min-height: 56px;
  padding-inline: 20px;
  text-align: center;
 }

.lp-footer {
  padding: 0 0 48px;
}

.lp-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 24px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-brand p {
  max-width: 52ch;
  color: var(--lp-muted);
}

[data-ui-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-ui-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .lp-bg,
  [data-ui-reveal],
  .lp-faq-item > .lp-faq-answer,
  .lp-faq-item summary::after,
  .lp-listings-track,
  .lp-badge-dot {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .lp-hero {
    min-height: auto;
    max-height: none;
    display: block;
  }

  .lp-section-head--wide {
    width: min(calc(100% - 24px), var(--lp-container));
  }

  .lp-mosaic-tile {
    width: 280px;
    min-width: 280px;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .lp-mosaic-tile.is-wide {
    width: 280px;
    min-width: 280px;
  }

  .lp-mosaic-tile.is-tall {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .lp-how-grid {
    grid-template-columns: 1fr;
  }

  .lp-how-image {
    min-height: 420px;
  }

  .lp-toolbar-search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-toolbar-search-form .lp-toolbar-actions {
    justify-content: flex-start;
  }

  .lp-nav,
  .lp-link-btn,
  .lp-header-actions .lp-btn {
    display: none;
  }

  .lp-menu-btn {
    display: inline-flex;
  }

  .lp-hero-grid,
  .lp-showcase,
  .lp-faq-wrap,
  .lp-footer-inner {
    grid-template-columns: 1fr;
  }

  .lp-hero-visual {
    min-height: 620px;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .lp-product-card--side {
    left: 0;
    bottom: -10px;
  }

  .lp-live-card {
    width: 292px;
    min-width: 292px;
  }

  .lp-benefits-grid,
  .lp-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lp-mosaic-band {
    gap: 12px;
  }

  .lp-mosaic-track {
    gap: 12px;
  }

  .lp-mosaic-tile,
  .lp-mosaic-tile.is-wide {
    width: 72vw;
    min-width: 72vw;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .lp-mosaic-tile.is-tall {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  :root {
    --lp-header-height: 138px;
    --lp-header-height-compact: 52px;
    --lp-logo-size: 108px;
    --lp-logo-size-compact: 42px;
    --lp-header-padding-y: 8px;
    --lp-header-padding-y-compact: 4px;
    --lp-header-gap: 16px;
    --lp-header-gap-compact: 8px;
  }

  body.home.admin-bar .lp-header {
    top: 46px;
  }

  body.home.admin-bar {
    --lp-header-offset: 46px;
  }

  .lp-container {
    width: min(calc(100% - 24px), var(--lp-container));
  }

  .lp-section {
    padding: 80px 0;
  }

  .lp-hero {
    min-height: auto;
    max-height: none;
    padding: 20px 0 0;
  }

  .lp-hero .lp-container {
    padding-left: 20px;
    padding-right: 16px;
  }

  .lp-hero-visual {
    min-height: auto;
    padding-bottom: 120px;
  }

  .lp-product-card--main,
  .lp-product-card--side,
  .lp-showcase-panel,
  .lp-showcase-card--floating,
  .lp-final-cta,
  .lp-list-panel,
  .lp-feature-card,
  .lp-step-card,
  .lp-stat-card,
  .lp-testimonial-card {
    padding: 18px;
  }

  .lp-product-body,
  .lp-benefits-grid,
  .lp-steps-grid,
  .lp-stats-grid,
  .lp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lp-product-card--side {
    position: relative;
    width: 100%;
    margin-top: 18px;
  }

  .lp-floating-chip {
    display: none;
  }

  .lp-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-listings-track {
    gap: 14px;
    animation-duration: 32s;
  }

  .lp-hero-actions .lp-btn,
  .lp-final-actions .lp-btn {
    flex: 1 1 100%;
  }

  .lp-final-actions {
    width: 100%;
    min-width: 0;
  }

  .lp-faq-item {
    padding: 0 18px;
  }

  .lp-live-card {
    width: 84vw;
    min-width: 84vw;
  }

  .lp-live-card-media {
    min-height: 188px;
  }

}
