*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --slate: rgb(30, 41, 59);
  --slate-hex: #1e293b;
  --accent: rgb(249, 115, 22);
  --accent-hex: #f97316;
  --navy: #0d1b2e;
  --blue: #1a56db;
  --text: var(--slate);
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --green: #10b981;
  --radius: 12px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 2rem; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--slate); text-decoration: none; letter-spacing: -0.5px; display: flex; align-items: center; }
.logo span { color: var(--accent); }
.logo-img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; gap: 1rem; align-items: center; }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--slate); padding: 0.5rem 1.25rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary { background: var(--accent); color: white; padding: 0.55rem 1.4rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; border: none; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.btn-primary:hover { background: rgb(234, 88, 12); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(249,115,22,0.4); }
.hero { background: linear-gradient(128deg, #1e293b 0%, #0f172a 42%, #0c1628 100%); padding: 108px 2rem 64px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 75% 60% at 82% 48%, rgba(249,115,22,0.1) 0%, transparent 65%); pointer-events: none; z-index: 2; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(105deg, #1e293b 0%, rgba(30,41,59,0.97) 28%, rgba(15,23,42,0.75) 48%, rgba(12,22,40,0.35) 62%, transparent 78%); }
.hero-inner { max-width: 1200px; width: 100%; margin: 0 auto; position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); gap: 1.5rem 2.5rem; align-items: center; }
.hero-visual { display: flex; align-items: center; justify-content: flex-end; min-width: 0; pointer-events: none; }
.hero-visual-img { display: block; width: 100%; max-width: 620px; max-height: min(400px, 52vh); height: auto; object-fit: contain; object-position: center right; margin-left: auto; -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 12%, #000 28%, #000 92%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 4%, #000 96%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 12%, #000 28%, #000 92%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 4%, #000 96%, transparent 100%); -webkit-mask-composite: source-in; mask-composite: intersect; filter: saturate(0.92) brightness(0.88) contrast(1.05); }
.hero-copy { max-width: 34rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(249,115,22,0.2); border: 1px solid rgba(249,115,22,0.4); color: #fed7aa; padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.5px; }
.hero h1 { font-size: 3.25rem; font-weight: 900; color: white; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--accent); font-style: normal; text-shadow: 0 0 40px rgba(249,115,22,0.3); }
.hero p, .hero-lead { color: #94a3b8; font-size: 1.15rem; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-lead { text-align: justify; text-align-last: left; hyphens: auto; -webkit-hyphens: auto; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary { background: var(--accent); color: white; padding: 0.9rem 2rem; border-radius: 10px; font-size: 1rem; font-weight: 700; border: none; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 20px rgba(249,115,22,0.35); }
.btn-hero-primary:hover { background: rgb(234, 88, 12); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.45); }
.btn-hero-secondary { background: rgba(255,255,255,0.08); color: white; padding: 0.9rem 2rem; border-radius: 10px; font-size: 1rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; text-decoration: none; transition: all 0.2s; }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(249,115,22,0.4); color: #fed7aa; }
.hero-trust { margin-top: 2.5rem; color: #64748b; font-size: 0.85rem; display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--slate); display: inline-block; margin-left: -8px; }
.avatar:first-child { margin-left: 0; }
.mockup-window { background: var(--slate-hex); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px rgba(30,41,59,0.5); border: 1px solid rgba(249,115,22,0.15); }
.mockup-topbar { background: #0f172a; padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.mockup-url { flex: 1; background: rgba(30,41,59,0.9); border-radius: 6px; padding: 4px 12px; color: #64748b; font-size: 0.75rem; margin-left: 8px; }
.mockup-body { display: grid; grid-template-columns: 200px 1fr; min-height: 340px; }
.mockup-sidebar { background: #0f172a; padding: 1rem; display: flex; flex-direction: column; gap: 4px; }
.mockup-nav-item { padding: 8px 12px; border-radius: 8px; font-size: 0.72rem; color: #64748b; display: flex; align-items: center; gap: 8px; }
.mockup-nav-item.active { background: rgba(249,115,22,0.2); color: #fdba74; }
.mockup-content { padding: 1.25rem; background: var(--slate-hex); }
.mockup-title { color: #f1f5f9; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.mockup-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.mockup-card { background: #0f172a; border-radius: 8px; padding: 0.75rem; }
.mockup-card-val { color: white; font-size: 1.4rem; font-weight: 700; }
.mockup-card-label { color: #64748b; font-size: 0.65rem; margin-top: 2px; }
.mockup-card-badge { font-size: 0.6rem; padding: 2px 6px; border-radius: 4px; background: rgba(16,185,129,0.15); color: #10b981; display: inline-block; margin-top: 4px; }
.mockup-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.mockup-bar-label { color: #94a3b8; font-size: 0.65rem; width: 60px; }
.mockup-bar-track { flex: 1; height: 6px; background: rgba(30,41,59,0.8); border-radius: 3px; }
.mockup-bar-fill { height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--accent), #fb923c); }
.stats { background: var(--white); padding: 2.5rem 2rem; border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-val { font-size: 2.75rem; font-weight: 900; color: var(--slate); letter-spacing: -2px; }
.stat-val span { color: var(--accent); }
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }
section { padding: 2.5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-block; background: rgba(249,115,22,0.12); color: var(--accent); padding: 0.35rem 1rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 1rem; }
.section-title { font-size: 2.4rem; font-weight: 800; color: var(--slate); letter-spacing: -1px; line-height: 1.15; margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; text-align: center; margin-left: auto; margin-right: auto; }
.features { background: var(--bg); }
.features-intro { text-align: center; margin-bottom: 2.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: white; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); transition: all 0.25s; }
.feature-card:hover { border-color: var(--accent); box-shadow: 0 8px 30px rgba(249,115,22,0.12); transform: translateY(-3px); }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate); margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.screenshots { background: white; }
.screenshots-header { text-align: center; margin-bottom: 2rem; }
.screenshots-display { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(30,41,59,0.15), 0 0 0 1px var(--border); }
.screen-topbar { background: var(--slate); padding: 14px 20px; display: flex; align-items: center; gap: 8px; }
.screen-url { flex: 1; background: rgba(255,255,255,0.08); border-radius: 6px; padding: 5px 14px; color: #94a3b8; font-size: 0.78rem; margin-left: 12px; }
.screen-body { background: #f1f5f9; display: grid; grid-template-columns: 240px 1fr; min-height: 420px; }
.screen-body.screen-body-screenshot { display: block; min-height: 0; padding: 0; background: #e2e8f0; line-height: 0; }
.screenshot-app-img { width: 100%; height: auto; display: block; vertical-align: top; }
.screen-sidebar { background: white; border-right: 1px solid var(--border); padding: 1.5rem 1rem; }
.screen-sidebar-logo { font-size: 1.1rem; font-weight: 800; color: var(--slate); margin-bottom: 2rem; padding-left: 0.5rem; }
.screen-sidebar-logo span { color: var(--accent); }
.screen-nav-group { margin-bottom: 1.5rem; }
.screen-nav-group-label { font-size: 0.65rem; font-weight: 700; color: #94a3b8; letter-spacing: 1px; text-transform: uppercase; padding: 0 0.5rem; margin-bottom: 0.5rem; }
.screen-nav-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; font-size: 0.82rem; font-weight: 500; color: #64748b; margin-bottom: 2px; }
.screen-nav-item.active { background: rgba(249,115,22,0.1); color: var(--accent); }
.screen-nav-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.screen-main { padding: 2rem; overflow: hidden; }
.screen-page-title { font-size: 1.25rem; font-weight: 700; color: var(--slate); margin-bottom: 0.25rem; }
.screen-breadcrumb { font-size: 0.78rem; color: #94a3b8; margin-bottom: 1.5rem; }
.screen-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.screen-kpi { background: white; border-radius: 10px; padding: 1rem; border: 1px solid var(--border); }
.screen-kpi-val { font-size: 1.6rem; font-weight: 800; color: var(--slate); }
.screen-kpi-label { font-size: 0.72rem; color: #94a3b8; margin-top: 2px; }
.screen-kpi-trend { font-size: 0.7rem; color: var(--green); font-weight: 600; margin-top: 4px; }
.screen-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.screen-table { background: white; border-radius: 10px; border: 1px solid var(--border); overflow: hidden; min-width: 320px; }
.screen-table-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1rem; padding: 0.75rem 1rem; background: var(--bg); font-size: 0.72rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
.screen-table-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1rem; padding: 0.75rem 1rem; border-top: 1px solid var(--border); font-size: 0.82rem; align-items: center; }
.screen-tag { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 0.7rem; font-weight: 600; }
.screen-tag.green { background: rgba(16,185,129,0.1); color: var(--green); }
.screen-tag.blue { background: rgba(59,130,246,0.1); color: #3b82f6; }
.screen-tag.orange { background: rgba(249,115,22,0.15); color: var(--accent); font-weight: 600; }
.pricing { background: var(--bg); }
.pricing-header { text-align: center; margin-bottom: 1rem; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; font-size: 0.9rem; color: var(--text-muted); }
.pricing-toggle [data-period] { cursor: pointer; font-weight: 500; padding: 0.25rem 0.5rem; border-radius: 6px; transition: color 0.2s, background 0.2s; }
.pricing-toggle [data-period]:hover { color: var(--slate); }
.pricing-toggle [data-period].active { color: var(--accent); font-weight: 700; background: rgba(249,115,22,0.1); }
.toggle-badge { background: var(--green); color: white; font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; cursor: pointer; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.pricing-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
/* Un seul type de prix affiché (mensuel ou annuel) */
#pricing-cards .plan-price-annual,
#pricing-cards .plan-ttc-annual { display: none !important; }
#pricing-cards[data-period="annual"] .plan-price-monthly { display: none !important; }
#pricing-cards[data-period="annual"] .plan-price-annual { display: flex !important; align-items: baseline; gap: 4px; margin-bottom: 0.5rem; }
#pricing-cards[data-period="annual"] .plan-ttc-annual { display: block !important; }
.pricing-card { background: white; border-radius: 16px; padding: 2.25rem; border: 2px solid var(--border); position: relative; transition: all 0.25s; }
.pricing-card.popular { border-color: var(--accent); box-shadow: 0 20px 50px rgba(249,115,22,0.15); transform: scale(1.03); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 4px 18px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.plan-name { font-size: 1rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.5rem; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.5rem; }
.plan-amount { font-size: 3rem; font-weight: 900; color: var(--slate); letter-spacing: -2px; }
.plan-currency { font-size: 1.25rem; font-weight: 700; color: var(--slate); }
.plan-period { font-size: 0.85rem; color: var(--text-muted); }
.plan-annual-note { font-size: 0.8rem; color: var(--green); font-weight: 600; margin-bottom: 1.5rem; }
.plan-ttc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.plan-ttc-save { color: var(--green); font-weight: 700; }
.plan-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.5; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.plan-features-list { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.plan-features-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--text); }
.check { color: var(--green); font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.cross { color: #cbd5e1; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.plan-features-list li.disabled { color: var(--text-muted); }
.btn-plan { display: block; width: 100%; padding: 0.85rem; border-radius: 10px; font-size: 0.95rem; font-weight: 700; text-align: center; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; }
.btn-plan-outline { background: transparent; border: 2px solid var(--border); color: var(--slate); }
.btn-plan-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-plan-fill { background: var(--accent); color: white; box-shadow: 0 4px 14px rgba(249,115,22,0.3); }
.btn-plan-fill:hover { background: rgb(234, 88, 12); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.4); }
.blog { background: white; }
.blog-header { text-align: center; margin-bottom: 1.5rem; }
.blog-teaser { max-width: 560px; margin: 0 auto; text-align: center; padding: 2rem; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); }
.blog-placeholder { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.blog-cta { display: inline-block; width: auto; padding: 0.65rem 1.5rem; }
.testimonials { background: var(--bg); }
.testimonials-header { text-align: center; margin-bottom: 2rem; }
.testimonials-placeholder { max-width: 520px; margin: 0 auto; text-align: center; padding: 2.5rem; background: white; border-radius: var(--radius); border: 1px solid var(--border); }
.testimonials-placeholder-text { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonials-cta { display: inline-block; width: auto; padding: 0.65rem 1.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--bg); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: white; }
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--slate); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.cta-banner { background: linear-gradient(135deg, var(--slate) 0%, #0f172a 60%, #0d1b2e 100%); padding: 4rem 2rem; text-align: center; position: relative; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(249,115,22,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-banner h2 { font-size: 2.5rem; font-weight: 900; color: white; margin-bottom: 1rem; letter-spacing: -1px; position: relative; z-index: 1; }
.cta-banner p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-note { color: #64748b; font-size: 0.85rem; margin-top: 1.25rem; }
footer { background: var(--slate); padding: 3rem 2rem 1.5rem; color: #94a3b8; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; align-items: start; }
.footer-col { display: flex; flex-direction: column; }
.footer-logo { font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 0; text-decoration: none; display: inline-block; }
.footer-logo span { color: var(--accent); }
.footer-logo-img { height: 44px; width: auto; display: block; }
.footer-logo-white { filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: #64748b; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; flex-shrink: 0; line-height: 1.35; min-height: 1.35em; margin: 0 0 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: #64748b; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: #475569; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #475569; text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-legal a:hover { color: white; }

/* Contact */
.contact { padding: 4rem 2rem; background: var(--bg); }
.contact-header { text-align: center; margin-bottom: 2rem; }
.contact-form { max-width: 32rem; margin: 0 auto; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--slate); }
.contact-form input,
.contact-form textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 0.75rem; font-family: inherit; font-size: 1rem; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { margin-top: 0.5rem; }

/* Anti-robot : champ piège caché (invisible pour les vrais utilisateurs) */
.form-group-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.contact-form .form-group-recaptcha { margin-top: 0.5rem; }
.contact-form .form-group-recaptcha .g-recaptcha { margin-bottom: 0.25rem; }
.contact-robot-error { color: #dc2626; font-size: 0.875rem; margin-top: 0.35rem; }
.contact-form-status { font-size: 0.9rem; margin: 0 0 0.75rem; min-height: 1.35em; }
.contact-form-status--success { color: var(--green); font-weight: 600; }
.contact-form-status--error { color: #dc2626; font-weight: 500; }

.legal-page { max-width: 800px; margin: 0 auto; padding: 120px 2rem 6rem; }
.legal-page h1 { font-size: 2rem; font-weight: 800; color: var(--slate); margin-bottom: 0.5rem; }
.legal-updated { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 3rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.legal-page h2 { font-size: 1.15rem; font-weight: 700; color: var(--slate); margin: 2.5rem 0 0.75rem; border-left: 3px solid var(--accent); padding-left: 0.75rem; }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 0.5rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page a { color: var(--accent); }
.legal-page strong { color: var(--slate); }
.legal-page h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate); margin: 1.5rem 0 0.5rem; }
.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.9rem; }
.legal-table th, .legal-table td { border: 1px solid var(--border); padding: 0.6rem 0.75rem; text-align: left; line-height: 1.5; }
.legal-table th { background: var(--bg); font-weight: 600; color: var(--slate); white-space: nowrap; }
.legal-table td { color: var(--text); }
@media (max-width: 640px) {
  .legal-table, .legal-table thead, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; }
  .legal-table thead { display: none; }
  .legal-table tr { margin-bottom: 1rem; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
  .legal-table td { border: none; border-bottom: 1px solid var(--border); padding: 0.5rem 0.75rem; }
  .legal-table td:last-child { border-bottom: none; }
}

/* Bandeau cookies */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 1.5rem; background: var(--slate); color: #e2e8f0; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); transform: translateY(100%); transition: transform 0.3s ease; }
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner-text { font-size: 0.9rem; line-height: 1.5; margin: 0; flex: 1; min-width: 280px; }
.cookie-banner-text a { color: var(--accent); text-decoration: underline; }
.cookie-banner-text a:hover { color: #fdba74; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn { padding: 0.5rem 1.25rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none; transition: background 0.2s, color 0.2s; }
.cookie-btn-refuse { background: transparent; color: #94a3b8; border: 1px solid #64748b; }
.cookie-btn-refuse:hover { background: rgba(255,255,255,0.08); color: #e2e8f0; }
.cookie-btn-accept { background: var(--accent); color: white; }
.cookie-btn-accept:hover { background: rgb(234, 88, 12); }

@media (min-width: 1100px) {
  .hero-inner { max-width: 1320px; gap: 2rem 3rem; }
  .hero-copy { max-width: 36rem; }
  .hero-visual-img { max-width: 680px; max-height: min(440px, 54vh); }
  .hero-scrim { background: linear-gradient(102deg, #1e293b 0%, rgba(30,41,59,0.98) 32%, rgba(15,23,42,0.7) 52%, rgba(12,22,40,0.25) 68%, transparent 82%); }
}

/* Tablet et petit desktop */
@media (max-width: 900px) {
  nav { padding: 0 1.25rem; }
  .nav-inner { height: 64px; }
  .hero { padding: 100px 1.5rem 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-visual { justify-content: center; order: 2; }
  .hero-visual-img { max-width: 480px; max-height: none; margin-inline: auto; object-position: center; filter: saturate(0.95) brightness(0.9); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%), linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%); mask-image: linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%), linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%); }
  .hero-scrim { background: linear-gradient(180deg, rgba(30,41,59,0.4) 0%, transparent 35%); }
  .hero-copy { order: 1; }
  .hero-copy { max-width: 100%; margin: 0 auto; }
  .hero-lead { text-align: center; text-align-last: center; hyphens: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { margin-bottom: 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }
  section { padding: 2.5rem 1.5rem; }
  .stats { padding: 2rem 1.5rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-val { font-size: 2.25rem; }
  .features-intro { margin-bottom: 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .section-sub { margin-left: auto; margin-right: auto; }
  .screenshots-header { margin-bottom: 2.5rem; }
  .screen-body { min-height: 320px; }
  .screen-main { padding: 1.5rem; }
  .screen-kpis { grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
  .screen-kpi-val { font-size: 1.4rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; gap: 1.25rem; }
  .pricing-grid--two { max-width: 420px; }
  .pricing-card.popular { transform: none; }
  .blog-teaser { padding: 1.5rem; }
  .pricing-toggle { margin-bottom: 2.5rem; }
  .testimonials-header { margin-bottom: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 1.25rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .cta-banner h2 { font-size: 2rem; }
  .cta-banner p { margin-bottom: 2rem; }
  footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
  .footer-desc { max-width: 100%; }
  .screen-body { grid-template-columns: 1fr; }
  .screen-sidebar { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: flex-end; }
  nav { padding: 0 1rem; }
  .nav-inner { height: 60px; }
  .nav-links { display: none; }
  .nav-cta { gap: 0.5rem; }
  .btn-ghost { padding: 0.45rem 1rem; font-size: 0.85rem; }
  .btn-primary { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
  .hero { padding: 90px 1rem 50px; }
  .hero h1 { font-size: 1.85rem; line-height: 1.2; }
  .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; padding: 0.85rem 1.5rem; }
  .hero-trust { font-size: 0.8rem; justify-content: center; text-align: center; }
  .avatar { width: 28px; height: 28px; }
  section { padding: 2rem 1rem; }
  .container { padding: 0 0.5rem; }
  .section-label { font-size: 0.75rem; padding: 0.3rem 0.85rem; }
  .section-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .section-sub { font-size: 0.95rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-card { padding: 1.5rem; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.25rem; }
  .stats { padding: 2.5rem 1rem; }
  .stats-inner { gap: 1.25rem; }
  .stat-val { font-size: 2rem; }
  .screenshots-display { border-radius: 12px; }
  .screen-topbar { padding: 10px 12px; flex-wrap: wrap; }
  .screen-url { font-size: 0.7rem; margin-left: 6px; min-width: 0; }
  .screen-main { padding: 1.25rem; }
  .screen-page-title { font-size: 1.1rem; }
  .screen-kpis { grid-template-columns: 1fr; }
  .screen-table-header, .screen-table-row { padding: 0.6rem 0.75rem; font-size: 0.75rem; gap: 0.5rem; }
  .pricing-grid { max-width: 100%; padding: 0 0.25rem; }
  .pricing-card { padding: 1.75rem; }
  .plan-amount { font-size: 2.5rem; }
  .plan-currency { font-size: 1.1rem; }
  .testimonials-grid { max-width: 100%; }
  .testimonial-card { padding: 1.5rem; }
  .cta-banner { padding: 2.5rem 1rem; }
  .cta-banner h2 { font-size: 1.5rem; line-height: 1.25; }
  .cta-banner p { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .cta-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .cta-actions .btn-hero-primary, .cta-actions .btn-hero-secondary { width: 100%; }
  footer { padding: 2rem 1rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; text-align: center; }
  .footer-desc { margin-left: auto; margin-right: auto; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; padding-top: 1.5rem; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .legal-page { padding: 100px 1rem 4rem; }
  .legal-page h1 { font-size: 1.6rem; }
  .legal-page h2 { font-size: 1.05rem; }
}

/* Très petit mobile (optionnel) */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.35rem; }
  .plan-amount { font-size: 2.2rem; }
  .stat-val { font-size: 1.75rem; }
}