*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #f59e0b; --primary-dark: #d97706; --primary-light: #fbbf24;
  --bg: #0a0a0f; --card: #111118; --border: rgba(255,255,255,0.07);
  --text: #ffffff; --muted: rgba(255,255,255,0.55); --muted2: rgba(255,255,255,0.7);
  --emerald: #10b981;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.gradient-text { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #d97706 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.badge { display: inline-flex; align-items: center; border-radius: 9999px; font-size: 0.7rem; font-weight: 600; padding: 0.3rem 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; border: 1px solid rgba(245,158,11,0.3); background: rgba(245,158,11,0.1); color: #fbbf24; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #000; font-weight: 700; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid #fcd34d; cursor: pointer; text-decoration: none; box-shadow: 0 0 20px rgba(251,191,36,0.3); transition: all 0.3s; font-family: 'Outfit', sans-serif; }
.btn-primary:hover { box-shadow: 0 0 35px rgba(251,191,36,0.55); transform: scale(1.02); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: rgba(255,255,255,0.04); color: #fff; font-weight: 600; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.18); cursor: pointer; text-decoration: none; transition: all 0.3s; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { display: inline-flex; align-items: center; gap: 0.3rem; background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #000; font-weight: 700; font-size: 0.8rem; padding: 0.55rem 1.2rem; border-radius: 0.6rem; border: 1px solid #fcd34d; cursor: pointer; text-decoration: none; transition: all 0.3s; font-family: 'Outfit', sans-serif; }
.card { background: rgba(17,17,24,0.7); border: 1px solid var(--border); border-radius: 1.25rem; backdrop-filter: blur(10px); transition: border-color 0.3s, box-shadow 0.3s; }
.card:hover { border-color: rgba(245,158,11,0.15); box-shadow: 0 0 30px rgba(245,158,11,0.05); }
header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.1rem 0; background: rgba(10,10,15,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
header .inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #fbbf24, #d97706); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 20px; height: 20px; color: #000; }
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; }
.logo-text span { color: var(--primary); }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { color: var(--muted); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions .login { color: var(--muted); font-size: 0.875rem; font-weight: 500; text-decoration: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; position: relative; z-index: 101; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(10,10,15,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 1.5rem; flex-direction: column; gap: 1rem; z-index: 99; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.7); font-size: 1rem; text-decoration: none; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.page-hero { padding: 8rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(245,158,11,0.06) 0%, transparent 70%); pointer-events: none; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin: 1rem 0 1rem; }
.page-hero p { font-size: 1rem; color: var(--muted2); max-width: 580px; margin: 0 auto; line-height: 1.75; }
section.content { padding: 2rem 0 5rem; }
footer { background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); padding: 2rem 0 1.5rem; margin-top: 2rem; }

.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; width: 56px; height: 56px; border-radius: 9999px; background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(37,211,102,0.45); text-decoration: none; transition: all 0.3s; }
.wa-float:hover { transform: scale(1.1); }
@media (max-width: 900px) { nav { display: none; } .header-actions { display: none; } .btn-sm { display: none; } .hamburger { display: flex; margin-left: auto; } }

.faq-list { max-width: 800px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: rgba(245,158,11,0.2); background: linear-gradient(90deg,rgba(245,158,11,0.04),transparent); }
.faq-btn { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: none; border: none; cursor: pointer; text-align: left; }
.faq-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 0.6rem; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; font-family: 'Outfit',sans-serif; transition: all 0.3s; }
.faq-item.open .faq-num { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.2); color: var(--primary); }
.faq-item:not(.open) .faq-num { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.faq-q { flex: 1; font-size: 0.95rem; font-weight: 600; color: #fff; }
.faq-chevron { flex-shrink: 0; width: 32px; height: 32px; border-radius: 0.6rem; border: 1px solid; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.faq-chevron svg { width: 15px; height: 15px; transition: transform 0.3s; }
.faq-item.open .faq-chevron { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.2); }
.faq-item.open .faq-chevron svg { transform: rotate(180deg); color: var(--primary); }
.faq-item:not(.open) .faq-chevron { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.faq-chevron svg { color: var(--muted2); }
.faq-answer { display: none; padding: 0 1.25rem 1.25rem 1.25rem; font-size: 0.875rem; color: var(--muted2); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }
.faq-cats { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2.5rem; }
.faq-cat-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--muted2); cursor: pointer; transition: all 0.3s; }
.faq-cat-btn:hover, .faq-cat-btn.active { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.08); color: var(--primary); }

/* ===== LANGUAGE SWITCHER WIDGET ===== */
.ls-widget { position: relative; display: inline-flex; align-items: center; }
.ls-toggle { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.6rem; padding: 0.45rem 0.85rem; cursor: pointer; color: #fff; font-size: 0.8rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s; white-space: nowrap; }
.ls-toggle:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,158,11,0.4); color: var(--primary); }
.ls-toggle.ls-open { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.06); color: var(--primary); }
.ls-flag-icon { font-size: 1rem; line-height: 1; }
.ls-flag-fr::before { content: "🇫🇷"; }
.ls-flag-en::before { content: "🇬🇧"; }
.ls-flag-ar::before { content: "🇸🇦"; }
.ls-flag-es::before { content: "🇪🇸"; }
.ls-flag-de::before { content: "🇩🇪"; }

.ls-flag-nl::before { content: "🇳🇱"; }
.ls-widget.ls-float { position: fixed; left: 1.5rem; bottom: 1.5rem; z-index: 260; }
.ls-widget.ls-float .ls-toggle { box-shadow: 0 10px 30px rgba(0,0,0,0.35); backdrop-filter: blur(18px); background: rgba(19,19,28,0.92); }
.ls-widget.ls-float .ls-menu { top: auto; bottom: calc(100% + 0.45rem); right: auto; left: 0; }
@media (max-width: 768px) {
  .ls-widget.ls-float { left: 1rem; bottom: 1rem; }
  .ls-widget.ls-float .ls-toggle { padding: 0.5rem 0.8rem; }
}
.ls-text { font-size: 0.78rem; font-weight: 700; }
.ls-menu { display: none; position: absolute; top: calc(100% + 0.45rem); right: 0; background: #13131c; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.85rem; padding: 0.35rem; min-width: 170px; z-index: 9999; box-shadow: 0 12px 40px rgba(0,0,0,0.6); animation: lsDropIn 0.18s ease; }
.ls-menu.open { display: block; }
@keyframes lsDropIn { from { opacity: 0; transform: translateY(-8px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.ls-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.75rem; border-radius: 0.55rem; cursor: pointer; transition: all 0.15s; font-size: 0.83rem; color: var(--muted2); font-family: 'Plus Jakarta Sans', sans-serif; }
.ls-item:hover { background: rgba(245,158,11,0.08); color: #fff; }
.ls-item.active { background: rgba(245,158,11,0.12); color: var(--primary); font-weight: 700; }
.ls-name-main { flex: 1; font-weight: 500; }
.ls-name-code { font-size: 0.72rem; font-weight: 800; color: var(--muted); opacity: 0.7; }
.ls-item.active .ls-name-code { color: var(--primary); opacity: 1; }
/* FOOTER FULL */
footer { background: rgba(0,0,0,0.5); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); max-width: 380px; line-height: 1.75; margin: 1.25rem 0; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn { width: 38px; height: 38px; border-radius: 9999px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: all 0.25s; text-decoration: none; color: #fff; }
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--primary); color: #000; }
.footer-col h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1.5rem; font-family: 'Outfit', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-bottom-right span { font-size: 0.75rem; color: var(--muted); }
.footer-bottom-right strong { font-weight: 700; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; align-items: flex-start; } }