@import url(‘https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap’);
.fglos{font-family:’DM Sans’,-apple-system,sans-serif;color:#1a1a2e;margin:0;padding:0}
.fglos *,.fglos *::before,.fglos *::after{box-sizing:border-box}

/* Hero */
.fglos-hero{background:linear-gradient(135deg,#1a1a2e 0%,#2d2d50 100%);padding:3.5rem 1.5rem 2.5rem;text-align:center !important;position:relative;overflow:hidden}
.fglos-hero *{text-align:center !important}
.fglos-hero-arc1{position:absolute;bottom:-200px;left:-200px;width:600px;height:600px;border-radius:50%;border:2px solid rgba(232,147,14,.13);pointer-events:none}
.fglos-hero-arc2{position:absolute;bottom:-250px;left:-250px;width:700px;height:700px;border-radius:50%;border:1px solid rgba(232,147,14,.07);pointer-events:none}
.fglos-hero-label{color:#e8930e;font-size:.85rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;margin:0 auto 12px !important;position:relative;display:block}
.fglos-hero h1{color:#fff !important;font-size:clamp(1.8rem,4vw,2.6rem);font-weight:700;line-height:1.2;max-width:650px;margin:0 auto 16px !important;position:relative}
.fglos-hero-sub{color:rgba(255,255,255,.73) !important;font-size:1.05rem;max-width:560px;margin:0 auto 28px !important;line-height:1.6;position:relative;display:block}

/* Search bar */
.fglos-search-wrap{max-width:560px;margin:0 auto;position:relative}
.fglos-search{width:100%;padding:14px 20px 14px 48px;font-size:1rem;font-family:inherit;border:none;border-radius:10px;background:#fff;color:#1a1a2e;outline:none;box-shadow:0 4px 20px rgba(0,0,0,.15)}
.fglos-search::placeholder{color:#aaa}
.fglos-search-icon{position:absolute;left:16px;top:50%;transform:translateY(-50%);font-size:18px;color:#999;pointer-events:none}

/* Sections */
.fglos-section{max-width:1100px;margin:0 auto;padding:2rem 1.25rem}
.fglos-section h2{font-size:1.4rem;font-weight:700;color:#1a1a2e;margin:0 0 6px}
.fglos-section-intro{color:#888;font-size:.95rem;margin:0 0 20px}

/* Most looked up */
.fglos-popular{background:#f8f8fa;padding:2rem 1.25rem}
.fglos-popular .fglos-inner{max-width:1100px;margin:0 auto}
.fglos-popular h2{font-size:1.1rem;font-weight:700;color:#1a1a2e;margin:0 0 14px}
.fglos-pop-tags{display:flex;flex-wrap:wrap;gap:8px}
.fglos-pop-tag{display:inline-block;background:#fff;border:1px solid #e0e0e0;border-radius:6px;padding:6px 14px;font-size:.88rem;font-weight:500;color:#1a1a2e;text-decoration:none;transition:all .15s}
.fglos-pop-tag:hover{border-color:#e8930e;color:#e8930e;background:#fdf6eb}

/* A-Z nav */
.fglos-az{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:28px;position:sticky;top:0;background:#fff;padding:12px 0;z-index:10;border-bottom:1px solid #eee}
.fglos-az a{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border:1px solid #e0e0e0;border-radius:6px;font-size:.9rem;font-weight:600;color:#1a1a2e;text-decoration:none;transition:all .15s}
.fglos-az a:hover,.fglos-az a.active{background:#1a1a2e;color:#fff;border-color:#1a1a2e}

/* Letter sections */
.fglos-letter-section{margin-bottom:2rem}
.fglos-letter{font-size:1.5rem;font-weight:700;color:#1a1a2e;margin:0 0 4px;padding-bottom:6px;border-bottom:3px solid #e8930e;display:inline-block}
.fglos-terms{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:10px}
.fglos-term{display:block;padding:8px 0;font-size:.92rem;color:#444;text-decoration:none;transition:color .15s;border-bottom:1px solid #f5f5f5}
.fglos-term:hover{color:#e8930e}

/* No results */
.fglos-no-results{display:none;padding:2rem;text-align:center;color:#999;font-size:1rem}

@media(max-width:700px){
.fglos-terms{grid-template-columns:repeat(2,1fr)}
.fglos-az a{width:32px;height:32px;font-size:.8rem}
}
@media(max-width:480px){
.fglos-terms{grid-template-columns:1fr}
}

Glossaire Financier

557 définitions de A à Z

Bourse, fiscalité, immobilier, crypto, comptabilité — chaque terme expliqué clairement.

🔍

Aucun terme trouvé pour cette recherche.

(function(){
var input = document.getElementById(‘fglosSearch’);
var sections = document.querySelectorAll(‘.fglos-letter-section’);
var noResults = document.getElementById(‘fglosNoResults’);
if(!input) return;
input.addEventListener(‘input’, function(){
var q = this.value.toLowerCase().trim();
var anyVisible = false;
sections.forEach(function(sec){
var terms = sec.querySelectorAll(‘.fglos-term’);
var sectionVisible = false;
terms.forEach(function(t){
var match = !q || t.textContent.toLowerCase().indexOf(q) > -1;
t.style.display = match ?  » : ‘none’;
if(match) sectionVisible = true;
});
sec.style.display = sectionVisible ?  » : ‘none’;
if(sectionVisible) anyVisible = true;
});
noResults.style.display = anyVisible ? ‘none’ : ‘block’;
});
})();