Files
html/404.html
2026-04-21 14:55:01 +02:00

117 lines
6.6 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page introuvable — WEVAL Consulting</title>
<meta name="description" content="La page que vous cherchez n'existe pas ou a été déplacée. Retournez à l'accueil de WEVAL Consulting.">
<meta name="robots" content="noindex, follow">
<link rel="canonical" href="https://weval-consulting.com/">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0f172a; color: #e2e8f0; display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.container { text-align: center; max-width: 600px; padding: 2rem; }
.error-code { font-size: 8rem; font-weight: 900; background: linear-gradient(135deg, #6366f1, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
h1 { font-size: 1.5rem; margin: 1rem 0; color: #f1f5f9; }
p { color: #94a3b8; margin: 0.5rem 0 2rem; line-height: 1.6; }
.links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
a { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.primary { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; }
.primary:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(99,102,241,0.4); }
.secondary { border: 1px solid #475569; color: #e2e8f0; }
.secondary:hover { border-color: #6366f1; color: #a5b4fc; }
.suggestions { margin-top: 2.5rem; text-align: left; }
.suggestions h2 { font-size: 1rem; color: #94a3b8; margin-bottom: 0.75rem; }
.suggestions ul { list-style: none; }
.suggestions li { padding: 0.4rem 0; }
.suggestions a { padding: 0; display: inline; color: #818cf8; font-weight: 400; }
.suggestions a:hover { color: #a5b4fc; }
</style>
</head>
<body>
<div class="container">
<div class="error-code">404</div>
<h1>Page introuvable</h1>
<p>La page que vous cherchez n'existe pas, a été déplacée ou est temporairement indisponible.</p>
<div class="links">
<a href="/" class="primary">Retour à l'accueil</a>
<a href="/contact" class="secondary">Nous contacter</a>
</div>
<div class="suggestions">
<h2>Pages populaires :</h2>
<ul>
<li><a href="/solutions">→ Nos Services IT &amp; Conseil</a></li>
<li><a href="/services/intelligence-artificielle">→ Intelligence Artificielle</a></li>
<li><a href="/services/cybersécurité">→ Cybersécurité</a></li>
<li><a href="/blog/index.html">→ Blog &amp; Actualités</a></li>
<li><a href="/wevia">→ WEVIA — Notre IA</a></li>
<li><a href="/marketplace">→ Marketplace Solutions</a></li>
</ul>
</div>
</div>
<!-- === OPUS UNIVERSAL DRILL-DOWN v1 19avr — append-only, doctrine #14 === -->
<script>
(function(){
if (window.__opusUniversalDrill) return; window.__opusUniversalDrill = true;
var d = document;
var m = d.createElement('div');
m.id = 'opus-udrill';
m.style.cssText = 'position:fixed;inset:0;background:rgba(0,0,0,0.82);backdrop-filter:blur(6px);display:none;align-items:center;justify-content:center;z-index:99995;padding:20px;cursor:pointer';
var inner = d.createElement('div');
inner.id = 'opus-udrill-in';
inner.style.cssText = 'max-width:900px;width:100%;max-height:90vh;overflow:auto;background:#0b0d15;border:1px solid rgba(99,102,241,0.35);border-radius:14px;padding:28px;cursor:default;box-shadow:0 20px 60px rgba(0,0,0,0.6);color:#e2e8f0;font:14px/1.55 Inter,system-ui,sans-serif';
inner.addEventListener('click', function(e){ e.stopPropagation(); });
m.appendChild(inner);
m.addEventListener('click', function(){ m.style.display='none'; });
d.addEventListener('keydown', function(e){ if(e.key==='Escape') m.style.display='none'; });
(d.body || d.documentElement).appendChild(m);
function openCard(card) {
var html = '<div style="display:flex;justify-content:flex-end;margin-bottom:14px"><button id="opus-udrill-close" style="padding:6px 14px;background:#171b2a;border:1px solid rgba(99,102,241,0.25);color:#e2e8f0;border-radius:8px;cursor:pointer;font-size:12px">✕ Fermer (Esc)</button></div>';
html += '<div style="transform-origin:top left;font-size:1.05em">' + card.outerHTML + '</div>';
inner.innerHTML = html;
d.getElementById('opus-udrill-close').onclick = function(){ m.style.display='none'; };
m.style.display = 'flex';
}
function wire(root) {
var sels = '.card,[class*="card"],.kpi,[class*="kpi"],.stat,[class*="stat"],.tile,[class*="tile"],.metric,[class*="metric"],.widget,[class*="widget"]';
var cards = root.querySelectorAll(sels);
for (var i = 0; i < cards.length; i++) {
var c = cards[i];
if (c.__opusWired) continue;
if (c.closest('button, a, input, select, textarea, #opus-udrill')) continue;
var r = c.getBoundingClientRect();
if (r.width < 60 || r.height < 40) continue;
c.__opusWired = true;
c.style.cursor = 'pointer';
c.setAttribute('role','button');
c.setAttribute('tabindex','0');
c.addEventListener('click', function(ev){
if (ev.target.closest('[data-pp-id]') && window.__opusDrillInit) return;
if (ev.target.closest('a,button,input,select')) return;
ev.preventDefault(); ev.stopPropagation();
openCard(this);
});
c.addEventListener('keydown', function(ev){ if(ev.key==='Enter'||ev.key===' '){ev.preventDefault();openCard(this);} });
}
}
var initRun = function(){ wire(d.body || d.documentElement); };
if (d.readyState === 'loading') d.addEventListener('DOMContentLoaded', initRun);
else initRun();
var mo = new MutationObserver(function(muts){
var newCard = false;
for (var i=0;i<muts.length;i++) if (muts[i].addedNodes.length) { newCard = true; break; }
if (newCard) initRun();
});
mo.observe(d.body || d.documentElement, {childList:true, subtree:true});
})();
</script>
<!-- === OPUS UNIVERSAL DRILL-DOWN END === -->
<script src="/api/a11y-auto-enhancer.js" defer></script>
<!-- WTP_UDOCK_V1 (Opus 21-avr t34final) --><script src="/wtp-unified-dock.js" defer></script>
<script src="/opus-antioverlap-doctrine.js?v=1776776094" defer></script>
</body>
</html>