/* ─────────────────────────────────────────────
   Inventino — Landing & Auth pages stylesheet
   ───────────────────────────────────────────── */

/* ── Google Fonts import (Inter) via system stack fallback ── */
:root {
  --land-accent: #58a6ff;
  --land-accent2: #a371f7;
  --land-accent3: #3fb950;
  --land-bg: #0d1117;
  --land-surface: #161b22;
  --land-surface2: #1c2128;
  --land-border: #30363d;
  --land-text: #e6edf3;
  --land-muted: #8b949e;
  --land-radius: 14px;
}

/* ── Smooth scroll ─────────────────────────── */
html { scroll-behavior: smooth; scrollbar-gutter: stable; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.lnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13,17,23,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(48,54,61,0.6);
}
.lnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.lnav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.lnav-logo { display: flex; align-items: center; }
.lnav-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--land-text);
  letter-spacing: -0.3px;
}
.lnav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.lnav-link {
  padding: 6px 8px;
  font-size: 13px;
  color: var(--land-muted);
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.lnav-link:hover { color: var(--land-text); background: rgba(255,255,255,0.05); }
.lnav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* ── Hamburger button (hidden on desktop) ── */
.lnav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.lnav-burger:hover { background: rgba(255,255,255,0.07); }
.lnav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--land-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.lnav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lnav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lnav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.lnav-mobile {
  /* hidden by default on all screen sizes */
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 300;
  background: #0d1117;
  border-bottom: 1px solid rgba(48,54,61,0.8);
  padding: 8px 16px 16px;
  flex-direction: column;
  gap: 2px;
  /* slide-in animation — only active when .open is applied */
  animation: none;
}
.lnav-mobile.open {
  display: flex;
  animation: drawer-in 0.22s ease both;
}
@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lnav-mobile-link {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  color: var(--land-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.lnav-mobile-link:hover,
.lnav-mobile-link:active { color: var(--land-text); background: rgba(255,255,255,0.06); }
.lnav-mobile-actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--land-border);
}
.lnav-mobile-actions .lbtn {
  flex: 1;
  justify-content: center;
  padding: 8px 12px;
  font-size: 13px;
}

/* ── Responsive breakpoints ── */
@media (max-width: 1100px) {
  .lnav-links { display: none; }
  .lnav-actions { display: none; }
  .lnav-burger { display: flex; }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.lbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.lbtn-primary {
  background: var(--land-accent);
  color: #0d1117;
  box-shadow: 0 0 20px rgba(88,166,255,0.3);
}
.lbtn-primary:hover {
  background: #79b8ff;
  box-shadow: 0 0 28px rgba(88,166,255,0.5);
  transform: translateY(-1px);
  text-decoration: none;
  color: #0d1117;
}
.lbtn-ghost {
  background: transparent;
  color: var(--land-muted);
  border: 1px solid transparent;
}
.lbtn-ghost:hover {
  color: var(--land-text);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}
.lbtn-outline {
  background: transparent;
  color: var(--land-text);
  border: 1px solid var(--land-border);
}
.lbtn-outline:hover {
  border-color: var(--land-accent);
  color: var(--land-accent);
  background: rgba(88,166,255,0.06);
  text-decoration: none;
  transform: translateY(-1px);
}
.lbtn-lg { padding: 13px 28px; font-size: 15px; border-radius: 12px; }
.lbtn-block { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }

/* Hero CTA button — enlarged, glowing call-to-action */
.hero-cta-btn {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 14px;
  box-shadow: 0 0 32px rgba(88,166,255,0.45), 0 4px 24px rgba(88,166,255,0.2);
  letter-spacing: -0.2px;
}
.hero-cta-btn:hover {
  box-shadow: 0 0 48px rgba(88,166,255,0.65), 0 6px 32px rgba(88,166,255,0.3);
  transform: translateY(-2px);
}
.hero-cta-btn svg {
  transition: transform 0.2s;
}
.hero-cta-btn:hover svg {
  transform: translateX(4px);
}
.hero-cta-note {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--land-muted);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.landing-body { background: var(--land-bg); overflow-x: hidden; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hero { padding-left: 12px; padding-right: 12px; }
  .hero-cta-wrap .lbtn { width: 100%; justify-content: center; }
  .hero-cta-btn { padding: 15px 28px; font-size: 16px; }
}

/* Animated background */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1f6feb 0%, transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: 4s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(88,166,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(88,166,255,0.08);
  border: 1px solid rgba(88,166,255,0.25);
  border-radius: 100px;
  font-size: 13px;
  color: var(--land-accent);
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--land-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(88,166,255,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(88,166,255,0); }
}

.hero-title {
  font-size: clamp(1px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--land-text);
  margin-bottom: 20px;
  text-align: center;
  animation: fade-up 0.6s ease 0.1s both;
}
.hero-gradient {
  background: linear-gradient(135deg, #58a6ff 0%, #a371f7 50%, #79b8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--land-muted);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 36px;
  animation: fade-up 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fade-up 0.6s ease 0.3s both;
}

.hero-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.6s ease 0.4s both;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--land-muted);
}
.hero-meta-item svg { color: var(--land-accent3); flex-shrink: 0; }

.hero-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  animation: fade-up 0.6s ease 0.5s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Dashboard Preview ─────────────────────── */
.hero-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;
  animation: fade-up 0.8s ease 0.5s both;
}

/* Two-column split: carousel left, phone mockup right */
.hero-preview-split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  max-width: 1100px;
}

.hero-preview-left {
  flex: 3;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hero-preview-right {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* ── Phone mockup ───────────────────────────── */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: relative;
  width: 200px;
  background: var(--land-surface);
  border: 3px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 0;
}

.phone-notch {
  display: none;
}

.phone-screen {
  border-radius: 15px;
  overflow: hidden;
  line-height: 0;
  background: #000;
}

.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.phone-home-bar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--land-surface);
}

.phone-home-bar::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}

/* ── Responsive: stack on small screens ──────── */
@media (max-width: 780px) {
  .hero-preview-split {
    flex-direction: column;
    gap: 28px;
  }
  .hero-preview-right {
    width: 100%;
  }
  .phone-frame {
    width: 160px;
  }
}

.preview-window {
  background: var(--land-surface);
  border: 1px solid var(--land-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
}

/* Static single-image variant — fills the full height of the left column */
.preview-window-static {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.preview-window-static .preview-screenshot-body {
  flex: 1;
  overflow: hidden;
}
.preview-window-static .preview-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.preview-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--land-surface2);
  border-bottom: 1px solid var(--land-border);
}
.preview-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.preview-dot.red    { background: #ff5f57; }
.preview-dot.yellow { background: #febc2e; }
.preview-dot.green  { background: #28c840; }
.preview-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--land-muted);
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  padding: 4px 12px;
  max-width: 240px;
  margin: 0 auto;
}

.preview-body { display: flex; height: 280px; }

.preview-sidebar {
  width: 160px;
  flex-shrink: 0;
  background: var(--land-surface2);
  border-right: 1px solid var(--land-border);
  padding: 16px 12px;
}
.preview-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--land-border);
}
.preview-logo-sq {
  width: 24px; height: 24px;
  background: var(--land-accent);
  border-radius: 6px;
  flex-shrink: 0;
}
.preview-brand-text {
  font-size: 9px;
  font-weight: 700;
  color: var(--land-text, #c9d1d9);
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
}
.preview-navitem {
  height: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  margin-bottom: 4px;
  font-size: 8px;
  color: rgba(139,148,158,0.9);
  display: flex;
  align-items: center;
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
}
.preview-navitem.active {
  background: rgba(88,166,255,0.15);
  border-left: 3px solid var(--land-accent);
  color: rgba(88,166,255,0.95);
}

.preview-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

.preview-topbar {
  height: 48px;
  border-bottom: 1px solid var(--land-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
}
.preview-topbar-title {
  width: 120px; height: 8px;
  background: var(--land-border);
  border-radius: 4px;
}
.preview-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #58a6ff, #a371f7);
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px 16px;
  flex-shrink: 0;
}
.preview-stat {
  background: var(--land-surface2);
  border: 1px solid var(--land-border);
  border-radius: 10px;
  padding: 10px 12px;
  border-top: 3px solid transparent;
}
.preview-stat.blue  { border-top-color: #58a6ff; }
.preview-stat.green { border-top-color: #3fb950; }
.preview-stat.yellow { border-top-color: #d29922; }
.preview-stat.red   { border-top-color: #f85149; }
.preview-stat-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--land-text);
  line-height: 1;
  margin-bottom: 4px;
}
.preview-stat-lbl {
  height: 6px;
  background: var(--land-border);
  border-radius: 3px;
  width: 70%;
}
.preview-stat-lbl-text {
  height: auto;
  background: transparent;
  font-size: 9px;
  color: rgba(139,148,158,0.8);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.preview-table-mock { flex: 1; padding: 0 16px 12px; overflow: hidden; }
.preview-row {
  height: 28px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
}
.preview-row.header {
  background: var(--land-surface2);
  height: 28px;
  margin-bottom: 6px;
}
.preview-row.alt { background: rgba(255,255,255,0.02); }

.preview-cell {
  height: 8px;
  background: var(--land-border);
  border-radius: 3px;
  flex-shrink: 0;
}
.preview-cell-mono  { width: 42px; opacity: .7; }
.preview-cell-wide  { width: 68px; flex: 1; }
.preview-cell-mid   { width: 44px; }
.preview-cell-status { width: 52px; }

/* text cells in preview table */
.preview-th {
  font-size: 8px;
  font-weight: 700;
  color: rgba(139,148,158,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  overflow: hidden;
  white-space: nowrap;
}
.preview-th-wide { flex: 1; }

.preview-td {
  font-size: 9px;
  color: rgba(230,237,243,0.8);
  flex-shrink: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.preview-td-mono  { width: 52px; font-family: monospace; font-size: 8px; color: rgba(88,166,255,0.85); }
.preview-td-wide  { flex: 1; min-width: 0; }
.preview-td-mid   { width: 56px; color: rgba(139,148,158,0.85); font-size: 8px; }

/* badge cells */
.preview-badge-green,
.preview-badge-yellow,
.preview-badge-red,
.preview-badge-blue {
  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.2px;
}
.preview-badge-green  { background: rgba(63,185,80,.18); color: #3fb950; }
.preview-badge-yellow { background: rgba(210,153,34,.18); color: #d29922; }
.preview-badge-red    { background: rgba(248,81,73,.18);  color: #f85149; }
.preview-badge-blue   { background: rgba(88,166,255,.18); color: #58a6ff; }

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.lstats {
  border-top: 1px solid var(--land-border);
  border-bottom: 1px solid var(--land-border);
  background: var(--land-surface);
  padding: 0;
}
.lstats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.lstat-card {
  flex: 1;
  padding: 36px 24px;
  text-align: center;
  position: relative;
}
.lstat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--land-text);
  line-height: 1;
  display: inline-block;
  letter-spacing: -1px;
}
.lstat-plus {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: var(--land-accent);
  margin-left: 2px;
  vertical-align: top;
  padding-top: 4px;
}
.lstat-label {
  font-size: 13px;
  color: var(--land-muted);
  margin-top: 8px;
}
.lstat-divider {
  width: 1px;
  height: 60px;
  background: var(--land-border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--land-accent);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(88,166,255,0.08);
  border: 1px solid rgba(88,166,255,0.2);
  border-radius: 100px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--land-text);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--land-muted);
  margin-bottom: 56px;
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features {
  padding: 70px 24px;
  background: var(--land-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.features-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--land-surface);
  border: 1px solid var(--land-border);
  border-radius: var(--land-radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: rgba(88,166,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon-blue   { background: rgba(88,166,255,0.12); color: #58a6ff; }
.feature-icon-purple { background: rgba(163,113,247,0.12); color: #a371f7; }
.feature-icon-green  { background: rgba(63,185,80,0.12); color: #3fb950; }
.feature-icon-orange { background: rgba(251,146,60,0.12); color: #fb923c; }
.feature-icon-pink   { background: rgba(236,72,153,0.12); color: #ec4899; }
.feature-icon-teal   { background: rgba(20,184,166,0.12); color: #14b8a6; }

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--land-text);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 14px;
  color: var(--land-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how {
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.how-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 20px;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--land-border), rgba(88,166,255,0.4), var(--land-border));
  margin-top: 40px;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(88,166,255,0.15), rgba(163,113,247,0.1));
  border: 1px solid rgba(88,166,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--land-accent);
  flex-shrink: 0;
}
.step-content { text-align: center; }
.step-title { font-size: 17px; font-weight: 700; color: var(--land-text); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--land-muted); line-height: 1.65; }

@media (max-width: 700px) {
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--land-border), rgba(88,166,255,0.4), var(--land-border)); margin: 0; }
}

/* ═══════════════════════════════════════════
   COMPARE TABLE
   ═══════════════════════════════════════════ */
.compare-table-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border-radius: var(--land-radius);
  border: 1px solid var(--land-border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
  background: var(--land-surface);
}
.compare-th {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--land-border);
}
.compare-th-process {
  color: var(--land-muted);
  width: 22%;
}
.compare-th-before {
  color: var(--land-muted);
  width: 39%;
}
.compare-th-after {
  color: var(--land-muted);
  width: 39%;
}
.compare-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.compare-badge-before {
  background: rgba(139,148,158,0.12);
  color: var(--land-muted);
  border: 1px solid rgba(139,148,158,0.2);
}
.compare-badge-after {
  background: rgba(63,185,80,0.12);
  color: var(--land-accent3);
  border: 1px solid rgba(63,185,80,0.25);
}
.compare-row {
  border-bottom: 1px solid var(--land-border);
  transition: background 0.15s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(88,166,255,0.04); }
.compare-td {
  padding: 14px 18px;
  vertical-align: top;
  line-height: 1.55;
}
.compare-td-process {
  font-weight: 600;
  color: var(--land-text);
  white-space: nowrap;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 16px;
}
.compare-td-process svg { flex-shrink: 0; margin-top: 2px; color: var(--land-accent); }
.compare-td-before {
  color: var(--land-muted);
}
.compare-td-after {
  color: var(--land-text);
  font-weight: 500;
}
.compare-check {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--land-accent3);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .compare-table, .compare-table thead, .compare-table tbody,
  .compare-table th, .compare-table td, .compare-table tr { display: block; }
  .compare-table thead { display: none; }
  .compare-row { border-bottom: 1px solid var(--land-border); padding: 0; }
  .compare-td { padding: 10px 16px; white-space: normal; }
  .compare-td-process {
    background: rgba(88,166,255,0.06);
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--land-border);
    display: flex;
  }
  .compare-td-before::before { content: "Без Inventino: "; font-weight: 700; color: var(--land-muted); margin-right: 4px; }
  .compare-td-after::before  { content: "С Inventino: ";  font-weight: 700; color: var(--land-accent3); margin-right: 4px; }
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 70px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--land-bg);
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
}
.cta-orb-1 { width: 500px; height: 500px; background: #1f6feb; top: -200px; left: 50%; transform: translateX(-50%); }
.cta-orb-2 { width: 400px; height: 400px; background: #7c3aed; bottom: -200px; right: -100px; }

.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--land-text);
  margin-bottom: 16px;
}
.cta-desc { font-size: 16px; color: var(--land-muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   SUPPORT
   ═══════════════════════════════════════════ */
.lsupport {
  background: var(--land-surface);
  border-top: 1px solid var(--land-border);
  padding: 48px 24px;
}
.lsupport-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(88,166,255,0.08) 0%, rgba(163,113,247,0.08) 100%);
  border: 1px solid rgba(88,166,255,0.2);
  border-radius: 16px;
  padding: 32px 36px;
}
.lsupport-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(88,166,255,0.12);
  border: 1px solid rgba(88,166,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--land-accent);
  flex-shrink: 0;
}
.lsupport-text {
  flex: 1;
  min-width: 180px;
}
.lsupport-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--land-text);
  margin-bottom: 4px;
}
.lsupport-desc {
  font-size: 14px;
  color: var(--land-muted);
  line-height: 1.5;
}
.lsupport-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2CA5E0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(44,165,224,0.25);
}
.lsupport-btn:hover {
  background: #1a8fc2;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,165,224,0.38);
  text-decoration: none;
  color: #fff;
}
.lsupport-handle {
  opacity: 0.75;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 640px) {
  .lsupport-inner { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .lsupport-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.lfooter {
  background: var(--land-surface);
  border-top: 1px solid var(--land-border);
  padding: 28px 24px;
}
.lfooter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lfooter-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--land-text);
}
.lfooter-copy { font-size: 13px; color: var(--land-muted); flex: 1; text-align: center; }
.lfooter-links { display: flex; gap: 16px; }
.lfooter-link { font-size: 13px; color: var(--land-muted); text-decoration: none; transition: color 0.2s; }
.lfooter-link:hover { color: var(--land-accent); text-decoration: none; }

/* ═══════════════════════════════════════════
   AUTH PAGES (Login / Register)
   ═══════════════════════════════════════════ */
.auth-page-body {
  background: var(--land-bg);
  min-height: 100vh;
  display: flex;
}
.auth-page {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* Left decorative panel */
.auth-left {
  position: relative;
  flex: 0 0 420px;
  background: linear-gradient(160deg, #0d1117 0%, #11181f 50%, #0d1117 100%);
  border-right: 1px solid var(--land-border);
  display: flex;
  flex-direction: column;
  padding: 40px;
  overflow: hidden;
}
@media (max-width: 800px) { .auth-left { display: none; } }

.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: auto;
}
.auth-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--land-text);
}

.auth-left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
.auth-left-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--land-text);
  margin-bottom: 16px;
}
.auth-left-desc {
  font-size: 15px;
  color: var(--land-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.auth-features { display: flex; flex-direction: column; gap: 14px; }
.auth-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--land-text);
}
.auth-feature-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(63,185,80,0.12);
  color: var(--land-accent3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Floating orbs on left panel */
.auth-left-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.25;
}
.auth-left-orb-1 {
  width: 360px; height: 360px;
  background: #1f6feb;
  top: -120px; right: -120px;
  animation: orb-float 10s ease-in-out infinite;
}
.auth-left-orb-2 {
  width: 280px; height: 280px;
  background: #7c3aed;
  bottom: -80px; left: -80px;
  animation: orb-float 12s ease-in-out infinite reverse;
}

/* Right form panel */
.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--land-bg);
}
.auth-form-wrap {
  width: 100%;
  max-width: 420px;
}
.auth-form-header { margin-bottom: 28px; }
.auth-form-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--land-text);
  margin-bottom: 6px;
}
.auth-form-sub {
  font-size: 14px;
  color: var(--land-muted);
}

/* Input with icon */
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--land-muted);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.input-with-icon { padding-left: 40px !important; }

/* Auth form specific tweaks */
.auth-form .form-group { margin-bottom: 18px; }
.auth-form .form-label { font-size: 13px; font-weight: 600; color: var(--land-muted); margin-bottom: 7px; }
.auth-form .form-control {
  background: var(--land-surface);
  border-color: var(--land-border);
  height: 44px;
  font-size: 14px;
  border-radius: 10px;
  color: var(--land-text);
}
.auth-form .form-control:focus {
  border-color: var(--land-accent);
  box-shadow: 0 0 0 3px rgba(88,166,255,0.12);
}
.auth-form .form-row { flex-wrap: nowrap; }
@media (max-width: 480px) { .auth-form .form-row { flex-wrap: wrap; } }

/* Switch between login/register */
.auth-switch {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--land-muted);
}
.auth-switch-link {
  color: var(--land-accent);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}
.auth-switch-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   AUDIENCE (Кому подходит)
   ═══════════════════════════════════════════ */
.audience {
  padding: 70px 24px 50px;
  background: var(--land-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.audience-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.audience-card {
  background: var(--land-surface);
  border: 1px solid var(--land-border);
  border-radius: var(--land-radius);
  padding: 28px 22px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  border-color: rgba(88,166,255,0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}
.audience-emoji {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 14px;
}
.audience-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--land-text);
  margin-bottom: 8px;
}
.audience-desc {
  font-size: 14px;
  color: var(--land-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PAINS (Знакомо?)
   ═══════════════════════════════════════════ */
.pains {
  padding: 50px 24px 60px;
  background: var(--land-bg);
  text-align: center;
}
.pains-inner { max-width: 1200px; margin: 0 auto; }

.pains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.pain-card {
  background: var(--land-surface);
  border: 1px solid var(--land-border);
  border-left: 3px solid #f85149;
  border-radius: var(--land-radius);
  padding: 24px 22px;
  text-align: left;
}
.pain-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(248,81,73,0.12);
  color: #f85149;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pain-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--land-text);
  margin-bottom: 8px;
}
.pain-desc {
  font-size: 14px;
  color: var(--land-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
  padding: 70px 24px;
  background: var(--land-surface);
  text-align: center;
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
  text-align: left;
}

.testimonial-card {
  background: var(--land-bg);
  border: 1px solid var(--land-border);
  border-radius: var(--land-radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(88,166,255,0.35); }

.testimonial-quote {
  font-size: 14.5px;
  color: var(--land-text);
  line-height: 1.65;
  flex: 1;
  position: relative;
  padding-left: 20px;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 32px;
  line-height: 1;
  color: var(--land-accent);
  opacity: 0.5;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(88,166,255,0.15);
  border: 1px solid rgba(88,166,255,0.25);
  color: var(--land-accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.testimonial-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--land-text);
}
.testimonial-role {
  font-size: 12.5px;
  color: var(--land-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing {
  padding: 70px 24px;
  background: var(--land-bg);
  text-align: center;
}
.pricing-inner { max-width: 720px; margin: 0 auto; }

.pricing-card {
  margin-top: 40px;
  background: var(--land-surface);
  border: 1px solid var(--land-border);
  border-radius: 18px;
  padding: 40px 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(88,166,255,0.18), transparent 70%);
  pointer-events: none;
}
.pricing-plan {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--land-border);
}
.pricing-plan-name {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--land-accent);
  background: rgba(88,166,255,0.12);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}
.pricing-price-num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--land-text);
  line-height: 1;
}
.pricing-price-cur {
  font-size: 32px;
  font-weight: 700;
  color: var(--land-text);
}
.pricing-price-period {
  font-size: 16px;
  color: var(--land-muted);
  margin-left: 6px;
}
.pricing-plan-sub {
  font-size: 14px;
  color: var(--land-muted);
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--land-text);
  line-height: 1.5;
}
.pricing-list li svg {
  color: var(--land-accent3);
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--land-muted);
  text-align: center;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  padding: 60px 24px 70px;
  background: var(--land-surface);
  text-align: center;
}
.faq-inner { max-width: 760px; margin: 0 auto; }

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-item {
  background: var(--land-bg);
  border: 1px solid var(--land-border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(88,166,255,0.4); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--land-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--land-accent); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(88,166,255,0.12);
  color: var(--land-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s;
  line-height: 1;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(88,166,255,0.2);
}

.faq-a {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--land-muted);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .audience { padding: 70px 20px 40px; }
  .pains { padding: 40px 20px 60px; }
  .testimonials { padding: 50px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing { padding: 70px 20px; }
  .pricing-card { padding: 28px 22px; }
  .pricing-price-num { font-size: 52px; }
  .faq { padding: 60px 20px 80px; }
  .faq-q { padding: 16px 18px; font-size: 14px; }
  .faq-a { padding: 0 18px 18px; }
}

/* ═══════════════════════════════════════════
   PREVIEW CAROUSEL
   ═══════════════════════════════════════════ */
.preview-carousel {
  overflow: hidden;
  border-radius: 16px;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-slides-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.preview-slide {
  flex-shrink: 0;
  width: 100%;
}

.preview-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  background: var(--land-border);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
  outline: none;
}
.carousel-dot.active {
  background: var(--land-accent);
  width: 24px;
}
.carousel-dot:hover:not(.active) {
  background: var(--land-muted);
}

/* ── Screenshot slides ──────────────────── */
.preview-screenshot-body {
  overflow: hidden;
  background: transparent;
  line-height: 0;
}
.preview-screenshot {
  width: 100%;
  height: auto;
  max-height: clamp(260px, 55vw, 500px);
  display: block;
  object-fit: cover;
  object-position: top left;
}

/* ── Item detail preview (slide 2) ──────── */
.preview-main-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 12px 16px 16px;
}
.preview-item-card {
  flex: 1;
  background: var(--land-surface2);
  border: 1px solid var(--land-border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 16px;
  overflow: hidden;
}
.preview-item-info { flex: 1; min-width: 0; }
.preview-item-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--land-text);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-item-row {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 5px;
}
.preview-item-key {
  font-size: 8px;
  color: var(--land-muted);
  min-width: 52px;
  flex-shrink: 0;
}
.preview-item-val {
  font-size: 8px;
  color: var(--land-text);
}
.mono-blue {
  font-family: monospace;
  color: rgba(88,166,255,0.9);
}
.preview-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 8px;
  font-weight: 600;
  color: var(--land-accent);
  background: rgba(88,166,255,0.1);
  border: 1px solid rgba(88,166,255,0.25);
  border-radius: 5px;
  padding: 4px 8px;
  cursor: default;
}
.preview-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.preview-qr-label {
  font-size: 7px;
  color: var(--land-muted);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.preview-qr-svg {
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.preview-qr-hint {
  font-size: 7px;
  color: var(--land-muted);
  text-align: center;
  max-width: 95px;
}

/* ═══════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════ */
.cookie-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 280px;
  width: calc(100vw - 48px);
  background: var(--land-surface);
  border: 1px solid var(--land-border);
  border-radius: var(--land-radius);
  padding: 16px 16px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.cookie-banner--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner--hiding {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-banner-icon {
  font-size: 24px;
  line-height: 1;
}

.cookie-banner-title {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--land-text);
}
.cookie-banner-desc {
  margin: 0;
  font-size: 12px;
  color: var(--land-muted);
  line-height: 1.55;
}
.cookie-banner-link {
  color: var(--land-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-link:hover { opacity: 0.85; }

.cookie-btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  white-space: nowrap;
  transition: opacity 0.18s;
  align-self: stretch;
  text-align: center;
  margin-top: 4px;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept {
  background: var(--land-accent);
  color: #0d1117;
}

.cookie-banner-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--land-muted);
  font-size: 13px;
  cursor: pointer;
  padding: 2px 5px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.18s;
}
.cookie-banner-close:hover { color: var(--land-text); }

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
  }
}

/* ═══════════════════════════════════════════
   DECORATIVE ICON TEXTURES
   Repeating SVG icon patterns layered behind
   section content as seamless backgrounds.
   ═══════════════════════════════════════════ */

/* audience — repeating package/box icons */
.audience::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%2358a6ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 88px 88px;
}

/* features — repeating monitor/tech icons (first section only; new-features is excluded below) */
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%2358a6ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cpath d='M8 21h8M12 17v4'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 88px 88px;
}

/* suppress texture on the "Новые модули" section */
#new-features::before { content: none; }

/* suppress texture on the main features section */
#features::before { content: none; }

/* how — repeating QR code icons */
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Crect x='4' y='4' width='22' height='22' rx='3' fill='none' stroke='%2358a6ff' stroke-width='2.5'/%3E%3Crect x='10' y='10' width='10' height='10' rx='1' fill='%2358a6ff'/%3E%3Crect x='38' y='4' width='22' height='22' rx='3' fill='none' stroke='%2358a6ff' stroke-width='2.5'/%3E%3Crect x='44' y='10' width='10' height='10' rx='1' fill='%2358a6ff'/%3E%3Crect x='4' y='38' width='22' height='22' rx='3' fill='none' stroke='%2358a6ff' stroke-width='2.5'/%3E%3Crect x='10' y='44' width='10' height='10' rx='1' fill='%2358a6ff'/%3E%3Crect x='38' y='38' width='5' height='5' rx='1' fill='%2358a6ff'/%3E%3Crect x='48' y='38' width='5' height='5' rx='1' fill='%2358a6ff'/%3E%3Crect x='58' y='38' width='5' height='5' rx='1' fill='%2358a6ff'/%3E%3Crect x='38' y='48' width='5' height='5' rx='1' fill='%2358a6ff'/%3E%3Crect x='53' y='48' width='5' height='5' rx='1' fill='%2358a6ff'/%3E%3Crect x='43' y='53' width='5' height='5' rx='1' fill='%2358a6ff'/%3E%3Crect x='58' y='53' width='5' height='5' rx='1' fill='%2358a6ff'/%3E%3Crect x='38' y='58' width='5' height='5' rx='1' fill='%2358a6ff'/%3E%3Crect x='53' y='58' width='5' height='5' rx='1' fill='%2358a6ff'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 96px 96px;
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════ */
.social-proof {
  padding: 60px 24px;
  background: var(--land-surface);
  border-top: 1px solid var(--land-border);
  border-bottom: 1px solid var(--land-border);
}
.social-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.social-proof-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.sp-stat {
  text-align: center;
}
.sp-stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--land-accent);
  line-height: 1.2;
}
.sp-stat-label {
  font-size: 0.9rem;
  color: var(--land-muted);
  margin-top: 4px;
}
.social-proof-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.sp-quote {
  background: var(--land-surface2);
  border: 1px solid var(--land-border);
  border-radius: var(--land-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-quote-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--land-text);
  font-style: italic;
  margin: 0;
}
.sp-quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sp-quote-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--land-text);
}
.sp-quote-role {
  font-size: 0.8rem;
  color: var(--land-muted);
}

@media (max-width: 600px) {
  .social-proof-stats {
    gap: 24px;
  }
  .sp-stat-num {
    font-size: 1.6rem;
  }
}
