/* ============================================
   LAZUR MEBLE — Enterprise SaaS Landing Page
   Design System & Component Styles
   ============================================ */

/* --- Google Fonts (self-hosted fallback chain) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Design Tokens --- */
:root {
  --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --lp-primary: #6366f1;
  --lp-primary-dark: #4f46e5;
  --lp-primary-light: #818cf8;
  --lp-secondary: #8b5cf6;
  --lp-accent: #ec4899;
  --lp-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
  --lp-gradient-hero: linear-gradient(135deg, #0f0c29 0%, #1a1145 25%, #24243e 50%, #0f0c29 100%);
  --lp-gradient-text: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
  --lp-bg: #fafbff;
  --lp-bg-dark: #0b0d17;
  --lp-bg-section: #f1f3f9;
  --lp-bg-card: #ffffff;
  --lp-bg-card-hover: #f8f9ff;
  --lp-text: #1e293b;
  --lp-text-secondary: #64748b;
  --lp-text-muted: #94a3b8;
  --lp-border: #e2e8f0;
  --lp-border-light: #f1f5f9;
  --lp-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --lp-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --lp-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --lp-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --lp-shadow-glow: 0 0 40px rgba(99,102,241,0.15);
  --lp-radius: 16px;
  --lp-radius-sm: 10px;
  --lp-radius-lg: 24px;
  --lp-radius-xl: 32px;
  --lp-max-width: 1280px;
  --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
.lp * { box-sizing: border-box; margin: 0; padding: 0; }
.lp { font-family: var(--lp-font); color: var(--lp-text); background: var(--lp-bg); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; margin: 0; padding: 0; }
.lp a { color: inherit; text-decoration: none; }
.lp img { max-width: 100%; height: auto; display: block; }
.lp ul { list-style: none; }
.lp button { cursor: pointer; font-family: var(--lp-font); border: none; background: none; }

/* --- Layout --- */
.lp-container { max-width: var(--lp-max-width); margin: 0 auto; padding: 0 24px; }
.lp-section { padding: 100px 0; }
.lp-section-alt { background: var(--lp-bg-section); }
.lp-section-dark { background: var(--lp-bg-dark); color: #fff; }
.lp-section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.lp-section-header .lp-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(99,102,241,0.08); color: var(--lp-primary); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 16px; }
.lp-section-header h2 { font-size: 42px; font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 16px; }
.lp-section-header p { font-size: 18px; color: var(--lp-text-secondary); line-height: 1.7; }
.lp-gradient-text { background: var(--lp-gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* --- Buttons --- */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 600; transition: var(--lp-transition); white-space: nowrap; }
.lp-btn-primary { background: var(--lp-gradient); color: #fff; box-shadow: 0 4px 15px rgba(99,102,241,0.35); }
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(99,102,241,0.45); }
.lp-btn-secondary { background: #fff; color: var(--lp-text); border: 1.5px solid var(--lp-border); box-shadow: var(--lp-shadow-sm); }
.lp-btn-secondary:hover { border-color: var(--lp-primary-light); background: var(--lp-bg-card-hover); transform: translateY(-2px); }
.lp-btn-ghost { color: var(--lp-text-secondary); padding: 10px 16px; }
.lp-btn-ghost:hover { color: var(--lp-primary); }
.lp-btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 10px; }
.lp-btn-lg { padding: 18px 40px; font-size: 17px; border-radius: 14px; }

/* ======================
   NAVIGATION
   ====================== */
.lp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 12px 0; transition: var(--lp-transition); }
.lp-nav.scrolled { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid rgba(226,232,240,0.6); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--lp-max-width); margin: 0 auto; padding: 0 24px; }
.lp-nav-logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; }
.lp-nav-logo img { height: 32px; width: auto; }
.lp-nav-links { display: flex; align-items: center; gap: 4px; }
.lp-nav-links a { padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--lp-text-secondary); border-radius: 8px; transition: var(--lp-transition); }
.lp-nav-links a:hover { color: var(--lp-primary); background: rgba(99,102,241,0.06); }
.lp-nav-actions { display: flex; align-items: center; gap: 8px; }
.lp-nav-actions .lp-btn-primary { padding: 10px 24px; font-size: 14px; }
.lp-hamburger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; background: rgba(99,102,241,0.06); }
.lp-hamburger span { display: block; width: 20px; height: 2px; background: var(--lp-text); border-radius: 2px; position: relative; transition: var(--lp-transition); }
.lp-hamburger span::before, .lp-hamburger span::after { content: ''; position: absolute; width: 20px; height: 2px; background: var(--lp-text); border-radius: 2px; transition: var(--lp-transition); }
.lp-hamburger span::before { top: -6px; }
.lp-hamburger span::after { top: 6px; }
.lp-mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); z-index: 999; padding: 80px 24px 24px; flex-direction: column; gap: 4px; }
.lp-mobile-menu.active { display: flex; }
.lp-mobile-menu a { padding: 16px 20px; font-size: 16px; font-weight: 500; color: var(--lp-text); border-radius: 12px; transition: var(--lp-transition); }
.lp-mobile-menu a:hover { background: rgba(99,102,241,0.06); color: var(--lp-primary); }
.lp-mobile-menu .lp-mobile-actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--lp-border); }

/* ======================
   HERO
   ====================== */
.lp-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 140px 0 100px; background: var(--lp-gradient-hero); }
.lp-hero-bg { position: absolute; inset: 0; overflow: hidden; }
.lp-hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: orbFloat 8s ease-in-out infinite; }
.lp-hero-bg .orb-1 { width: 600px; height: 600px; background: #6366f1; top: -200px; right: -100px; animation-delay: 0s; }
.lp-hero-bg .orb-2 { width: 500px; height: 500px; background: #8b5cf6; bottom: -150px; left: -100px; animation-delay: 3s; }
.lp-hero-bg .orb-3 { width: 400px; height: 400px; background: #ec4899; top: 40%; left: 50%; animation-delay: 5s; }
.lp-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.lp-hero-content { position: relative; z-index: 2; max-width: var(--lp-max-width); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lp-hero-text { color: #fff; }
.lp-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.lp-hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
.lp-hero-text h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
.lp-hero-text h1 .highlight { background: linear-gradient(135deg, #818cf8, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp-hero-text p { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 520px; margin-bottom: 36px; }
.lp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-hero-actions .lp-btn-secondary { border-color: rgba(255,255,255,0.2); color: #fff; background: rgba(255,255,255,0.06); }
.lp-hero-actions .lp-btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.lp-hero-visual { position: relative; }
.lp-hero-mockup { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--lp-radius-lg); padding: 3px; backdrop-filter: blur(10px); box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.lp-hero-mockup-inner { background: #1a1a2e; border-radius: 20px; overflow: hidden; }
.lp-hero-mockup-bar { height: 36px; background: #12122a; display: flex; align-items: center; padding: 0 14px; gap: 6px; }
.lp-hero-mockup-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-hero-mockup-bar .dot:nth-child(1) { background: #ef4444; }
.lp-hero-mockup-bar .dot:nth-child(2) { background: #eab308; }
.lp-hero-mockup-bar .dot:nth-child(3) { background: #22c55e; }
.lp-hero-mockup-body { padding: 20px; min-height: 300px; }
.lp-mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.lp-mockup-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; }
.lp-mockup-stat .label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.lp-mockup-stat .value { font-size: 22px; font-weight: 700; color: #fff; }
.lp-mockup-stat .value.green { color: #22c55e; }
.lp-mockup-stat .value.purple { color: #a78bfa; }
.lp-mockup-table { width: 100%; }
.lp-mockup-table-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 8px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.lp-mockup-table-header span { font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.05em; }
.lp-mockup-table-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 8px; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.lp-mockup-table-row span { font-size: 12px; color: rgba(255,255,255,0.7); }
.lp-mockup-badge { padding: 3px 10px; border-radius: 100px; font-size: 10px; font-weight: 600; display: inline-block; }
.lp-mockup-badge.paid { background: rgba(34,197,94,0.15); color: #22c55e; }
.lp-mockup-badge.sent { background: rgba(59,130,246,0.15); color: #60a5fa; }
.lp-mockup-badge.draft { background: rgba(148,163,184,0.15); color: #94a3b8; }

/* Floating cards */
.lp-float-card { position: absolute; background: rgba(255,255,255,0.08); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 14px 18px; animation: floatCard 6s ease-in-out infinite; z-index: 3; }
.lp-float-card-1 { top: -10px; right: -20px; animation-delay: 0s; }
.lp-float-card-2 { bottom: 30px; left: -30px; animation-delay: 2s; }
.lp-float-card .fc-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.lp-float-card .fc-value { font-size: 20px; font-weight: 700; color: #fff; }
.lp-float-card .fc-value.green { color: #22c55e; }
.lp-float-card .fc-icon { font-size: 24px; margin-bottom: 4px; }

/* ======================
   TRUSTED BY / STATS
   ====================== */
.lp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.lp-stat-item { text-align: center; }
.lp-stat-value { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.lp-stat-label { font-size: 15px; color: var(--lp-text-secondary); font-weight: 500; }

/* ======================
   FEATURES
   ====================== */
.lp-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-feature-card { background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 32px; transition: var(--lp-transition); position: relative; overflow: hidden; }
.lp-feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--lp-gradient); opacity: 0; transition: opacity 0.3s ease; }
.lp-feature-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-xl); border-color: rgba(99,102,241,0.2); }
.lp-feature-card:hover::before { opacity: 1; }
.lp-feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.lp-feature-icon.indigo { background: rgba(99,102,241,0.1); color: #6366f1; }
.lp-feature-icon.violet { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.lp-feature-icon.pink { background: rgba(236,72,153,0.1); color: #ec4899; }
.lp-feature-icon.emerald { background: rgba(16,185,129,0.1); color: #10b981; }
.lp-feature-icon.amber { background: rgba(245,158,11,0.1); color: #f59e0b; }
.lp-feature-icon.sky { background: rgba(14,165,233,0.1); color: #0ea5e9; }
.lp-feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.lp-feature-card p { font-size: 14px; color: var(--lp-text-secondary); line-height: 1.7; }

/* ======================
   DASHBOARD SHOWCASE
   ====================== */
.lp-showcase { position: relative; }
.lp-showcase-browser { background: #1e293b; border-radius: var(--lp-radius-lg); overflow: hidden; box-shadow: var(--lp-shadow-xl), 0 0 60px rgba(99,102,241,0.08); border: 1px solid rgba(255,255,255,0.06); }
.lp-showcase-topbar { height: 44px; background: #0f172a; display: flex; align-items: center; padding: 0 16px; gap: 8px; }
.lp-showcase-topbar .dots { display: flex; gap: 6px; }
.lp-showcase-topbar .dot { width: 12px; height: 12px; border-radius: 50%; }
.lp-showcase-topbar .dot:nth-child(1) { background: #ef4444; }
.lp-showcase-topbar .dot:nth-child(2) { background: #eab308; }
.lp-showcase-topbar .dot:nth-child(3) { background: #22c55e; }
.lp-showcase-topbar .url-bar { flex: 1; margin-left: 12px; background: rgba(255,255,255,0.06); border-radius: 6px; padding: 5px 12px; font-size: 12px; color: rgba(255,255,255,0.4); }
.lp-showcase-body { padding: 24px; min-height: 400px; display: grid; grid-template-columns: 200px 1fr; gap: 20px; }
.lp-showcase-sidebar { display: flex; flex-direction: column; gap: 2px; }
.lp-showcase-sidebar-item { padding: 10px 14px; border-radius: 8px; font-size: 13px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 10px; }
.lp-showcase-sidebar-item.active { background: rgba(99,102,241,0.15); color: #818cf8; }
.lp-showcase-sidebar-item svg { width: 16px; height: 16px; }
.lp-showcase-main { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 20px; }
.lp-showcase-main h4 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 16px; }

/* ======================
   TEMPLATE SHOWCASE
   ====================== */
.lp-templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lp-template-card { background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); overflow: hidden; transition: var(--lp-transition); }
.lp-template-card:hover { transform: translateY(-8px); box-shadow: var(--lp-shadow-xl); }
.lp-template-preview { height: 260px; background: #f8fafc; position: relative; overflow: hidden; display: flex; align-items: flex-start; justify-content: center; padding: 20px; }
.lp-template-preview-content { width: 100%; max-width: 220px; background: #fff; border: 1px solid #e2e8f0; border-radius: 6px; padding: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transform: scale(0.95); transition: transform 0.3s ease; }
.lp-template-card:hover .lp-template-preview-content { transform: scale(1); }
.lp-template-info { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; }
.lp-template-info h3 { font-size: 16px; font-weight: 600; }
.lp-template-info span { font-size: 13px; color: var(--lp-primary); font-weight: 500; }
.tp-header { height: 6px; border-radius: 3px; margin-bottom: 10px; }
.tp-line { height: 3px; background: #e2e8f0; border-radius: 2px; margin-bottom: 5px; }
.tp-line.short { width: 60%; }
.tp-line.medium { width: 80%; }
.tp-block { height: 30px; background: #f1f5f9; border-radius: 4px; margin: 10px 0; }
.tp-table { display: flex; flex-direction: column; gap: 3px; margin-top: 8px; }
.tp-table-row { display: flex; gap: 4px; }
.tp-table-cell { flex: 1; height: 4px; background: #e2e8f0; border-radius: 2px; }
.tp-table-cell.header { background: #cbd5e1; }

/* ======================
   WHY CHOOSE US
   ====================== */
.lp-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lp-why-card { text-align: center; padding: 32px 20px; border-radius: var(--lp-radius); background: var(--lp-bg-card); border: 1px solid var(--lp-border); transition: var(--lp-transition); }
.lp-why-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); border-color: rgba(99,102,241,0.2); }
.lp-why-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; background: rgba(99,102,241,0.08); }
.lp-why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.lp-why-card p { font-size: 13px; color: var(--lp-text-secondary); line-height: 1.6; }

/* ======================
   HOW IT WORKS
   ====================== */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.lp-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: var(--lp-gradient); opacity: 0.3; }
.lp-step { text-align: center; position: relative; }
.lp-step-number { width: 72px; height: 72px; border-radius: 50%; background: var(--lp-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; margin: 0 auto 20px; box-shadow: 0 8px 25px rgba(99,102,241,0.35); position: relative; z-index: 2; }
.lp-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.lp-step p { font-size: 14px; color: var(--lp-text-secondary); line-height: 1.6; }

/* ======================
   PRICING
   ====================== */
.lp-pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 48px; }
.lp-pricing-toggle span { font-size: 15px; font-weight: 500; color: var(--lp-text-secondary); }
.lp-pricing-toggle span.active { color: var(--lp-text); font-weight: 600; }
.lp-toggle { width: 52px; height: 28px; background: var(--lp-border); border-radius: 100px; position: relative; cursor: pointer; transition: var(--lp-transition); }
.lp-toggle.active { background: var(--lp-gradient); }
.lp-toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: var(--lp-transition); box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.lp-toggle.active::after { left: 27px; }
.lp-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; }
.lp-pricing-card { background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-lg); padding: 36px 28px; transition: var(--lp-transition); position: relative; }
.lp-pricing-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-xl); }
.lp-pricing-card.featured { border-color: var(--lp-primary); box-shadow: var(--lp-shadow-glow); transform: scale(1.04); z-index: 2; }
.lp-pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.lp-pricing-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--lp-gradient); color: #fff; padding: 6px 20px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }
.lp-pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.lp-pricing-desc { font-size: 13px; color: var(--lp-text-secondary); margin-bottom: 20px; line-height: 1.5; }
.lp-pricing-price { margin-bottom: 24px; }
.lp-pricing-amount { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; }
.lp-pricing-period { font-size: 14px; color: var(--lp-text-secondary); }
.lp-pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.lp-pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--lp-text-secondary); }
.lp-pricing-features li svg { width: 18px; height: 18px; flex-shrink: 0; }
.lp-pricing-features li svg.check { color: #22c55e; }
.lp-pricing-features li svg.x { color: #cbd5e1; }
.lp-pricing-card .lp-btn { width: 100%; }

/* ======================
   COMPARISON TABLE
   ====================== */
.lp-comparison { overflow-x: auto; margin-top: 60px; }
.lp-comparison table { width: 100%; border-collapse: collapse; min-width: 700px; }
.lp-comparison thead th { padding: 16px 20px; text-align: left; font-size: 14px; font-weight: 600; background: var(--lp-bg-section); border-bottom: 2px solid var(--lp-border); }
.lp-comparison thead th:first-child { border-radius: 12px 0 0 0; }
.lp-comparison thead th:last-child { border-radius: 0 12px 0 0; }
.lp-comparison tbody td { padding: 14px 20px; border-bottom: 1px solid var(--lp-border-light); font-size: 14px; color: var(--lp-text-secondary); }
.lp-comparison tbody td:first-child { font-weight: 500; color: var(--lp-text); }
.lp-comparison tbody tr:hover { background: var(--lp-bg-card-hover); }
.lp-check { color: #22c55e; font-weight: 700; }
.lp-x { color: #cbd5e1; }

/* ======================
   TESTIMONIALS
   ====================== */
.lp-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-testimonial-card { background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 28px; transition: var(--lp-transition); }
.lp-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); }
.lp-testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.lp-testimonial-card blockquote { font-size: 15px; color: var(--lp-text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.lp-testimonial-author { display: flex; align-items: center; gap: 12px; }
.lp-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--lp-gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: 700; }
.lp-testimonial-name { font-size: 14px; font-weight: 600; }
.lp-testimonial-role { font-size: 12px; color: var(--lp-text-muted); }

/* ======================
   FAQ
   ====================== */
.lp-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item { background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm); overflow: hidden; transition: var(--lp-transition); }
.lp-faq-item:hover { border-color: rgba(99,102,241,0.2); }
.lp-faq-item summary { padding: 20px 24px; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: space-between; list-style: none; transition: var(--lp-transition); }
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: '+'; font-size: 22px; color: var(--lp-primary); font-weight: 300; transition: transform 0.3s ease; }
.lp-faq-item[open] summary::after { transform: rotate(45deg); }
.lp-faq-item[open] summary { color: var(--lp-primary); }
.lp-faq-answer { padding: 0 24px 20px; font-size: 15px; color: var(--lp-text-secondary); line-height: 1.7; }

/* ======================
   CTA
   ====================== */
.lp-cta { background: var(--lp-gradient-hero); text-align: center; color: #fff; position: relative; overflow: hidden; }
.lp-cta .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; }
.lp-cta .orb-1 { width: 400px; height: 400px; background: #6366f1; top: -100px; right: -100px; }
.lp-cta .orb-2 { width: 300px; height: 300px; background: #8b5cf6; bottom: -80px; left: -80px; }
.lp-cta h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; position: relative; z-index: 2; }
.lp-cta p { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 36px; position: relative; z-index: 2; }
.lp-cta-actions { position: relative; z-index: 2; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.lp-cta-note { font-size: 13px; color: rgba(255,255,255,0.4); position: relative; z-index: 2; }

/* ======================
   FOOTER
   ====================== */
.lp-footer { background: #0b0d17; color: rgba(255,255,255,0.6); padding: 80px 0 32px; }
.lp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.lp-footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.lp-footer-col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.02em; }
.lp-footer-col a { display: block; font-size: 13px; padding: 4px 0; transition: var(--lp-transition); }
.lp-footer-col a:hover { color: #fff; }
.lp-footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.lp-footer-social { display: flex; gap: 16px; }
.lp-footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: var(--lp-transition); }
.lp-footer-social a:hover { background: rgba(99,102,241,0.2); color: #818cf8; }
.lp-footer-social a svg { width: 16px; height: 16px; }

/* ======================
   ANIMATIONS
   ====================== */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.lp-fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.lp-fade-in.visible { opacity: 1; transform: translateY(0); }

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 1024px) {
  .lp-hero-content { grid-template-columns: 1fr; text-align: center; }
  .lp-hero-text p { margin: 0 auto 36px; }
  .lp-hero-actions { justify-content: center; }
  .lp-hero-visual { max-width: 600px; margin: 40px auto 0; }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-steps::before { display: none; }
  .lp-templates-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .lp-showcase-body { grid-template-columns: 1fr; }
  .lp-showcase-sidebar { flex-direction: row; flex-wrap: wrap; gap: 4px; }
}
@media (max-width: 768px) {
  .lp-nav-links, .lp-nav-actions .lp-btn-ghost, .lp-nav-actions .lp-btn-secondary { display: none; }
  .lp-hamburger { display: flex; }
  .lp-section { padding: 64px 0; }
  .lp-section-header h2 { font-size: 32px; }
  .lp-section-header p { font-size: 16px; }
  .lp-section-header { margin-bottom: 40px; }
  .lp-hero { padding: 120px 0 60px; min-height: auto; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lp-stat-value { font-size: 36px; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-pricing-card.featured { transform: none; }
  .lp-pricing-card.featured:hover { transform: translateY(-4px); }
  .lp-why-grid { grid-template-columns: 1fr 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lp-templates-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .lp-testimonials-grid { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lp-footer-brand { grid-column: 1 / -1; }
  .lp-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .lp-hero-mockup-body { min-height: 200px; }
  .lp-mockup-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lp-hero-text h1 { font-size: 32px; }
  .lp-hero-actions { flex-direction: column; align-items: center; }
  .lp-hero-actions .lp-btn { width: 100%; }
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-stat-value { font-size: 28px; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-float-card { display: none; }
  .lp-mockup-stats { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr; }
}

/* Ultra wide */
@media (min-width: 1600px) {
  .lp-container { max-width: 1400px; }
}
