/* ============================================
   Axios — Landing Page Styles
   ============================================ */

:root {
  --lp-primary: #4361ee;
  --lp-primary-dark: #3451d1;
  --lp-secondary: #06d6a0;
  --lp-accent: #f0bf3e;
  --lp-dark: #0f172a;
  --lp-dark2: #1e293b;
  --lp-text: #334155;
  --lp-text-light: #64748b;
  --lp-bg: #f8fafc;
  --lp-border: #e2e8f0;
  --lp-white: #ffffff;
  --lp-radius: 16px;
}

* { box-sizing: border-box; }
.lp-body { font-family: 'Inter', 'Segoe UI', sans-serif; color: var(--lp-text); background: var(--lp-white); margin: 0; overflow-x: hidden; }

/* ===== NAVBAR ===== */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
  transition: all 0.3s;
}
.lp-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.lp-nav .container { max-width: 1200px; }
.lp-nav-inner { display: flex; align-items: center; gap: 32px; padding: 14px 0; }

.lp-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-brand-icon { width: 36px; height: 36px; background: var(--lp-primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; flex-shrink: 0; }
.lp-brand-name { font-size: 20px; font-weight: 800; color: var(--lp-dark); letter-spacing: -0.5px; }

.lp-nav-links { display: flex; align-items: center; gap: 28px; flex: 1; margin-left: 16px; }
.lp-nav-links a { color: var(--lp-text); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.lp-nav-links a:hover { color: var(--lp-primary); }

.lp-nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.btn-nav-login { color: var(--lp-text); text-decoration: none; font-size: 14px; font-weight: 600; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
.btn-nav-login:hover { background: var(--lp-bg); color: var(--lp-primary); }
.btn-nav-signup { background: var(--lp-primary); color: white; text-decoration: none; font-size: 14px; font-weight: 600; padding: 9px 20px; border-radius: 10px; transition: all 0.2s; white-space: nowrap; }
.btn-nav-signup:hover { background: var(--lp-primary-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(67,97,238,0.4); }

.lp-nav-toggle { display: none; background: none; border: 1px solid var(--lp-border); border-radius: 8px; padding: 6px 10px; cursor: pointer; flex-direction: column; gap: 5px; }
.lp-nav-toggle span { display: block; width: 20px; height: 2px; background: var(--lp-text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section .container { max-width: 1200px; position: relative; z-index: 2; }

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(67,97,238,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(6,214,160,0.1) 0%, transparent 50%);
}

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { color: white; }
.hero-badge { display: inline-flex; align-items: center; background: rgba(67,97,238,0.2); border: 1px solid rgba(67,97,238,0.4); color: #93c5fd; padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 500; margin-bottom: 24px; }
.hero-title { font-size: clamp(32px,4vw,52px); font-weight: 900; line-height: 1.15; margin: 0 0 20px; letter-spacing: -1px; }
.hero-accent { background: linear-gradient(135deg, #4361ee, #06d6a0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 17px; color: #94a3b8; line-height: 1.7; margin: 0 0 32px; }

.hero-cta { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hero-primary {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--lp-primary); color: white; text-decoration: none;
  padding: 16px 28px; border-radius: 12px; font-size: 16px; font-weight: 700;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(67,97,238,0.4);
}
.btn-hero-primary:hover { background: var(--lp-primary-dark); color: white; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(67,97,238,0.5); }
.btn-hero-primary .btn-sub { font-size: 11px; font-weight: 400; opacity: 0.8; margin-top: 2px; }
.btn-hero-secondary { display: inline-flex; align-items: center; color: #94a3b8; text-decoration: none; padding: 16px 28px; border-radius: 12px; font-size: 16px; font-weight: 600; border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s; }
.btn-hero-secondary:hover { color: white; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #94a3b8; }

/* Hero Mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.dashboard-mockup {
  width: 100%; max-width: 520px;
  background: #1e293b; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.mockup-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #0f172a; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-bar span:nth-child(1) { background: #ef4444; }
.mockup-bar span:nth-child(2) { background: #f59e0b; }
.mockup-bar span:nth-child(3) { background: #22c55e; }
.mockup-url { flex: 1; text-align: center; font-size: 11px; color: #475569; }
.mockup-content { display: flex; height: 280px; }
.mockup-sidebar { width: 60px; background: #0f172a; padding: 12px 8px; display: flex; flex-direction: column; gap: 6px; }
.mock-logo { width: 36px; height: 36px; background: var(--lp-primary); border-radius: 8px; margin-bottom: 12px; }
.mock-nav { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.mock-nav.active { background: var(--lp-primary); }
.mockup-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.mock-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mock-kpi { padding: 8px; border-radius: 8px; }
.kpi-blue { background: rgba(67,97,238,0.2); } .kpi-green { background: rgba(6,214,160,0.2); }
.kpi-orange { background: rgba(240,191,62,0.2); } .kpi-purple { background: rgba(147,51,234,0.2); }
.mock-kpi-val { font-size: 14px; font-weight: 700; color: white; } .mock-kpi-lbl { font-size: 10px; color: #64748b; }
.mock-chart { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 10px; flex: 1; }
.mock-chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.mock-bar { flex: 1; background: rgba(67,97,238,0.4); border-radius: 3px 3px 0 0; transition: height 0.3s; }
.mock-bar.active { background: var(--lp-primary); }
.mock-chart-label { font-size: 9px; color: #475569; margin-top: 6px; }
.mock-table { display: flex; flex-direction: column; gap: 4px; }
.mock-row { height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; }
.mock-row.header { background: rgba(255,255,255,0.1); }

/* ===== STATS ===== */
.stats-section { background: var(--lp-primary); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.stat-item { text-align: center; }
.stat-number { font-size: 36px; font-weight: 900; color: white; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ===== SECTIONS ===== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-badge { display: inline-block; background: rgba(67,97,238,0.1); color: var(--lp-primary); padding: 4px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(26px,3.5vw,42px); font-weight: 800; color: var(--lp-dark); margin: 0 0 16px; letter-spacing: -0.5px; }
.section-desc { font-size: 17px; color: var(--lp-text-light); line-height: 1.7; }

.modules-section { padding: 96px 0; background: var(--lp-bg); }
.modules-section .container { max-width: 1200px; }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.module-card { background: white; border-radius: var(--lp-radius); padding: 28px 24px; border: 1px solid var(--lp-border); transition: all 0.2s; }
.module-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); border-color: transparent; }
.module-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.mod-blue { background: rgba(67,97,238,0.1); color: #4361ee; }
.mod-green { background: rgba(6,214,160,0.1); color: #059669; }
.mod-orange { background: rgba(240,191,62,0.1); color: #d97706; }
.mod-purple { background: rgba(147,51,234,0.1); color: #7c3aed; }
.mod-teal { background: rgba(20,184,166,0.1); color: #0891b2; }
.mod-red { background: rgba(239,68,68,0.1); color: #dc2626; }
.mod-yellow { background: rgba(234,179,8,0.1); color: #ca8a04; }
.mod-dark { background: rgba(15,23,42,0.08); color: var(--lp-dark); }
.module-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--lp-dark); }
.module-card p { font-size: 14px; color: var(--lp-text-light); line-height: 1.6; margin: 0 0 12px; }
.module-features { list-style: none; padding: 0; margin: 0; }
.module-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--lp-text-light); padding: 3px 0; }
.module-features li i { color: var(--lp-secondary); font-size: 12px; flex-shrink: 0; }
.module-card-cta { background: var(--lp-dark); border-color: transparent; }
.module-card-cta h3, .module-card-cta p { color: white; } .module-card-cta p { color: #94a3b8; }
.module-card-cta .module-icon { background: rgba(255,255,255,0.1); color: white; }
.btn-module-more { display: inline-flex; align-items: center; color: var(--lp-secondary); text-decoration: none; font-size: 14px; font-weight: 600; margin-top: 12px; }
.btn-module-more:hover { color: #34d399; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 96px 0; background: white; }
.how-section .container { max-width: 1200px; }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.step-item { text-align: center; flex: 1; max-width: 280px; padding: 0 20px; }
.step-num { font-size: 48px; font-weight: 900; color: rgba(67,97,238,0.12); line-height: 1; }
.step-icon { width: 72px; height: 72px; background: rgba(67,97,238,0.1); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--lp-primary); margin: 0 auto 16px; }
.step-item h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--lp-dark); }
.step-item p { font-size: 14px; color: var(--lp-text-light); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--lp-border); padding: 0 8px; margin-bottom: 60px; }

/* ===== DEMO ===== */
.demo-section { padding: 96px 0; background: var(--lp-bg); }
.demo-section .container { max-width: 1200px; }
.demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.demo-content .section-badge { display: inline-block; margin-bottom: 12px; }
.demo-content h2 { font-size: clamp(24px,3vw,38px); font-weight: 800; color: var(--lp-dark); margin: 0 0 16px; }
.demo-content p { font-size: 16px; color: var(--lp-text-light); line-height: 1.7; margin-bottom: 20px; }
.demo-features { list-style: none; padding: 0; margin: 0 0 20px; }
.demo-features li { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 15px; color: var(--lp-text); }
.demo-features li i { color: var(--lp-secondary); }
.creds-box { background: white; border: 1px solid var(--lp-border); border-radius: 10px; padding: 14px 18px; display: inline-flex; gap: 24px; margin-bottom: 24px; }
.cred-item { font-size: 14px; color: var(--lp-text-light); }
.cred-item strong { color: var(--lp-dark); }
.btn-demo { display: inline-flex; align-items: center; background: var(--lp-primary); color: white; text-decoration: none; padding: 14px 28px; border-radius: 12px; font-size: 16px; font-weight: 700; transition: all 0.2s; box-shadow: 0 4px 16px rgba(67,97,238,0.3); }
.btn-demo:hover { background: var(--lp-primary-dark); color: white; transform: translateY(-2px); }
.screen-mockup { background: #1e293b; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.screen-header { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: #0f172a; }
.screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.screen-dot.red { background: #ef4444; } .screen-dot.yellow { background: #f59e0b; } .screen-dot.green { background: #22c55e; }
.screen-title { font-size: 11px; color: #475569; margin-left: 8px; }
.screen-body { display: flex; height: 220px; }
.screen-sidebar { width: 48px; background: #0f172a; padding: 10px 6px; display: flex; flex-direction: column; gap: 8px; }
.ss-item { height: 8px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.ss-item.active { background: var(--lp-primary); }
.screen-content { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.sc-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.sc-kpi { height: 36px; border-radius: 6px; }
.sc-blue { background: rgba(67,97,238,0.3); } .sc-green { background: rgba(6,214,160,0.25); }
.sc-orange { background: rgba(240,191,62,0.25); } .sc-purple { background: rgba(147,51,234,0.25); }
.sc-chart { flex: 1; background: rgba(255,255,255,0.04); border-radius: 8px; }
.sc-table { display: flex; flex-direction: column; gap: 4px; }
.sc-row { height: 8px; background: rgba(255,255,255,0.05); border-radius: 3px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 96px 0; background: white; }
.testimonials-section .container { max-width: 1200px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card { background: var(--lp-bg); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 32px; }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; }
.testimonial-card p { font-size: 15px; color: var(--lp-text); line-height: 1.7; margin: 0 0 24px; font-style: italic; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; background: var(--lp-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.testimonial-name { font-weight: 700; display: block; color: var(--lp-dark); font-style: normal; }
.testimonial-company { font-size: 13px; color: var(--lp-text-light); display: block; }

/* ===== PRICING PREVIEW ===== */
.pricing-preview-section { padding: 96px 0; background: var(--lp-bg); }
.pricing-preview-section .container { max-width: 1200px; }
.pricing-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.price-card { background: white; border-radius: var(--lp-radius); padding: 32px; border: 1px solid var(--lp-border); position: relative; transition: all 0.2s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.price-card-pro { background: var(--lp-dark); border-color: transparent; transform: scale(1.04); }
.price-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--lp-accent); color: #333; padding: 4px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.price-tag { font-size: 14px; font-weight: 600; color: var(--lp-text-light); margin-bottom: 8px; }
.price-card-pro .price-tag { color: #94a3b8; }
.price-amount { font-size: 32px; font-weight: 900; color: var(--lp-dark); margin-bottom: 8px; }
.price-card-pro .price-amount { color: white; }
.price-amount span { font-size: 15px; font-weight: 400; color: var(--lp-text-light); }
.price-desc { font-size: 14px; color: var(--lp-text-light); margin-bottom: 20px; }
.price-card-pro .price-desc { color: #94a3b8; }
.price-features { list-style: none; padding: 0; margin: 0 0 24px; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: 5px 0; color: var(--lp-text); }
.price-card-pro .price-features li { color: #e2e8f0; }
.price-features li i { font-size: 12px; color: var(--lp-secondary); flex-shrink: 0; }
.btn-price-free { display: block; text-align: center; padding: 12px; border: 2px solid var(--lp-border); border-radius: 10px; color: var(--lp-dark); text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.2s; }
.btn-price-free:hover { border-color: var(--lp-primary); color: var(--lp-primary); }
.btn-price-pro { display: block; text-align: center; padding: 12px; background: var(--lp-primary); border-radius: 10px; color: white; text-decoration: none; font-weight: 700; font-size: 14px; transition: all 0.2s; }
.btn-price-pro:hover { background: var(--lp-primary-dark); color: white; }
.link-all-pricing { color: var(--lp-primary); text-decoration: none; font-weight: 600; font-size: 15px; }
.link-all-pricing:hover { color: var(--lp-primary-dark); }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: white; }
.faq-section .container { max-width: 1200px; }
.faq-grid { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--lp-border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 18px 20px; text-align: left; font-size: 15px; font-weight: 600; color: var(--lp-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: all 0.2s; }
.faq-question:hover { background: var(--lp-bg); }
.faq-question i { transition: transform 0.3s; flex-shrink: 0; color: var(--lp-text-light); }
.faq-question:not(.collapsed) i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 16px; font-size: 14px; color: var(--lp-text-light); line-height: 1.7; }

/* ===== CTA ===== */
.cta-section { padding: 96px 0; background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%); }
.cta-section .container { max-width: 1200px; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(26px,3.5vw,44px); font-weight: 900; color: white; margin: 0 0 16px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-main { display: inline-flex; align-items: center; background: white; color: var(--lp-primary); text-decoration: none; padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 700; transition: all 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.btn-cta-main:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); color: var(--lp-primary-dark); }
.btn-cta-secondary { display: inline-flex; align-items: center; background: rgba(255,255,255,0.1); color: white; text-decoration: none; padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 600; border: 1px solid rgba(255,255,255,0.3); transition: all 0.2s; }
.btn-cta-secondary:hover { background: rgba(255,255,255,0.2); color: white; }
.cta-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== FOOTER ===== */
.lp-footer { background: var(--lp-dark); padding: 64px 0 0; color: #94a3b8; }
.lp-footer .container { max-width: 1200px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-tagline { font-size: 14px; color: #64748b; line-height: 1.6; margin: 12px 0; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #94a3b8; text-decoration: none; transition: all 0.2s; font-size: 14px; }
.footer-social a:hover { background: var(--lp-primary); color: white; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #94a3b8; padding: 4px 10px; border-radius: 6px; font-size: 11px; display: flex; align-items: center; gap: 6px; }
.footer-links-col h6 { color: white; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.footer-links-col ul { list-style: none; padding: 0; margin: 0; }
.footer-links-col li { margin-bottom: 10px; }
.footer-links-col a { color: #64748b; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links-col a:hover { color: white; }
.footer-contact p { font-size: 13px; margin: 4px 0; color: #64748b; display: flex; align-items: center; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; font-size: 13px; color: #475569; }
.footer-legal a { color: #475569; text-decoration: none; margin: 0 4px; font-size: 13px; }
.footer-legal a:hover { color: #94a3b8; }

/* ===== PAGE HERO SMALL ===== */
.page-hero-sm { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 100px 0 60px; color: white; }
.page-hero-sm .container { max-width: 1200px; }
.page-hero-sm h1 { font-size: clamp(26px,4vw,48px); font-weight: 900; color: white; margin: 12px 0 16px; }
.page-hero-sm .lead { font-size: 17px; color: #94a3b8; max-width: 600px; margin: 0 auto; }

/* ===== FEATURES DETAILED ===== */
.features-detailed .container { max-width: 1200px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--lp-border); }
.feature-row:last-child { border-bottom: none; }
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-icon-sm { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feature-desc h2 { font-size: clamp(22px,2.5vw,32px); font-weight: 800; color: var(--lp-dark); margin: 0 0 12px; }
.feature-desc p { font-size: 16px; color: var(--lp-text-light); line-height: 1.7; margin-bottom: 20px; }
.feature-list-detail { list-style: none; padding: 0; margin: 0; }
.feature-list-detail li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; }
.feature-list-detail li i { color: var(--lp-secondary); margin-top: 2px; flex-shrink: 0; }
.feature-list-detail li div { font-size: 15px; color: var(--lp-text); line-height: 1.4; }
.feature-list-detail li strong { color: var(--lp-dark); }
.feature-visual { display: flex; justify-content: center; }
.feature-mockup { background: white; border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,0.12); border: 1px solid var(--lp-border); width: 100%; max-width: 380px; overflow: hidden; }
.fm-header { display: flex; gap: 6px; padding: 10px 14px; background: #f8fafc; border-bottom: 1px solid var(--lp-border); }
.fm-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lp-border); }
.fm-body { padding: 20px; }
.fm-title { font-size: 14px; font-weight: 700; color: var(--lp-dark); margin-bottom: 16px; }
.fm-table { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fm-row { height: 10px; background: var(--lp-bg); border-radius: 5px; }
.fm-row.fm-thead { background: var(--lp-border); }
.fm-total { font-size: 15px; font-weight: 700; color: var(--lp-primary); text-align: right; }
.fm-stock-items { display: flex; flex-direction: column; gap: 12px; }
.fm-stock-item { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--lp-text-light); }
.fm-sbar { height: 8px; border-radius: 4px; }
.fm-sbar.green { background: #22c55e; } .fm-sbar.orange { background: #f59e0b; } .fm-sbar.red { background: #ef4444; }
.fm-badge { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.fm-badge.blue { background: rgba(67,97,238,0.1); color: var(--lp-primary); }
.fm-badge.green { background: rgba(34,197,94,0.1); color: #16a34a; }
.fm-supplier { font-size: 15px; font-weight: 700; color: var(--lp-dark); margin-bottom: 12px; }
.fm-line { height: 8px; background: var(--lp-bg); border-radius: 4px; margin-bottom: 8px; }
.fm-line.short { width: 60%; }
.fm-client-avatar { width: 50px; height: 50px; background: var(--lp-primary); border-radius: 50%; color: white; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.fm-client-name { font-size: 16px; font-weight: 700; color: var(--lp-dark); }
.fm-client-co { font-size: 12px; color: var(--lp-text-light); }
.fm-stats { display: flex; gap: 16px; margin-top: 16px; }
.fm-stat { text-align: center; background: var(--lp-bg); border-radius: 8px; padding: 8px 16px; }
.fm-stat-val { font-size: 18px; font-weight: 800; color: var(--lp-dark); }
.fm-stat-lbl { font-size: 11px; color: var(--lp-text-light); }
.fm-caisse-solde { font-size: 12px; color: var(--lp-text-light); margin-bottom: 4px; }
.fm-caisse-amount { font-size: 24px; font-weight: 900; color: #16a34a; margin-bottom: 16px; }
.fm-ops { display: flex; flex-direction: column; gap: 8px; }
.fm-op { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 6px 10px; border-radius: 8px; font-weight: 600; }
.fm-op-in { background: rgba(34,197,94,0.1); color: #16a34a; }
.fm-op-out { background: rgba(239,68,68,0.1); color: #dc2626; }
.fm-chart-mini { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-bottom: 16px; }
.fm-bar-mini { flex: 1; background: rgba(67,97,238,0.3); border-radius: 3px 3px 0 0; }
.fm-bar-mini.active { background: var(--lp-primary); }
.fm-kpi-row { display: flex; gap: 8px; }
.fm-kpi-sm { flex: 1; padding: 8px; border-radius: 8px; font-size: 11px; text-align: center; }
.fm-kpi-sm strong { font-size: 14px; font-weight: 800; display: block; }
.fm-kpi-sm.blue { background: rgba(67,97,238,0.1); color: var(--lp-primary); }
.fm-kpi-sm.green { background: rgba(34,197,94,0.1); color: #16a34a; }
.fm-kpi-sm.orange { background: rgba(234,179,8,0.1); color: #ca8a04; }

/* ===== PRICING FULL ===== */
.pricing-full-section { padding: 60px 0 96px; }
.pricing-full-section .container { max-width: 1200px; }
.billing-toggle { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 48px; font-size: 15px; font-weight: 500; }
.toggle-switch { position: relative; display: inline-block; width: 50px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; background: #cbd5e1; cursor: pointer; border-radius: 26px; transition: .3s; }
.slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: .3s; }
input:checked + .slider { background: var(--lp-primary); }
input:checked + .slider:before { transform: translateX(24px); }
.pricing-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.price-card-full { background: white; border-radius: var(--lp-radius); padding: 36px 28px; border: 1px solid var(--lp-border); position: relative; transition: all 0.2s; }
.pcf-popular { background: var(--lp-dark); border-color: transparent; box-shadow: 0 20px 60px rgba(67,97,238,0.3); }
.pcf-ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--lp-accent); color: #333; padding: 5px 20px; border-radius: 50px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.pcf-header { text-align: center; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--lp-border); }
.pcf-popular .pcf-header { border-bottom-color: rgba(255,255,255,0.1); }
.pcf-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.pcf-free { background: rgba(67,97,238,0.1); color: var(--lp-primary); }
.pcf-pro { background: rgba(6,214,160,0.15); color: #059669; }
.pcf-enterprise { background: rgba(147,51,234,0.1); color: #7c3aed; }
.price-card-full h2 { font-size: 22px; font-weight: 800; margin: 0 0 8px; color: var(--lp-dark); }
.pcf-popular h2 { color: white; }
.pcf-price { font-size: 36px; font-weight: 900; color: var(--lp-dark); margin: 8px 0; }
.pcf-popular .pcf-price { color: white; }
.pcf-price small { font-size: 15px; font-weight: 400; color: var(--lp-text-light); }
.price-card-full p { font-size: 14px; color: var(--lp-text-light); margin: 0; }
.pcf-popular p { color: #94a3b8; }
.pcf-features { list-style: none; padding: 0; margin: 0 0 28px; }
.pcf-features li { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14px; }
.pcf-features li.has { color: var(--lp-text); }
.pcf-features li.no { color: #cbd5e1; text-decoration: line-through; }
.pcf-popular .pcf-features li.has { color: #e2e8f0; }
.pcf-features li i { font-size: 12px; flex-shrink: 0; }
.pcf-features li.has i { color: var(--lp-secondary); }
.pcf-features li.no i { color: #cbd5e1; }
.btn-pcf-free { display: block; text-align: center; padding: 14px; border: 2px solid var(--lp-border); border-radius: 10px; color: var(--lp-dark); text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.2s; }
.btn-pcf-free:hover { border-color: var(--lp-primary); color: var(--lp-primary); }
.btn-pcf-pro { display: block; text-align: center; padding: 14px; background: var(--lp-primary); border-radius: 10px; color: white; text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.2s; }
.btn-pcf-pro:hover { background: var(--lp-primary-dark); color: white; }
.pcf-note { font-size: 12px; color: #94a3b8; text-align: center; margin: 10px 0 0; }
.comparison-table table th { background: #f8fafc; }
.table-section td { background: #f8fafc; font-size: 14px; }
.guarantees-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.guarantee-item { padding: 24px; }
.guarantee-item i { font-size: 28px; color: var(--lp-primary); margin-bottom: 12px; display: block; }
.guarantee-item strong { font-size: 15px; color: var(--lp-dark); display: block; margin-bottom: 8px; }
.guarantee-item p { font-size: 13px; color: var(--lp-text-light); margin: 0; }

/* ===== CONTACT ===== */
.contact-section .container { max-width: 1200px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 800; color: var(--lp-dark); margin: 0 0 12px; }
.contact-channels { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.contact-channel { display: flex; align-items: flex-start; gap: 16px; }
.cc-icon { width: 44px; height: 44px; background: rgba(67,97,238,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--lp-primary); flex-shrink: 0; }
.contact-channel h4 { font-size: 15px; font-weight: 700; margin: 0 0 2px; color: var(--lp-dark); }
.contact-channel p { font-size: 14px; margin: 0; color: var(--lp-text); }
.contact-channel small { font-size: 12px; color: var(--lp-text-light); }
.quick-links { display: flex; flex-direction: column; gap: 8px; }
.quick-link { display: flex; align-items: center; gap: 10px; color: var(--lp-primary); text-decoration: none; font-size: 14px; padding: 8px 14px; background: rgba(67,97,238,0.05); border-radius: 8px; font-weight: 500; transition: all 0.2s; }
.quick-link:hover { background: rgba(67,97,238,0.1); color: var(--lp-primary-dark); }
.contact-form-wrap { background: white; border-radius: 20px; border: 1px solid var(--lp-border); padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.btn-contact-submit { display: inline-flex; align-items: center; background: var(--lp-primary); color: white; border: none; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.btn-contact-submit:hover { background: var(--lp-primary-dark); transform: translateY(-1px); }
.contact-privacy { font-size: 12px; color: var(--lp-text-light); }

/* ===== BLOG ===== */
.blog-section .container { max-width: 1200px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: white; border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 28px; transition: all 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.blog-cat-badge { display: inline-block; background: rgba(67,97,238,0.1); color: var(--lp-primary); padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 12px; }
.blog-title { font-size: 17px; font-weight: 700; margin: 0 0 10px; line-height: 1.4; }
.blog-title a { color: var(--lp-dark); text-decoration: none; }
.blog-title a:hover { color: var(--lp-primary); }
.blog-excerpt { font-size: 14px; color: var(--lp-text-light); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--lp-text-light); margin-bottom: 16px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--lp-primary); text-decoration: none; font-size: 14px; font-weight: 600; transition: gap 0.2s; }
.blog-read-more:hover { gap: 10px; color: var(--lp-primary-dark); }
.newsletter-section { background: var(--lp-dark); padding: 60px 0; }
.newsletter-section .container { max-width: 1200px; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-inner h3 { font-size: 22px; font-weight: 700; color: white; margin: 0 0 6px; }
.newsletter-inner p { font-size: 14px; color: #94a3b8; margin: 0; }
.newsletter-form { display: flex; gap: 0; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.newsletter-form input { padding: 12px 18px; border: none; font-size: 14px; outline: none; min-width: 260px; background: rgba(255,255,255,0.1); color: white; }
.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form button { padding: 12px 24px; background: var(--lp-primary); color: white; border: none; font-weight: 700; font-size: 14px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--lp-primary-dark); }
.blog-post-hero { padding-bottom: 40px !important; }
.post-meta { display: flex; gap: 20px; margin-top: 12px; font-size: 14px; color: #94a3b8; flex-wrap: wrap; }
.blog-post-content .container { max-width: 1200px; }
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; }
.post-body { font-size: 16px; line-height: 1.8; color: var(--lp-text); }
.post-body h2 { font-size: 22px; font-weight: 700; color: var(--lp-dark); margin: 32px 0 12px; }
.post-body ul, .post-body ol { padding-left: 20px; margin-bottom: 20px; }
.post-body li { margin-bottom: 8px; }
.post-body p { margin-bottom: 20px; }
.post-cta-box { background: rgba(67,97,238,0.06); border: 1px solid rgba(67,97,238,0.2); border-radius: 16px; padding: 28px; margin-top: 40px; text-align: center; }
.post-cta-box h3 { font-size: 20px; font-weight: 700; color: var(--lp-dark); margin: 0 0 8px; }
.post-cta-box p { font-size: 15px; color: var(--lp-text-light); margin-bottom: 20px; }
.btn-post-cta { display: inline-flex; align-items: center; background: var(--lp-primary); color: white; text-decoration: none; padding: 12px 24px; border-radius: 10px; font-weight: 700; transition: all 0.2s; }
.btn-post-cta:hover { background: var(--lp-primary-dark); color: white; transform: translateY(-2px); }
.post-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: white; border: 1px solid var(--lp-border); border-radius: 16px; padding: 20px; }
.sidebar-widget h4 { font-size: 15px; font-weight: 700; color: var(--lp-dark); margin: 0 0 10px; }
.sidebar-widget p { font-size: 13px; color: var(--lp-text-light); margin-bottom: 14px; }
.recent-posts { list-style: none; padding: 0; margin: 0; }
.recent-posts li { border-bottom: 1px solid var(--lp-border); }
.recent-posts li:last-child { border-bottom: none; }
.recent-posts a { display: block; padding: 10px 0; font-size: 13px; color: var(--lp-text); text-decoration: none; line-height: 1.4; transition: color 0.2s; }
.recent-posts a:hover { color: var(--lp-primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row-reverse { direction: ltr; }
  .pricing-full-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pcf-popular { transform: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .guarantees-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .lp-nav-links { display: none; }
  .lp-nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px; border-top: 1px solid var(--lp-border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .lp-nav-toggle { display: flex; }
  .btn-nav-signup { font-size: 13px; padding: 8px 14px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .pricing-preview-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card-pro { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .demo-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { min-width: unset; flex: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modules-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .guarantees-row { grid-template-columns: 1fr 1fr; }
}
