/* ═══════════════════════════════════════════════════════════
   SmartMenu v2 — Landing Page CSS
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lp-blue:    #2563eb;
  --lp-blue-d:  #1d4ed8;
  --lp-amber:   #f59e0b;
  --lp-dark:    #0a0f1e;
  --lp-dark-2:  #0f172a;
  --lp-surface: #ffffff;
  --lp-muted:   #64748b;
  --lp-border:  rgba(255,255,255,.1);
  --lp-radius:  14px;
  --lp-font:    'Inter', system-ui, sans-serif;
}

.lp-body {
  font-family: var(--lp-font);
  background: var(--lp-dark);
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── Shared buttons ───────────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lp-blue);
  color: #fff;
  font-weight: 700;
  border: 2px solid var(--lp-blue);
  border-radius: 10px;
  padding: 10px 22px;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.lp-btn-primary:hover {
  background: var(--lp-blue-d);
  border-color: var(--lp-blue-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
}
.lp-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #e2e8f0;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px 22px;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
}
.lp-btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-1px);
}
.lp-btn-lg { padding: 13px 28px; font-size: 1rem; border-radius: 12px; }

/* ── Nav ──────────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 18px 48px;
  gap: 32px;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s, padding .3s;
}
.lp-nav.scrolled {
  background: rgba(10,15,30,.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: 12px 48px;
}

.lp-nav-brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.lp-nav-logo-img { width: 28px; height: 28px; }
.lp-nav-brand-name {
  font-size: 1.15rem; font-weight: 800; color: #fff; letter-spacing: -.02em;
}

.lp-nav-links {
  display: flex; align-items: center; gap: 28px; flex: 1;
}
.lp-nav-links a {
  font-size: .875rem; color: rgba(255,255,255,.6); font-weight: 500;
  transition: color .2s;
}
.lp-nav-links a:hover { color: #fff; }

.lp-nav-actions { display: flex; align-items: center; gap: 10px; }

.lp-lang-picker { display: flex; gap: 2px; background: rgba(255,255,255,.07); border-radius: 8px; padding: 3px; }
.lp-lang-btn {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: .75rem; font-weight: 700; cursor: pointer;
  padding: 4px 8px; border-radius: 6px; font-family: var(--lp-font);
  transition: background .15s, color .15s;
}
.lp-lang-btn.active { background: rgba(255,255,255,.12); color: #fff; }

.lp-nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.lp-nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.lp-nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.lp-nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--lp-dark-2); z-index: 99; flex-direction: column;
  padding: 90px 32px 40px; gap: 8px;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-link { color: rgba(255,255,255,.75); font-size: 1.1rem; font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.lp-mobile-divider { margin: 12px 0; }
.lp-mobile-cta { color: var(--lp-blue); border-color: transparent; }

/* ── Hero ─────────────────────────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--lp-dark);
}

/* Grid overlay */
.lp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Orbs */
.lp-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; opacity: .5;
}
.lp-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2563eb55 0%, transparent 70%);
  top: -180px; left: -120px;
  animation: orbFloat 12s ease-in-out infinite;
}
.lp-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7c3aed44 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
.lp-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #f59e0b33 0%, transparent 70%);
  top: 30%; right: 20%;
  animation: orbFloat 10s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.lp-hero-content { position: relative; z-index: 2; max-width: 820px; }

.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.3);
  color: #93c5fd; font-size: .8rem; font-weight: 600;
  border-radius: 99px; padding: 6px 16px; margin-bottom: 28px;
}
.lp-hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(59,130,246,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(59,130,246,.08); }
}

.lp-hero-logo-wrap {
  width: 80px; height: 80px; margin: 0 auto 24px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.lp-hero-logo { width: 48px; height: 48px; }

.lp-hero-wordmark {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  margin-bottom: 20px;
}
.lp-hero-wordmark-name {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: .18em;
  color: #fff;
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 40%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(59,130,246,.5));
  line-height: 1;
}
.lp-hero-wordmark-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .35em;
  color: rgba(147,197,253,.5);
  text-transform: uppercase;
}

.lp-hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
}
.lp-hero-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
  letter-spacing: .01em;
}

.lp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }

/* Swiss trust badge — between CTA buttons and stats */
.lp-hero-swiss {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: .78rem; font-weight: 500;
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 32px;
  letter-spacing: .02em;
}
.lp-hero-swiss-flag { display: block; flex-shrink: 0; border-radius: 2px; }

.lp-hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px 36px;
  backdrop-filter: blur(6px);
  flex-wrap: wrap;
}
.lp-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.lp-stat-num { font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.lp-stat-label { font-size: .75rem; color: rgba(255,255,255,.45); font-weight: 500; }
.lp-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* Floating mockup cards */
.lp-hero-mockup {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.lp-mock-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(15,23,42,.85);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  font-size: .8rem;
}
.lp-mock-card-1 { top: 22%; left: 4%; }
.lp-mock-card-2 { top: 55%; left: 3%; }
.lp-mock-card-3 { top: 38%; right: 3%; }
.lp-mock-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .85rem; flex-shrink: 0;
}
.lp-mock-label { font-weight: 700; color: #e2e8f0; }
.lp-mock-sub { color: rgba(255,255,255,.4); font-size: .72rem; }
.lp-mock-badge {
  background: rgba(37,99,235,.25); color: #93c5fd;
  font-size: .65rem; font-weight: 700;
  border-radius: 6px; padding: 2px 7px; margin-left: 4px;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}
.lp-float-1 { animation: floatA 6s ease-in-out infinite; }
.lp-float-2 { animation: floatB 7s ease-in-out infinite 1s; }
.lp-float-3 { animation: floatC 8s ease-in-out infinite .5s; }

/* Scroll arrow */
.lp-hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.lp-hero-scroll a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  color: rgba(255,255,255,.4); font-size: .75rem;
  transition: border-color .2s, color .2s, transform .2s;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.lp-hero-scroll a:hover { border-color: rgba(255,255,255,.4); color: #fff; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Shared section styles ────────────────────────────────── */
.lp-section { padding: 100px 24px; }
.lp-container { max-width: 1160px; margin: 0 auto; }

.lp-section-header { text-align: center; margin-bottom: 64px; }
.lp-section-tag {
  display: inline-block;
  background: rgba(37,99,235,.15); color: #93c5fd;
  border: 1px solid rgba(37,99,235,.25);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 99px; padding: 5px 14px; margin-bottom: 16px;
}
.lp-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: #fff; letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: 14px;
}
.lp-section-sub { color: rgba(255,255,255,.5); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* Reveal animation */
.lp-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0s);
}
.lp-reveal.visible { opacity: 1; transform: none; }

/* ── Features ─────────────────────────────────────────────── */
.lp-features { background: var(--lp-dark-2); }

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.lp-feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--lp-radius);
  padding: 28px;
  transition: border-color .25s, transform .25s, background .25s;
}
.lp-feature-card:hover {
  border-color: rgba(37,99,235,.35);
  background: rgba(37,99,235,.04);
  transform: translateY(-4px);
}
.lp-feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 18px;
  color: var(--ic, #60a5fa);
}
.lp-feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.lp-feature-card p  { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.65; margin-bottom: 16px; }
.lp-feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lp-feature-tags span {
  font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06); border-radius: 6px; padding: 3px 9px;
}

/* ── How it works ─────────────────────────────────────────── */
.lp-how { background: var(--lp-dark); }

.lp-steps {
  display: flex; align-items: flex-start; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.lp-step {
  flex: 1; min-width: 220px; max-width: 320px;
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--lp-radius);
  transition: border-color .25s, transform .25s;
}
.lp-step:hover { border-color: rgba(37,99,235,.3); transform: translateY(-4px); }
.lp-step-num {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  color: rgba(37,99,235,.6); margin-bottom: 16px;
}
.lp-step-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 14px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #60a5fa;
}
.lp-step h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.lp-step p  { color: rgba(255,255,255,.45); font-size: .875rem; line-height: 1.6; }

.lp-step-arrow {
  color: rgba(255,255,255,.2); font-size: 1.2rem;
  align-self: center; padding-top: 10px;
  flex-shrink: 0;
}

/* ── Pricing ──────────────────────────────────────────────── */
.lp-pricing { background: var(--lp-dark-2); }

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 960px; margin: 0 auto;
}
.lp-pricing-single {
  grid-template-columns: 1fr;
  max-width: 480px;
  align-items: start;
}
.lp-pricing-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: border-color .25s;
}
.lp-pricing-featured {
  border-color: rgba(37,99,235,.5);
  background: rgba(37,99,235,.06);
  box-shadow: 0 0 0 1px rgba(37,99,235,.3), 0 20px 60px rgba(37,99,235,.12);
}
.lp-pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--lp-blue); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 99px; padding: 4px 14px;
}
.lp-pricing-plan { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #93c5fd; }
.lp-pricing-price { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.lp-pricing-price small { font-size: 1rem; color: rgba(255,255,255,.4); font-weight: 500; }
.lp-pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lp-pricing-list li { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: rgba(255,255,255,.6); }
.lp-pricing-list li i { color: #34d399; font-size: .75rem; flex-shrink: 0; }

/* ── New main pricing card ──────────────────────────────────── */
.lp-pricing-main {
  max-width: 680px; margin: 0 auto;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(37,99,235,.35);
  border-radius: var(--lp-radius);
  padding: 40px 36px 32px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(37,99,235,.15), 0 24px 64px rgba(37,99,235,.1);
}
.lp-pricing-main-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--lp-blue); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 99px; padding: 4px 16px;
}
.lp-pricing-main-header {
  margin-bottom: 24px;
}
.lp-pricing-main-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lp-pricing-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.lp-pricing-feat i { color: #34d399; font-size: .72rem; flex-shrink: 0; }

/* Duration grid */
.lp-pricing-durations { margin-bottom: 24px; }
.lp-pricing-dur-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 12px;
}
.lp-pricing-dur-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.lp-pricing-dur {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 14px 12px;
  text-align: center; position: relative;
  transition: border-color .2s, background .2s;
}
.lp-pricing-dur:hover {
  border-color: rgba(59,130,246,.35);
  background: rgba(37,99,235,.06);
}
.lp-pricing-dur-pop {
  border-color: rgba(59,130,246,.5);
  background: rgba(37,99,235,.09);
}
.lp-pricing-dur-best {
  border-color: rgba(245,158,11,.45);
  background: rgba(245,158,11,.05);
}
.lp-pricing-dur-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--lp-blue); color: #fff;
  font-size: .58rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 99px; padding: 3px 10px; white-space: nowrap;
}
.lp-pricing-dur-badge-gold { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.lp-pricing-dur-months {
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em;
}
.lp-pricing-dur-price {
  font-size: 1.15rem; font-weight: 800; color: #f1f5f9; line-height: 1.1;
}
.lp-pricing-dur-price span { font-size: .65rem; font-weight: 500; color: rgba(255,255,255,.3); display: block; }
.lp-pricing-dur-total {
  font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 5px;
}
.lp-pricing-dur-total em { color: #34d399; font-style: normal; font-weight: 700; }

.lp-pricing-btn {
  display: block; text-align: center;
  font-weight: 700; font-size: .9rem;
  border-radius: 10px; padding: 12px;
  transition: background .2s, border-color .2s, transform .15s;
}
.lp-pricing-btn-primary {
  background: var(--lp-blue); color: #fff; border: 2px solid var(--lp-blue);
}
.lp-pricing-btn-primary:hover { background: var(--lp-blue-d); transform: translateY(-1px); }
.lp-pricing-btn-ghost {
  background: transparent; color: rgba(255,255,255,.7);
  border: 2px solid rgba(255,255,255,.12);
}
.lp-pricing-btn-ghost:hover { border-color: rgba(255,255,255,.3); color: #fff; transform: translateY(-1px); }

/* ── CTA banner ───────────────────────────────────────────── */
.lp-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e1b4b 50%, #0f172a 100%);
  padding: 100px 24px;
  text-align: center;
}
.lp-cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.3) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.lp-cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%);
  bottom: -100px; left: -50px;
}
.lp-cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.lp-cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; color: #fff; letter-spacing: -.03em; margin-bottom: 14px;
}
.lp-cta-content p { color: rgba(255,255,255,.55); margin-bottom: 32px; font-size: 1rem; }

/* ── Footer ───────────────────────────────────────────────── */
.lp-footer {
  background: #050810;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 48px 24px 28px;
  text-align: center;
}
.lp-footer-inner { max-width: 400px; margin: 0 auto 28px; }
.lp-footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px;
}
.lp-footer-logo { width: 24px; height: 24px; }
.lp-footer-brand span { font-size: 1rem; font-weight: 800; color: #fff; }
.lp-footer-tagline { color: rgba(255,255,255,.35); font-size: .85rem; margin-bottom: 10px; }
.lp-footer-contact a { color: rgba(255,255,255,.4); font-size: .85rem; transition: color .2s; }
.lp-footer-contact a:hover { color: #fff; }
.lp-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 14px;
}
.lp-footer-legal-links a {
  color: rgba(255,255,255,.28);
  font-size: .78rem;
  text-decoration: none;
  transition: color .2s;
}
.lp-footer-legal-links a:hover { color: rgba(255,255,255,.7); }
.lp-footer-copy { color: rgba(255,255,255,.2); font-size: .75rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-nav { padding: 16px 24px; }
  .lp-nav.scrolled { padding: 12px 24px; }
  .lp-nav-links, .lp-nav-actions { display: none; }
  .lp-nav-hamburger { display: flex; }
  .lp-mock-card-1, .lp-mock-card-2 { display: none; }
  .lp-mock-card-3 { right: 2%; font-size: .72rem; padding: 10px 12px; }
  .lp-step-arrow { display: none; }
  .lp-steps { flex-direction: column; align-items: stretch; }
  .lp-step { max-width: 100%; }
}
@media (max-width: 600px) {
  .lp-hero { padding: 100px 16px 70px; }
  .lp-hero-mockup { display: none; }
  .lp-hero-stats { padding: 14px 20px; gap: 16px; }
  .lp-stat-num { font-size: 1.3rem; }
  .lp-section { padding: 70px 16px; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-pricing-main { padding: 32px 20px 24px; }
  .lp-pricing-main-feats { grid-template-columns: 1fr; }
  .lp-pricing-dur-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS AVANCÉES
   ═══════════════════════════════════════════════════════════ */

/* ── Cursor glow ──────────────────────────────────────────── */
.lp-cursor-glow {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%, -50%);
  left: -999px; top: -999px;
  mix-blend-mode: screen;
  will-change: left, top;
}

/* ── Mouse spotlight on hero grid ────────────────────────── */
.lp-hero-spotlight {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(96,165,250,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,.55) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(
    circle 280px at var(--mx,-800px) var(--my,-800px),
    black 0%, rgba(0,0,0,.5) 45%, transparent 100%
  );
  mask-image: radial-gradient(
    circle 280px at var(--mx,-800px) var(--my,-800px),
    black 0%, rgba(0,0,0,.5) 45%, transparent 100%
  );
}

/* Dot at center of spotlight */
.lp-hero-spotlight::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(147,197,253,.7);
  box-shadow: 0 0 12px 4px rgba(96,165,250,.5);
  left: var(--mx, -800px); top: var(--my, -800px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity .2s;
}

/* ── Particle canvas ──────────────────────────────────────── */
.lp-particles {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  width: 100%; height: 100%;
}

/* ── Wordmark shimmer ─────────────────────────────────────── */
@keyframes lp-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.lp-hero-wordmark-name {
  background-size: 200% auto !important;
  animation: lp-shimmer 5s linear infinite;
}

/* ── Badge pulse ──────────────────────────────────────────── */
@keyframes lp-badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(37,99,235,.25); }
}
.lp-hero-badge {
  animation: lp-badge-glow 3s ease-in-out infinite;
}

/* ── Animated border on Premium card ─────────────────────── */
@property --ba {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.lp-pricing-featured {
  --ba: 0deg;
  animation: lp-border-spin 4s linear infinite;
  isolation: isolate;
}
@keyframes lp-border-spin { to { --ba: 360deg; } }

.lp-pricing-featured::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--lp-radius) + 1px);
  background: conic-gradient(from var(--ba), #2563eb 0%, #7c3aed 25%, #06b6d4 50%, #f59e0b 75%, #2563eb 100%);
  z-index: -1;
  opacity: .7;
}
.lp-pricing-featured::after {
  content: '';
  position: absolute; inset: 1px;
  border-radius: calc(var(--lp-radius) - 1px);
  background: rgba(10, 16, 35, .97);
  z-index: -1;
}

/* ── Feature icon pop on hover ────────────────────────────── */
.lp-feature-card:hover .lp-feature-icon {
  transform: scale(1.12) rotate(-4deg);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.lp-feature-icon { transition: transform .3s ease; }

/* ── Hero scroll arrow pulse ──────────────────────────────── */
@keyframes lp-arrow-drop {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50%       { transform: translateY(8px); opacity: 1; }
}
.lp-hero-scroll a { animation: lp-arrow-drop 2s ease-in-out infinite !important; }

/* ── Step number count-up shimmer ────────────────────────── */
.lp-step-num {
  background: linear-gradient(90deg, rgba(37,99,235,.5), #60a5fa, rgba(37,99,235,.5));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lp-shimmer 3s linear infinite;
}

/* ── Section tag pop-in ───────────────────────────────────── */
.lp-section-tag {
  animation: none;
}
.lp-reveal.visible .lp-section-tag {
  animation: lp-tag-in .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes lp-tag-in {
  from { transform: translateY(10px) scale(.9); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

/* ── Orbs — disable animation interference from parallax ─── */
.lp-orb { transition: transform .6s cubic-bezier(.25,.46,.45,.94); }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ──────────────────────────────────── */
#lp-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #2563eb, #60a5fa, #a78bfa);
  z-index: 200;
  transition: width .08s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(96,165,250,.6);
}

/* ── Directional reveal variants ─────────────────────────── */
.lp-reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.25,.46,.45,.94);
  transition-delay: var(--delay, 0s);
}
.lp-reveal-left.visible { opacity: 1; transform: none; }

.lp-reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.25,.46,.45,.94);
  transition-delay: var(--delay, 0s);
}
.lp-reveal-right.visible { opacity: 1; transform: none; }

.lp-reveal-scale {
  opacity: 0; transform: scale(.88);
  transition: opacity .6s ease, transform .6s cubic-bezier(.34,1.26,.64,1);
  transition-delay: var(--delay, 0s);
}
.lp-reveal-scale.visible { opacity: 1; transform: none; }

.lp-reveal-up {
  opacity: 0; transform: translateY(50px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.25,.46,.45,.94);
  transition-delay: var(--delay, 0s);
}
.lp-reveal-up.visible { opacity: 1; transform: none; }

/* ── Nav active link ─────────────────────────────────────── */
.lp-nav-links a {
  position: relative;
}
.lp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%; height: 2px;
  background: var(--lp-blue);
  border-radius: 2px;
  transition: transform .25s ease;
}
.lp-nav-links a.lp-nav-active::after,
.lp-nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.lp-nav-links a.lp-nav-active { color: #93c5fd; }

/* ── Section flash on anchor arrival ─────────────────────── */
@keyframes lp-section-flash {
  0%   { box-shadow: inset 0 0 0 2px rgba(37,99,235,0); }
  25%  { box-shadow: inset 0 0 0 2px rgba(37,99,235,.35); }
  100% { box-shadow: inset 0 0 0 2px rgba(37,99,235,0); }
}
.lp-section-flash {
  animation: lp-section-flash 1.1s ease forwards;
}

/* ── Step arrow bounce on reveal ─────────────────────────── */
.lp-step-arrow {
  opacity: 0; transform: scaleX(0);
  transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  transition-delay: var(--delay, .08s);
}
.lp-step-arrow.visible { opacity: 1; transform: none; }

/* ── Stagger override for feature grid reveal ────────────── */
.lp-features-grid .lp-reveal-scale:nth-child(1) { --delay: .05s; }
.lp-features-grid .lp-reveal-scale:nth-child(2) { --delay: .12s; }
.lp-features-grid .lp-reveal-scale:nth-child(3) { --delay: .19s; }
.lp-features-grid .lp-reveal-scale:nth-child(4) { --delay: .26s; }
.lp-features-grid .lp-reveal-scale:nth-child(5) { --delay: .33s; }
.lp-features-grid .lp-reveal-scale:nth-child(6) { --delay: .40s; }

/* ── Pricing card stagger ────────────────────────────────── */
.lp-pricing-grid .lp-reveal-scale:nth-child(1) { --delay: .06s; }
.lp-pricing-grid .lp-reveal-scale:nth-child(2) { --delay: .16s; }
.lp-pricing-grid .lp-reveal-scale:nth-child(3) { --delay: .26s; }

/* ══════════════════════════════════════════════════════════════
   DASHBOARD PREVIEW (browser mockup)
══════════════════════════════════════════════════════════════ */
.lp-preview { background: var(--lp-dark-1); }

.lp-browser {
  max-width: 900px; margin: 0 auto;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}
.lp-browser-bar {
  background: #1e293b;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-browser-dots { display:flex; gap:6px; }
.lp-browser-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.lp-browser-dots span:nth-child(1) { background: #ef4444; }
.lp-browser-dots span:nth-child(2) { background: #f59e0b; }
.lp-browser-dots span:nth-child(3) { background: #10b981; }
.lp-browser-url {
  flex: 1; background: rgba(255,255,255,.06); border-radius: 6px;
  padding: 5px 12px; font-size: .72rem; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 6px;
  max-width: 260px; margin: 0 auto;
}
.lp-browser-body { display: flex; background: #0f172a; min-height: 380px; }

/* Sidebar */
.lp-db-sidebar {
  width: 150px; background: #111827; flex-shrink: 0;
  padding: 16px 10px; border-right: 1px solid rgba(255,255,255,.06);
}
.lp-db-logo {
  font-size: .8rem; font-weight: 700; color: #e2e8f0;
  padding: 0 6px 14px; border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.lp-db-nav {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px; border-radius: 7px; margin-bottom: 2px;
  font-size: .72rem; color: rgba(255,255,255,.35); cursor: default;
  transition: background .15s;
}
.lp-db-nav i { width: 14px; text-align: center; font-size: .7rem; }
.lp-db-nav-active { background: rgba(37,99,235,.2); color: #93c5fd; }

/* Main */
.lp-db-main { flex: 1; padding: 16px; overflow: hidden; }
.lp-db-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 10px;
  margin-bottom: 14px;
}
.lp-db-stat {
  background: #1e293b; border-radius: 10px; padding: 12px;
  border: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 8px;
}
.lp-db-stat-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
}
.lp-db-stat-val { font-size: 1.1rem; font-weight: 700; color: #f1f5f9; line-height: 1; }
.lp-db-stat-label { font-size: .62rem; color: rgba(255,255,255,.35); margin-top: 2px; }
.lp-db-stat-trend { font-size: .65rem; font-weight: 600; }
.lp-db-stat-trend.up { color: #10b981; }

/* Kanban */
.lp-db-kanban { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.lp-db-col { background: #1e293b; border-radius: 10px; padding: 10px; border: 1px solid rgba(255,255,255,.06); }
.lp-db-col-header {
  font-size: .68rem; font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.lp-db-col-count {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.5);
  font-size: .6rem; border-radius: 99px; padding: 1px 6px;
}
.lp-db-card {
  background: #0f172a; border-radius: 7px; padding: 8px 10px; margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,.05);
}
.lp-db-card-ready { border-color: rgba(16,185,129,.3); }
.lp-db-card-table { font-size: .72rem; font-weight: 600; color: #e2e8f0; margin-bottom: 2px; }
.lp-db-card-items { font-size: .65rem; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.lp-db-card-time { font-size: .6rem; color: rgba(255,255,255,.25); }

/* ══════════════════════════════════════════════════════════════
   POURQUOI OPERIO
══════════════════════════════════════════════════════════════ */
.lp-why { background: var(--lp-dark-2); }
.lp-why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  max-width: 960px; margin: 0 auto;
}
.lp-why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--lp-radius); padding: 28px 24px;
  transition: border-color .25s, transform .25s;
}
.lp-why-card:hover { border-color: rgba(59,130,246,.35); transform: translateY(-3px); }
.lp-why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(37,99,235,.12); color: #3b82f6;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 16px;
}
.lp-why-card h4 { font-size: .95rem; font-weight: 700; color: #f1f5f9; margin-bottom: 8px; }
.lp-why-card p  { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   POUR QUEL TYPE DE RESTAURANT
══════════════════════════════════════════════════════════════ */
.lp-fortypes { background: var(--lp-dark-1); }
.lp-types-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.lp-type-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--lp-radius); padding: 24px 20px;
  transition: border-color .2s, background .2s;
}
.lp-type-card:hover { border-color: rgba(59,130,246,.3); background: rgba(37,99,235,.04); }
.lp-type-icon { font-size: 1.8rem; margin-bottom: 10px; }
.lp-type-name { font-size: .9rem; font-weight: 700; color: #f1f5f9; margin-bottom: 6px; }
.lp-type-desc { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.55; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.lp-faq { background: var(--lp-dark-2); }
.lp-faq-list { max-width: 720px; margin: 0 auto; }
.lp-faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.lp-faq-q {
  width: 100%; background: rgba(255,255,255,.03);
  border: none; cursor: pointer; text-align: left;
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-size: .9rem; font-weight: 600; color: #e2e8f0;
  font-family: inherit; transition: background .2s;
}
.lp-faq-q:hover { background: rgba(255,255,255,.05); }
.lp-faq-icon { flex-shrink: 0; color: rgba(255,255,255,.35); transition: transform .3s; }
.lp-faq-q[aria-expanded="true"] .lp-faq-icon { transform: rotate(180deg); color: #3b82f6; }
.lp-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
  padding: 0 22px;
}
.lp-faq-a.open { max-height: 300px; padding: 0 22px 18px; }
.lp-faq-a p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════════════════ */
.lp-legal {
  min-height: 100vh;
  padding: 120px 20px 80px;
  background: var(--lp-bg, #0b0f1a);
}
.lp-legal-inner {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,.82);
}
.lp-legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color .2s;
}
.lp-legal-back:hover { color: #3b82f6; }
.lp-legal-inner h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.lp-legal-updated {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin: 0 0 36px;
}
.lp-legal-inner > p:not(.lp-legal-updated) {
  margin: 0 0 28px;
  line-height: 1.75;
  font-size: .95rem;
}
.lp-legal-inner section {
  margin-bottom: 40px;
}
.lp-legal-inner h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-legal-inner h3 {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin: 18px 0 8px;
}
.lp-legal-inner p {
  margin: 0 0 14px;
  line-height: 1.75;
  font-size: .93rem;
}
.lp-legal-inner ul, .lp-legal-inner ol {
  margin: 0 0 14px;
  padding-left: 22px;
  line-height: 1.75;
  font-size: .93rem;
}
.lp-legal-inner li { margin-bottom: 6px; }
.lp-legal-inner a {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.lp-legal-inner a:hover { color: #93c5fd; }
.lp-legal-inner code {
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: .82em;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 2px 6px;
  color: #a5b4fc;
}
.lp-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: .88rem;
}
.lp-legal-table th {
  text-align: left;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.lp-legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: top;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.lp-legal-table tr:last-child td { border-bottom: none; }
.lp-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.lp-legal-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.lp-legal-links a:hover { color: #60a5fa; }

@media (max-width: 600px) {
  .lp-legal { padding: 100px 16px 60px; }
  .lp-legal-table { font-size: .8rem; }
  .lp-legal-table th, .lp-legal-table td { padding: 8px 10px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE additions
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .lp-db-sidebar { display: none; }
  .lp-db-stats { grid-template-columns: repeat(2,1fr); }
  .lp-db-kanban { grid-template-columns: 1fr; }
  .lp-why-grid { grid-template-columns: 1fr 1fr; }
  .lp-types-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .lp-db-stats { grid-template-columns: 1fr 1fr; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-types-grid { grid-template-columns: 1fr; }
}
