/* ==========================================================================
   Landing Page — Home redesign
   Uses theme tokens from theme-tokens.css for light/dark support.
   ========================================================================== */

.landing-page {
  background: var(--color-bg-page);
  /* Excel: bg-primary */
  color: var(--color-text-primary);
  --landing-space-xs: 12px;
  --landing-space-sm: 20px;
  --landing-space-md: 24px;
  --landing-space-lg: 32px;
  --landing-space-xl: 40px;
  --landing-header-gap: 16px;
}

@media (max-width: 991px) {
  .landing-page {
    overflow-x: clip;
    max-width: 100%;
  }

  .landing-page .container {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
  }

  .landing-page>.landing-section {
    scroll-margin-top: 120px;
  }

  .landing-trust-categories .container,
  .landing-trust-categories__panel {
    overflow: visible;
  }
}

@media (min-width: 768px) {
  .landing-page {
    --landing-space-sm: 24px;
    --landing-space-md: 28px;
    --landing-space-lg: 36px;
    --landing-space-xl: 44px;
    --landing-header-gap: 20px;
  }
}

@media (min-width: 1200px) {
  .landing-page {
    --landing-space-md: 32px;
    --landing-space-lg: 40px;
  }
}

/* Tighter vertical rhythm — one padding per section, no doubled gaps */
.landing-page .landing-section {
  padding: var(--landing-space-md) 0;
}

.landing-page>.landing-hero {
  padding-top: 12px;
  padding-bottom: var(--landing-space-md);
}

.landing-page>.landing-how-it-works,
.landing-page>.landing-products-section,
.landing-page>.landing-trust-categories,
.landing-page>.landing-sell-banner {
  padding: var(--landing-space-md) 0;
}

.landing-page>.landing-trust-badges {
  padding: var(--landing-space-sm) 0 0;
}

.landing-page>.landing-cta-banner {
  padding-top: var(--landing-space-xs);
  padding-bottom: 56px;
}

.landing-trust-categories+.landing-sell-banner {
  padding-top: 0;
}

.landing-sell-banner+.landing-products-section {
  padding-top: var(--landing-space-xs);
}

.landing-products-section+.landing-trust-badges {
  padding-top: var(--landing-space-xs);
}

@media (min-width: 768px) {
  .landing-page>.landing-hero {
    padding-top: 16px;
    padding-bottom: var(--landing-space-lg);
  }

  .landing-page>.landing-cta-banner {
    padding-bottom: 72px;
  }
}

.landing-accent {
  color: var(--color-brand-primary);
}

/* Shared buttons & links */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.landing-btn:hover {
  text-decoration: none !important;
  transform: translateY(-1px);
}

.landing-btn--primary {
  background: var(--color-info);
  color: var(--color-text-on-accent) !important;
  border-color: var(--color-info);
}

.landing-btn--primary:hover {
  background: var(--color-info-hover);
  border-color: var(--color-info-hover);
  color: var(--color-text-on-accent) !important;
}

.landing-btn--outline {
  background: var(--color-bg-surface);
  color: var(--color-text-link) !important;
  border-color: var(--color-info);
}

.landing-btn--outline:hover {
  background: var(--color-info-soft);
  color: var(--color-info-hover) !important;
}

.landing-btn--accent {
  background: var(--color-brand-primary);
  color: var(--color-text-on-accent) !important;
  border-color: var(--color-brand-primary);
}

.landing-btn--accent:hover {
  background: var(--color-brand-primary-hover);
  border-color: var(--color-brand-primary-hover);
  color: var(--color-text-on-accent) !important;
}

.landing-btn--outline-light {
  background: transparent;
  color: var(--color-text-on-accent) !important;
  border-color: rgba(255, 255, 255, 0.85);
}

.landing-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text-on-accent) !important;
}

.landing-btn--light {
  background: var(--color-bg-surface);
  color: var(--color-text-link) !important;
  border-color: var(--color-bg-surface);
}

.landing-btn--light:hover {
  background: var(--color-bg-surface-alt);
  color: var(--color-info-hover) !important;
}

.landing-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: var(--landing-header-gap, 24px);
}

.landing-section-header h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
}

.landing-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary) !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.landing-view-all-link i {
  color: var(--color-info);
  transition: color 0.2s ease;
}

.landing-view-all-link:hover {
  color: var(--color-text-primary) !important;
  text-decoration: none !important;
}

.landing-view-all-link:hover i {
  color: var(--color-info-hover);
}

.landing-view-all-link--button {
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid var(--color-border-default);
  border-radius: 999px;
  background: var(--color-bg-surface);
}

.landing-view-all-link--button:hover {
  border-color: var(--color-info);
  background: var(--color-info-soft);
}

/* Hero */
.landing-hero__row {
  row-gap: 28px;
}

.landing-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--color-info-soft);
  color: var(--color-text-link);
  font-size: 14px;
}

.landing-trust-badge i {
  font-size: 14px;
}

.landing-hero__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--color-text-primary);
}

.landing-hero__subtitle {
  margin: 0 0 24px;
  max-width: 520px;
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.landing-hero__locations {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.landing-hero__locations-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.landing-hero__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.landing-hero__city-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--color-landing-chip-bg);
  border: 1px solid var(--color-landing-chip-border);
  color: var(--color-landing-chip-text);
  font-size: 12px;
  font-weight: 500;
}

/* Phone mockup — live inspection session UI (light + dark site themes) */
.landing-phone-mockup {
  --phone-frame-bg: var(--color-bg-inverse);
  --phone-frame-border: rgba(15, 23, 42, 0.08);
  --phone-frame-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  --phone-screen-bg: var(--color-video-bg);
  --phone-header-bg: rgba(15, 23, 42, 0.72);
  --phone-header-text: var(--color-text-on-accent);
  --phone-header-text-muted: rgba(255, 255, 255, 0.78);
  --phone-video-overlay: linear-gradient(180deg,
      rgba(15, 23, 42, 0.08) 0%,
      rgba(15, 23, 42, 0.58) 100%);
  --phone-card-bg: var(--color-bg-surface);
  --phone-card-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
  --phone-card-title: var(--color-text-primary);
  --phone-card-text: var(--color-text-secondary);
  --phone-bubble-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  --phone-bubble-buyer-bg: var(--color-bg-surface);
  --phone-bubble-buyer-text: var(--color-text-primary);
  --phone-bubble-seller-bg: var(--color-bg-surface);
  --phone-bubble-seller-text: var(--color-info);
  --phone-bubble-seller-border: var(--delivery-border, rgba(47, 143, 214, 0.35));
  --phone-shutter-bg: var(--color-bg-page-muted);
  --phone-shutter-shadow: var(--delivery-shadow);
  --phone-shutter-label: var(--color-text-secondary);
  --phone-shutter-value: var(--color-text-primary);
  --phone-controls-bg: rgba(15, 23, 42, 0.78);
  --phone-control-border: rgba(255, 255, 255, 0.3);
  --phone-control-bg: rgba(255, 255, 255, 0.08);
  --phone-control-icon: var(--color-text-on-accent);
  --phone-control-label: rgba(255, 255, 255, 0.9);
  --phone-privacy-bg: rgba(15, 23, 42, 0.78);
  --phone-privacy-text: rgba(255, 255, 255, 0.76);
  --phone-secure-bg: var(--color-bg-surface);
  --phone-secure-text: var(--color-info);
  --phone-avatar-border: rgba(255, 255, 255, 0.22);

  display: flex;
  justify-content: center;
  padding: 12px 0;
}

[data-theme="dark"] .landing-phone-mockup {
  --phone-frame-bg: var(--color-video-bg);
  --phone-frame-border: rgba(255, 255, 255, 0.12);
  --phone-frame-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
  --phone-screen-bg: var(--color-video-bg);
  --phone-header-bg: rgba(0, 0, 0, 0.72);
  --phone-video-overlay: linear-gradient(180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.72) 100%);
  --phone-card-bg: var(--color-bg-elevated);
  --phone-card-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  --phone-card-title: var(--color-text-primary);
  --phone-card-text: var(--color-text-secondary);
  --phone-bubble-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  --phone-bubble-buyer-bg: var(--color-bg-elevated);
  --phone-bubble-buyer-text: var(--color-text-primary);
  --phone-bubble-seller-bg: var(--color-bg-elevated);
  --phone-bubble-seller-border: var(--delivery-border);
  --phone-shutter-bg: #EAF4FB;
  --phone-shutter-shadow: var(--delivery-shadow);
  --phone-shutter-label: #4B5563;
  --phone-shutter-value: #1F2937;
  --phone-controls-bg: rgba(0, 0, 0, 0.86);
  --phone-control-border: rgba(255, 255, 255, 0.22);
  --phone-control-bg: rgba(255, 255, 255, 0.06);
  --phone-privacy-bg: rgba(0, 0, 0, 0.86);
  --phone-secure-bg: var(--color-bg-surface);
  --phone-secure-text: var(--color-info-hover);
}

.landing-phone-mockup__frame {
  width: min(100%, 320px);
  padding: 10px;
  border-radius: 34px;
  border: 1px solid var(--phone-frame-border);
  background: var(--phone-frame-bg);
  box-shadow: var(--phone-frame-shadow);
}

.landing-phone-mockup__screen {
  overflow: hidden;
  border-radius: 26px;
  background: var(--phone-screen-bg);
  color: var(--phone-header-text);
}

.landing-phone-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
  background: var(--phone-header-bg);
}

.landing-phone-mockup__seller {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.landing-phone-mockup__seller-meta {
  min-width: 0;
}

.landing-phone-mockup__seller-meta strong {
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--phone-header-text);
}

.landing-phone-mockup__seller-meta strong span {
  font-weight: 700;
  opacity: 0.85;
}

.landing-phone-mockup__session {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--phone-header-text-muted);
}

.landing-phone-mockup__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 2px var(--color-success-soft);
  flex-shrink: 0;
}

.landing-phone-mockup__avatar {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--color-warning) 0%, transparent 45%),
    linear-gradient(145deg, var(--color-border-hover) 0%, var(--color-bg-elevated) 100%);
  border: 2px solid var(--phone-avatar-border);
}

.landing-phone-mockup__secure {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--phone-secure-bg);
  color: var(--phone-secure-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: var(--color-shadow-xs);
}

.landing-phone-mockup__secure i {
  font-size: 12px;
}

.landing-phone-mockup__video {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 340px;
  padding: 12px;
  background:
    var(--phone-video-overlay),
    url("https://images.pexels.com/photos/10632710/pexels-photo-10632710.jpeg") center center / cover no-repeat;
}

.landing-phone-mockup__video-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.landing-phone-mockup__video-top .landing-phone-mockup__bubble--buyer {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 106px);
  align-self: flex-start;
}

.landing-phone-mockup__protected-card {
  flex: 0 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 96px;
  padding: 9px 8px 10px;
  border-radius: 14px;
  background: var(--phone-card-bg);
  box-shadow: var(--phone-card-shadow);
  text-align: center;
}

.landing-phone-mockup__protected-title {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--phone-card-title);
}

.landing-phone-mockup__protected-text {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.25;
  color: var(--phone-card-text);
}

.landing-phone-mockup__protected-shield {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 8px;
  color: var(--color-text-link);
  font-size: 22px;
}

.landing-phone-mockup__protected-check {
  position: absolute;
  font-size: 12px;
  color: var(--color-text-on-accent);
}

.landing-phone-mockup__chat-overlay {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.landing-phone-mockup__video-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
}

.landing-phone-mockup__video-bottom .landing-phone-mockup__bubble--seller {
  align-self: flex-end;
  max-width: 72%;
}

.landing-phone-mockup__bubble {
  max-width: 100%;
  padding: 9px 11px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.35;
  box-shadow: var(--phone-bubble-shadow);
}

.landing-phone-mockup__bubble--buyer {
  align-self: flex-start;
  max-width: 100%;
  background: var(--phone-bubble-buyer-bg);
  color: var(--phone-bubble-buyer-text);
  border-bottom-left-radius: 4px;
}

.landing-phone-mockup__bubble--seller {
  align-self: flex-end;
  max-width: 92%;
  background: var(--phone-bubble-seller-bg);
  color: var(--phone-bubble-seller-text);
  border: 1.5px solid var(--phone-bubble-seller-border);
  border-bottom-right-radius: 4px;
  font-weight: 600;
}

.landing-phone-mockup__shutter {
  flex-shrink: 0;
  width: 100%;
  padding: 10px 12px 12px;
  border-radius: 16px;
  background: var(--phone-shutter-bg);
  box-shadow: var(--phone-shutter-shadow);
  text-align: center;
}

.landing-phone-mockup__shutter small {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--phone-shutter-label);
}

.landing-phone-mockup__shutter strong {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--phone-shutter-value);
}

.landing-phone-mockup__controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 14px 12px 10px;
  background: var(--phone-controls-bg);
}

.landing-phone-mockup__control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.landing-phone-mockup__control-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--phone-control-border);
  background: var(--phone-control-bg);
  color: var(--phone-control-icon);
  font-size: 14px;
}

.landing-phone-mockup__control-btn--end {
  border: 0;
  background: var(--color-danger);
  color: var(--color-text-on-accent);
}

.landing-phone-mockup__end-icon {
  transform: rotate(135deg);
  display: block;
}

.landing-phone-mockup__control-label {
  font-size: 12px;
  line-height: 1.2;
  color: var(--phone-control-label);
  text-align: center;
}

.landing-phone-mockup__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px 14px;
  background: var(--phone-privacy-bg);
  font-size: 12px;
  line-height: 1.35;
  color: var(--phone-privacy-text);
  text-align: center;
}

.landing-phone-mockup__privacy i {
  font-size: 12px;
  flex-shrink: 0;
}

/* How it works */
.landing-how-it-works__heading {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-primary);
  text-align: center;
}

.landing-how-it-works__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  border: none;
}

.landing-how-it-works__tab {
  flex: 0 0 auto;
  padding: 8px 2px 10px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--color-text-secondary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.landing-how-it-works__tab.is-active {
  color: var(--color-text-primary);
  border-bottom-color: var(--color-info);
  background: transparent;
  box-shadow: none;
}

.landing-how-it-works__panel {
  border: 1px solid var(--color-border-default);
  border-radius: 20px;
  background: var(--color-bg-surface);
  box-shadow: var(--color-shadow-xs);
  overflow: hidden;
}

.landing-how-it-works__panel-title,
.landing-how-it-works__badge {
  margin: 0;
  padding: 24px 24px 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
}

.landing-how-it-works__panel-title {
  color: var(--color-text-primary);
}

.landing-how-it-works__badge {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-link);
}

.landing-how-it-works__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px 20px 28px;
}

.landing-how-it-works__step-arrow {
  display: none;
}

@media (min-width: 576px) {
  .landing-how-it-works__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {

  .landing-how-it-works__panel-title,
  .landing-how-it-works__badge {
    padding-left: 28px;
  }

  .landing-how-it-works__steps {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
    padding: 28px 24px 32px;
  }

  .landing-how-it-works__step {
    flex: 1 1 0;
    min-width: 0;
  }

  .landing-how-it-works__step-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    padding-top: 14px;
    color: var(--color-text-muted);
    font-size: 12px;
    opacity: 0.65;
  }
}

.landing-how-it-works__step-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--color-bg-surface-alt);
  border: 1px solid var(--color-border-default);
  color: var(--color-icon-default);
  font-size: 18px;
}

.landing-how-it-works__step h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-primary);
}

.landing-how-it-works__step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.landing-how-it-works__step p strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

.landing-how-it-works__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--color-bg-surface-alt);
  border-top: 1px solid var(--color-border-default);
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.landing-how-it-works__footer i {
  flex-shrink: 0;
  color: var(--color-text-link);
  font-size: 16px;
}

.landing-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.landing-hero__upload {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--color-shadow-md);
  background: transparent;
  line-height: 0;
}

.landing-hero__upload-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 992px) {
  .landing-hero__upload {
    max-width: 320px;
  }

  .landing-hero__upload-image {
    max-height: 400px;
  }
}

@media (max-width: 991px) {
  .landing-hero__upload {
    max-width: 260px;
  }

  .landing-hero__upload-image {
    max-height: 300px;
  }
}

@media (max-width: 575px) {
  .landing-hero__upload {
    max-width: 220px;
    border-radius: 14px;
  }

  .landing-hero__upload-image {
    max-height: 260px;
  }
}

.landing-phone-mockup--image {
  width: 100%;
  max-width: min(100%, 560px);
  padding: 0;
  margin: 0 auto;
}

.landing-phone-mockup__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 520px);
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  box-shadow: var(--color-shadow-md);
  background: var(--color-bg-surface);
}

/* Product carousel section — Excel bg-subtle for grouped sections */
.landing-products-section {
  background: var(--color-bg-subtle);
}

.landing-products-minH {
  min-height: 120px;
}

.landing-product-carousel .owl-dots {
  margin-top: 20px !important;
}

.landing-product-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px;
  background: var(--color-border-strong) !important;
  transition: width 0.2s ease, background 0.2s ease;
}

.landing-product-carousel .owl-dot.active span {
  width: 28px;
  border-radius: 999px;
  background: var(--color-info) !important;
}

.landing-product-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--color-shadow-xs);
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-product-card:hover {
  border-color: var(--color-border-default);
  box-shadow: var(--color-shadow-sm);
  transform: translateY(-2px);
}

.landing-product-carousel .owl-stage {
  display: flex !important;
}

/* Allow the page to scroll vertically when a touch starts over a product
   card/image, while keeping the carousel's horizontal swipe gesture. Without
   this, Owl Carousel captures vertical touch-drags and blocks page scrolling
   on mobile. */
.landing-product-carousel .owl-stage-outer,
.landing-product-carousel .owl-stage,
.landing-product-carousel .owl-item,
.landing-product-card__image {
  touch-action: pan-y;
}

.landing-product-carousel .owl-item {
  display: flex;
  flex-direction: column;
}

.landing-product-carousel .owl-item>.item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.landing-product-card__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
}

.landing-product-card__link:hover,
.landing-product-card__link:focus {
  text-decoration: none !important;
}

.landing-product-card__image {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-disabled);
  border: 0;
}

.landing-product-card__image>a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.landing-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-product-card__featured {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 80px;
  background: var(--color-brand-primary-soft);
  color: var(--color-brand-primary-contrast);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  box-shadow: none;
}


.product-card-video-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 10px;
  background: var(--color-bg-surface);
  color: var(--color-video-icon, var(--color-info));
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(47, 143, 214, 0.18);
  z-index: 2;
  padding: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card-video-btn:hover,
.product-card-video-btn:focus {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
  outline: none;
}

.product-card-video-btn__online-dot {
  position: absolute;
  top: 3px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /* background: #22c55e; */
  border: 2px solid var(--color-bg-surface);
  /* box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.45); */
  z-index: 6;
  pointer-events: none;
}

.product-card-video-btn--online::after {
  content: none;
}

.landing-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 12px 2px 4px;
}

.landing-product-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.45em * 2);
}

.landing-product-card__price {
  margin-top: auto;
  padding-top: 12px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.landing-product-carousel .owl-stage-outer {
  padding: 4px 0 8px;
}

.landing-product-carousel .item {
  padding: 2px 0;
  height: 100%;
}

[data-theme="dark"] .landing-product-card {
  background: var(--color-bg-surface);
  border-color: var(--color-border-default);
}

[data-theme="dark"] .product-card-video-btn {
  background: var(--color-bg-surface);
  border-color: rgba(96, 165, 250, 0.25);
}

.landing-empty-alert {
  margin: 0;
}

/* Trust categories */
.landing-trust-categories__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px 20px;
  border-radius: 20px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  box-shadow: var(--color-shadow-xs);
}

@media (min-width: 992px) {
  .landing-trust-categories__panel {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
    align-items: center;
    padding: 36px 32px;
    gap: 32px;
  }
}

.landing-trust-categories__intro h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.landing-trust-categories__intro p {
  margin: 0 0 16px;
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.landing-trust-categories__media {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-disabled);
  border: 1px solid var(--color-border-subtle);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.landing-trust-categories__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-trust-categories__slider {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  min-height: 188px;
  -webkit-overflow-scrolling: touch;
}

.landing-trust-categories__slider::before,
.landing-trust-categories__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}

.landing-trust-categories__slider::before {
  left: 0;
  background: linear-gradient(90deg,
      var(--color-bg-surface) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.landing-trust-categories__slider::after {
  right: 0;
  background: linear-gradient(270deg,
      var(--color-bg-surface) 0%,
      rgba(255, 255, 255, 0) 100%);
}

[data-theme="dark"] .landing-trust-categories__slider::before {
  background: linear-gradient(90deg,
      var(--color-bg-surface) 0%,
      rgba(30, 41, 59, 0) 100%);
}

[data-theme="dark"] .landing-trust-categories__slider::after {
  background: linear-gradient(270deg,
      var(--color-bg-surface) 0%,
      rgba(30, 41, 59, 0) 100%);
}

.landing-trust-categories__slider-fade {
  display: none;
}

.landing-trust-categories__track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: max-content;
  min-width: 100%;
  padding: 4px 0 8px;
  animation: landing-trust-categories-marquee 36s linear infinite;
  will-change: transform;
  -webkit-animation: landing-trust-categories-marquee 36s linear infinite;
}

.landing-trust-categories__slider:hover .landing-trust-categories__track {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

@keyframes landing-trust-categories-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@-webkit-keyframes landing-trust-categories-marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-trust-categories__track {
    animation: none;
    -webkit-animation: none;
    flex-wrap: nowrap;
    width: max-content;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
}

.landing-trust-categories__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  flex: 0 0 148px;
  width: 148px;
  padding: 8px 6px;
  border-radius: 12px;
  background: transparent;
  border: 0;
  text-decoration: none !important;
  transition: transform 0.2s ease;
}

.landing-trust-categories__item:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: transparent;
  text-decoration: none !important;
}

.landing-trust-categories__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 160px;
}

.landing-trust-categories__text strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.landing-trust-categories__text span {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

/* Sell banner */
.landing-sell-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--color-bg-surface);
  /* Excel: bg-surface — card/panel */
  border: 1px solid var(--color-delivery-border, var(--color-border-default));
}

@media (min-width: 768px) {
  .landing-sell-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 36px;
  }
}

.landing-sell-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.landing-sell-banner__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--color-info-soft);
  color: var(--color-text-link);
  font-size: 22px;
}

.landing-sell-banner__content h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--color-text-primary);
}

.landing-sell-banner__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 520px;
}

.landing-sell-banner__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.landing-sell-banner__note {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
}

.landing-sell-banner__note-line {
  display: block;
  font-size: 14px;
  line-height: 1.45;
}

.landing-sell-banner__note-line--primary {
  font-weight: 700;
  color: var(--color-text-primary);
}

.landing-sell-banner__note-line--secondary {
  font-weight: 400;
  color: var(--color-text-link);
}

.landing-sell-banner__note-line--secondary a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-sell-banner__note-line--secondary a:hover {
  color: var(--color-info-hover);
  text-decoration: underline;
}

/* Trust badges — Excel bg-subtle section band; inner panel = bg-surface */
.landing-trust-badges {
  background: var(--color-bg-subtle);
  border: none;
}

.landing-trust-badges.landing-section {
  padding: var(--landing-space-sm) 0 0;
}

.landing-products-section+.landing-trust-badges.landing-section {
  padding-top: var(--landing-space-xs);
}

.landing-trust-badges__panel,
.landing-trust-badges .container>.landing-trust-badges__grid {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  border-radius: 16px;
  padding: 20px 16px 18px;
  box-shadow: var(--color-shadow-xs);
}

@media (min-width: 768px) {
  .landing-trust-badges.landing-section {
    padding-top: var(--landing-space-md);
  }

  .landing-trust-badges__panel,
  .landing-trust-badges .container>.landing-trust-badges__grid {
    padding: 24px 28px 22px;
  }
}

.landing-trust-badges__panel .landing-trust-badges__grid {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.landing-trust-badges__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 576px) {
  .landing-trust-badges__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}

@media (min-width: 992px) {
  .landing-trust-badges__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 20px;
  }
}

.landing-trust-badges__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 0;
}

.landing-trust-badges__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin: 2px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--color-icon-default);
  font-size: 22px;
}

.landing-trust-badges__text {
  min-width: 0;
  flex: 1;
}

.landing-trust-badges__text h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-primary);
}

.landing-trust-badges__text p {
  margin: 0;
  font-size: clamp(11px, 1.2vw, 12px);
  line-height: 1.45;
  color: var(--color-text-secondary);
}

[data-theme="dark"] .landing-trust-badges__icon {
  width: 40px;
  height: 40px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 17px;
  color: var(--color-icon-default);
}

[data-theme="dark"] .landing-trust-badges__text h3 {
  color: var(--color-text-primary);
}

[data-theme="dark"] .landing-trust-badges__text p {
  color: rgba(255, 255, 255, 0.62);
}

[data-theme="dark"] .landing-trust-badges__panel,
[data-theme="dark"] .landing-trust-badges .container>.landing-trust-badges__grid {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  box-shadow: none;
}

/* CTA banner — theme-aware */
.landing-cta-banner.landing-section {
  padding-top: var(--landing-space-xs);
  padding-bottom: 156px;
  background: var(--color-bg-subtle);
}

.landing-cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 24px 20px 36px;
  border-radius: 24px;
  background: var(--color-info);
  color: var(--color-text-on-accent);
}

@media (min-width: 768px) {
  .landing-cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 36px 44px;
    border-radius: 50px;
  }
}

.landing-cta-banner__main {
  flex: 1 1 auto;
  min-width: 0;
}

.landing-cta-banner__head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.landing-cta-banner__icon {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-text-on-accent) 20%, transparent);
  font-size: 22px;
  color: var(--color-text-on-accent);
}

.landing-cta-banner__shield-check {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  line-height: 1;
}

.landing-cta-banner__copy h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text-on-accent);
}

.landing-cta-banner__copy p {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-text-on-accent) 92%, transparent);
}

.landing-cta-banner__features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin: 14px 0 4px;
  padding: 0 0 4px;
  list-style: none;
}

@media (min-width: 992px) {
  .landing-cta-banner__features {
    flex-wrap: nowrap;
    margin-left: 70px;
    gap: 18px;
  }
}

.landing-cta-banner__feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1.3;
  color: color-mix(in srgb, var(--color-text-on-accent) 92%, transparent);
  white-space: nowrap;
}

.landing-cta-banner__feature i {
  font-size: 12px;
  opacity: 0.95;
}

.landing-cta-banner__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .landing-cta-banner__actions {
    justify-content: flex-end;
    width: auto;
    flex: 0 0 auto;
  }
}

.landing-cta-banner__auth-btn,
.landing-cta-banner__explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.landing-cta-banner__auth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: inherit;
}

.landing-cta-banner__auth-btn--split {
  display: flex;
  align-items: center;
  gap: 6px;
}

.landing-cta-banner__auth-link {
  text-decoration: none;
  color: inherit;
}

.landing-cta-banner__auth-separator {
  opacity: 0.7;
}

.landing-cta-banner__auth-icon i {
  font-size: 16px;
}

.landing-cta-banner__auth-btn {
  background: transparent;
  color: var(--color-text-on-accent) !important;
  border: 2px solid color-mix(in srgb, var(--color-text-on-accent) 90%, transparent);
}

.landing-cta-banner__auth-btn:hover {
  background: color-mix(in srgb, var(--color-text-on-accent) 12%, transparent);
  color: var(--color-text-on-accent) !important;
  text-decoration: none !important;
}

.landing-cta-banner__explore-btn {
  background: var(--color-bg-surface);
  color: var(--color-text-link) !important;
  border: 2px solid var(--color-bg-surface);
  font-weight: 700;
}

.landing-cta-banner__explore-btn:hover {
  background: var(--color-info-soft);
  color: var(--color-info-hover) !important;
  text-decoration: none !important;
}

[data-theme="dark"] .landing-cta-banner__inner {
  background: var(--color-info-active);
}

[data-theme="dark"] .landing-cta-banner__explore-btn {
  background: var(--color-bg-inverse);
  color: var(--color-text-link) !important;
  border-color: var(--color-bg-inverse);
}

[data-theme="dark"] .landing-cta-banner__explore-btn:hover {
  background: var(--color-info-soft);
  color: var(--color-info-hover) !important;
}

.landing-cta-banner__explore-btn i {
  font-size: 14px;
}

@media (max-width: 767px) {

  .landing-hero__actions .landing-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    width: auto;
    white-space: normal;
    text-align: center;
    padding: 11px 14px;
    font-size: 14px;
  }

  .landing-cta-banner__actions {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
  }

  .landing-cta-banner__auth-btn,
  .landing-cta-banner__explore-btn {
    width: 100%;
    flex: 1 1 100%;
    min-width: 0;
    padding: 12px 16px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .landing-cta-banner__feature {
    white-space: normal;
  }

  .landing-cta-banner__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .landing-cta-banner__inner {
    padding: 20px 16px 28px;
    border-radius: 20px;
  }

  .landing-cta-banner__head {
    gap: 14px;
  }

  .landing-section-header {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .landing-section-header h2 {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(18px, 5vw, 22px);
  }

  .landing-view-all-link {
    flex: 0 0 auto;
    margin-left: auto;
    font-size: 14px;
  }

  .landing-how-it-works__tabs {
    gap: 20px;
  }

  .landing-how-it-works__tab {
    font-size: 14px;
  }

  .landing-how-it-works__panel-title,
  .landing-how-it-works__badge {
    padding: 20px 16px 0;
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .landing-how-it-works__steps {
    padding: 20px 16px 24px;
    gap: 20px;
  }

  .landing-how-it-works__footer {
    flex-wrap: wrap;
    padding: 14px 16px;
    font-size: 14px;
  }

  .landing-trust-badge {
    max-width: 100%;
    white-space: normal;
    font-size: 12px;
  }

  .landing-product-carousel .owl-stage-outer {
    overflow: hidden;
  }

  .landing-product-carousel .item {
    padding: 0 4px;
  }

  .landing-products-minH .landing-product-card {
    min-width: 0;
  }

  .landing-sell-banner__inner {
    padding: 20px 16px;
  }

  .landing-sell-banner__content h2 {
    font-size: clamp(18px, 5vw, 22px);
  }

  .landing-trust-badges__panel,
  .landing-trust-badges .container>.landing-trust-badges__grid {
    padding: 16px 14px;
  }
}

/* Category navigation bar */
.landing-category-nav {
  background: var(--color-info);
  color: var(--color-text-on-accent);
}

.landing-category-nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.landing-category-nav__list::-webkit-scrollbar {
  display: none;
}

.landing-category-nav__list li {
  flex: 0 0 auto;
}

.landing-category-nav__list a {
  display: block;
  padding: 12px 18px;
  color: var(--color-text-on-accent) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.landing-category-nav__list a:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none !important;
}

@media (min-width: 992px) {
  .landing-category-nav__list {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.landing-products-section+.landing-products-section,
.landing-trust-categories+.landing-products-section {
  padding-top: var(--landing-space-xs, 20px);
}

.landing-trust-categories {
  background: var(--color-bg-subtle);
}

.landing-sell-banner {
  background: var(--color-bg-subtle);
}

[data-theme="dark"] .landing-hero__city-chip {
  background: rgba(47, 143, 214, 0.14);
  border-color: rgba(79, 167, 229, 0.24);
  color: var(--color-text-secondary);
}

@media (max-width: 991px) {
  .landing-hero__upload {
    border-radius: 16px;
  }
}

@media (max-width: 575px) {
  .landing-phone-mockup--image {
    max-width: 100%;
  }

  .landing-phone-mockup__image {
    max-height: min(56vh, 360px);
    border-radius: 12px;
  }

  .landing-hero__title {
    font-size: clamp(26px, 8vw, 32px);
  }

  .landing-hero__subtitle {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .landing-hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .landing-hero__actions .landing-btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .landing-trust-categories__panel {
    padding: 20px 14px;
    gap: 20px;
    overflow: visible;
  }

  .landing-trust-categories__slider {
    width: 100%;
    min-height: 196px;
    margin-top: 4px;
  }

  .landing-trust-categories__slider::before,
  .landing-trust-categories__slider::after {
    width: 18px;
  }

  .landing-trust-categories__item {
    flex: 0 0 132px;
    flex-basis: 132px;
    width: 132px;
  }

  .landing-trust-categories__track {
    gap: 16px;
  }

  .landing-sell-banner__inner {
    padding: 18px 14px;
  }

  .landing-product-card__title {
    min-height: auto;
  }

  .landing-product-card__price {
    margin-top: 12px;
    font-size: 18px;
  }

  .landing-cta-banner__features {
    margin-left: 0 !important;
  }

  .landing-cta-banner.landing-section {
    margin-bottom: 48px !important;
  }

  .landing-how-it-works__steps {
    grid-template-columns: 1fr;
  }

  .landing-phone-mockup__frame {
    width: min(100%, 300px);
  }

  .landing-phone-mockup__video {
    min-height: 320px;
    padding: 10px;
  }

  .landing-phone-mockup__protected-card {
    flex-basis: 88px;
    width: 88px;
    padding: 8px 6px 9px;
  }

  .landing-phone-mockup__protected-title {
    font-size: 12px;
  }

  .landing-phone-mockup__protected-text {
    font-size: 12px;
  }

  .landing-phone-mockup__shutter strong {
    font-size: 24px;
  }
}

@media (max-width: 374px) {
  .landing-how-it-works__tabs {
    gap: 14px;
  }

  .landing-how-it-works__tab {
    font-size: 14px;
  }

  .landing-view-all-link {
    font-size: 12px;
    gap: 4px;
  }

  .landing-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 991px) {
  .landing-how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .landing-how-it-works__step {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    row-gap: 6px;
    align-items: start;
  }

  .landing-how-it-works__step-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .landing-how-it-works__step h4 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }

  .landing-how-it-works__step p {
    grid-column: 2;
    grid-row: 2;
  }

  .landing-how-it-works__step-arrow {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .landing-trust-categories__panel {
    padding: 28px 24px;
  }

  .landing-trust-categories__item {
    flex-basis: 140px;
    width: 140px;
  }

  .landing-cta-banner__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .landing-cta-banner__auth-btn,
  .landing-cta-banner__explore-btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
    white-space: normal;
  }
}

/* Landing home footer — newsletter half-overlaps edge like .newsletter-bx on other pages */
.landing-page+footer.site-footer--landing {
  padding-top: 0;
}

.landing-newsletter {
  padding: 20px 80px;
  background: var(--color-bg-surface) url(../images/newsletter-bg.jpg) no-repeat -30px center;
  box-shadow: 0 0 10px var(--color-focus-ring);
  border-radius: 10px;
  border: 1px solid var(--color-border-default);
  position: relative;
  top: -54px;
  margin: 0 auto;
}

[data-theme="dark"] .landing-newsletter {
  background-image: none !important;
  background-color: var(--color-bg-surface);
  border-color: var(--color-border-default);
}

.landing-newsletter h6 {
  color: var(--color-text-primary);
}

.site-footer--landing .landing-newsletter-wrap {
  display: block;
}

.site-footer--landing .site-footer__links {
  position: relative;
  z-index: 0;
  clear: both;
  margin-top: 0;
  justify-content: center !important;
  text-align: center;
}

.site-footer--landing .site-footer__links .padding_left {
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin: 0 !important;
}

.site-footer--landing .ftr-menu-bx {
  text-align: center;
}

.site-footer--landing .ftr-menu-bx h2:after {
  margin-left: auto;
  margin-right: auto;
  transform: none;
  background: var(--color-info);
}

@media (max-width: 991px) {
  .landing-newsletter {
    top: -39px;
    padding: 15px;
  }
}