/* Landing page layer */
.landing-page {
  background: var(--bg);
}

.landing-page .grain {
  opacity: 0.04;
}

.landing-page main {
  position: relative;
  z-index: 1;
}

.landing-page .header--landing {
  background: rgba(10, 11, 13, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 -1px 0 var(--border);
}

.landing-page .header--landing.header--scrolled {
  background: rgba(10, 11, 13, 0.92);
}

.landing-page .cabinet-hero--section {
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.landing-page .cabinet-hero--section.cabinet-hero--left {
  text-align: left;
  align-items: flex-start;
  margin-inline: 0;
  max-width: none;
}

.landing-page .cabinet-hero--section .cabinet-hero__desc {
  max-width: 48ch;
  margin-inline: auto;
}

.landing-page .cabinet-hero--left .cabinet-hero__desc {
  margin-inline: 0;
}

.landing-page .cabinet-hero__title--lg {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.landing-page .quick-order__perks-inline li {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-page .order-widget--wizard {
  background: var(--surface);
  border-color: rgba(var(--accent-rgb), 0.12);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.landing-page .order-widget--wizard::before {
  opacity: 0.7;
}

.landing-page .order-widget__status {
  padding: 0.35rem 0.75rem;
  font-size: 0.6875rem;
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
}

.landing-page .service-card {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.landing-page .service-card--accent {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06) 0%, var(--bg-card) 55%);
  border-color: rgba(var(--accent-rgb), 0.2);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 32px rgba(var(--accent-rgb), 0.06);
}

.landing-page .trust__inner {
  gap: 1rem;
}

.landing-page .trust__item {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.landing-page .trust__item:not(:last-child) {
  border-right: none;
  padding-right: 1rem;
}

.landing-page .free-bonus__card {
  border-color: rgba(var(--accent-rgb), 0.12);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.landing-page .testimonial {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.landing-page .step {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.landing-page .accordion__item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.landing-page .footer {
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .landing-page .cabinet-sidebar.mobile-drawer {
    display: none !important;
  }

  .landing-page .cabinet-hero--section:not(.cabinet-hero--left) {
    flex-direction: column;
  }

  .landing-page .cabinet-hero--section .cabinet-hero__aside {
    margin-top: 0.25rem;
  }
}

@media (max-width: 768px) {
  .landing-page .header--landing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-top: env(safe-area-inset-top, 0px);
    background: #0a0b0d;
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid var(--border);
  }

  .landing-page .cabinet-drawer-overlay.mobile-overlay {
    top: var(--mobile-header-offset);
    bottom: 0;
    z-index: 25;
  }
}
