﻿/* ============================================================
   FLORIAN DESUERT â€” Design System v4 (propre, sans doublons)
   ============================================================ */

/* Polices locales uniquement (pas d'appel tiers) */

/* â”€â”€ TOKENS dark â”€â”€ */
:root {
  --bg:       #080c12;
  --bg2:      #0d1219;
  --surface:  #101620;
  --surface2: #151d2a;
  --border:   rgba(255,255,255,.07);
  --border-h: rgba(255,255,255,.14);
  --text:     #dde3ee;
  --muted:    #6b7a96;
  --subtle:   #2d3a52;
  --white:    #ffffff;
  --accent:   #0077cc;
  --accent2:  #81a1ba;
  --accent-b: rgba(0,119,204,.25);
  --green:    #4ade80;
  --red:      #f87171;
  --orange:   #fb923c;
  --yellow:   #fbbf24;
  --blue:     #60a5fa;
  --teal:     #2dd4bf;
  --nav-bg:   rgba(8,12,18,.88);
  --drop-bg:  #101620;
  --sans:     'Segoe UI','Avenir Next','Helvetica Neue',Arial,sans-serif;
  --mono:     'Consolas','SFMono-Regular','Menlo','Monaco','Liberation Mono',monospace;
}

html.light {
  --bg:       #f5f8fc;
  --bg2:      #edf2f8;
  --surface:  #ffffff;
  --surface2: #f0f5fb;
  --border:   rgba(0,87,154,.08);
  --border-h: rgba(0,87,154,.18);
  --text:     #1a2535;
  --muted:    #5a6f8a;
  --subtle:   #b8cde0;
  --white:    #0f1d2e;
  --accent:   #00579a;
  --accent2:  #81a1ba;
  --accent-b: rgba(0,87,154,.2);
  --green:    #16a34a;
  --red:      #dc2626;
  --orange:   #ea580c;
  --yellow:   #d97706;
  --blue:     #2563eb;
  --teal:     #0d9488;
  --nav-bg:   rgba(245,248,252,.92);
  --drop-bg:  #ffffff;
}

/* â”€â”€ RESET â”€â”€ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .25s, color .25s;
}
img { display:block; max-width:100%; }
a { color:inherit; }
svg { display:block; }

/* â”€â”€ GRID BACKGROUND â”€â”€ */
.grid-bg {
  position:fixed; inset:0;
  background-image: linear-gradient(var(--border) 1px,transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px);
  background-size:64px 64px;
  pointer-events:none; z-index:0;
  mask-image:radial-gradient(ellipse 80% 55% at 50% 0%,black 30%,transparent 100%);
}

/* â”€â”€ UTILITIES â”€â”€ */
.section-tag { font-size:.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); display:flex; align-items:center; gap:.5rem; margin-bottom:.75rem; }
.section-tag::before { content:''; display:block; width:12px; height:1px; background:var(--accent); }
.section-title { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700; letter-spacing:-.03em; color:var(--white); line-height:1.15; margin-bottom:.75rem; }
.section-sub { font-size:.95rem; color:var(--muted); max-width:440px; line-height:1.8; margin-bottom:3rem; }

/* â”€â”€ BUTTONS â”€â”€ */
.btn-primary {
  font-family:inherit; font-size:.95rem; font-weight:600;
  color:#fff; background:var(--accent);
  padding:.65rem 1.5rem; border-radius:8px; border:none; cursor:pointer;
  text-decoration:none; display:inline-flex; align-items:center; gap:.45rem;
  box-shadow:0 0 0 1px rgba(0,119,204,.55),0 4px 20px rgba(0,119,204,.25),inset 0 1px 0 rgba(255,255,255,.15);
  transition:all .15s;
}
.btn-primary:hover { background:#0066b3; transform:translateY(-1px); }
.btn-secondary {
  font-family:inherit; font-size:.95rem; font-weight:500;
  color:var(--text); background:var(--surface2);
  padding:.65rem 1.5rem; border-radius:8px;
  border:1px solid var(--border); cursor:pointer;
  text-decoration:none; display:inline-flex; align-items:center; gap:.45rem;
  transition:all .15s;
}
.btn-secondary:hover { background:var(--surface); border-color:var(--border-h); transform:translateY(-1px); }

/* â”€â”€ PILLS â”€â”€ */
.pill { display:inline-flex; align-items:center; gap:.35rem; font-size:.68rem; font-weight:600; padding:.25rem .7rem; border-radius:100px; border:1px solid; }
.pill-green { background:rgba(74,222,128,.08); border-color:rgba(74,222,128,.2); color:var(--green); }
.pill-blue  { background:rgba(0,119,204,.08);  border-color:rgba(0,119,204,.2);  color:var(--accent2); }
.pill-muted { background:var(--surface2); border-color:var(--border); color:var(--muted); }
.pill-dot   { width:5px; height:5px; border-radius:50%; background:currentColor; flex-shrink:0; }

/* â”€â”€ ICON BOX COLORS â”€â”€ */
.fi-blue   { background:rgba(0,119,204,.08);  border-color:rgba(0,119,204,.18);  color:var(--accent); }
.fi-green  { background:rgba(74,222,128,.08); border-color:rgba(74,222,128,.18); color:var(--green); }
.fi-purple { background:rgba(94,106,210,.08); border-color:rgba(94,106,210,.18); color:#8b94e0; }
.fi-orange { background:rgba(249,115,22,.08); border-color:rgba(249,115,22,.18); color:var(--orange); }
.fi-red    { background:rgba(248,113,113,.08);border-color:rgba(248,113,113,.18);color:var(--red); }
.fi-teal   { background:rgba(20,184,166,.08); border-color:rgba(20,184,166,.18); color:var(--teal); }
.fi-yellow { background:rgba(251,191,36,.08); border-color:rgba(251,191,36,.18); color:var(--yellow); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAV
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
nav {
  position:fixed; top:0; left:0; right:0; z-index:500;
  height:58px; display:flex; align-items:center;
  justify-content:space-between; padding:0 1.75rem;
  border-bottom:1px solid var(--border);
  background:var(--nav-bg);
  backdrop-filter:blur(14px) saturate(180%);
  transition:background .25s, border-color .25s;
}
.nav-logo { font-size:.95rem; font-weight:700; color:var(--white); text-decoration:none; letter-spacing:-.01em; display:flex; align-items:center; gap:.6rem; flex-shrink:0; }
.nav-logo-img { height:32px; width:auto; display:block; }
.nav-logo-text { font-size:.92rem; font-weight:700; letter-spacing:-.02em; }
.nav-logo-text span { color:var(--accent2); }
.nav-center { display:flex; list-style:none; position:absolute; left:50%; transform:translateX(-50%); }
.nav-center > li { display:flex; align-items:stretch; }
.nav-center a { display:flex; align-items:center; gap:.3rem; padding:0 .9rem; height:58px; font-size:.85rem; font-weight:400; color:var(--muted); text-decoration:none; transition:color .15s; white-space:nowrap; }
.nav-center a:hover, .nav-dd-wrap:hover > a { color:var(--text); }
.nav-right { display:flex; align-items:center; gap:.625rem; flex-shrink:0; }
.nav-back { display:flex; align-items:center; gap:.4rem; font-size:.82rem; color:var(--muted); text-decoration:none; transition:color .15s; }
.nav-back:hover { color:var(--text); }
.theme-toggle { width:34px; height:34px; border-radius:8px; border:1px solid var(--border); background:var(--surface2); color:var(--muted); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .15s; flex-shrink:0; }
.theme-toggle:hover { border-color:var(--border-h); color:var(--text); }
.theme-toggle svg { width:16px; height:16px; }
.icon-sun { display:none; } .icon-moon { display:block; }
html.light .icon-sun { display:block; } html.light .icon-moon { display:none; }
.btn-nav { font-family:inherit; font-size:.82rem; font-weight:600; padding:.4rem .95rem; border-radius:7px; text-decoration:none; cursor:pointer; border:none; white-space:nowrap; color:#fff; background:var(--accent); box-shadow:0 0 0 1px rgba(0,119,204,.45),inset 0 1px 0 rgba(255,255,255,.1); transition:all .15s; }
.btn-nav:hover { background:#0066b3; }
.chevron { width:10px; height:10px; flex-shrink:0; opacity:.4; transition:transform .2s,opacity .2s; display:block; }
.nav-dd-wrap { position:relative; display:flex; align-items:stretch; }
.nav-dd-wrap:hover .chevron { transform:rotate(180deg); opacity:.9; }
.nav-dd-wrap::before { content:''; position:absolute; top:100%; left:-32px; right:-32px; height:18px; z-index:599; }
.nav-dd { position:absolute; top:calc(100% + 13px); left:50%; transform:translateX(-50%) translateY(-5px); background:var(--drop-bg); border:1px solid var(--border-h); border-radius:12px; padding:6px; display:flex; flex-direction:row; gap:2px; min-width:530px; opacity:0; visibility:hidden; pointer-events:none; transition:opacity .16s,visibility .16s,transform .16s; box-shadow:0 20px 50px rgba(0,0,0,.45); z-index:600; }
html.light .nav-dd { box-shadow:0 8px 30px rgba(0,0,0,.1); }
.nav-dd-sm { min-width:248px; flex-direction:column; }
.nav-dd-wrap:hover .nav-dd { opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.dd-col { flex:1; display:flex; flex-direction:column; min-width:0; }
.dd-sep { width:1px; background:var(--border); margin:6px 2px; flex-shrink:0; }
.dd-group { font-size:.63rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--subtle); padding:8px 10px 4px; white-space:nowrap; }
.dd-item { display:flex; align-items:center; gap:10px; padding:7px 10px; border-radius:7px; text-decoration:none; transition:background .12s; }
.dd-item:hover { background:var(--surface2); }
.dd-ico { width:28px; height:28px; border-radius:7px; flex-shrink:0; border:1px solid var(--border); background:var(--surface2); display:flex; align-items:center; justify-content:center; }
.dd-ico svg { width:14px; height:14px; display:block; }
.ico-cart   { color:var(--red);    background:rgba(239,68,68,.08);    border-color:rgba(239,68,68,.18); }
.ico-screen { color:var(--blue);   background:rgba(59,130,246,.08);   border-color:rgba(59,130,246,.18); }
.ico-cloud  { color:var(--teal);   background:rgba(20,184,166,.08);   border-color:rgba(20,184,166,.18); }
.ico-gear   { color:var(--accent2);background:rgba(0,119,204,.08);    border-color:rgba(0,119,204,.18); }
.ico-shield { color:var(--orange); background:rgba(249,115,22,.08);   border-color:rgba(249,115,22,.18); }
.ico-server { color:#a3e635;       background:rgba(163,230,53,.08);   border-color:rgba(163,230,53,.18); }
.ico-wrench { color:var(--yellow); background:rgba(251,191,36,.08);   border-color:rgba(251,191,36,.18); }
.dd-text { display:flex; flex-direction:column; min-width:0; overflow:hidden; }
.dd-title { font-size:.82rem; font-weight:500; color:var(--text); white-space:nowrap; display:flex; align-items:center; gap:6px; line-height:1.3; }
.dd-desc  { font-size:.7rem; color:var(--muted); white-space:nowrap; margin-top:1px; line-height:1.3; }
.dd-badge   { font-size:.57rem; font-weight:600; padding:1px 5px; border-radius:3px; background:rgba(0,119,204,.12); border:1px solid rgba(0,119,204,.22); color:var(--accent2); }
.dd-badge-g { background:rgba(74,222,128,.08); border-color:rgba(74,222,128,.2); color:var(--green); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BREADCRUMB + FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.breadcrumb { position:relative; z-index:1; max-width:1100px; margin:0 auto; padding:5rem 2rem 0; display:flex; align-items:center; gap:.5rem; font-size:.75rem; color:var(--muted); }
.breadcrumb a { color:var(--muted); text-decoration:none; transition:color .15s; }
.breadcrumb a:hover { color:var(--text); }
.bc-sep { color:var(--subtle); }
.bc-cur { color:var(--text); }

footer { position:relative; z-index:1; border-top:1px solid var(--border); padding:1.75rem 2rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.footer-logo { font-size:.85rem; font-weight:600; color:var(--muted); text-decoration:none; display:flex; align-items:center; gap:.4rem; }
.footer-brand-muted { color:var(--muted); }
.footer-brand-accent { color:var(--accent2); }
.footer-links { display:flex; gap:1.75rem; list-style:none; flex-wrap:wrap; }
.footer-links a { font-size:.75rem; color:var(--muted); text-decoration:none; transition:color .15s; }
.footer-links a:hover { color:var(--text); }
.footer-copy { font-size:.72rem; color:var(--subtle); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO â€” 2 colonnes
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position:relative; z-index:1;
  padding:7rem 2rem 5rem;
  max-width:1100px; margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}
.hero-content {}
.hero-badge { display:inline-flex; align-items:center; gap:.5rem; font-size:.8rem; font-weight:500; color:var(--muted); background:var(--surface2); border:1px solid var(--border); padding:.35rem .95rem .35rem .55rem; border-radius:100px; margin-bottom:1.75rem; }
.badge-dot  { width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 6px var(--green); animation:blink 2.5s ease infinite; flex-shrink:0; }
.hero h1 { font-size:clamp(2.2rem,4vw,3.2rem); font-weight:700; letter-spacing:-.03em; line-height:1.1; color:var(--white); margin-bottom:1.25rem; }
.gradient-text { background:linear-gradient(135deg,#81a1ba 0%,#4da3e8 50%,#0077cc 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
html.light .gradient-text { background:linear-gradient(135deg,#00579a,#0077cc); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { font-size:1.05rem; color:var(--muted); max-width:430px; line-height:1.85; margin-bottom:2rem; }
.hero-actions { display:flex; gap:.75rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.hero-social-proof { display:flex; align-items:center; gap:1rem; }
.proof-avatars { display:flex; }
.proof-av { width:32px; height:32px; border-radius:50%; border:2px solid var(--bg); display:flex; align-items:center; justify-content:center; font-size:.62rem; font-weight:700; color:#fff; margin-left:-9px; flex-shrink:0; }
.proof-av:first-child { margin-left:0; }
.proof-av-1 { background:linear-gradient(135deg,#00579a,#81a1ba); }
.proof-av-2 { background:linear-gradient(135deg,#f59e0b,#ef4444); }
.proof-av-3 { background:linear-gradient(135deg,#22c55e,#0ea5e9); }
.proof-av-4 { background:linear-gradient(135deg,#8b5cf6,#ec4899); }
.proof-av-5 { background:linear-gradient(135deg,#0ea5e9,#6366f1); }
.proof-text { font-size:.82rem; color:var(--muted); line-height:1.4; }
.proof-text strong { color:var(--text); display:block; margin-bottom:.1rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MINI DASHBOARD
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mini-dashboard {
  background:var(--surface); border:1px solid var(--border); border-radius:16px; overflow:hidden;
  box-shadow:0 32px 80px rgba(0,0,0,.4),0 0 0 1px rgba(255,255,255,.03);
}
html.light .mini-dashboard { box-shadow:0 8px 40px rgba(0,87,154,.1); }
.dash-topbar { background:var(--bg2); border-bottom:1px solid var(--border); padding:.75rem 1.25rem; display:flex; align-items:center; gap:.5rem; }
.dash-dot { width:10px; height:10px; border-radius:50%; }
.dash-url { margin-left:.5rem; font-size:.72rem; color:var(--muted); background:var(--surface2); border:1px solid var(--border); border-radius:6px; padding:.2rem .75rem; flex:1; text-align:center; }
.dash-body { padding:1.25rem; display:flex; flex-direction:column; gap:.75rem; }
.dash-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:.5rem; }
.dash-metric { background:var(--bg2); border:1px solid var(--border); border-radius:10px; padding:.875rem .75rem; text-align:center; transition:border-color .2s; }
.dash-metric:hover { border-color:rgba(0,119,204,.3); }
.dm-val { font-size:1.3rem; font-weight:700; color:var(--white); letter-spacing:-.03em; line-height:1; }
.dm-lbl { font-size:.67rem; color:var(--muted); margin-top:.3rem; line-height:1.3; }
.dm-delta { font-size:.63rem; color:var(--green); margin-top:.2rem; }
.dash-site-card { background:var(--bg2); border:1px solid var(--border); border-radius:10px; padding:.875rem 1rem; display:flex; align-items:center; gap:.75rem; }
.dash-site-icon { width:32px; height:32px; border-radius:8px; background:linear-gradient(135deg,#00579a,#81a1ba); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.dash-site-info { flex:1; min-width:0; }
.dash-site-name { font-size:.85rem; font-weight:600; color:var(--white); }
.dash-site-url  { font-size:.7rem; color:var(--muted); margin-top:.1rem; }
.dash-site-badge { font-size:.63rem; font-weight:600; padding:.22rem .6rem; border-radius:100px; background:rgba(74,222,128,.1); border:1px solid rgba(74,222,128,.2); color:var(--green); white-space:nowrap; }
.dash-tasks { display:flex; flex-direction:column; gap:.4rem; }
.dash-task { display:flex; align-items:center; gap:.625rem; padding:.6rem .75rem; background:var(--bg2); border:1px solid var(--border); border-radius:8px; font-size:.82rem; }
.dash-task-ico { width:22px; height:22px; border-radius:6px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:.72rem; }
.dash-task-txt { flex:1; color:var(--text); }
.dash-task-status { font-size:.63rem; font-weight:600; padding:.18rem .5rem; border-radius:4px; white-space:nowrap; }
.status-done { background:rgba(74,222,128,.08); color:var(--green); }
.status-wip  { background:rgba(0,119,204,.08); color:#4da3e8; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-strip { position:relative; z-index:1; border-top:1px solid var(--border); border-bottom:1px solid var(--border); display:grid; grid-template-columns:repeat(4,1fr); }
.stat-cell { padding:2rem 2.5rem; border-right:1px solid var(--border); transition:background .2s; }
.stat-cell:last-child { border-right:none; }
.stat-cell:hover { background:var(--surface); }
.stat-num { font-size:2rem; font-weight:700; color:var(--white); letter-spacing:-.04em; line-height:1; margin-bottom:.4rem; }
.stat-num sup { font-size:.85rem; font-weight:400; color:var(--muted); vertical-align:super; }
.stat-desc { font-size:.87rem; color:var(--muted); line-height:1.55; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Ã€ PROPOS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-sec { position:relative; z-index:1; background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:7rem 2rem; }
.about-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
.about-card { background:var(--bg2); border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.about-card-header { background:linear-gradient(135deg,rgba(0,87,154,.1),rgba(129,161,186,.05)); border-bottom:1px solid var(--border); padding:1.5rem; display:flex; align-items:center; gap:1rem; flex-wrap:wrap; }
.about-avatar { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,#00579a,#81a1ba); display:flex; align-items:center; justify-content:center; font-size:1.1rem; font-weight:700; color:#fff; flex-shrink:0; box-shadow:0 4px 12px rgba(0,87,154,.35); }
.about-name { font-size:1rem; font-weight:600; color:var(--white); }
.about-role { font-size:.82rem; color:var(--muted); margin-top:.15rem; }
.about-available { display:inline-flex; align-items:center; gap:.35rem; font-size:.72rem; font-weight:600; color:var(--green); background:rgba(74,222,128,.08); border:1px solid rgba(74,222,128,.2); padding:.28rem .7rem; border-radius:100px; margin-left:auto; flex-shrink:0; }
.about-rows { padding:.5rem; }
.about-row { display:flex; align-items:center; justify-content:space-between; padding:.9rem 1rem; border-bottom:1px solid var(--border); gap:1rem; }
.about-row:last-child { border-bottom:none; }
.about-row-lbl { font-size:.85rem; color:var(--muted); flex-shrink:0; }
.about-row-val { font-size:.88rem; font-weight:500; color:var(--text); text-align:right; }
.about-row-val a { color:var(--accent); text-decoration:none; }
.about-row-val a:hover { text-decoration:underline; }
.about-tags { display:flex; flex-wrap:wrap; gap:.4rem; margin-top:1.5rem; }
.about-tag { font-size:.8rem; padding:.3rem .72rem; border-radius:6px; background:var(--surface2); border:1px solid var(--border); color:var(--text); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES GRID
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services { position:relative; z-index:1; padding:6rem 2rem; max-width:1100px; margin:0 auto; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.svc-card { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:2rem; transition:border-color .2s,transform .2s,box-shadow .2s; cursor:default; display:flex; flex-direction:column; }
.svc-card:hover { border-color:rgba(0,119,204,.3); transform:translateY(-2px); box-shadow:0 8px 32px rgba(0,0,0,.2); }
.svc-card-wide { grid-column:1/-1; }
.svc-ico { width:44px; height:44px; border-radius:12px; background:rgba(0,119,204,.1); border:1px solid rgba(0,119,204,.2); display:flex; align-items:center; justify-content:center; color:var(--accent); margin-bottom:1.25rem; flex-shrink:0; }
.svc-ico svg { width:22px; height:22px; display:block; }
.svc-card h3 { font-size:1rem; font-weight:600; color:var(--white); letter-spacing:-.01em; margin-bottom:.625rem; }
.svc-card p  { font-size:.9rem; color:var(--muted); line-height:1.75; flex:1; }
.svc-tags { display:flex; flex-wrap:wrap; gap:.35rem; margin-top:1rem; }
.svc-tag  { font-size:.7rem; font-weight:500; padding:.22rem .6rem; border-radius:5px; background:rgba(0,119,204,.07); border:1px solid rgba(0,119,204,.18); color:var(--accent2); }
.svc-link { display:inline-flex; align-items:center; gap:.3rem; font-size:.85rem; color:var(--accent); text-decoration:none; margin-top:1rem; font-weight:500; opacity:1; transition:color .2s; }
.svc-card:hover .svc-link { opacity:1; }
.svc-interventions { display:grid; grid-template-columns:repeat(3,1fr); gap:.35rem 2rem; margin-top:1rem; }
.intv-item { display:flex; align-items:center; gap:.5rem; font-size:.88rem; color:var(--text); padding:.4rem 0; border-bottom:1px solid var(--border); }
.intv-item svg { flex-shrink:0; color:var(--accent); width:13px; height:13px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TÃ‰MOIGNAGES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials { position:relative; z-index:1; padding:6rem 2rem; }
.test-inner { max-width:1100px; margin:0 auto; }
.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:3rem; }
.test-card { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:2rem; transition:border-color .2s; }
.test-card:hover { border-color:rgba(0,119,204,.25); }
.test-stars { color:#fbbf24; margin-bottom:1rem; display:flex; gap:3px; font-size:1rem; }
.test-card blockquote { font-size:.92rem; color:var(--text); line-height:1.8; font-weight:300; margin-bottom:1.5rem; }
.test-author { display:flex; align-items:center; gap:.75rem; padding-top:1rem; border-top:1px solid var(--border); }
.test-av { width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.7rem; font-weight:700; color:#fff; flex-shrink:0; }
.test-av-1 { background:linear-gradient(135deg,#00579a,#81a1ba); }
.test-av-2 { background:linear-gradient(135deg,#f59e0b,#ef4444); }
.test-av-3 { background:linear-gradient(135deg,#22c55e,#0ea5e9); }
.test-name { font-size:.88rem; font-weight:600; color:var(--white); }
.test-role { font-size:.73rem; color:var(--muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-section { position:relative; z-index:1; background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:6rem 2rem; }
.blog-inner { max-width:1100px; margin:0 auto; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:3rem; }
.blog-card { background:var(--bg2); border:1px solid var(--border); border-radius:12px; padding:1.75rem; text-decoration:none; display:flex; flex-direction:column; transition:border-color .2s,transform .15s; }
.blog-card:hover { border-color:rgba(0,119,204,.3); transform:translateY(-2px); }
.blog-card-meta { display:flex; align-items:center; gap:.75rem; margin-bottom:1rem; }
.blog-cat { font-size:.68rem; font-weight:600; padding:.22rem .65rem; border-radius:5px; letter-spacing:.03em; }
.blog-cat-wp  { background:rgba(33,117,206,.1);  border:1px solid rgba(33,117,206,.2);  color:#60a5fa; }
.blog-cat-ps  { background:rgba(223,85,22,.1);   border:1px solid rgba(223,85,22,.2);   color:var(--orange); }
.blog-cat-srv { background:rgba(74,222,128,.08); border:1px solid rgba(74,222,128,.15); color:var(--green); }
.blog-date { font-size:.75rem; color:var(--muted); }
.blog-title { font-size:.97rem; font-weight:600; color:var(--white); letter-spacing:-.01em; line-height:1.4; margin-bottom:.75rem; }
.blog-excerpt { font-size:.87rem; color:var(--muted); line-height:1.7; margin-bottom:1.25rem; flex:1; }
.blog-read { display:inline-flex; align-items:center; gap:.35rem; font-size:.82rem; color:var(--accent); font-weight:500; margin-top:auto; }
.blog-page-wrap { position:relative; z-index:1; max-width:1100px; margin:0 auto; padding:5rem 2rem 6rem; }
.blog-page-header { display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:1.5rem; margin-bottom:3rem; }
.blog-page-title { font-size:clamp(2rem,4vw,3rem); letter-spacing:-.04em; margin-bottom:.5rem; }
.blog-page-count { font-size:.9rem; color:var(--muted); }
.blog-search-btn { display:flex; align-items:center; gap:.5rem; padding:.6rem 1.1rem; background:var(--surface2); border:1px solid var(--border); border-radius:8px; color:var(--muted); font-size:.85rem; cursor:pointer; transition:all .15s; font-family:inherit; }
.blog-shortcut-kbd { font-size:.65rem; padding:.1rem .35rem; border-radius:3px; background:var(--surface); border:1px solid var(--border); color:var(--subtle); font-family:var(--mono); }
.blog-title-compact { font-size:.9rem; }
.blog-pagination { display:flex; align-items:center; justify-content:center; gap:.5rem; margin-top:3.5rem; }
.blog-page-nav-link { display:flex; align-items:center; gap:.4rem; padding:.55rem 1rem; background:var(--surface2); border:1px solid var(--border); border-radius:8px; font-size:.85rem; color:var(--muted); text-decoration:none; transition:all .15s; }
.blog-page-num { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:8px; font-size:.85rem; font-weight:500; text-decoration:none; transition:all .15s; background:var(--surface2); color:var(--muted); border:1px solid var(--border); }
.blog-page-num.is-current { background:var(--accent); color:#fff; border:1px solid transparent; }
.blog-page-num:not(.is-current):hover { color:var(--text); border-color:var(--border-h); }
.blog-search-btn:hover { border-color:var(--border-h) !important; color:var(--text) !important; }
.blog-page-nav-link:hover { color:var(--text) !important; border-color:var(--border-h) !important; }
.pagefind-fallback-message { color:var(--muted); font-size:.9rem; padding:.5rem 0; }
.pagefind-fallback-message code { font-family:var(--mono); color:var(--teal); }
body.no-scroll { overflow:hidden; }

.search-modal { display:none; position:fixed; inset:0; z-index:900; background:rgba(0,0,0,.65); backdrop-filter:blur(6px); }
.search-modal.is-open { display:block; }
.search-modal-inner { position:absolute; top:8%; left:50%; transform:translateX(-50%); width:100%; max-width:640px; padding:0 1rem; }
.search-modal-card { background:var(--bg2); border:1px solid var(--border-h); border-radius:16px; overflow:hidden; box-shadow:0 32px 80px rgba(0,0,0,.6); display:flex; flex-direction:column; max-height:80vh; }
.search-modal-head { padding:1.25rem 1.25rem .75rem; flex-shrink:0; }
.search-results-scroll { overflow-y:auto; padding:0 1.25rem; flex:1; min-height:0; }
.search-modal-footer { padding:.75rem 1.25rem; border-top:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; flex-shrink:0; }
.search-modal-shortcuts { display:flex; gap:.75rem; }
.search-shortcut { font-size:.72rem; color:var(--subtle); display:flex; align-items:center; gap:.3rem; }
.search-shortcut-kbd { font-size:.65rem; padding:.1rem .35rem; border-radius:3px; background:var(--surface); border:1px solid var(--border); color:var(--muted); font-family:var(--mono); }
.search-modal-scope { font-size:.72rem; color:var(--subtle); }

#pagefind-search .pagefind-ui__form { position:relative; }
#pagefind-search .pagefind-ui__search-input { width:100%; padding:.75rem 2.5rem .75rem 1rem; background:#1a2535; border:1px solid var(--border); border-radius:8px; color:#fff; font-size:1rem; font-family:inherit; outline:none; box-sizing:border-box; }
#pagefind-search .pagefind-ui__search-input:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(0,119,204,.12); }
#pagefind-search .pagefind-ui__search-input::placeholder { color:var(--muted); }
#pagefind-search .pagefind-ui__results-area { margin-top:.75rem; }
#pagefind-search .pagefind-ui__results { display:flex; flex-direction:column; gap:.4rem; padding-bottom:.5rem; }
#pagefind-results-scroll::-webkit-scrollbar { width:4px; }
#pagefind-results-scroll::-webkit-scrollbar-track { background:transparent; }
#pagefind-results-scroll::-webkit-scrollbar-thumb { background:var(--border-h); border-radius:4px; }
#pagefind-search .pagefind-ui__result { padding:.75rem 1rem; background:var(--surface); border:1px solid var(--border); border-radius:8px; text-decoration:none; display:block; transition:border-color .15s; }
#pagefind-search .pagefind-ui__result:hover { border-color:rgba(0,119,204,.35); }
#pagefind-search .pagefind-ui__result-link { text-decoration:none; }
#pagefind-search .pagefind-ui__result-title { font-size:.9rem; font-weight:600; color:var(--white); margin-bottom:.25rem; display:block; }
#pagefind-search .pagefind-ui__result-excerpt { font-size:.8rem; color:var(--muted); line-height:1.6; }
#pagefind-search .pagefind-ui__result-excerpt mark { background:rgba(0,119,204,.18); color:var(--accent2); border-radius:2px; padding:0 2px; font-style:normal; }
#pagefind-search .pagefind-ui__message { font-size:.85rem; color:var(--muted); padding:.5rem 0; }
#pagefind-search .pagefind-ui__search-clear { display:none; }
#pagefind-search .pagefind-ui__button { display:flex; align-items:center; justify-content:center; width:100%; margin:.75rem 0; padding:.65rem 1rem; background:var(--surface2); border:1px solid var(--border); border-radius:8px; color:var(--text); font-size:.88rem; font-weight:500; cursor:pointer; font-family:inherit; transition:all .15s; }
#pagefind-search .pagefind-ui__button:hover { background:var(--surface); border-color:var(--border-h); color:var(--white); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG POST PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-post-hero { position:relative; z-index:1; max-width:760px; margin:0 auto; padding:5rem 2rem 3rem; }
.blog-post-meta { display:flex; align-items:center; gap:1rem; margin-bottom:1.5rem; flex-wrap:wrap; }
.blog-post-hero h1 { font-size:clamp(1.75rem,4vw,2.5rem); font-weight:700; letter-spacing:-.03em; color:var(--white); line-height:1.15; margin-bottom:1rem; }
.blog-post-lead { font-size:1rem; color:var(--muted); line-height:1.85; }
.blog-post-body { position:relative; z-index:1; max-width:760px; margin:0 auto; padding:0 2rem 6rem; }
.blog-post-body h2 { font-size:1.4rem; font-weight:700; letter-spacing:-.02em; color:var(--white); margin:2.5rem 0 .9rem; }
.blog-post-body h3 { font-size:1.1rem; font-weight:600; color:var(--white); margin:2rem 0 .65rem; }
.blog-post-body p  { font-size:.93rem; color:var(--muted); line-height:1.9; margin-bottom:1.3rem; }
.blog-post-body ul,.blog-post-body ol { padding-left:1.5rem; margin-bottom:1.3rem; display:flex; flex-direction:column; gap:.45rem; }
.blog-post-body li { font-size:.93rem; color:var(--muted); line-height:1.8; }
.blog-post-body strong { color:var(--text); font-weight:500; }
.blog-post-body a { color:var(--accent); text-decoration:underline; text-decoration-color:rgba(0,119,204,.3); }
.blog-post-body pre { background:#0d0f14; border:1px solid rgba(255,255,255,.08); border-radius:8px; padding:1.25rem 1.5rem; margin:1.5rem 0; overflow-x:auto; font-family:var(--mono); font-size:.82rem; line-height:1.75; }
.blog-post-body code:not(pre code) { font-family:var(--mono); font-size:.83em; background:var(--surface2); border:1px solid var(--border); padding:.1em .35em; border-radius:3px; color:var(--teal); }
.blog-post-body table { width:100%; border-collapse:collapse; margin:1.5rem 0; font-size:.88rem; }
.blog-post-body th { background:var(--surface2); color:var(--white); padding:.65rem 1rem; text-align:left; border:1px solid var(--border); font-weight:600; }
.blog-post-body td { padding:.65rem 1rem; border:1px solid var(--border); color:var(--muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICE PAGE HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-hero { position:relative; z-index:1; padding:2.5rem 2rem 5rem; max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.svc-hero-glow { position:absolute; top:-100px; right:-200px; width:600px; height:500px; pointer-events:none; z-index:0; }
.svc-hero-glow::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 65% 40%,rgba(0,119,204,.1) 0%,transparent 65%); filter:blur(50px); }
.svc-label { display:inline-flex; align-items:center; gap:.5rem; font-size:.68rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); margin-bottom:1rem; }
.svc-label::before { content:''; display:block; width:12px; height:1px; background:var(--accent); }
.svc-hero h1 { font-size:clamp(2rem,4vw,3rem); font-weight:700; letter-spacing:-.035em; line-height:1.08; color:var(--white); margin-bottom:1.25rem; }
.hero-accent { background:linear-gradient(135deg,#81a1ba,#4da3e8,#0077cc); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.svc-lead { font-size:.95rem; color:var(--muted); line-height:1.9; margin-bottom:2rem; }
.svc-pills { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:2rem; }
.svc-ctas { display:flex; gap:.75rem; flex-wrap:wrap; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TERMINAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.terminal { background:#0d0f14; border:1px solid rgba(255,255,255,.09); border-radius:12px; overflow:hidden; box-shadow:0 28px 70px rgba(0,0,0,.6); }
.terminal-bar { background:#13151a; border-bottom:1px solid rgba(255,255,255,.06); padding:.65rem 1rem; display:flex; align-items:center; gap:.375rem; }
.tdot { width:10px; height:10px; border-radius:50%; }
.t-title { margin-left:.5rem; font-family:var(--mono); font-size:.67rem; color:var(--subtle); flex:1; }
.t-online { display:flex; align-items:center; gap:.35rem; font-size:.63rem; color:var(--green); }
.t-pulse { width:5px; height:5px; border-radius:50%; background:var(--green); animation:pulse 2s ease infinite; }
.terminal-body { padding:1.5rem; font-family:var(--mono); font-size:.78rem; line-height:1.9; }
.tl { display:flex; align-items:baseline; gap:.55rem; }
.tl + .tl { margin-top:.02rem; }
.tl-g { margin-top:.7rem; }
.tp { color:var(--accent); flex-shrink:0; user-select:none; }
.tc { color:#c3e88d; }
.to { color:var(--muted); padding-left:1.6rem; }
.tok { color:var(--green)!important; }
.tinfo { color:var(--blue)!important; }
.t-cursor { display:inline-block; width:7px; height:13px; background:var(--accent); vertical-align:middle; animation:blink .9s step-end infinite; margin-left:2px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   METRICS + FEATURES + RACK
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.metrics-strip { position:relative; z-index:1; border-top:1px solid var(--border); border-bottom:1px solid var(--border); display:grid; grid-template-columns:repeat(4,1fr); }
.metric-cell { padding:2rem 2.5rem; border-right:1px solid var(--border); position:relative; overflow:hidden; transition:background .2s; }
.metric-cell:last-child { border-right:none; }
.metric-cell:hover { background:var(--surface); }
.metric-n { font-size:1.75rem; font-weight:700; color:var(--white); letter-spacing:-.04em; line-height:1; margin-bottom:.35rem; display:flex; align-items:baseline; gap:.2rem; }
.metric-n sup { font-size:.8rem; font-weight:400; color:var(--muted); }
.metric-d { font-size:.8rem; color:var(--muted); line-height:1.55; }
.metric-sub { display:inline-flex; align-items:center; gap:.3rem; font-size:.67rem; color:var(--green); margin-top:.4rem; }

.features-sec { position:relative; z-index:1; padding:6rem 2rem; max-width:1100px; margin:0 auto; }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.feat-card { background:var(--surface); padding:1.875rem; transition:background .2s; }
.feat-card:hover { background:var(--surface2); }
.feat-icon { width:36px; height:36px; border-radius:9px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.feat-icon svg { width:16px; height:16px; }
.feat-card h3 { font-size:.9rem; font-weight:600; color:var(--white); letter-spacing:-.01em; margin-bottom:.5rem; }
.feat-card p  { font-size:.82rem; color:var(--muted); line-height:1.75; }
.feat-tag { display:inline-flex; font-size:.63rem; font-weight:500; padding:.2rem .55rem; border-radius:4px; background:rgba(0,119,204,.07); border:1px solid rgba(0,119,204,.18); color:var(--accent2); margin-top:.875rem; }

.rack-visual { background:var(--bg); border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.rack-hdr { background:var(--bg2); border-bottom:1px solid var(--border); padding:.75rem 1.25rem; display:flex; align-items:center; justify-content:space-between; }
.rack-title { font-family:var(--mono); font-size:.67rem; color:var(--muted); }
.rack-ok { display:flex; align-items:center; gap:.4rem; font-size:.67rem; font-weight:500; color:var(--green); }
.rack-blink { width:6px; height:6px; border-radius:50%; background:var(--green); animation:blink 2s ease infinite; }
.rack-rows { padding:.875rem; display:flex; flex-direction:column; gap:.3rem; }
.rack-row { display:grid; grid-template-columns:28px 1fr auto auto; gap:.75rem; align-items:center; padding:.6rem .875rem; border-radius:8px; border:1px solid transparent; transition:all .2s; }
.rack-row:hover { background:var(--surface2); border-color:var(--border); }
.rack-ico { width:28px; height:28px; border-radius:6px; display:flex; align-items:center; justify-content:center; }
.rack-ico svg { width:13px; height:13px; }
.rack-svc { font-size:.78rem; font-weight:500; color:var(--text); }
.rack-detail { font-size:.63rem; color:var(--muted); font-family:var(--mono); margin-top:.15rem; }
.rack-load-val { font-family:var(--mono); font-size:.68rem; color:var(--muted); text-align:right; }
.rack-bar-bg { width:56px; height:3px; background:var(--surface2); border-radius:2px; margin-top:.3rem; overflow:hidden; }
.rack-bar { height:100%; width:0; border-radius:2px; transition:width .9s .3s ease; }
.rb-g{background:var(--green);}.rb-y{background:var(--yellow);}
.rack-loaded .rb-w-0 { width:0; }
.rack-loaded .rb-w-2 { width:2%; }
.rack-loaded .rb-w-18 { width:18%; }
.rack-loaded .rb-w-34 { width:34%; }
.rack-loaded .rb-w-60 { width:60%; }
.rack-badge { font-size:.6rem; font-weight:600; padding:.18rem .5rem; border-radius:3px; white-space:nowrap; }
.rb-ok   { background:rgba(74,222,128,.1);  color:var(--green); }
.rb-warn { background:rgba(251,191,36,.1);  color:var(--yellow); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.faq-sec { position:relative; z-index:1; padding:6rem 2rem; }
.faq-inner { max-width:780px; margin:0 auto; }
.faq-list { margin-top:3rem; display:flex; flex-direction:column; gap:.5rem; }
.faq-item { border:1px solid var(--border); border-radius:10px; overflow:hidden; transition:border-color .2s; }
.faq-item[open] { border-color:var(--border-h); }
.faq-q { padding:1.25rem 1.5rem; font-size:.92rem; font-weight:500; color:var(--white); cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:1rem; list-style:none; transition:background .15s; user-select:none; }
.faq-q:hover { background:var(--surface2); }
.faq-q::-webkit-details-marker { display:none; }
.faq-chevron { width:16px; height:16px; flex-shrink:0; color:var(--muted); transition:transform .2s; }
.faq-item[open] .faq-chevron { transform:rotate(180deg); color:var(--accent); }
.faq-a { padding:0 1.5rem 1.3rem; font-size:.87rem; color:var(--muted); line-height:1.9; }
.faq-a strong { color:var(--text); font-weight:500; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STACK
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stack-section { position:relative; z-index:1; border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:6rem 2rem; }
.stack-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.stack-group-label { font-size:.65rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:.75rem; }
.stack-tags { display:flex; flex-wrap:wrap; gap:.4rem; }
.stack-groups { display:flex; flex-direction:column; gap:2rem; }
.stag { font-size:.8rem; font-weight:500; padding:.35rem .75rem; border-radius:6px; background:var(--surface2); border:1px solid var(--border); color:var(--text); transition:all .15s; }
.stag:hover { border-color:var(--accent-b); color:var(--white); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-hero { position:relative; z-index:1; max-width:1100px; margin:0 auto; padding:5rem 2rem 3rem; text-align:center; }
.contact-grid { position:relative; z-index:1; max-width:1100px; margin:0 auto; padding:0 2rem 6rem; display:grid; grid-template-columns:1.4fr 1fr; gap:3rem; align-items:start; }
.contact-form-wrap { background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:2.5rem; }
.contact-form-wrap h2 { font-size:1.2rem; font-weight:600; color:var(--white); margin-bottom:.5rem; }
.contact-form-wrap > p { font-size:.88rem; color:var(--muted); margin-bottom:2rem; line-height:1.65; }
.form-group { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.25rem; }
.form-group label { font-size:.85rem; font-weight:500; color:var(--text); }
.form-group input,.form-group select,.form-group textarea { font-family:inherit; font-size:.9rem; color:var(--text); background:var(--bg2); border:1px solid var(--border); border-radius:8px; padding:.72rem 1rem; width:100%; transition:border-color .15s,box-shadow .15s; outline:none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(0,119,204,.12); }
.form-group textarea { min-height:120px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-submit { width:100%; font-family:inherit; font-size:1rem; font-weight:600; color:#fff; background:var(--accent); padding:.875rem; border-radius:8px; border:none; cursor:pointer; transition:all .15s; box-shadow:0 4px 16px rgba(0,119,204,.25); }
.form-submit:hover { background:#0066b3; transform:translateY(-1px); }
.contact-infos { display:flex; flex-direction:column; gap:1rem; }
.contact-info-card { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:1.5rem; display:flex; align-items:flex-start; gap:1rem; transition:border-color .2s; }
.contact-info-card:hover { border-color:rgba(0,119,204,.25); }
.ci-icon { width:40px; height:40px; border-radius:10px; background:rgba(0,119,204,.1); border:1px solid rgba(0,119,204,.2); display:flex; align-items:center; justify-content:center; color:var(--accent); flex-shrink:0; }
.ci-icon svg { width:18px; height:18px; }
.ci-label { font-size:.75rem; color:var(--muted); margin-bottom:.25rem; text-transform:uppercase; letter-spacing:.05em; font-weight:600; }
.ci-val { font-size:.92rem; font-weight:500; color:var(--white); }
.ci-val a { color:var(--accent); text-decoration:none; }
.contact-guarantee { background:rgba(0,119,204,.06); border:1px solid rgba(0,119,204,.18); border-radius:14px; padding:1.5rem; text-align:center; }
.contact-guarantee p { font-size:.88rem; color:var(--muted); line-height:1.7; }
.contact-guarantee strong { color:var(--text); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA GLOBAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-cta { position:relative; z-index:1; padding:7rem 2rem; text-align:center; overflow:hidden; }
.svc-cta::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:700px; height:350px; background:radial-gradient(ellipse,rgba(0,119,204,.1) 0%,transparent 70%); pointer-events:none; }
.svc-cta h2 { font-size:clamp(1.75rem,4vw,3rem); font-weight:700; letter-spacing:-.04em; color:var(--white); line-height:1.1; margin-bottom:1rem; position:relative; }
.svc-cta p  { font-size:1rem; color:var(--muted); max-width:420px; margin:0 auto 2rem; line-height:1.8; }
.svc-cta-actions { display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS + REVEAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }
@keyframes blink   { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes pulse   { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.reveal { opacity:0; transform:translateY(14px); transition:opacity .55s ease,transform .55s ease; }
.reveal.visible { opacity:1; transform:none; }
.d1{transition-delay:.07s}.d2{transition-delay:.14s}.d3{transition-delay:.21s}
.d4{transition-delay:.28s}.d5{transition-delay:.35s}
.blog-cat-tools { background:rgba(45,212,191,.08); border:1px solid rgba(45,212,191,.2); color:var(--teal); }
.blog-cat-erp   { background:rgba(139,92,246,.08);  border:1px solid rgba(139,92,246,.2); color:#a78bfa; }
.blog-cat-sec   { background:rgba(248,113,113,.08); border:1px solid rgba(248,113,113,.2); color:var(--red); }
.blog-cat-perf  { background:rgba(251,191,36,.08);  border:1px solid rgba(251,191,36,.2); color:var(--yellow); }
.blog-cat-free  { background:rgba(129,161,186,.08); border:1px solid rgba(129,161,186,.2); color:var(--accent2); }

/* â”€â”€ Scroll to top â”€â”€ */
#scroll-top {
  position:fixed; bottom:1.5rem; right:1.5rem; z-index:400;
  width:40px; height:40px; border-radius:10px;
  background:var(--surface2); border:1px solid var(--border);
  color:var(--muted); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:all .2s; box-shadow:0 4px 16px rgba(0,0,0,.25);
}
#scroll-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
#scroll-top:hover { background:var(--accent); border-color:transparent; color:#fff; transform:translateY(-2px); }

/* â”€â”€ Nav search button â”€â”€ */
.nav-search-btn {
  width:34px; height:34px; border-radius:8px;
  border:1px solid var(--border); background:var(--surface2);
  color:var(--muted); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:all .15s; flex-shrink:0;
}
.nav-search-btn:hover { border-color:var(--border-h); color:var(--text); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITAIRES â€” refacto styles inline â†’ classes (2026-03-01)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Section wrappers â”€â”€ */
.section-z-hidden { position:relative; z-index:1; overflow:hidden; }
.section-surface   { position:relative; z-index:1; background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:6rem 2rem; }
.section-surface-sm{ position:relative; z-index:1; background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:5rem 2rem; }

/* â”€â”€ Containers â”€â”€ */
.container         { max-width:1100px; margin:0 auto; }
.container-sm-center{ max-width:760px; margin:0 auto; text-align:center; }

/* â”€â”€ Hero glow â”€â”€ */
.hero-glow { position:absolute; top:-80px; right:-150px; width:600px; height:500px; background:radial-gradient(ellipse,rgba(0,119,204,.1),transparent 65%); filter:blur(50px); pointer-events:none; }
.hero-glow-sm { position:absolute; top:-60px; right:-150px; width:500px; height:400px; background:radial-gradient(ellipse,rgba(0,119,204,.1),transparent 65%); filter:blur(40px); pointer-events:none; }

/* â”€â”€ Hero card visual â”€â”€ */
.card-visual   { background:var(--surface); border:1px solid var(--border); border-radius:16px; overflow:hidden; box-shadow:0 24px 60px rgba(0,0,0,.35); }
.card-hdr      { background:var(--bg2); border-bottom:1px solid var(--border); padding:.75rem 1.25rem; }
.card-hdr-row  { background:var(--bg2); border-bottom:1px solid var(--border); padding:.75rem 1.25rem; display:flex; align-items:center; justify-content:space-between; }
.card-body     { padding:1.25rem; display:flex; flex-direction:column; gap:.6rem; }
.card-body-lg  { padding:1.5rem; display:flex; flex-direction:column; gap:.75rem; }

/* â”€â”€ Status rows (dashboard / monitoring cards) â”€â”€ */
.status-row   { display:flex; align-items:center; gap:.75rem; background:var(--bg2); border:1px solid var(--border); border-radius:8px; padding:.65rem .875rem; }
.status-ico   { font-size:1rem; flex-shrink:0; }
.flex-grow    { flex:1; min-width:0; }
.status-label { font-size:.78rem; font-weight:500; color:var(--text); }
.status-sub   { font-size:.68rem; color:var(--muted); margin-top:.1rem; }
.status-pill { font-size:.65rem; font-weight:600; padding:.18rem .5rem; border-radius:4px; white-space:nowrap; }
.status-pill-green { color:var(--green); background:rgba(74,222,128,.1); border:1px solid rgba(74,222,128,.25); }
.status-pill-accent { color:var(--accent2); background:rgba(0,119,204,.1); border:1px solid rgba(0,119,204,.25); }

/* â”€â”€ Mono & online â”€â”€ */
.mono-muted      { font-family:var(--mono); font-size:.67rem; color:var(--muted); }
.online-indicator{ display:flex; align-items:center; gap:.4rem; font-size:.67rem; color:var(--green); font-weight:500; }
.pulse-dot       { width:6px; height:6px; border-radius:50%; background:var(--green); animation:blink 2s ease infinite; display:inline-block; flex-shrink:0; }

/* â”€â”€ Service page H1 & lead â”€â”€ */
.svc-h1    { font-size:clamp(2rem,4vw,3rem); font-weight:700; letter-spacing:-.03em; line-height:1.1; color:var(--white); margin-bottom:1.25rem; }
.text-lead { font-size:1rem; color:var(--muted); line-height:1.85; margin-bottom:1.75rem; }
.text-lead-2{ font-size:1rem; color:var(--muted); line-height:1.85; margin-bottom:2rem; }
.text-body { font-size:1rem; color:var(--muted); line-height:1.85; margin-bottom:1.5rem; }
.text-sm   { font-size:.88rem; color:var(--muted); line-height:1.75; margin-bottom:1.25rem; }
.text-sm-muted { font-size:.82rem; color:var(--muted); line-height:1.65; }

/* â”€â”€ Section-tag centered â”€â”€ */
.section-tag-center { justify-content:center; }
.section-sub-center { max-width:520px; margin:0 auto 2.5rem; }

/* â”€â”€ Devis / pricing steps â”€â”€ */
.devis-steps    { display:flex; flex-direction:column; gap:.75rem; max-width:420px; margin:0 auto 2.5rem; }
.devis-step     { display:flex; align-items:center; gap:.875rem; background:var(--bg2); border:1px solid var(--border); border-radius:10px; padding:.875rem 1.25rem; text-align:left; }
.devis-step-ico { font-size:1.1rem; flex-shrink:0; }
.devis-step-txt { font-size:.9rem; color:var(--text); }

/* â”€â”€ Process steps (5-step) â”€â”€ */
.process-5 { display:grid; grid-template-columns:repeat(5,1fr); gap:1rem; margin-top:3rem; }
.process-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-top:3rem; }
.process-cell  { text-align:center; }
.process-emoji { font-size:1.75rem; margin-bottom:.75rem; }
.process-num   { font-family:var(--mono); font-size:.65rem; color:var(--accent); font-weight:600; margin-bottom:.4rem; }
.process-h4    { font-size:.95rem; font-weight:600; color:var(--white); margin-bottom:.5rem; line-height:1.3; }
.process-p     { font-size:.82rem; color:var(--muted); line-height:1.65; }

/* â”€â”€ Numbered steps list (PS specifics) â”€â”€ */
.steps-list  { list-style:none; display:flex; flex-direction:column; gap:1rem; }
.step-item   { display:flex; gap:.875rem; align-items:flex-start; }
.step-num    { font-family:var(--mono); font-size:.65rem; color:var(--accent); font-weight:600; flex-shrink:0; margin-top:.25rem; }
.step-text   { font-size:.92rem; color:var(--text); line-height:1.7; }

/* â”€â”€ Warning / success boxes â”€â”€ */
.box-danger  { background:var(--bg2); border:1px solid rgba(248,113,113,.2); border-radius:12px; padding:1.25rem; }
.box-success { background:var(--bg2); border:1px solid rgba(74,222,128,.2); border-radius:12px; padding:1.25rem; }
.box-label   { font-size:.72rem; font-weight:600; text-transform:uppercase; letter-spacing:.07em; margin-bottom:.5rem; }
.box-label-danger  { color:var(--red); }
.box-label-success { color:var(--green); }
.list-clean  { list-style:none; display:flex; flex-direction:column; gap:.4rem; }
.list-item   { font-size:.85rem; display:flex; gap:.5rem; }
.list-item-muted { color:var(--muted); }
.list-item-text  { color:var(--text); }

/* â”€â”€ Ecommerce back-office widget â”€â”€ */
.mac-topbar    { background:var(--bg2); border-bottom:1px solid var(--border); padding:.65rem 1rem; display:flex; align-items:center; gap:.5rem; }
.mac-dot-r     { width:10px; height:10px; border-radius:50%; background:#ff5f57; }
.mac-dot-y     { width:10px; height:10px; border-radius:50%; background:#febc2e; }
.mac-dot-g     { width:10px; height:10px; border-radius:50%; background:#28c840; }
.mac-url       { flex:1; background:var(--surface2); border:1px solid var(--border); border-radius:5px; padding:.2rem .75rem; font-size:.7rem; color:var(--muted); text-align:center; margin-left:.5rem; }
.bo-grid-2     { display:grid; grid-template-columns:1fr 1fr; gap:.5rem; }
.bo-metric     { background:var(--bg2); border:1px solid var(--border); border-radius:8px; padding:.875rem; text-align:center; }
.bo-metric-val { font-size:1.3rem; font-weight:700; color:var(--white); }
.bo-metric-lbl { font-size:.65rem; color:var(--muted); }
.bo-metric-sub-g{ font-size:.6rem; color:var(--green); }
.bo-metric-sub-a{ font-size:.6rem; color:var(--accent2); }
.bo-orders     { background:var(--bg2); border:1px solid var(--border); border-radius:8px; padding:.875rem; }
.bo-orders-lbl { font-size:.65rem; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:.07em; margin-bottom:.6rem; }
.bo-row        { display:flex; align-items:center; gap:.5rem; padding:.35rem 0; border-bottom:1px solid var(--border); }
.bo-row-id     { font-family:var(--mono); font-size:.65rem; color:var(--muted); }
.bo-row-name   { font-size:.72rem; color:var(--text); flex:1; }
.bo-row-price  { font-size:.72rem; font-weight:600; color:var(--white); }
.bo-pill { font-size:.6rem; font-weight:600; padding:.15rem .4rem; border-radius:4px; }
.bo-pill-green { color:var(--green); background:rgba(74,222,128,.1); }
.bo-pill-yellow { color:var(--yellow); background:rgba(251,191,36,.1); }
.bo-pill-accent { color:var(--accent2); background:rgba(0,119,204,.1); }

/* â”€â”€ Monitoring bar rows (hÃ©bergement) â”€â”€ */
.monitor-row    { background:var(--bg2); border:1px solid var(--border); border-radius:8px; padding:.75rem 1rem; }
.monitor-hdr    { display:flex; justify-content:space-between; align-items:center; margin-bottom:.4rem; }
.monitor-lbl    { font-size:.75rem; color:var(--muted); }
.monitor-val { font-size:.78rem; font-weight:600; }
.monitor-val-green { color:var(--green); }
.monitor-val-accent { color:var(--accent2); }
.monitor-bar-bg { height:3px; background:var(--surface2); border-radius:2px; overflow:hidden; }
.monitor-bar    { height:100%; border-radius:2px; }
.monitor-bar-green { background:var(--green); }
.monitor-bar-accent { background:var(--accent2); }
.monitor-bar-w-11 { width:11%; }
.monitor-bar-w-80 { width:80%; }
.monitor-bar-w-99 { width:99%; }
.monitor-bar-w-100 { width:100%; }

/* â”€â”€ Ponctuelles hero card â”€â”€ */
.interv-card   { background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:2rem; width:100%; max-width:360px; }
.interv-label  { font-size:.7rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-bottom:1.25rem; }
.interv-item   { display:flex; align-items:center; gap:.875rem; padding:.75rem 0; border-bottom:1px solid var(--border); }
.interv-ico    { font-size:1.2rem; width:32px; text-align:center; }
.interv-body   { flex:1; min-width:0; }
.interv-title  { font-size:.85rem; font-weight:500; color:var(--white); }
.interv-detail { font-size:.73rem; color:var(--muted); margin-top:.1rem; }
.interv-pill { font-size:.62rem; font-weight:600; padding:.2rem .55rem; border-radius:4px; background:rgba(0,0,0,.2); white-space:nowrap; border:1px solid transparent; }
.interv-pill-red { color:var(--red); border-color:rgba(248,113,113,.2); }
.interv-pill-green { color:var(--green); border-color:rgba(74,222,128,.2); }
.interv-pill-accent { color:var(--accent); border-color:rgba(0,119,204,.2); }

/* â”€â”€ Grids â”€â”€ */
.grid-3     { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:1rem; }
.grid-3-gap { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:3rem; }
.grid-2-4   { display:grid; grid-template-columns:1fr 1fr; gap:4rem; margin-top:3rem; align-items:start; }
.grid-2-cols { grid-template-columns:repeat(2,1fr); }
.grid-2-cols-centered { grid-template-columns:repeat(2,1fr); max-width:640px; margin:2rem auto 0; }
.flex-wrap-gap { display:flex; gap:.75rem; flex-wrap:wrap; }
.flex-center   { display:flex; justify-content:center; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITY CLASSES â€” refactoring des styles inline
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Texte â”€â”€ */
.text-body       { font-size:1rem; color:var(--muted); line-height:1.85; margin-bottom:1.25rem; }
.text-body-lg    { font-size:1rem; color:var(--muted); line-height:1.85; margin-bottom:1.75rem; }
.text-red        { color:var(--red); }
.text-green      { color:var(--green); }
.text-sm-muted   { font-size:.82rem; color:var(--muted); }
.text-pre        { white-space:pre-line; }

/* â”€â”€ Layout â”€â”€ */
.section-relative  { position:relative; z-index:1; overflow:hidden; }
.flex-col-gap-sm   { display:flex; flex-direction:column; gap:.75rem; }
.flex-actions      { display:flex; gap:.75rem; flex-wrap:wrap; margin-top:2rem; }
.section-tag-center{ justify-content:center; }
.mt-2             { margin-top:2rem; }

/* â”€â”€ Hero â”€â”€ */
.hero-glow {
  position:absolute; top:-80px; left:50%; transform:translateX(-50%);
  width:800px; height:400px;
  background:radial-gradient(ellipse,rgba(0,119,204,.1) 0%,transparent 65%);
  filter:blur(60px); pointer-events:none;
}
.available-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--green); display:inline-block;
  animation:blink 2s ease infinite;
}

/* â”€â”€ Service page hero grid â”€â”€ */
.container-2col { padding:2.5rem 2rem 5rem; display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }

/* â”€â”€ Section centrÃ©e (tarif, etc.) â”€â”€ */
.section-center { max-width:760px; margin:0 auto; text-align:center; }
.section-sub-center { max-width:520px; margin:0 auto 2.5rem; }

/* â”€â”€ Blog header (titre + lien "tous les articles") â”€â”€ */
.blog-header      { display:flex; align-items:flex-start; justify-content:space-between; gap:2rem; margin-bottom:3rem; }
.blog-header-link { margin-top:1.5rem; flex-shrink:0; }


/* â”€â”€ Contact â”€â”€ */
.contact-title  { font-size:clamp(2rem,4vw,2.75rem); text-align:center; }
.contact-sub    { font-size:1rem; color:var(--muted); max-width:460px; margin:0 auto; line-height:1.8; text-align:center; }
.label-required { color:var(--accent); }
.label-optional { color:var(--muted); font-weight:400; }
.form-alert     { display:none; padding:.875rem 1.25rem; border-radius:8px; font-size:.9rem; font-weight:500; margin-bottom:1.25rem; }
.form-alert.is-visible { display:block; }
.form-alert-success { background:rgba(74,222,128,.1); border:1px solid rgba(74,222,128,.25); color:var(--green); }
.form-alert-error { background:rgba(248,113,113,.1); border:1px solid rgba(248,113,113,.25); color:var(--red); }
.form-legal     { margin-top:.85rem; font-size:.78rem; color:var(--muted); line-height:1.7; }
.form-legal a   { color:var(--accent); text-decoration:underline; text-underline-offset:2px; }

/* â”€â”€ Mentions lÃ©gales â”€â”€ */
.legal-wrapper  { max-width:760px; margin:0 auto; padding:5rem 2rem 6rem; position:relative; z-index:1; }
.legal-sections { display:flex; flex-direction:column; gap:2.5rem; }
.legal-h2       { font-size:1.1rem; font-weight:600; color:var(--white); margin-bottom:.875rem; padding-bottom:.5rem; border-bottom:1px solid var(--border); margin-top:0; }
.legal-p        { font-size:.92rem; color:var(--muted); line-height:1.9; }
.legal-em       { color:var(--subtle); }
.legal-a        { color:var(--accent); }
.section-title-mb { margin-bottom:2.5rem; }
.error-hero { text-align:center; padding-top:6rem; padding-bottom:6rem; }
.error-code { font-size:4rem; font-weight:700; color:var(--accent); display:block; margin-bottom:1rem; }
.error-title { font-size:2rem; margin-bottom:1rem; }
.error-lead { max-width:480px; margin:0 auto 2rem; }


/* â”€â”€ svc-link forcÃ© visible â”€â”€ */
.svc-link-visible { opacity:1 !important; margin-top:1.25rem; }


/* â”€â”€â”€ HAMBURGER + MOBILE MENU â”€â”€â”€ */
.hamburger {
  display:none;
  flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; border-radius:8px;
  border:1px solid var(--border); background:var(--surface2);
  cursor:pointer; padding:0 9px; flex-shrink:0;
  transition:border-color .15s;
}
.hamburger:hover { border-color:var(--border-h); }
.hamburger span {
  display:block; height:1.5px; background:var(--muted);
  border-radius:2px; transition:all .25s;
}
.hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display:none;
  position:fixed; inset:0; top:58px; z-index:499;
  background:var(--bg); border-top:1px solid var(--border);
  flex-direction:column; overflow-y:auto;
  padding:1.5rem 1.25rem 3rem;
  gap:0;
  transform:translateX(100%);
  transition:transform .25s ease;
}
.mobile-menu.open { transform:translateX(0); }

.mob-link {
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 0; font-size:1rem; font-weight:500;
  color:var(--text); text-decoration:none;
  border-bottom:1px solid var(--border);
}
.mob-link:hover { color:var(--white); }
.mob-group { margin-top:1.25rem; }
.mob-group-label {
  font-size:.65rem; font-weight:600; letter-spacing:.1em;
  text-transform:uppercase; color:var(--muted); margin-bottom:.75rem;
}
.mob-sub-link {
  display:flex; align-items:center; gap:.75rem;
  padding:.625rem 0; font-size:.9rem; color:var(--muted);
  text-decoration:none; border-bottom:1px solid var(--border);
}
.mob-sub-link:hover { color:var(--text); }
.mob-sub-ico {
  font-size:.85rem; width:22px; text-align:center; flex-shrink:0;
}
.mob-cta {
  margin-top:1.75rem; display:flex; flex-direction:column; gap:.75rem;
}
.mob-cta-btn { justify-content:center; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” Media Queries
   Breakpoints : 1024px (tablet large) Â· 768px (tablet) Â· 480px (mobile)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ 1024px â€” tablet large â”€â”€ */
@media (max-width: 1024px) {
  .hero          { grid-template-columns:1fr; gap:3rem; padding:6rem 2rem 4rem; }
  .mini-dashboard{ display:none; }
  .about-inner   { grid-template-columns:1fr; gap:3rem; }
  .stack-inner   { grid-template-columns:1fr; gap:3rem; }
  .contact-grid  { grid-template-columns:1fr; }
  .process-5     { grid-template-columns:repeat(3,1fr); }
  .svc-hero      { grid-template-columns:1fr; gap:2.5rem; padding:2rem 2rem 4rem; }
  .container-2col{ grid-template-columns:1fr; gap:2.5rem; }
}

/* â”€â”€ 768px â€” tablet â”€â”€ */
@media (max-width: 768px) {

  /* Nav hamburger */
  .nav-center          { display:none; }
  .btn-nav             { display:none; }
  .nav-search-btn      { display:none; }
  .hamburger           { display:flex; }
  .mobile-menu         { display:flex; }

  /* Hero */
  .hero { padding:5rem 1.25rem 3rem; }
  .hero h1 { font-size:clamp(1.8rem,7vw,2.6rem); }
  .hero-sub { font-size:.95rem; }

  /* Stats */
  .stats-strip         { grid-template-columns:repeat(2,1fr); }
  .stat-cell:nth-child(2){ border-right:none; }
  .stat-cell:nth-child(3){ border-top:1px solid var(--border); }
  .stat-cell           { padding:1.5rem; }

  /* About */
  .about-sec           { padding:4rem 1.25rem; }
  .about-inner         { gap:2rem; }

  /* Services */
  .services            { padding:4rem 1.25rem; }
  .services-grid       { grid-template-columns:1fr; }
  .svc-card-wide       { grid-column:auto; }
  .svc-interventions   { grid-template-columns:1fr 1fr; }

  /* Temoignages */
  .testimonials        { padding:4rem 1.25rem; }
  .test-grid           { grid-template-columns:1fr; }

  /* Blog */
  .blog-section        { padding:4rem 1.25rem; }
  .blog-grid           { grid-template-columns:1fr; }
  .blog-header         { flex-direction:column; gap:1rem; }
  .blog-header-link    { margin-top:0; }

  /* Features */
  .features-sec        { padding:4rem 1.25rem; }
  .features-grid       { grid-template-columns:1fr; }

  /* Metrics strip */
  .metrics-strip       { grid-template-columns:repeat(2,1fr); }
  .metric-cell:nth-child(2){ border-right:none; }
  .metric-cell:nth-child(3){ border-top:1px solid var(--border); }

  /* Process */
  .process-5           { grid-template-columns:repeat(2,1fr); gap:1.5rem; }
  .process-4           { grid-template-columns:repeat(2,1fr); }

  /* Grids */
  .grid-3              { grid-template-columns:1fr; }
  .grid-3-gap          { grid-template-columns:1fr; }
  .grid-2-4            { grid-template-columns:1fr; gap:2rem; }

  /* Stack */
  .stack-section       { padding:4rem 1.25rem; }

  /* FAQ */
  .faq-sec             { padding:4rem 1.25rem; }

  /* CTA */
  .svc-cta             { padding:4rem 1.25rem; }
  .svc-cta h2          { font-size:clamp(1.5rem,5vw,2rem); }

  /* Contact */
  .contact-hero        { padding:4rem 1.25rem 2rem; }
  .contact-grid        { padding:0 1.25rem 4rem; }
  .form-row            { grid-template-columns:1fr; }

  /* Blog post */
  .blog-post-hero      { padding:4rem 1.25rem 2rem; }
  .blog-post-body      { padding:0 1.25rem 4rem; }

  /* Breadcrumb */
  .breadcrumb          { padding:4rem 1.25rem 0; }

  /* Footer */
  footer               { flex-direction:column; align-items:flex-start; gap:1.25rem; padding:1.5rem 1.25rem; }
  .footer-links        { gap:1rem; }

  /* Service hero */
  .svc-hero            { padding:1.5rem 1.25rem 3rem; }
  .container-2col      { padding:1.5rem 1.25rem 3rem; gap:2rem; }

}

/* â”€â”€ 480px â€” mobile â”€â”€ */
@media (max-width: 480px) {
  body                 { font-size:16px; }

  .hero h1             { font-size:1.7rem; }
  .section-title       { font-size:1.4rem; }
  .svc-hero h1         { font-size:1.7rem; }

  .stats-strip         { grid-template-columns:1fr; }
  .stat-cell           { border-right:none; border-bottom:1px solid var(--border); }
  .stat-cell:last-child{ border-bottom:none; }

  .metrics-strip       { grid-template-columns:1fr; }
  .metric-cell         { border-right:none; border-bottom:1px solid var(--border); }
  .metric-cell:last-child{ border-bottom:none; }

  .process-5           { grid-template-columns:1fr; }
  .process-4           { grid-template-columns:1fr; }

  .svc-interventions   { grid-template-columns:1fr; }

  .hero-actions        { flex-direction:column; }
  .svc-ctas            { flex-direction:column; }
  .svc-cta-actions     { flex-direction:column; align-items:center; }

  .bo-grid-2           { grid-template-columns:1fr; }

  .contact-form-wrap   { padding:1.5rem; }
}

/* â”€â”€â”€ SITE VITRINE â€” responsive spÃ©cifique â”€â”€â”€ */

/* Responsive services */
@media (max-width: 768px) {
  .card-body { gap: .5rem; }
  .section-surface { padding: 3.5rem 1.25rem; }
  .section-surface-sm { padding: 3rem 1.25rem; }
  .devis-steps { max-width: 100%; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}
