/*
Theme Name: EaseWeb
Theme URI: https://easeweb.fr
Author: EaseWeb.
Author URI: https://easeweb.fr
Description: Thème WordPress sur mesure pour EaseWeb. — Agence de développement web & logiciel.
Version: 1.0.0
License: Proprietary
Text Domain: easeweb
*/

/* ============================================================
   BASE & VARIABLES
   ============================================================ */
:root {
  --orange: #FF7300;
  --orange-dark: #CC5C00;
  --orange-light: #FFF0E5;
  --bg: #FAFAF8;
  --card: #FFFFFF;
  --surface: #F2F1ED;
  --ink: #0F0E0D;
  --ink-soft: #4A4742;
  --line: rgba(15,14,13,.08);
  --radius-pill: 999px;
  --shadow-nav: 0 8px 30px rgba(15,14,13,.07);
  --shadow-drop: 0 18px 50px rgba(15,14,13,.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.ew-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.ew-nav-wrap { position: sticky; top: 16px; z-index: 100; padding: 0 24px; }
.ew-nav {
  max-width: 1200px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 24px;
  gap: 16px;
}
.ew-logo {
  display: flex; align-items: center; gap: 2px;
  font-weight: 700; font-size: 1.25rem; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none;
}
.ew-logo .dot { color: var(--orange); }
.ew-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.ew-menu > li { position: relative; }
.ew-menu a, .ew-menu button.ew-link {
  font-family: inherit; font-size: .925rem; font-weight: 500;
  color: var(--ink-soft); text-decoration: none;
  background: none; border: none; cursor: pointer;
  padding: 10px 16px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 6px;
  transition: background .18s ease, color .18s ease;
}
.ew-menu a:hover, .ew-menu button.ew-link:hover,
.ew-menu li:focus-within > button.ew-link { background: var(--surface); color: var(--ink); }
.ew-menu .caret {
  width: 9px; height: 9px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}
.ew-menu li:hover .caret, .ew-menu li:focus-within .caret { transform: rotate(-135deg) translateY(-2px); }

.ew-drop {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-drop);
  padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.ew-menu li:hover > .ew-drop,
.ew-menu li:focus-within > .ew-drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.ew-drop::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.ew-drop-services { width: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.ew-drop-col h4 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--orange-dark); margin: 4px 12px 8px;
}
.ew-drop-col a { display: block; padding: 10px 12px; border-radius: 12px; font-size: .9rem; font-weight: 600; color: var(--ink); }
.ew-drop-col a span { display: block; font-size: .78rem; font-weight: 400; color: var(--ink-soft); margin-top: 2px; }
.ew-drop-col a:hover { background: var(--orange-light); }
.ew-drop-about { width: 280px; display: flex; flex-direction: column; gap: 2px; }
.ew-drop-about a { display: block; padding: 10px 12px; border-radius: 12px; font-size: .9rem; font-weight: 600; color: var(--ink); }
.ew-drop-about a:hover { background: var(--surface); }
.ew-drop-cta { margin-top: 10px; padding: 14px; border-radius: 14px; background: var(--ink); color: #fff; }
.ew-drop-cta p { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.ew-drop-cta a {
  display: inline-block; padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--orange); color: #fff; font-size: .82rem; font-weight: 700;
  transition: background .18s ease;
}
.ew-drop-cta a:hover { background: var(--orange-dark); }

.ew-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  font-size: .925rem; font-weight: 700; text-decoration: none;
  padding: 12px 22px; border-radius: var(--radius-pill);
  transition: background .18s ease, transform .18s ease;
  white-space: nowrap;
}
.ew-nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.ew-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: var(--radius-pill);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.ew-burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.ew-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ew-burger.open span:nth-child(2) { opacity: 0; }
.ew-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ew-mobile {
  display: none;
  max-width: 1200px; margin: 8px auto 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 24px; box-shadow: var(--shadow-drop);
  padding: 16px;
}
.ew-mobile.open { display: block; }
.ew-mobile a { display: block; padding: 12px 14px; border-radius: 14px; font-size: .95rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.ew-mobile a:hover { background: var(--surface); }
.ew-mobile .group { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange-dark); padding: 12px 14px 4px; }
.ew-mobile .ew-nav-cta { display: flex; justify-content: center; margin-top: 10px; }

/* ============================================================
   BOUTONS COMMUNS
   ============================================================ */
.ew-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff; text-decoration: none;
  font-size: 1rem; font-weight: 700;
  padding: 16px 30px; border-radius: var(--radius-pill);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 26px rgba(255,115,0,.28);
}
.ew-btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.ew-btn-primary svg { transition: transform .18s ease; }
.ew-btn-primary:hover svg { transform: translateX(3px); }

.ew-btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--ink); text-decoration: none;
  font-size: 1rem; font-weight: 600;
  padding: 16px 28px; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(15,14,13,.16);
  transition: border-color .18s ease, background .18s ease;
}
.ew-btn-ghost:hover { border-color: var(--ink); background: var(--card); }

.ew-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--orange-dark); margin-bottom: 16px;
}
.ew-tag::before { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }

/* ============================================================
   COMPOSANTS ARTICLES (blog & article)
   ============================================================ */
.ew-post-cat {
  width: fit-content;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--orange-dark); background: var(--orange-light);
  border-radius: var(--radius-pill); padding: 5px 13px;
}
.ew-post-meta { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--ink-soft); }
.ew-post-meta i { width: 4px; height: 4px; border-radius: 50%; background: rgba(15,14,13,.25); }

.ew-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ew-post {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ew-post:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(15,14,13,.09); border-color: rgba(255,115,0,.35); }
.ew-post-cover {
  position: relative; height: 150px;
  background: linear-gradient(135deg,var(--surface) 0%,var(--orange-light) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ew-post:nth-child(3n+2) .ew-post-cover { background: linear-gradient(135deg,var(--orange-light) 0%,var(--surface) 100%); }
.ew-post-cover svg { color: rgba(255,115,0,.45); transform: rotate(-6deg); transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.ew-post:hover .ew-post-cover svg { transform: rotate(0deg) scale(1.08); }
.ew-post-cover .time {
  position: absolute; top: 14px; right: 14px;
  font-size: .7rem; font-weight: 700;
  background: var(--card); color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 4px 11px;
}
.ew-post-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ew-post-body h3 { font-size: 1.06rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; }
.ew-post-body p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; flex: 1; }

/* ============================================================
   COMPOSANTS PROJETS / RÉALISATIONS
   ============================================================ */
.ew-project {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ew-project:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(15,14,13,.09); border-color: rgba(255,115,0,.35); }
.ew-project-visual {
  position: relative; min-height: 178px;
  background: linear-gradient(135deg,var(--surface) 0%,var(--orange-light) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.ew-project:nth-child(3n+2) .ew-project-visual { background: linear-gradient(135deg,var(--orange-light) 0%,var(--surface) 100%); }
.ew-browser {
  width: 82%; background: var(--card);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -10px 40px rgba(15,14,13,.12);
  transform: translateY(14px);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.ew-project:hover .ew-browser { transform: translateY(6px); }
.ew-browser-bar { display: flex; gap: 5px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.ew-browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--surface); }
.ew-browser-bar i:first-child { background: var(--orange); }
.ew-browser-body { height: 108px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.ew-browser-body b { display: block; height: 12px; width: 55%; border-radius: 6px; background: var(--surface); }
.ew-browser-body s { display: block; height: 8px; width: 80%; border-radius: 6px; background: var(--bg); border: 1px solid var(--line); }
.ew-browser-body u { display: block; height: 8px; width: 65%; border-radius: 6px; background: var(--bg); border: 1px solid var(--line); }
.ew-project-info { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.ew-project-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ew-project-tags span {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--orange-dark); background: var(--orange-light);
  border-radius: var(--radius-pill); padding: 5px 12px;
}
.ew-project-info h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -.01em; }
.ew-project-info p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.ew-project-result { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 700; color: var(--ink); margin-top: 2px; }
.ew-project-result::before { content: ""; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: var(--orange); }

/* ============================================================
   NEWSLETTER FORM
   ============================================================ */
.ew-nl-form {
  display: flex; align-items: center; gap: 8px;
  max-width: 440px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 7px 7px 7px 22px;
  box-shadow: 0 12px 30px rgba(15,14,13,.08);
}
.ew-nl-form input { flex: 1; min-width: 0; font-family: inherit; font-size: .92rem; color: var(--ink); background: none; border: none; outline: none; }
.ew-nl-form input::placeholder { color: rgba(15,14,13,.35); }
.ew-nl-form button {
  font-family: inherit; font-size: .9rem; font-weight: 700;
  background: var(--orange); color: #fff;
  border: none; cursor: pointer;
  padding: 12px 22px; border-radius: var(--radius-pill);
  transition: background .18s ease; white-space: nowrap;
}
.ew-nl-form button:hover { background: var(--orange-dark); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.ew-final { background: var(--bg); padding: 30px 0 0; }
.ew-final-box {
  background: var(--orange-light);
  border: 1px solid rgba(255,115,0,.25);
  border-radius: 32px;
  padding: 72px 56px;
  text-align: center;
  position: relative; overflow: hidden;
  margin-bottom: -130px;
  z-index: 2;
  box-shadow: 0 30px 70px rgba(15,14,13,.16);
}
.ew-final-box::before {
  content: ""; position: absolute;
  top: -200px; right: -140px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,115,0,.14) 0%,rgba(255,115,0,0) 65%);
  pointer-events: none;
}
.ew-final-box::after {
  content: ""; position: absolute;
  bottom: -220px; left: -160px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,255,255,.8) 0%,rgba(255,255,255,0) 65%);
  pointer-events: none;
}
.ew-final-box > * { position: relative; z-index: 1; }
.ew-final-box h2 { color: var(--ink); font-size: clamp(2rem,4.2vw,3.2rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; max-width: 680px; margin: 0 auto 18px; }
.ew-final-box h2 em { font-style: italic; color: var(--orange-dark); }
.ew-final-box p { color: var(--ink-soft); font-size: clamp(1rem,1.5vw,1.15rem); line-height: 1.6; max-width: 520px; margin: 0 auto 36px; }
.ew-final-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.ew-final-note { display: block; margin-top: 22px; color: var(--ink-soft); font-size: .86rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.ew-footer {
  background: var(--ink);
  border-radius: 32px 32px 0 0;
  padding: 210px 0 36px;
  color: rgba(255,255,255,.65);
}
.ew-footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ew-footer .ew-logo { color: #fff; margin-bottom: 16px; }
.ew-footer-brand p { font-size: .9rem; line-height: 1.65; max-width: 280px; margin-bottom: 20px; }
.ew-footer-contact a { display: block; color: #fff; text-decoration: none; font-size: .92rem; font-weight: 600; margin-bottom: 6px; transition: color .18s ease; }
.ew-footer-contact a:hover { color: var(--orange); }
.ew-footer h4 { color: #fff; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.ew-footer ul { list-style: none; }
.ew-footer ul li { margin-bottom: 11px; }
.ew-footer ul a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .92rem; transition: color .18s ease; }
.ew-footer ul a:hover { color: #fff; }
.ew-footer ul a .ext { display: inline-block; margin-left: 5px; vertical-align: middle; color: var(--orange); }
.ew-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; font-size: .82rem; color: rgba(255,255,255,.45); }
.ew-footer-bottom .legal { display: flex; gap: 22px; }
.ew-footer-bottom .legal a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s ease; }
.ew-footer-bottom .legal a:hover { color: #fff; }

/* ============================================================
   ANIMATIONS REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
  .reveal.d1 { animation-delay: .08s; }
  .reveal.d2 { animation-delay: .16s; }
  .reveal.d3 { animation-delay: .26s; }
  .reveal.d4 { animation-delay: .38s; }
  @keyframes rise { to { opacity: 1; transform: translateY(0); } }

  .ew-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
  .ew-reveal.visible { opacity: 1; transform: translateY(0); }
  .ew-step.ew-reveal:nth-child(2) { transition-delay: .1s; }
  .ew-step.ew-reveal:nth-child(3) { transition-delay: .2s; }
  .ew-step.ew-reveal:nth-child(4) { transition-delay: .3s; }
}

/* ============================================================
   PAGE HOME — HERO
   ============================================================ */
.ew-hero { position: relative; padding: 96px 0 110px; overflow: hidden; }
.ew-hero::before {
  content: ""; position: absolute;
  top: -180px; right: -160px; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,115,0,.13) 0%,rgba(255,115,0,0) 65%);
  pointer-events: none;
}
.ew-hero-inner { max-width: 880px; }
.ew-hero h1 { font-size: clamp(2.4rem,5.4vw,4.1rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 24px; }
.ew-hero h1 .chip { display: inline-block; background: var(--orange); color: #fff; border-radius: var(--radius-pill); padding: .02em .35em .06em; transform: rotate(-1.5deg); }
.ew-hero h1 em { font-style: italic; font-weight: 600; }
.ew-hero p.lead { font-size: clamp(1.05rem,1.6vw,1.2rem); color: var(--ink-soft); line-height: 1.65; max-width: 580px; margin-bottom: 36px; }
.ew-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.ew-hero-proof { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; font-size: .88rem; color: var(--ink-soft); }
.ew-hero-proof .item { display: flex; align-items: center; gap: 10px; }
.ew-hero-proof .item strong { color: var(--ink); font-weight: 700; }
.ew-hero-proof .sep { width: 1px; height: 20px; background: var(--line); }

/* ============================================================
   PAGE HOME — LOGOS CLIENTS (MARQUEE)
   ============================================================ */
.ew-logos { padding: 6px 0 26px; overflow: hidden; }
.ew-logos-label { text-align: center; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-soft); margin-bottom: 26px; }
.ew-logos-track-wrap {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg,transparent 0,#000 12%,#000 88%,transparent 100%);
  mask-image: linear-gradient(90deg,transparent 0,#000 12%,#000 88%,transparent 100%);
}
.ew-logos-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: ew-marquee 32s linear infinite; }
.ew-logos-track-wrap:hover .ew-logos-track { animation-play-state: paused; }
@keyframes ew-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ew-logo-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em;
  color: rgba(15,14,13,.35); white-space: nowrap;
  transition: color .25s ease; user-select: none;
}
.ew-logo-item:hover { color: var(--ink); }
.ew-logo-item svg { flex-shrink: 0; opacity: .8; }
.ew-logo-item:hover svg { color: var(--orange); }
.ew-logo-item img { flex-shrink: 0; height: 28px; width: auto; max-width: 100px; object-fit: contain; opacity: .55; filter: grayscale(100%); transition: opacity .25s ease, filter .25s ease; }
.ew-logo-item:hover img { opacity: 1; filter: grayscale(0%); }
@media (prefers-reduced-motion: reduce) {
  .ew-logos-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; gap: 32px 48px; }
  .ew-logos-track .dup { display: none; }
  .ew-logos-track-wrap { -webkit-mask-image: none; mask-image: none; }
}

/* ============================================================
   PAGE HOME — SERVICES
   ============================================================ */
.ew-services { padding: 90px 0 100px; }
.ew-services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 52px; flex-wrap: wrap; }
.ew-services-head .left { max-width: 620px; }
.ew-services-head h2 { font-size: clamp(1.9rem,3.6vw,2.7rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.12; }
.ew-services-head h2 em { font-style: italic; color: var(--orange-dark); }
.ew-services-head .right { max-width: 340px; font-size: .98rem; color: var(--ink-soft); line-height: 1.65; padding-bottom: 6px; }

.ew-pole { margin-bottom: 18px; }
.ew-pole-label { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.ew-pole-label span { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); background: var(--surface); border-radius: var(--radius-pill); padding: 8px 18px; }
.ew-pole-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.ew-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 44px; }
.ew-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  padding: 30px 28px 28px; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 14px; position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ew-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(15,14,13,.09); border-color: rgba(255,115,0,.35); }
.ew-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-dark);
  transition: background .22s ease, color .22s ease;
}
.ew-card:hover .ew-card-icon { background: var(--orange); color: #fff; }
.ew-card h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -.01em; }
.ew-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.ew-card .ew-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 700; color: var(--orange-dark); }
.ew-card .ew-card-link svg { transition: transform .2s ease; }
.ew-card:hover .ew-card-link svg { transform: translateX(4px); }

.ew-services-cta {
  background: var(--ink); border-radius: 28px; padding: 34px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.ew-services-cta p { color: #fff; font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em; }
.ew-services-cta p span { color: rgba(255,255,255,.55); font-weight: 400; display: block; font-size: .92rem; margin-top: 4px; }
.ew-services-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff; text-decoration: none;
  font-size: .98rem; font-weight: 700;
  padding: 15px 28px; border-radius: var(--radius-pill);
  transition: background .18s ease, transform .18s ease; white-space: nowrap;
}
.ew-services-cta a:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ============================================================
   PAGE HOME — RÉALISATIONS (aperçu)
   ============================================================ */
.ew-work { padding: 10px 0 100px; }
.ew-work-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 44px; flex-wrap: wrap; }
.ew-work-head h2 { font-size: clamp(1.9rem,3.6vw,2.7rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.12; max-width: 560px; }
.ew-work-head h2 em { font-style: italic; color: var(--orange-dark); }
.ew-work-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .95rem; font-weight: 700; color: var(--ink); text-decoration: none;
  padding: 13px 24px; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(15,14,13,.16);
  transition: border-color .18s ease, background .18s ease; white-space: nowrap;
}
.ew-work-all:hover { border-color: var(--ink); background: var(--card); }
.ew-work-all svg { transition: transform .18s ease; }
.ew-work-all:hover svg { transform: translateX(3px); }
.ew-work-grid { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.ew-project-featured { grid-row: span 2; }
.ew-project-featured .ew-project-visual { min-height: 340px; }
.ew-browser-body-lg { height: 220px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.ew-project-featured .ew-browser-body { height: 220px; }

/* ============================================================
   PAGE HOME — STATS
   ============================================================ */
.ew-stats { padding: 10px 0 100px; }
.ew-stats-box {
  background: var(--ink); border-radius: 32px; padding: 64px 56px;
  position: relative; overflow: hidden;
}
.ew-stats-box::before {
  content: ""; position: absolute;
  bottom: -220px; left: -160px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,115,0,.16) 0%,rgba(255,115,0,0) 65%);
  pointer-events: none;
}
.ew-stats-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; position: relative; }
.ew-stats-head h2 { color: #fff; font-size: clamp(1.7rem,3.2vw,2.4rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.15; max-width: 520px; }
.ew-stats-head h2 em { font-style: italic; color: var(--orange); }
.ew-stats-head p { color: rgba(255,255,255,.6); font-size: .96rem; line-height: 1.65; max-width: 330px; padding-bottom: 4px; }
.ew-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; position: relative; }
.ew-stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px; padding: 28px 26px;
  transition: background .22s ease, border-color .22s ease;
}
.ew-stat:hover { background: rgba(255,255,255,.08); border-color: rgba(255,115,0,.4); }
.ew-stat .num { display: flex; align-items: baseline; gap: 2px; color: #fff; font-size: clamp(2.1rem,3.4vw,2.8rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; margin-bottom: 12px; font-variant-numeric: tabular-nums; }
.ew-stat .num .unit { color: var(--orange); font-size: .6em; font-weight: 700; }
.ew-stat .label { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.5; }

/* ============================================================
   PAGE HOME — TÉMOIGNAGES
   ============================================================ */
.ew-quotes { background: var(--surface); padding: 90px 0 80px; margin: 10px 0 0; }
.ew-quotes-inner { max-width: 860px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.ew-quotes-inner .ew-tag { margin-bottom: 36px; }
.ew-quotes-inner .ew-tag::after { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.ew-quote-stage { position: relative; width: 100%; min-height: 300px; }
.ew-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; gap: 32px; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease, visibility .45s; }
.ew-slide.active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
.ew-slide .big-mark { color: var(--orange); font-size: 4.5rem; font-weight: 700; line-height: 0; height: 28px; user-select: none; }
.ew-slide blockquote { border: none; font-size: clamp(1.3rem,2.6vw,1.85rem); font-weight: 600; font-style: italic; letter-spacing: -.015em; line-height: 1.5; color: var(--ink); }
.ew-slide blockquote .hl { background: linear-gradient(transparent 58%,var(--orange-light) 58%); font-style: italic; }
.ew-slide .who { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ew-slide .who b { font-size: 1rem; font-weight: 700; color: var(--ink); }
.ew-slide .who span { font-size: .88rem; color: var(--ink-soft); }
.ew-slide .who .service { margin-top: 8px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange-dark); background: var(--orange-light); border-radius: var(--radius-pill); padding: 5px 14px; }
.ew-quote-picker { display: flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px; margin-top: 44px; box-shadow: 0 8px 26px rgba(15,14,13,.06); }
.ew-quote-picker button { font-family: inherit; font-size: .88rem; font-weight: 600; color: var(--ink-soft); background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 9px; padding: 9px 18px 9px 10px; border-radius: var(--radius-pill); transition: background .2s ease, color .2s ease; }
.ew-quote-picker button .pip { width: 30px; height: 30px; border-radius: 50%; background: var(--surface); color: var(--ink-soft); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; transition: background .2s ease, color .2s ease; }
.ew-quote-picker button:hover { color: var(--ink); }
.ew-quote-picker button.active { background: var(--ink); color: #fff; }
.ew-quote-picker button.active .pip { background: var(--orange); color: #fff; }
.ew-final-home { background: var(--surface); padding: 30px 0 0; }

/* ============================================================
   PAGE BLOG — HERO
   ============================================================ */
.ew-hero-blog { position: relative; padding: 84px 0 56px; overflow: hidden; }
.ew-hero-blog::before {
  content: ""; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 680px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,115,0,.1) 0%,rgba(255,115,0,0) 65%);
  pointer-events: none;
}
.ew-hero-blog-inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.ew-tag-center { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--orange-dark); margin-bottom: 18px; }
.ew-tag-center::before, .ew-tag-center::after { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.ew-hero-blog h1 { font-size: clamp(2.2rem,4.8vw,3.7rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.ew-hero-blog h1 .chip { display: inline-block; background: var(--orange); color: #fff; border-radius: var(--radius-pill); padding: .02em .35em .06em; transform: rotate(-1.5deg); }
.ew-hero-blog p.lead { font-size: clamp(1rem,1.5vw,1.15rem); color: var(--ink-soft); line-height: 1.65; max-width: 540px; margin-bottom: 38px; }
.ew-blog-filters {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 7px; box-shadow: 0 10px 30px rgba(15,14,13,.07);
}
.ew-blog-filters button { font-family: inherit; font-size: .88rem; font-weight: 600; color: var(--ink-soft); background: none; border: none; cursor: pointer; padding: 10px 18px; border-radius: var(--radius-pill); transition: background .2s ease, color .2s ease; white-space: nowrap; }
.ew-blog-filters button:hover { color: var(--ink); background: var(--surface); }
.ew-blog-filters button.active { background: var(--ink); color: #fff; }

/* ============================================================
   PAGE BLOG — ARTICLE À LA UNE
   ============================================================ */
.ew-featured { padding: 24px 0 16px; }
.ew-featured-card {
  display: grid; grid-template-columns: 1.1fr 1fr;
  background: var(--card); border: 1px solid var(--line); border-radius: 28px;
  overflow: hidden; text-decoration: none; color: var(--ink);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ew-featured-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(15,14,13,.1); border-color: rgba(255,115,0,.35); }
.ew-featured-cover {
  position: relative; min-height: 300px;
  background: linear-gradient(135deg,var(--orange-light) 0%,var(--surface) 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.ew-featured-cover svg { color: rgba(255,115,0,.5); transform: rotate(-6deg); }
.ew-featured-cover .une { position: absolute; top: 20px; left: 20px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; background: var(--ink); color: #fff; border-radius: var(--radius-pill); padding: 6px 14px; }
.ew-featured-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.ew-featured-body h2 { font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.ew-featured-body p { font-size: .95rem; color: var(--ink-soft); line-height: 1.65; }
.ew-featured-body .read { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 700; color: var(--orange-dark); margin-top: 4px; }
.ew-featured-card:hover .read svg { transform: translateX(4px); }
.ew-featured-body .read svg { transition: transform .2s ease; }

.ew-posts { padding: 28px 0 100px; }

/* ============================================================
   PAGE ARTICLE — BARRE DE PROGRESSION
   ============================================================ */
.ew-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; background: transparent; pointer-events: none; }
.ew-progress i { display: block; height: 100%; width: 0; background: var(--orange); border-radius: 0 3px 3px 0; }

/* ============================================================
   PAGE ARTICLE — EN-TÊTE
   ============================================================ */
.ew-art-head { position: relative; padding: 72px 0 48px; overflow: hidden; }
.ew-art-head::before {
  content: ""; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 680px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,115,0,.09) 0%,rgba(255,115,0,0) 65%);
  pointer-events: none;
}
.ew-art-head-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.ew-crumb { display: inline-flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 22px; }
.ew-crumb a { color: var(--ink-soft); text-decoration: none; transition: color .18s ease; }
.ew-crumb a:hover { color: var(--orange-dark); }
.ew-crumb .sep { color: rgba(15,14,13,.3); }
.ew-crumb .here { color: var(--orange-dark); background: var(--orange-light); border-radius: var(--radius-pill); padding: 4px 12px; font-weight: 700; }
.ew-art-head h1 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 24px; }
.ew-art-head h1 .hl { background: linear-gradient(transparent 58%,var(--orange-light) 58%); }
.ew-art-byline { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: .88rem; color: var(--ink-soft); }
.ew-art-byline .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; }
.ew-art-byline b { display: block; color: var(--ink); font-weight: 700; }
.ew-art-byline small { display: block; font-size: .8rem; }
.ew-art-byline .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(15,14,13,.25); }

/* ============================================================
   PAGE ARTICLE — CORPS + SIDEBAR
   ============================================================ */
.ew-art { padding: 24px 0 90px; }
.ew-art-grid { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 64px; align-items: start; }
.ew-art-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.ew-toc { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.ew-toc .lbl { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange-dark); margin-bottom: 14px; }
.ew-toc a { display: block; font-size: .86rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; padding: 7px 12px; margin: 0 -12px; border-radius: 10px; border-left: 2px solid transparent; transition: color .18s ease, background .18s ease, border-color .18s ease; }
.ew-toc a:hover { color: var(--ink); background: var(--surface); }
.ew-toc a.active { color: var(--orange-dark); font-weight: 700; border-left-color: var(--orange); background: var(--orange-light); }
.ew-aside-cta { background: var(--ink); border-radius: 20px; padding: 24px 22px; }
.ew-aside-cta b { display: block; color: #fff; font-size: .98rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; }
.ew-aside-cta p { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.55; margin-bottom: 16px; }
.ew-aside-cta a { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; text-decoration: none; font-size: .85rem; font-weight: 700; padding: 11px 18px; border-radius: var(--radius-pill); transition: background .18s ease; }
.ew-aside-cta a:hover { background: var(--orange-dark); }
.ew-art-body { max-width: 720px; }
.ew-art-body > p { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 22px; }
.ew-art-body > p b, .ew-art-body li b { color: var(--ink); }
.ew-art-body h2 { font-size: clamp(1.4rem,2.2vw,1.7rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.25; margin: 44px 0 18px; scroll-margin-top: 96px; }
.ew-art-body ul { margin: 0 0 22px 4px; padding-left: 20px; color: var(--ink-soft); }
.ew-art-body li { font-size: 1.02rem; line-height: 1.7; margin-bottom: 8px; }
.ew-art-body li::marker { color: var(--orange); }
.ew-art-body blockquote { border: none; background: var(--surface); border-left: 3px solid var(--orange); border-radius: 0 16px 16px 0; padding: 20px 26px; margin: 0 0 22px; font-size: 1.05rem; font-style: italic; font-weight: 600; color: var(--ink); line-height: 1.6; }
.ew-art-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 6px 0 26px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; font-size: .93rem; }
.ew-art-table th { background: var(--ink); color: #fff; text-align: left; font-weight: 700; padding: 13px 18px; }
.ew-art-table td { padding: 13px 18px; border-top: 1px solid var(--line); color: var(--ink-soft); background: var(--card); }
.ew-art-table td:last-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
.ew-art-table tr:nth-child(even) td { background: var(--bg); }
.ew-callout { background: var(--orange-light); border: 1px solid rgba(255,115,0,.25); border-radius: 20px; padding: 26px 28px; margin: 34px 0 26px; }
.ew-callout .lbl { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange-dark); margin-bottom: 12px; }
.ew-callout ul { margin: 0; padding-left: 20px; color: var(--ink); }
.ew-callout li { font-size: .95rem; line-height: 1.65; margin-bottom: 6px; }
.ew-callout li::marker { color: var(--orange); }
.ew-author { display: flex; align-items: center; gap: 18px; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 24px 26px; margin-top: 44px; }
.ew-author .avatar { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; }
.ew-author b { display: block; font-size: 1rem; font-weight: 700; }
.ew-author p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; margin-top: 3px; }
.ew-related { padding: 0 0 96px; }
.ew-related-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.ew-related-head h2 { font-size: clamp(1.5rem,2.6vw,2rem); font-weight: 700; letter-spacing: -.02em; }
.ew-related-head h2 em { font-style: italic; color: var(--orange-dark); }
.ew-related-head a { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 700; color: var(--ink); text-decoration: none; padding: 12px 22px; border-radius: var(--radius-pill); border: 1.5px solid rgba(15,14,13,.16); transition: border-color .18s ease, background .18s ease; white-space: nowrap; }
.ew-related-head a:hover { border-color: var(--ink); background: var(--card); }

/* ============================================================
   PAGE RÉALISATIONS — HERO
   ============================================================ */
.ew-hero-work { position: relative; padding: 84px 0 56px; overflow: hidden; }
.ew-hero-work::before {
  content: ""; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 680px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,115,0,.1) 0%,rgba(255,115,0,0) 65%);
  pointer-events: none;
}
.ew-hero-work-inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.ew-hero-work h1 { font-size: clamp(2.2rem,4.8vw,3.7rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; }
.ew-hero-work h1 .chip { display: inline-block; background: var(--orange); color: #fff; border-radius: var(--radius-pill); padding: .02em .35em .06em; transform: rotate(-1.5deg); }
.ew-hero-work p.lead { font-size: clamp(1rem,1.5vw,1.15rem); color: var(--ink-soft); line-height: 1.65; max-width: 560px; margin-bottom: 38px; }
.ew-hero-work .lead b { color: var(--ink); font-weight: 700; }
.ew-work-filters {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 7px; box-shadow: 0 10px 30px rgba(15,14,13,.07);
}
.ew-work-filters button { font-family: inherit; font-size: .88rem; font-weight: 600; color: var(--ink-soft); background: none; border: none; cursor: pointer; padding: 10px 18px; border-radius: var(--radius-pill); transition: background .2s ease, color .2s ease; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.ew-work-filters button:hover { color: var(--ink); background: var(--surface); }
.ew-work-filters button.active { background: var(--ink); color: #fff; }
.ew-work-filters button .n { font-size: .68rem; font-weight: 700; background: var(--surface); color: var(--ink-soft); border-radius: var(--radius-pill); padding: 2px 8px; transition: background .2s ease, color .2s ease; }
.ew-work-filters button.active .n { background: var(--orange); color: #fff; }
.ew-works { padding: 20px 0 100px; }
.ew-works-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ============================================================
   PAGE GÉNÉRIQUE (page.php / mentions légales etc.)
   ============================================================ */
.ew-page-content { max-width: 820px; margin: 0 auto; padding: 72px 24px 100px; }
.ew-page-content h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 36px; }
.ew-page-content h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; }
.ew-page-content p { font-size: 1rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 18px; }
.ew-page-content ul { padding-left: 24px; color: var(--ink-soft); margin-bottom: 18px; }
.ew-page-content li { font-size: 1rem; line-height: 1.7; margin-bottom: 6px; }
.ew-page-content a { color: var(--orange-dark); text-decoration: underline; }

/* ============================================================
   SECTIONS PARTAGÉES — SERVICES (method, included, faq, examples)
   ============================================================ */

/* --- Méthode --- */
.ew-method{background:var(--surface);padding:90px 0 100px;}
.ew-method-head{margin-bottom:60px;max-width:640px;}
.ew-method-head h2{font-size:clamp(1.9rem,3.6vw,2.7rem);font-weight:700;letter-spacing:-.025em;line-height:1.12;}
.ew-method-head h2 em{font-style:italic;color:var(--orange-dark);}
.ew-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;position:relative;}
.ew-steps::before{content:"";position:absolute;top:9px;left:calc(12.5%);right:calc(12.5%);border-top:2px dashed rgba(15,14,13,.18);}
.ew-step{position:relative;}
.ew-step .dot{position:relative;z-index:1;width:20px;height:20px;border-radius:50%;background:var(--orange);border:4px solid var(--surface);box-shadow:0 0 0 2px var(--orange);margin:0 auto 22px;}
.ew-step:last-child .dot{background:var(--ink);box-shadow:0 0 0 2px var(--ink);}
.ew-step .when{display:block;width:fit-content;margin:0 auto 18px;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--orange-dark);background:var(--orange-light);border-radius:var(--radius-pill);padding:5px 14px;}
.ew-step:last-child .when{color:#fff;background:var(--ink);}
.ew-step .ghost{display:block;text-align:center;font-size:2.6rem;font-weight:700;letter-spacing:-.04em;line-height:1;color:rgba(15,14,13,.12);margin-bottom:10px;font-variant-numeric:tabular-nums;}
.ew-step h3{text-align:center;font-size:1.08rem;font-weight:700;letter-spacing:-.01em;margin-bottom:10px;}
.ew-step p{text-align:center;font-size:.89rem;color:var(--ink-soft);line-height:1.6;}

/* --- Inclus --- */
.ew-included{padding:90px 0 100px;}
.ew-included-grid{display:grid;grid-template-columns:.9fr 1.4fr;gap:72px;align-items:start;}
.ew-included-intro h2{font-size:clamp(1.9rem,3.6vw,2.7rem);font-weight:700;letter-spacing:-.025em;line-height:1.12;margin-bottom:18px;}
.ew-included-intro h2 em{font-style:italic;color:var(--orange-dark);}
.ew-included-intro p{font-size:.98rem;color:var(--ink-soft);line-height:1.65;margin-bottom:28px;}
.ew-incl-list{display:flex;flex-direction:column;}
.ew-incl-row{display:flex;align-items:center;gap:20px;padding:20px 14px;border-bottom:1px solid var(--line);transition:background .2s ease,padding-left .2s ease;border-radius:14px;}
.ew-incl-row:first-child{border-top:1px solid var(--line);}
.ew-incl-row:hover{background:var(--card);padding-left:22px;}
.ew-incl-row .ic{width:42px;height:42px;border-radius:12px;flex-shrink:0;background:var(--orange-light);color:var(--orange-dark);display:flex;align-items:center;justify-content:center;transition:background .2s ease,color .2s ease;}
.ew-incl-row:hover .ic{background:var(--orange);color:#fff;}
.ew-incl-row .txt{flex:1;}
.ew-incl-row .txt b{display:block;font-size:1rem;font-weight:700;letter-spacing:-.01em;}
.ew-incl-row .txt span{display:block;font-size:.86rem;color:var(--ink-soft);margin-top:2px;line-height:1.5;}
.ew-incl-row .pill{flex-shrink:0;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--orange-dark);background:var(--orange-light);border-radius:var(--radius-pill);padding:6px 14px;}
.ew-incl-options{margin-top:28px;display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.ew-incl-options .lbl{font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--ink-soft);margin-right:6px;}
.ew-incl-options .opt{font-size:.85rem;font-weight:600;color:var(--ink);background:var(--card);border:1px solid var(--line);border-radius:var(--radius-pill);padding:8px 16px;transition:border-color .2s ease;}
.ew-incl-options .opt:hover{border-color:rgba(255,115,0,.4);}

/* --- FAQ --- */
.ew-faq{background:var(--surface);padding:90px 0 100px;}
.ew-faq-inner{max-width:780px;margin:0 auto;}
.ew-faq-head{text-align:center;margin-bottom:44px;display:flex;flex-direction:column;align-items:center;}
.ew-faq-head h2{font-size:clamp(1.9rem,3.6vw,2.7rem);font-weight:700;letter-spacing:-.025em;line-height:1.12;}
.ew-faq-head h2 em{font-style:italic;color:var(--orange-dark);}
.ew-faq-list{display:flex;flex-direction:column;gap:12px;}
.ew-faq-item{background:var(--card);border:1px solid var(--line);border-radius:20px;overflow:hidden;transition:border-color .2s ease,box-shadow .2s ease;}
.ew-faq-item.open{border-color:rgba(255,115,0,.35);box-shadow:0 16px 38px rgba(15,14,13,.07);}
.ew-faq-q{width:100%;font-family:inherit;font-size:clamp(1.02rem,1.6vw,1.18rem);font-weight:700;letter-spacing:-.015em;color:var(--ink);text-align:left;background:none;border:none;cursor:pointer;display:flex;align-items:center;gap:18px;padding:22px 24px;}
.ew-faq-q .idx{flex-shrink:0;font-size:.78rem;font-weight:700;color:rgba(15,14,13,.3);font-variant-numeric:tabular-nums;transition:color .25s ease;}
.ew-faq-item.open .ew-faq-q .idx{color:var(--orange-dark);}
.ew-faq-q .question{flex:1;}
.ew-faq-q .plus{flex-shrink:0;width:32px;height:32px;border-radius:50%;background:var(--orange-light);color:var(--orange-dark);display:flex;align-items:center;justify-content:center;transition:background .25s ease,color .25s ease,transform .25s ease;}
.ew-faq-item.open .plus{background:var(--orange);color:#fff;transform:rotate(45deg);}
.ew-faq-a{display:grid;grid-template-rows:0fr;transition:grid-template-rows .35s cubic-bezier(.2,.7,.2,1);}
.ew-faq-item.open .ew-faq-a{grid-template-rows:1fr;}
.ew-faq-a > div{overflow:hidden;}
.ew-faq-a p{font-size:.94rem;color:var(--ink-soft);line-height:1.7;padding:0 24px 24px 66px;max-width:640px;}
@media (prefers-reduced-motion:reduce){.ew-faq-a{transition:none;}}
.ew-faq-ask{margin:36px auto 0;width:fit-content;display:flex;align-items:center;gap:18px;background:var(--card);border:1px solid var(--line);border-radius:var(--radius-pill);padding:10px 10px 10px 24px;box-shadow:0 8px 26px rgba(15,14,13,.06);}
.ew-faq-ask span{font-size:.92rem;font-weight:600;color:var(--ink-soft);}
.ew-faq-ask a{display:inline-flex;align-items:center;gap:8px;background:var(--ink);color:#fff;text-decoration:none;font-size:.88rem;font-weight:700;padding:11px 20px;border-radius:var(--radius-pill);transition:background .18s ease;}
.ew-faq-ask a:hover{background:var(--orange-dark);}

/* --- Exemples --- */
.ew-examples{padding:90px 0 100px;}
.ew-examples-head{display:flex;align-items:flex-end;justify-content:space-between;gap:32px;margin-bottom:52px;flex-wrap:wrap;}
.ew-examples-head .left{max-width:560px;}
.ew-examples-head h2{font-size:clamp(1.9rem,3.6vw,2.7rem);font-weight:700;letter-spacing:-.025em;line-height:1.12;}
.ew-examples-head h2 em{font-style:italic;color:var(--orange-dark);}
.ew-examples-all{display:inline-flex;align-items:center;gap:8px;font-size:.95rem;font-weight:700;color:var(--ink);text-decoration:none;padding:13px 24px;border-radius:var(--radius-pill);border:1.5px solid rgba(15,14,13,.16);transition:border-color .18s ease,background .18s ease;white-space:nowrap;}
.ew-examples-all:hover{border-color:var(--ink);background:var(--card);}
.ew-ex-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.ew-ex{text-decoration:none;color:var(--ink);display:flex;flex-direction:column;}
.ew-ex-scene{position:relative;background:var(--surface);border-radius:24px;padding:34px 28px 0;overflow:hidden;margin-bottom:20px;}
.ew-ex:nth-child(2) .ew-ex-scene{background:var(--orange-light);}
.ew-ex-scene::before{content:"";position:absolute;top:-90px;right:-90px;width:220px;height:220px;border-radius:50%;background:radial-gradient(circle,rgba(255,115,0,.12) 0%,rgba(255,115,0,0) 70%);}
.ew-ex .shot{position:relative;background:var(--card);border:1px solid var(--line);border-radius:14px 14px 0 0;box-shadow:0 -14px 40px rgba(15,14,13,.1);transform:rotate(-1.4deg) translateY(6px);transform-origin:bottom center;transition:transform .3s cubic-bezier(.2,.7,.2,1);}
.ew-ex:nth-child(2) .shot{transform:rotate(1.4deg) translateY(6px);}
.ew-ex:hover .shot{transform:rotate(0deg) translateY(0);}
.ew-ex .shot .bar{display:flex;gap:5px;padding:10px 12px;border-bottom:1px solid var(--line);}
.ew-ex .shot .bar i{width:8px;height:8px;border-radius:50%;background:var(--surface);}
.ew-ex .shot .bar i:first-child{background:var(--orange);}
.ew-ex .shot .body{height:130px;padding:14px;display:flex;flex-direction:column;gap:8px;}
.ew-ex .shot .body b{display:block;height:12px;width:60%;border-radius:6px;background:var(--surface);}
.ew-ex .shot .body s{display:block;height:8px;width:82%;border-radius:6px;background:var(--bg);border:1px solid var(--line);}
.ew-ex .shot .body u{display:block;height:8px;width:68%;border-radius:6px;background:var(--bg);border:1px solid var(--line);}
.ew-ex .metric{position:absolute;bottom:16px;left:16px;z-index:1;background:var(--ink);color:#fff;font-size:.78rem;font-weight:700;border-radius:var(--radius-pill);padding:8px 16px;box-shadow:0 10px 26px rgba(15,14,13,.2);}
.ew-ex .metric span{color:var(--orange);}
.ew-ex-info b{display:block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;}
.ew-ex-info span{display:block;font-size:.86rem;color:var(--ink-soft);margin-top:3px;}

/* Délais d'apparition des étapes */
@media (prefers-reduced-motion:no-preference){
  .ew-step.ew-reveal:nth-child(2){transition-delay:.1s;}
  .ew-step.ew-reveal:nth-child(3){transition-delay:.2s;}
  .ew-step.ew-reveal:nth-child(4){transition-delay:.3s;}
}

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 980px) {
  .ew-menu, .ew-nav .ew-nav-cta { display: none; }
  .ew-burger { display: flex; }
  .ew-nav { padding: 8px 8px 8px 20px; }
  .ew-hero { padding: 64px 0 80px; }
  .ew-cards { grid-template-columns: 1fr 1fr; }
  .ew-services { padding: 64px 0 72px; }
  .ew-work { padding: 0 0 72px; }
  .ew-work-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .ew-project-featured { grid-row: auto; }
  .ew-project-featured .ew-project-visual { min-height: 220px; }
  .ew-project-featured .ew-browser-body { height: 120px; }
  .ew-stats { padding: 0 0 72px; }
  .ew-stats-box { padding: 44px 32px; border-radius: 28px; }
  .ew-stats-grid { grid-template-columns: 1fr 1fr; }
  .ew-quotes { padding: 64px 0 60px; }
  .ew-quote-stage { min-height: 360px; }
  .ew-quote-picker { flex-wrap: wrap; justify-content: center; border-radius: 24px; }
  .ew-final { padding: 10px 0 0; }
  .ew-final-box { padding: 52px 30px; border-radius: 28px; margin-bottom: -110px; }
  .ew-footer { padding: 170px 0 30px; border-radius: 28px 28px 0 0; }
  .ew-footer-grid { grid-template-columns: 1fr 1fr; }
  .ew-hero-blog { padding: 56px 0 44px; }
  .ew-blog-filters { border-radius: 26px; }
  .ew-featured-card { grid-template-columns: 1fr; }
  .ew-featured-cover { min-height: 190px; }
  .ew-featured-body { padding: 28px 26px 30px; }
  .ew-posts { padding: 20px 0 72px; }
  .ew-posts-grid { grid-template-columns: 1fr 1fr; }
  .ew-art-grid { grid-template-columns: 1fr; gap: 36px; }
  .ew-art-aside { position: static; flex-direction: column; }
  .ew-toc { display: none; }
  .ew-hero-work { padding: 56px 0 48px; }
  .ew-work-filters { border-radius: 26px; }
  .ew-works { padding: 8px 0 72px; }
  .ew-works-grid { grid-template-columns: 1fr 1fr; }
  .ew-method { padding: 64px 0 72px; }
  .ew-steps { grid-template-columns: 1fr; gap: 40px; max-width: 420px; margin: 0 auto; }
  .ew-steps::before { display: none; }
  .ew-step .dot { margin: 0 auto 16px; }
  .ew-included { padding: 64px 0 72px; }
  .ew-included-grid { grid-template-columns: 1fr; gap: 40px; }
  .ew-faq { padding: 64px 0 72px; }
  .ew-faq-a p { padding-left: 24px; }
  .ew-faq-ask { flex-direction: column; gap: 12px; border-radius: 24px; padding: 18px 20px; text-align: center; }
  .ew-examples { padding: 64px 0 72px; }
  .ew-ex-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .ew-cards { grid-template-columns: 1fr; }
  .ew-services-cta { padding: 28px 26px; }
  .ew-stats-grid { grid-template-columns: 1fr; }
  .ew-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ew-posts-grid { grid-template-columns: 1fr; }
  .ew-works-grid { grid-template-columns: 1fr; }
  .ew-nl-form { flex-direction: column; border-radius: 24px; padding: 14px; }
  .ew-nl-form input { width: 100%; text-align: center; padding: 8px 0; }
  .ew-nl-form button { width: 100%; }
  .ew-author { flex-direction: column; text-align: center; }
}
